/*-----------------------------------------------------------------------
  Fonts
-----------------------------------------------------------------------*/

@import url('https://use.typekit.net/kzy5oiy.css');

/*-----------------------------------------------------------------------
  Variables
-----------------------------------------------------------------------*/

:root {
  --admin-height: 32px;
  --header-height: 100px;
  --notice-height: 0px;

  --font-primary: "neue-haas-grotesk-display", sans-serif;
  --font-secondary: "millisime", sans-serif;

  --white: #ffffff;
  --white-rgb: 255, 255, 255;

  --black: #000000;
  --black-rgb: 0, 0, 0;

  --red: #ff1414;
  --red-rgb: 255, 20, 20;

  --dark-gray: #2D2D2D;
  --dark-gray-rgb: 45, 45, 45;

  --burnt-orange: #D04D24;
  --burnt-orange-rgb: 208, 77, 36;

  --light-gray:#E7E7E7;
  --light-gray-rgb: 231, 231, 231;

  --soft-gray: #D9D9D9;
  --soft-gray-rbg: 217, 217, 217;

  --deepCoral:#D04D24;
  --deepCoral-rbg:208, 77, 36;

  --color-sandstone: #F9F8F8;
  --color-sandstone-rbg:249, 248, 248;

  --border-radius-sm: 5px;
  --border-radius-md: 15px;
  --border-radius-lg: 30px;

  --container-xs: 760px;
  --container-sm: 1040px;
  --container-md: 1160px;
  --container-lg: 1380px;

  --box-shadow: 0 0 5px rgba(var(--black-rgb), 10%);

  --transition: 0.25s ease all;
}

/* Responsive */

@media screen and (max-width: 782px) {
  :root {
    --admin-height: 46px;
  }
}

@media screen and (max-width: 920px) {
  :root {
    --header-height: 70px;
  }
}

/*-----------------------------------------------------------------------
	Base
-----------------------------------------------------------------------*/

.boardriders-theme *,
.boardriders-theme *:before,
.boardriders-theme *:after {
  box-sizing: border-box;
}

.boardriders-theme * {
  scroll-margin-top: calc(var(--header-height));
}

body.boardriders-theme,
.editor-styles-wrapper {
  font-optical-sizing: auto;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-primary) !important;
  font-size: 18px !important;
  color: var(--dark-gray);
  line-height: 24px;
  font-weight: 400;
  margin:0px;
  padding: 0px;
  letter-spacing: 1.26px;
}

body.boardriders-theme,
.editor-styles-wrapper,
.site-responsive-menu,
.site-main {
  background: var(--white);
}

.site-main {
  position: relative;
  transition: var(--transition);
  z-index: 1;
}

.block-editor .acf-block-panel {
  /* display: none !important; */
}

/*-----------------------------------------------------------------------
  Admin Bar
-----------------------------------------------------------------------*/

body.boardriders-theme {
  padding-top: calc(var(--notice-height)) !important;
}

body.boardriders-theme.admin-bar {
  padding-top: calc(var(--notice-height) + var(--admin-height)) !important;
}

#wpadminbar {
  position: fixed;
  z-index: 20000000000000001;
  top: 0;
}

#wpadminbar ul li.admin-bar-search {
  display: none !important;
}

/*-----------------------------------------------------------------------
	Layouts
-----------------------------------------------------------------------*/

.boardriders-theme *[class*='container-'],
.boardriders-theme *[class*='section-'],
.boardriders-theme *[class*='block-'],
.boardriders-theme *[class*='item-'],
.boardriders-theme .relative {
  position: relative;
}

.boardriders-theme .absolute {
  position: absolute;
}

/* Flex Layout */

.boardriders-theme .flex-layout,
.boardriders-theme .flex-align-start,
.boardriders-theme .flex-align-center,
.boardriders-theme .flex-align-end,
.boardriders-theme .flex-justify-start,
.boardriders-theme .flex-justify-center,
.boardriders-theme .flex-justify-end,
.boardriders-theme .flex-justify-between {
  display: flex;
  flex-wrap: wrap;
}

.boardriders-theme .flex-align-start {
  align-items: flex-start;
}

.boardriders-theme .flex-align-center {
  align-items: center;
}

.boardriders-theme .flex-align-end {
  align-items: flex-end;
}

.boardriders-theme .flex-justify-start {
  justify-content: flex-start;
}

.boardriders-theme .flex-justify-center {
  justify-content: center;
}

.boardriders-theme .flex-justify-end {
  justify-content: flex-end;
}

.boardriders-theme .flex-justify-between {
  justify-content: space-between;
}

.boardriders-theme .flex-row-reverse {
  flex-direction: row-reverse;
}

.boardriders-theme .flex-column-reverse {
  flex-direction: column-reverse;
}

.boardriders-theme .flex-nowrap {
  flex-wrap: nowrap;
}

.boardriders-theme .flex-gap {
  gap: 15px;
}

/* Containers */

.boardriders-theme .container,
.boardriders-theme .container-xl,
.boardriders-theme .container-lg,
.boardriders-theme .container-md,
.boardriders-theme .container-sm,
.boardriders-theme .container-xs {
  z-index: 99;
  margin: auto;
  padding: 0px 20px;
}

.boardriders-theme .container,
.boardriders-theme .container-xl {
  width: 100%;
}

.boardriders-theme .container-lg {
  max-width: var(--container-lg);
}

.boardriders-theme .container-md {
  max-width: var(--container-md);
}

.boardriders-theme .container-sm {
  max-width: var(--container-sm);
}

.boardriders-theme .container-xs {
  max-width: var(--container-xs);
}

/* Padding */

.boardriders-theme .padding-lg,
.boardriders-theme .padding-lg-top {
  padding-top: 80px;
}

.boardriders-theme .padding-lg,
.boardriders-theme .padding-lg-bot {
  padding-bottom: 80px;
}

.boardriders-theme .padding-md,
.boardriders-theme .padding-md-top {
  padding-top: 40px;
}

.boardriders-theme .padding-md,
.boardriders-theme .padding-md-bot {
  padding-bottom: 40px;
}

.boardriders-theme .padding-sm,
.boardriders-theme .padding-sm-top {
  padding-top: 20px;
}

.boardriders-theme .padding-sm,
.boardriders-theme .padding-sm-bot {
  padding-bottom: 20px;
}

/* Grid Layout */

.boardriders-theme .grid-col-1,
.boardriders-theme .grid-col-2,
.boardriders-theme .grid-col-3,
.boardriders-theme .grid-col-4,
.boardriders-theme .grid-col-5,
.boardriders-theme .grid-col-6 {
  display: grid;
  gap: 40px;
}

.boardriders-theme .grid-col-2 {
  gap: 80px;
}

.boardriders-theme .grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.boardriders-theme .grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.boardriders-theme .grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.boardriders-theme .grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.boardriders-theme .grid-col-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Visibility */

.boardriders-theme .desktop-only {
  display: block;
}

.boardriders-theme .mobile-only {
  display: none;
}

/* Block Settings */

.boardriders-theme .block-setting-padding {
  padding-top: var(--block-padding-top);
  padding-bottom: var(--block-padding-bottom);
}

.boardriders-theme .block-setting-background-colour {
  background-color: var(--block-background-colour);
}
.boardriders-theme.block-color-tint-white{
  background-image: url('../img/tint-white-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Responsive */

@media screen and (min-width: 860px) {
  .boardriders-theme .grid-col-2.sidebar-left {
    grid-template-columns: 1fr 1.75fr;
  }

  .boardriders-theme .grid-col-2.sidebar-right {
    grid-template-columns: 1.75fr 1fr;
  }
}

@media screen and (max-width: 1200px) {
  .boardriders-theme .grid-col-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .boardriders-theme .grid-col-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .boardriders-theme .grid-col-2 {
    gap: 40px;
  }

  
  .boardriders-theme .grid-col-3,
  .boardriders-theme .grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .boardriders-theme .grid-col-5,
  .boardriders-theme .grid-col-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .boardriders-theme .block-setting-padding {
    padding-top: calc(var(--block-padding-top) / 1.5);
    padding-bottom: calc(var(--block-padding-bottom) / 1.5);
  }
}

@media screen and (max-width: 767px) {
  .boardriders-theme .grid-col-4,
  .boardriders-theme .grid-col-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .boardriders-theme .grid-col-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .boardriders-theme .desktop-only {
    display: none;
  }

  .boardriders-theme .mobile-only {
    display: block;
  }
  .boardriders-theme .block-setting-padding {
    padding-top: calc(var(--block-padding-top) / 2);
    padding-bottom: calc(var(--block-padding-bottom) / 2);
  }
}

@media screen and (max-width: 576px) {
  .boardriders-theme .grid-col-3,
  .boardriders-theme .grid-col-4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .boardriders-theme .grid-col-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*-----------------------------------------------------------------------
	Background Colours
-----------------------------------------------------------------------*/

.boardriders-theme .background-white {
  background: var(--white);
}

.boardriders-theme .background-silver {
  background: rgba(var(--black-rgb), 10%);
}

.boardriders-theme .background-black {
  background: var(--black);
}

/*-----------------------------------------------------------------------
	Typography
-----------------------------------------------------------------------*/

.boardriders-theme h1,
.boardriders-theme h1 *,
.boardriders-theme .h1,
.boardriders-theme .h1 *,
.boardriders-theme h2,
.boardriders-theme h2 *,
.boardriders-theme .h2,
.boardriders-theme .h2 *,
.boardriders-theme h3,
.boardriders-theme h3 *,
.boardriders-theme .h3,
.boardriders-theme .h3 *,
.boardriders-theme h4,
.boardriders-theme h4 *,
.boardriders-theme .h4,
.boardriders-theme .h4 *,
.boardriders-theme h5,
.boardriders-theme h5 *,
.boardriders-theme .h5,
.boardriders-theme .h5 *,
.boardriders-theme h6,
.boardriders-theme h6 *,
.boardriders-theme .h6,
.boardriders-theme .h6 * {
  margin: 0;
  padding: 0;
  color: var(--dark-gray);
  font-weight: 700;
  text-wrap: wrap;
  word-wrap: break-word;
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.boardriders-theme h1,
.boardriders-theme h1 *,
.boardriders-theme .h1,
.boardriders-theme .h1 * {
  font-size: 50px;
  line-height: 49px;
}

.boardriders-theme h2,
.boardriders-theme h2 *,
.boardriders-theme .h2,
.boardriders-theme .h2 * {
  font-size: 45px;
  line-height: 54px;
}

.boardriders-theme h3,
.boardriders-theme h3 *,
.boardriders-theme .h3,
.boardriders-theme .h3 * {
  font-size: 35px;
  line-height: 45px;
}

.boardriders-theme h4,
.boardriders-theme h4 *,
.boardriders-theme .h4,
.boardriders-theme .h4 * {
  font-size: 25px;
  line-height: 35px;
}

.boardriders-theme h5,
.boardriders-theme h5 *,
.boardriders-theme .h5,
.boardriders-theme .h5 * {
  font-size: 20px;
  line-height: 28px;
}

.boardriders-theme h6,
.boardriders-theme h6 *,
.boardriders-theme .h6,
.boardriders-theme .h6 * {
  font-size: 14px;
  line-height: 20px;
  font-family: var(--font-primary);
  font-weight:500;
  text-transform: uppercase;
  color: rgba(30, 29, 27, 0.60);
}

.boardriders-theme ul,
.boardriders-theme ol,
.boardriders-theme li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.boardriders-theme p,
.boardriders-theme li {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.boardriders-theme a{
  color: var(--dark-gray);
  text-underline-offset: 3px !important;
  text-decoration-thickness: 0.5px !important;
  transition: var(--transition);
  word-break: break-word;
}
.boardriders-theme a:hover{
  color: var(--burnt-orange);
}
.boardriders-theme strong,
.boardriders-theme strong * {
  font-weight: 600 !important;
}

.boardriders-theme code {
  padding: 10px;
  font-size: 14px;
  color: var(--white);
  background: var(--black);
}

.boardriders-theme mark {
  background: none;
}

.boardriders-theme hr {
  border: 0;
  border-top: 1px solid var(--black);
}
.boardriders-theme u{
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.boardriders-theme u:after {
  content: '';
  position: absolute;
  height: 9px;
  width: 0;
  background-image: url('../img/underline-vector.svg');
  left: 0;
  bottom: -5px;
  transition: width 0.5s ease-in-out;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.boardriders-theme u.active:after {
  width: 100%;
}
/* Responsive */


@media screen and (max-width: 767px) {
  .boardriders-theme h1,
  .boardriders-theme h1 *,
  .boardriders-theme .h1,
  .boardriders-theme .h1 * {
    font-size: 40px;
    line-height: 50px;
  }

  .boardriders-theme h2,
  .boardriders-theme h2 *,
  .boardriders-theme .h2,
  .boardriders-theme .h2 * {
    font-size: 35px;
    line-height: 43px;
  }

  .boardriders-theme h3,
  .boardriders-theme h3 *,
  .boardriders-theme .h3,
  .boardriders-theme .h3 * {
    font-size: 28px;
    line-height: 35px;
  }

  .boardriders-theme h4,
  .boardriders-theme h4 *,
  .boardriders-theme .h4,
  .boardriders-theme .h4 * {
    font-size: 22px;
    line-height: 30px;
  }

  .boardriders-theme h5,
  .boardriders-theme h5 *,
  .boardriders-theme .h5,
  .boardriders-theme .h5 * {
    font-size: 18px;
    line-height: 24px;
  }

}

/*-----------------------------------------------------------------------
	Content Styling
-----------------------------------------------------------------------*/

.boardriders-theme .text-small,
.boardriders-theme .text-small * {
  font-size: 14px !important;
}

.boardriders-theme .text-sub,
.boardriders-theme .text-sub * {
  font-size: 12px !important;
}

/* Alignment */

.boardriders-theme .text-left {
  text-align: left;
}

.boardriders-theme .text-center {
  text-align: center;
}

.boardriders-theme .text-right {
  text-align: right;
}

/* Colours */

.boardriders-theme .text-white,
.boardriders-theme .text-white *:not(.button, .button *, button, button *, svg, svg *) {
  color: var(--white) !important;
  border-color: var(--white);
}

.boardriders-theme .text-muted {
  opacity: 50%;
}

/*-----------------------------------------------------------------------
	WYSIWYG Content
-----------------------------------------------------------------------*/

.img-container {
  position: relative;
  overflow: hidden;
}

.img-container img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.wysiwyg-content {
  width: 100%;
  position: relative;
  z-index: 99;
}

.wysiwyg-content h1:not(:last-child),
.wysiwyg-content h2:not(:last-child),
.wysiwyg-content h3:not(:last-child),
.wysiwyg-content h4:not(:last-child),
.wysiwyg-content h5:not(:last-child),
.wysiwyg-content h6:not(:last-child),
.wysiwyg-content ul:not(:last-child),
.wysiwyg-content ol:not(:last-child),
.wysiwyg-content p:not(:last-child),
.wysiwyg-content img:not(:last-child),
.wysiwyg-content table:not(:last-child),
.wysiwyg-content code:not(:last-child),
.wysiwyg-content blockquote:not(:last-child) {
  margin: 0 0 20px !important;
}

.wysiwyg-content li:not(:last-child) {
  margin: 0 0 10px !important;
}

/* Lists */

/* .wysiwyg-content ul,
.wysiwyg-content ol {
  display: inline-block;
} */

.wysiwyg-content li {
  position: relative;
  text-align: left;
  padding: 0 0 0 20px;
}

.wysiwyg-content li:not(:last-child) {
  margin: 0 0 5px !important;
}

.wysiwyg-content ul li:before {
  content: '';
  position: absolute;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--dark-gray);
  border-radius: 50%;
  display: inline;
  margin-left: -19px;
}
.wysiwyg-content ul.list-theme-style li:before{
  border-radius: 0px;
  width: 8px;
}
.wysiwyg-content ol {
  counter-reset: item;
  list-style-position: outside;
}

.wysiwyg-content ol li:before {
  content: counter(item) '. ';
  counter-increment: item;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Blockquote */

.wysiwyg-content blockquote {
  margin:25px auto;
  max-width: 665px;
}

/* Links */

.wysiwyg-content h5 a,
.wysiwyg-content p a,
.wysiwyg-content li a,
.wysiwyg-content span a {
  text-decoration: underline;
}

/* Hr */

.wysiwyg-content hr {
  border-top: 1px solid rgba(var(--black-rgb), 15%);
  margin: 40px 0;
}

/* Images */

.wysiwyg-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
}

.wysiwyg-content img:not(:first-child) {
  margin-top: 40px !important;
}

.wysiwyg-content img:not(:last-child) {
  margin-bottom: 40px !important;
}

.wysiwyg-content img.aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
  float: none;
}

.wysiwyg-content img.alignleft {
  float: left;
}

.wysiwyg-content img.alignright {
  float: right;
}

.wysiwyg-content img.size-full {
  width: 100% !important;
}

/*-----------------------------------------------------------------------
	Global Forms
-----------------------------------------------------------------------*/

.boardriders-theme form,
.boardriders-theme form *:not(table, table *, button) {
  border: 0;
  padding: 0;
  margin: 0;
  outline: 0 !important;
  box-shadow: none !important;
  position: relative;
}

.boardriders-theme form *[disabled] {
  opacity: 50%;
  pointer-events: none;
}

/* Labels */

.boardriders-theme label,
.boardriders-theme legend,
.boardriders-theme form .ginput_preview,
.boardriders-theme form .gform-field-label,
.boardriders-theme form .gfield_description,
.boardriders-theme form .ginput_quantity_label,
.boardriders-theme form .gform_fileupload_rules,
.boardriders-theme form .gfield_password_strength {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--font-primary);
  font-weight: 500 !important;
  margin: 5px 0 !important;
  color: var(--dark-gray);
  font-size: 18px !important;
  font-style: normal;
  line-height: 134%;
  letter-spacing: 1.26px;
}

.boardriders-theme fieldset legend {
  font-size: 16px !important;
}

.boardriders-theme label a,
.boardriders-theme legend a {
  color: var(--black) !important;
  text-decoration: underline;
}

.boardriders-theme label .required,
.boardriders-theme form .gfield_label .gfield_required {
  color: var(--red);
  margin-left: 2px !important;
  text-decoration: none !important;
}

/* Basic Fields */

.boardriders-theme input:not([class*='ui-'], [type='button'], [type='submit']),
.boardriders-theme select:not([class*='ui-']),
.boardriders-theme .select2-container .select2-selection,
.boardriders-theme textarea:not([class*='ui-']) {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100% !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 12px !important;
  border: none !important;
  background: transparent !important;
  padding: 16px 20px !important;
  color: var(--black) !important;
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
  text-align: left !important;
  text-decoration: none !important;
  transition: none !important;
  resize: none;
  background-color: var(--color-sandstone)!important;
  letter-spacing: 1.2px !important;
}

.boardriders-theme textarea:not([class*='ui-']) {
  min-height: 100px;
  max-height: 200px;
}

.boardriders-theme input:not([class*='ui-'], [type='button'], [type='submit']):hover,
.boardriders-theme input:not([class*='ui-'], [type='button'], [type='submit']):focus,
.boardriders-theme select:not([class*='ui-']):hover,
.boardriders-theme select:not([class*='ui-']):focus,
.boardriders-theme textarea:not([class*='ui-']):hover,
.boardriders-theme textarea:not([class*='ui-']):focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.boardriders-theme input:not([class*='ui-'])[disabled],
.boardriders-theme select:not([class*='ui-'])[disabled],
.boardriders-theme textarea:not([class*='ui-'])[disabled],
.boardriders-theme button:not([class*='ui-'])[disabled] {
  opacity: 50%;
  pointer-events: none;
}

.boardriders-theme input:not([class*='ui-']):-webkit-autofill,
.boardriders-theme input:not([class*='ui-']):-webkit-autofill:hover,
.boardriders-theme input:not([class*='ui-']):-webkit-autofill:focus,
.boardriders-theme input:not([class*='ui-']):-webkit-autofill:active,
.boardriders-theme textarea:not([class*='ui-']):-webkit-autofill,
.boardriders-theme textarea:not([class*='ui-']):-webkit-autofill:hover,
.boardriders-theme textarea:not([class*='ui-']):-webkit-autofill:focus,
.boardriders-theme textarea:not([class*='ui-']):-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
  -webkit-text-fill-color: var(--black);
}

.boardriders-theme ::placeholder {
  color: var(--black);
}

/* Select */

.boardriders-theme select:not([class*='ui-'], [multiple='multiple']) {
  padding-right: 45px !important;
  background: url(../img/icon-chevron-down.svg) 50% no-repeat !important;
  background-size: 12px !important;
  background-position: center right 20px !important;
  cursor: pointer;
}

.boardriders-theme .select2,
.boardriders-theme .select2 * {
  margin: 0 !important;
  padding: 0 !important;
}

.boardriders-theme .select2-container .select2-selection {
  background: transparent url(../img/icon-chevron-down.svg) 50% no-repeat !important;
  background-size: 12px !important;
  background-position: center right 20px !important;
  cursor: pointer;
}

.boardriders-theme .select2-container .select2-selection,
.boardriders-theme .select2-container .select2-selection * {
  line-height: 20px !important;
}

.boardriders-theme .select2-selection__rendered,
.boardriders-theme .select2-selection__placeholder {
  color: var(--black) !important;
}

.boardriders-theme .select2-dropdown {
  top: 0;
  border-width: 1px !important;
  border-color: var(--black) !important;
  border-radius: 0 !important;
  background: var(--white);
}

.boardriders-theme .select2-dropdown .select2-search,
.boardriders-theme .select2-dropdown .select2-results__option {
  padding: 5px;
}

.boardriders-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
  background: var(--black);
}

.boardriders-theme .select2-container .select2-selection__arrow {
  display: none;
}

/* Checkbox & Radio */

.boardriders-theme input[type='checkbox']:not([class*='ui-']),
.boardriders-theme input[type='radio']:not([class*='ui-']) {
  min-height: 25px !important;
  min-width: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
  border-radius: 0 !important;
  border: 1px solid var(--black) !important;
  padding: 0 !important;
  background: var(--white);
  box-shadow: none !important;
  margin: 0 10px 0 0 !important;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: none !important;
}

.boardriders-theme input[type='radio']:not([class*='ui-']) {
  border-radius: 25px !important;
}

.boardriders-theme input[type='checkbox']:not([class*='ui-']) + label,
.boardriders-theme input[type='radio']:not([class*='ui-']) + label {
  font-weight: 400 !important;
  font-size: 14px !important;
  font-family: var(--font-primary);
  letter-spacing: inherit;
  text-transform: none !important;
  margin: 0 !important;
}

.boardriders-theme input[type='checkbox']:not([class*='ui-']):checked {
  border-color: var(--black) !important;
  background: var(--black) url(../img/icon-checkbox.svg) 50% no-repeat !important;
  background-size: 16px !important;
}

.boardriders-theme input[type='radio']:not([class*='ui-']):checked {
  border: 6px solid var(--black) !important;
}

.boardriders-theme input[type='radio']:not([class*='ui-']):before,
.boardriders-theme input[type='checkbox']:not([class*='ui-']):before {
  display: none !important;
}

/*-----------------------------------------------------------------------
	Gravity Forms
-----------------------------------------------------------------------*/

.gform_wrapper .gform_body,
.gform_wrapper .gform_fields,
.gform_wrapper .gform_footer {
  margin: 0 !important;
}

.gform_wrapper .gform_fields {
  gap: 10px 20px !important;
}

.gform_wrapper .ginput_complex {
  gap: 0 !important;
}

.gform_wrapper .gform_required_legend,
.gform_wrapper .gfield .gfield_validation_message {
  display: none !important;
}
.gform_wrapper 
 .gform_footer.before {
    padding-top: 22px!important;
}
/* AJAX Spinner */

.gform_wrapper .gform_ajax_spinner,
.gform_wrapper .gform-loader {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 20px !important;
}

/* Labels */

.gform_wrapper .gfield_description,
.gform_wrapper .gfield_list_group_item:before,
.gform_wrapper .gfield_list .gform-field-label,
.gform_wrapper .gform-field-label--type-sub {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--dark-gray);
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.gform_wrapper .gform_title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Radio / Checkbox */

.gform_wrapper .gfield_checkbox .gchoice,
.gform_wrapper .gfield_radio .gchoice {
  margin: 10px 0 !important;
}

/* Date / Time */

.gform_wrapper .ginput_container_date,
.gform_wrapper .ginput_container_time {
  flex-basis: auto !important;
  max-width: 100% !important;
  flex: 1 !important;
}

.gform_wrapper .hour_minute_colon {
  line-height: 35px !important;
}

/* List */

.gform_wrapper .gfield_list .gfield_list_icons button {
  min-width: 16px !important;
  min-height: 16px !important;
  width: 16px !important;
  height: 16px !important;
}

/* File Upload */

.gform_wrapper .gform_drop_area {
  padding: 20px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px dashed rgba(var(--black-rgb), 25%) !important;
}

.gform_wrapper .gform_drop_area:before {
  display: none !important;
}

.gform_wrapper .gform_drop_area .gform_button_select_files {
  margin: auto !important;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview {
  font-size: 14px;
  display: flex !important;
  align-items: center;
  margin: 10px 0 0 !important;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview * {
  margin: 0 5px 0 0 !important;
  order: 9;
}

.gform_wrapper .gfield--type-fileupload .ginput_preview .gfield_fileupload_progressbar {
  display: none;
}

.gform_wrapper .gform_delete_file,
.gform_wrapper .gform_delete_file * {
  padding: 0 !important;
  margin: 0 0 1px !important;
  min-width: 0 !important;
  box-shadow: none !important;
  font-size: 16px !important;
  line-height: 18px !important;
  color: var(--black) !important;
  order: 1 !important;
}

.gform_wrapper .gform_delete_file:hover * {
  color: var(--red) !important;
}

.gform_wrapper .gfield--type-fileupload .gform_fileupload_rules {
  padding-top: inherit !important;
}

/* Price / Product */

.gform_wrapper .ginput_product_price_wrapper {
  width: 100%;
  margin: 0 0 10px;
}

/* Consent */

.gform_wrapper .ginput_container_consent {
  display: flex;
}

/* Progress Bar */

.gform_wrapper .gf_progressbar_wrapper {
  margin: 0 0 30px;
}

.gform_wrapper .gf_progressbar,
.gform_wrapper .gf_progressbar_wrapper,
.gform_wrapper .gf_progressbar_percentage {
  border-radius: 20px !important;
}

.gform_wrapper .gf_progressbar {
  background: rgba(var(--black-rgb), 5%) !important;
}

.gform_wrapper .gf_progressbar_percentage {
  height: 16px !important;
  background: rgba(var(--black-rgb), 15%) !important;
}

.gform_wrapper .gf_progressbar_title,
.gform_wrapper .gf_progressbar_percentage span {
  margin: 0 !important;
}

.gform_wrapper .gf_progressbar_title {
  font-size: 12px !important;
  font-weight: 400 !important;
}

.gform_wrapper .gf_progressbar_percentage span {
  padding: 0 5px !important;
  color: var(--black) !important;
  font-size: 10px !important;
  line-height: 15px !important;
  text-transform: uppercase !important;
}

/* Page Footer */

.gform_wrapper .gform_page_footer {
  display: flex;
  gap: 15px;
  align-items: center;
}

.gform_wrapper .gform_page_footer .button {
  margin: 0 !important;
}

.gform_wrapper .gform_page_footer .gform_previous_button:not(:hover, :focus),
.gform_wrapper .gform_page_footer .gform_next_button:not(:hover, :focus) {
  color: var(--black) !important;
}

/* Validation */

.gform_wrapper .gform_validation_errors {
  outline: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  margin-bottom: 20px !important;
  border: 1px solid var(--red) !important;
}

.gform_wrapper .gform_validation_errors * {
  color: var(--red) !important;
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0 !important;
}

.gform_wrapper .gfield_validation_message {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

/*-----------------------------------------------------------------------
	Filter Form
-----------------------------------------------------------------------*/

.boardriders-theme form.filter-form {
  width: fit-content !important;
  max-width: 100%;
}

.boardriders-theme *[id*='response'] {
  transition: var(--transition);
}

.boardriders-theme .filter-loading {
  opacity: 50%;
}

/*-----------------------------------------------------------------------
	Buttons
-----------------------------------------------------------------------*/

.boardriders-theme .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.boardriders-theme .button svg {
  width: 14px;
  height: 14px;
  color: var(--black);
}

/* Default Styles */

.boardriders-theme button,
.boardriders-theme .button,
.boardriders-theme a.added_to_cart,
.boardriders-theme .form-submit *[type='submit'] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  outline: 0;
  width: auto;
  height: auto;
  min-width: 193px;
  min-height: 0 !important;
  padding: 17px !important;
  font-size: 18px !important;
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 22px !important;
  text-align: center;
  text-decoration: none !important;
  background:transparent;
  border-radius: 0 !important;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 1.33px;
  color: var(--white);
}
.boardriders-theme .button:hover{
  color: var(--white);
}
.boardriders-theme button:hover svg path,
.boardriders-theme .button:hover svg path,
.boardriders-theme a.added_to_cart:hover svg path{
  fill: var(--burnt-orange);
}

.boardriders-theme .button.button-orange svg path{
  fill: var(--burnt-orange);
}
.boardriders-theme .button.button-orange:hover svg path{
  fill: var(--dark-gray);
}
.boardriders-theme .button.button-orange:hover{
  color: var(--white);
}

.boardriders-theme .button.button-transparent{
  background-image: none;
  min-width: 240px;
}
.boardriders-theme .read-more {
  background-image: none;
  color: #000;
  padding: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  text-decoration: underline !important;
  gap: 4px;
  border: none;
  font-size: 16px !important;
  padding: 0px !important;
}
.boardriders-theme .read-more svg {
  position: relative;
  width: 14px;
  height: 14px;
}
.boardriders-theme .read-more:hover{
  color: var(--burnt-orange);
}
.boardriders-theme .read-less-btn.read-more svg {
  transform: rotate(180deg);
}
.boardriders-theme .button svg{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}


.boardriders-theme .gform_footer [type='submit']{
  background-image: url('../img/btn-bg-shape.svg')!important;
  margin: 0px !important;
  background-size: contain;
  background-repeat: no-repeat;
}
.boardriders-theme .gform_footer [type='submit']:hover{
  background-image: url('../img/btn-orange-bgshape.svg')!important;
}
/* Additional Styles */

.boardriders-theme .button.button-white {
  border-color: var(--white);
}

.boardriders-theme .button.button-white,
.boardriders-theme .button.button-white svg {
  color: var(--white);
}

/* Hover/Focus */

.boardriders-theme button:hover,
.boardriders-theme button:focus,
.boardriders-theme .button:hover,
.boardriders-theme .button:focus,
.boardriders-theme a.added_to_cart:hover,
.boardriders-theme a.added_to_cart:focus,
.boardriders-theme .form-submit *[type='submit']:hover,
.boardriders-theme .form-submit *[type='submit']:focus {
  outline: 0;
  box-shadow: none;
}

/* Responsive */

@media screen and (max-width: 550px) {
  .boardriders-theme .button-group {
    width: 100%;
  }
}

/*-----------------------------------------------------------------------
  Site Notice
-----------------------------------------------------------------------*/

.site-notice {
  padding: 10px 0;
  background: var(--black);
  color: var(--white);
}

/*-----------------------------------------------------------------------
  Site Logo
-----------------------------------------------------------------------*/

.site-logo,
.site-logo img,
.site-logo svg {
  display: block;
  max-width: 129px;
  max-height: 129px;
  width: auto;
  height: auto;
  z-index: 20000;
  transition: var(--transition);
}

@media screen and (max-width: 991px) {
  .site-logo,
  .site-logo img,
  .site-logo svg {
    max-width: 100px;
    max-height: 100px;
  }
  .site-header .site-logo img,.site-header .site-logo svg{
    padding: 10px;
    
  }
  .site-header .site-logo{
    background-color: rgba(var(--white-rgb), 70%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: absolute;
    top: -29px;
    z-index: 1;
    left: 0;
  }
}

/*-----------------------------------------------------------------------
  Site Header
-----------------------------------------------------------------------*/

.site-header {
  top: 0;
  width: 100%;
  display: block;
  position: fixed;
  padding: 22px 0px;
  z-index: 2000000002;
  transition: var(--transition);
}

body.boardriders-theme.admin-bar .site-header {
  top: var(--admin-height);
}
.site-header > .grid-col-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
.fixed-header .site-header{
  background-color: var(--white);
  box-shadow: var(--box-shadow);
}
.fixed-header .site-header .main-menu ul li a{
  color: var(--dark-gray);
}
.fixed-header .site-header .site-logo,.fixed-header .site-logo img,.fixed-header .site-logo svg{
  max-width: 100px;;
}
.fixed-header .site-header{
  padding: 15px 0px;
}

.site-header .header-left {
  width: 15%;
}
.site-header .header-right {
  width: 85%;
}

header.site-header.header-spacer{
  position: sticky;
  top: 0;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  padding: 15px 0px;
}
header.site-header.header-spacer .site-logo, header.site-header.header-spacer .site-logo img, header.site-header.header-spacer .site-logo svg {
  max-width: 100px;
}
header.site-header.header-spacer .main-menu ul li a {
  color: var(--dark-gray);
}
/* Main Menu */

.boardriders-theme .main-menu ul li,
.boardriders-theme .main-menu ul li a {
  position: relative;
}
.boardriders-theme .main-menu ul li a:after{
  content: "";
  position: absolute;
  width: 0;
  height: 11px;
  bottom: 0;
  background-image: url('../img/underline-vector.svg');
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transition: width 0.5s ease-in-out;
}
.boardriders-theme .main-menu ul li a:hover:after{
  width: 100%;
}
.boardriders-theme .main-menu ul > li.current-menu-item > a:after,
.boardriders-theme .main-menu ul > li.current-menu-parent > a:after{
    width: 100%;
}
.boardriders-theme .main-menu ul li a {
  padding: 10px 12px;
  display: block;
  transition: var(--transition);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

.boardriders-theme .main-menu ul > li.current-menu-item > a,
.boardriders-theme .main-menu ul > li.current-menu-parent > a,
.boardriders-theme .main-menu ul li a:hover,
.boardriders-theme .main-menu ul li a:focus {
  text-decoration: none;
}

.site-header ul:not(.sub-menu) {
  display: flex;
  gap: 10px;
}

/* Sub Menu */

.boardriders-theme .site-header .trigger-sub-menu svg {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}

.boardriders-theme .main-menu ul.sub-menu,
.boardriders-theme .main-menu ul.sub-menu li,
.boardriders-theme .main-menu ul.sub-menu li a {
  display: block;
}

.site-header ul.sub-menu {
  padding: 12px 10px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.boardriders-theme .main-menu ul.sub-menu li a {
  padding: 5px;
}

.site-header ul li .sub-menu-wrap {
  width: 160px;
  opacity: 0;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  right: 50%;
  margin: 0;
  transform: translate(-50%);
  padding: 15px 0 0 0;
  pointer-events: none;
  z-index: 20000;
}

.site-header ul ul .sub-menu-wrap {
  padding: 0 0 0 8px;
  top: 0;
  right: auto;
  left: 100%;
  transform: translate(0);
}

.site-header ul li:hover > .sub-menu-wrap {
  opacity: 1;
  pointer-events: all;
}

/* Icon Menu */

.site-header .header-right {
  gap: 36px;
}

.site-header *[class*='icon-'],
.site-header *[class*='icon-'] svg {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--black);
  cursor: pointer;
}

.site-header .icon-cart {
  position: relative;
  width: 25px;
}

.site-header .icon-cart .cart-count {
  display: block;
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 8px;
  width: 14px;
  line-height: 14px;
  border-radius: 14px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

/* Hamburger */

.site-header .icon-hamburger {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
  display: block;
  position: absolute;
  left: 0;
  width: 48px;
  height: 5px;
  transition: background 0s 0.3s;
}

.site-header .icon-hamburger span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../img/icon-hamburger-Vector.svg');
  background-repeat: no-repeat;
}

.site-header .icon-hamburger span:before {
  content: '';
  top: -10px;
  transition-property: top, transform;
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
  background-image: url('../img/icon-hamburger-Vector.svg');
  background-repeat: no-repeat;
}

.site-header .icon-hamburger span:after {
  content: '';
  bottom: -10px;
  transition-property: bottom, transform;
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
  background-image: url('../img/icon-hamburger-Vector.svg');
  background-repeat: no-repeat;
}

body.boardriders-theme.menu-active .site-header .icon-hamburger span {
  background: none;
}

body.boardriders-theme.menu-active .site-header .icon-hamburger span:before {
  top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.3s;
}

body.boardriders-theme.menu-active .site-header .icon-hamburger span:after {
  bottom: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.3s;
}

/* Responsive Menu */

.site-responsive-menu {
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  top: 0;
  overflow-y: auto;
  z-index: 111;
  background: rgba(var(--soft-gray-rbg), 95%);
  transform: translate(0px, 0px);
  padding-top: 150px;
  padding-bottom: 100px;
  transform: translate(-100%,0%);
  transition: var(--transition);
}

body.admin-bar .site-responsive-menu {
  top: calc(var(--notice-height) + var(--admin-height));
}

.site-responsive-menu .container-xl {
  width: 100%;
  transition: var(--transition);
}

/* Responsive Menu: Menu */

.site-responsive-menu .main-menu ul {
  display: block;
}

.site-responsive-menu .main-menu ul li a,
.site-responsive-menu .button-group,
.site-responsive-menu .menu-search {
  padding: 20px;
}

.site-responsive-menu .main-menu > ul > li > a {
  font-family: var(--font-primary);
  font-size: 24px;
}

.site-responsive-menu .main-menu ul li .trigger-sub-menu {
  width: 20px;
  float: right;
}

/* Responsive Menu: Sub Menu */

.site-responsive-menu .main-menu ul.sub-menu {
  padding-bottom: 10px;
}

.site-responsive-menu .main-menu ul.sub-menu li a {
  font-size: 18px;
  padding: 0 20px 5px;
}

.site-responsive-menu ul li.menu-item-has-children ul.sub-menu,
.site-responsive-menu ul li.menu-item-has-children .sub-menu-wrap {
  display: none;
}

.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > a > .trigger-sub-menu svg {
  transform: rotate(135deg);
}

.site-responsive-menu ul.sub-menu,
.site-responsive-menu ul.sub-menu li,
.site-responsive-menu ul.sub-menu li a,
.site-responsive-menu ul li.menu-item-has-children.sub-menu-active > .sub-menu-wrap {
  display: block !important;
}

/* Responsive */

@media screen and (min-width: 920px) {
  .site-header .trigger-menu,
  .site-responsive-menu {
    display: none !important;
  }
}

@media screen and (max-width: 1400px) {
  .site-header ul:not(.sub-menu){
    gap: 0px;
  }
}

@media screen and (max-width: 1300px) {
  .boardriders-theme .main-menu ul li a{
    font-size: 14px;
    padding: 10px;
  }
  .site-header .header-right {
    gap: 10px;
  }
  .site-header .header-right .button-group .button{
    min-width: 163px;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-right {
    width: 89%;
  } 
  .site-header .header-left {
    width: 11%;
  }
  .boardriders-theme .main-menu ul li a {
    font-size: 12px;
    padding: 10px 3px;
  }
  .site-header .header-right .button-group .button {
    min-width: 150px;
  }
  .site-header ul:not(.sub-menu) {
        gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  .site-header > .grid-col-3 {
    grid-template-columns: auto 1fr !important;
  }

  .site-header .main-menu,
  .site-header .header-right .button,
  .site-header .icon-search {
    display: none !important;
  }

  .site-header .trigger-menu {
    display: flex !important;
  }
  .fixed-header .site-header{
    padding: 10px 0px;
  }
  body.menu-active .site-responsive-menu {
    transform: translate(0%);
  }
  body.menu-active{
    overflow: hidden;
  }
  body.menu-active .site-responsive-menu .container-xl {
    opacity: 1;
  }
  header.site-header {
    position: sticky;
    padding: 10px 0px;
    top: 0;
    background-color: var(--white);
  }
  .site-header .header-left{
    position: relative;
  }
  .boardriders-theme .main-menu ul li a{
    padding: 10px 3px;
    color: var(--black);
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    display: inline-block;
  }
  .boardriders-theme .main-menu ul li{
    margin-bottom: 10px;
  }
  .site-responsive-menu .container-xl{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .site-responsive-menu .button-group{
    padding: 0px;
    margin-top: 30px;
  }
  body.boardriders-theme.admin-bar.fixed-header .site-header{
    top: var(--admin-height);
    padding: 10px 0px;
  }
  body.menu-active .site-header {
    background-color: transparent;
  }
}
@media (max-width:767px) {
  header.site-header{
    padding: 5px 0px!important;
  }
  body.boardriders-theme.admin-bar.fixed-header .site-header{
    top: var(--admin-height);
    padding: 5px 0px!important;
  }
}

/*-----------------------------------------------------------------------
	Site Search
-----------------------------------------------------------------------*/

.site-search {
  background: var(--white);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  top: calc(var(--header-height) + var(--notice-height));
  border-bottom: 1px solid rgba(var(--black-rgb), 15%);
}

body.boardriders-theme.admin-bar .site-search {
  top: calc(var(--header-height) + var(--notice-height) + var(--admin-height));
}

.site-search *[class*='container-'] {
  padding: 20px 0;
}

.site-search .close-search {
  margin-left: 15px;
  cursor: pointer;
}

.site-search .close-search,
.site-search .close-search svg {
  display: block;
  width: 14px;
  height: 14px;
}

.boardriders-theme form.search-form {
  display: flex;
  gap: 15px;
}

.boardriders-theme form.search-form,
.boardriders-theme form.search-form > input {
  flex: 1;
}

/* Responsive */

@media screen and (max-width: 920px) {
  .site-search {
    display: none !important;
  }
}

/*-----------------------------------------------------------------------
	Site Footer
-----------------------------------------------------------------------*/

.site-footer {
  background-color: var(--dark-gray);
  padding: 70px 0px 60px;
  position: relative;
}
.site-footer:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background-image: url('../img/footer-bg.svg');
  top: -28px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-footer .site-logo svg,.site-footer .site-logo {
  max-width: 207px;
  max-height: 207px;
}

.site-footer .footer-menu h5{
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer ul li a,.site-footer ul li{
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
}
.site-footer ul li address{
  font-style: normal;
  max-width: 200px;
}
.site-footer .footer-logo {
  width: 30%;
}
.site-footer .menu-wrapper {
  width: 70%;
}
.site-footer .footer-copyright {
  border-top: 1px solid var(--white);
  margin-top: 30px;
}

.site-footer .footer-copyright p {
  color:var(--white);
  font-weight: 400;
  margin: 0px;
  padding-top: 16px;
  font-size: 14px;
  line-height: 27px;
}

.site-footer .footer-copyright p a {
  text-decoration: underline;
  color:var(--white);
  font-size: 14px;
  line-height: 27px;
}

.site-footer .footer-copyright p a:hover{
  color: var(--burnt-orange);
}
/* Footer Menu */

.site-footer ul,
.site-footer ul li,
.site-footer ul li * {
  display: block;
}
.site-footer ul.sub-menu {
  display: none;
}

/* Responsive */

@media (max-width:1199px){
  .site-footer .site-logo svg, .site-footer .site-logo {
    max-width: 165px;
    max-height: 165px;
  }
}

@media screen and (max-width: 991px) {
  .site-footer a.site-logo {
    margin: auto;
  }
  /* .site-footer .footer-columns{
    align-items: flex-start;
  } */
  .site-footer .menu-wrapper.grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer .menu-wrapper{
    gap: 20px;
    padding-left: 20px;
  }
  .site-footer{
    padding: 40px 0px 20px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 60px 0px 20px;
  }
  .site-footer .footer-logo { 
    width: 100%;
  }
  .site-footer .menu-wrapper.grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer .menu-wrapper{
    gap: 30px;
    padding-left: 0px;
    width: 100%;
    text-align: center;
  }
  .site-footer .footer-columns{
    gap: 32px;
  }
  .site-footer ul li address{
    margin: auto;
  }
  .site-footer .footer-menu ul.social-icons{
    justify-content: center;
  }
  .site-footer .footer-copyright{
    margin-top: 60px;
  }
  .site-footer .footer-copyright p{
    padding-top: 11px;
  }
  
}
@media (max-width:576px) {
  .site-footer .menu-wrapper.grid-col-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*-----------------------------------------------------------------------
	Site Breadcrumbs
-----------------------------------------------------------------------*/

.site-breadcrumbs .flex-layout {
  padding: 20px 0;
  gap: 10px;
}

.site-breadcrumbs a {
  transition: none;
}

.site-breadcrumbs a:hover,
.site-breadcrumbs a:focus {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------
	Media
-----------------------------------------------------------------------*/

.boardriders-theme img {
  max-width: 100%;
  height: auto;
  display: block;
}

.boardriders-theme svg,.boardriders-theme path {
  transition: var(--transition);
}

/* Background Elements */

.boardriders-theme .background-image,
.boardriders-theme .background-video,
.boardriders-theme .background-overlay:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.boardriders-theme .background-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.boardriders-theme .background-video,
.boardriders-theme .background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boardriders-theme .background-overlay:before {
  content: '';
  background: rgba(0, 0, 0, 30%);
}

/* Video Embed */

.boardriders-theme .responsive-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.boardriders-theme .responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-----------------------------------------------------------------------
	Swiper
-----------------------------------------------------------------------*/

.boardriders-theme .swiper-carousel-wrap {
  min-width: 100%;
  overflow: hidden;
}

.boardriders-theme .swiper .swiper-slide {
  width: auto;
  height: auto;
}

/* Pagination */

.boardriders-theme .swiper .swiper-pagination {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.boardriders-theme .swiper .swiper-pagination span.swiper-pagination-bullet-active {
  background:#322B29;
  width: 100px;
}

.boardriders-theme .swiper .swiper-pagination span {
  background: rgba(var(--black-rgb), 25%);
  width: 24px;
  height: 6px;
  border-radius: 6px;
  transition: var(--transition);
}

/* Navigation */

.boardriders-theme .swiper .swiper-button-prev:after,
.boardriders-theme .swiper .swiper-button-next:after {
  color: var(--white);
  font-size: 20px;
}

/* Responsive */

@media screen and (max-width: 991px) {
  .boardriders-theme .swiper .swiper-pagination {
    margin-top: 15px;
  }
  .boardriders-theme .swiper .swiper-pagination span.swiper-pagination-bullet-active{
    width: 70px;
  }
}

/*-----------------------------------------------------------------------
	Tables
-----------------------------------------------------------------------*/

.boardriders-theme table {
  border-spacing: 14px 8px;
  border-collapse: inherit;
  width: 100%;
}

.boardriders-theme table,
.boardriders-theme table tr,
.boardriders-theme table th,
.boardriders-theme table td {
  border-color: rgba(var(--black-rgb), 15%);
}

.boardriders-theme table th,
.boardriders-theme table td {
  padding: 10px;
  text-align: left;
  border: 1px solid rgba(var(--black-rgb), 15%);
}

.boardriders-theme table th {
  width: 50%;
  border-radius: 12px;
  background: rgba(var(--deepCoral-rbg), 20%);
  padding: 22px 21px;
  text-align: center;
  font-family: var(--font-secondary);
  letter-spacing: 1.75px;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 33px;
  border: none;
}
.boardriders-theme table td{
  border-radius: 12px;
background: rgba(var(--soft-gray-rbg), 30%);
padding: 8px 20px;
text-align: center;
border: none;
}
.boardriders-theme table th,
.boardriders-theme table th * {
  font-weight: 600;
}

.boardriders-theme table .button {
  width: fit-content !important;
  margin: 5px 5px 5px 0 !important;
}

/* responsive */

@media (max-width:767px) {
  .boardriders-theme table th{
    padding: 10px;
    font-size: 22px;
    line-height: 30px;
  }
  .boardriders-theme table td{
    padding: 8px 12px;
  }
  .boardriders-theme table{
    border-spacing: 5px;
  }
}

/*-----------------------------------------------------------------------
	Social Icons
-----------------------------------------------------------------------*/

.boardriders-theme .social-icons {
  gap: 15px;
}

.boardriders-theme .social-icons a,
.boardriders-theme .social-icons svg {
  margin: 0;
}

.boardriders-theme .social-icons svg {
  width: 16px;
  height: 16px;
  color: var(--black);
}

.boardriders-theme ul.social-icons li a {
  background-color: #fff;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.boardriders-theme ul.social-icons li a:hover{
  background-color: transparent;
  border: 1px solid var(--white);
}
.boardriders-theme ul.social-icons li a:hover svg path{
  fill: var(--white);
}
.boardriders-theme ul.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/*-----------------------------------------------------------------------
	Clipboard Copy
-----------------------------------------------------------------------*/

.boardriders-theme .copy-to-clipboard {
  position: relative;
  cursor: pointer;
}

.boardriders-theme .copy-to-clipboard .tooltip {
  background: var(--black);
  padding: 5px 8px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  white-space: nowrap;
  color: var(--white);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -140%);
  transition: 0.3s ease all;
}

.boardriders-theme .copy-to-clipboard .tooltip:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--black) transparent transparent transparent;
}

.boardriders-theme .copy-to-clipboard:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/*-----------------------------------------------------------------------
	Popups
-----------------------------------------------------------------------*/

.boardriders-theme .trigger-popup,
.boardriders-theme .close-popup {
  cursor: pointer;
  z-index: 20000;
}

.boardriders-theme .popup-wrap {
  display: none;
}

.boardriders-theme .popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--black-rgb), 80%);
  z-index: 20000000000;
}

/* Containers */

.boardriders-theme .popup-overlay > *[class*='container'] {
  position: relative;
  overflow-y: auto;
  max-height: 80vh;
  padding: 40px;
  background: var(--white);
}

/* Close Button */

.boardriders-theme .popup-overlay .close-popup:not(.button) {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
}

.boardriders-theme .popup-overlay .close-popup svg {
  width: 16px;
  height: 16px;
}

/*-----------------------------------------------------------------------
  Pagination
-----------------------------------------------------------------------*/

.boardriders-theme .archive-pagination {
  margin: auto;
  margin-top: 40px;
  width: fit-content;
}

.boardriders-theme .archive-pagination a {
  margin: 0 10px;
  font-size: 12px;
  text-align: center;
}

.boardriders-theme .archive-pagination a:hover,
.boardriders-theme .archive-pagination a.current {
  text-decoration: underline;
}

.boardriders-theme .post-pagination {
  border-top: 1px solid rgba(var(--black-rgb), 15%);
}

.boardriders-theme .post-pagination .button,
.boardriders-theme .post-pagination .button:hover,
.boardriders-theme .post-pagination .button:focus {
  padding: 0 !important;
  min-width: 0 !important;
  border: 0 !important;
}

.boardriders-theme .post-pagination .pagination-next .button svg {
  transform: rotate(-180deg);
}

/*-----------------------------------------------------------------------
	Item: Post
-----------------------------------------------------------------------*/

.boardriders-theme .item-post {
  display: block;
  transition: var(--transition);
  text-decoration: none;
}

.boardriders-theme .item-post .item-image {
  background: rgba(var(--black-rgb), 15%);
  aspect-ratio: 5 / 3;
}

.boardriders-theme .item-post .item-content {
  padding: 20px 0;
}

.boardriders-theme .item-post .item-content > *:not(:last-child, .button, .icon-arrow) {
  margin: 0 0 10px !important;
}

/*-----------------------------------------------------------------------
	Item: Accordion
-----------------------------------------------------------------------*/

.boardriders-theme .item-accordion {
  margin: 0;
  height: auto;
  display: block;
  padding: 20px;
  border-top: 1px solid rgba(var(--black-rgb), 15%);
}

.boardriders-theme .item-accordion:first-child {
  border-top: 0;
}

.boardriders-theme .item-accordion .trigger-accordion {
  flex: 1;
  position: relative;
  flex-wrap: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.boardriders-theme .item-accordion .trigger-accordion svg {
  width: 16px;
  height: 30px;
  min-width: 16px;
  min-height: 30px;
  margin-left: 10px;
}

.boardriders-theme .item-accordion.active .trigger-accordion svg {
  transform: rotate(135deg);
}

.boardriders-theme .item-accordion .wysiwyg-content {
  display: none;
}

.boardriders-theme .item-accordion .wysiwyg-content > :first-child {
  margin-top: 10px !important;
}

/*-----------------------------------------------------------------------
	Item: Separator
-----------------------------------------------------------------------*/

.boardriders-theme .item-separator {
  margin: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--block-background-colour);
}

.block-editor .block-separator {
  padding: 5px 0;
}

/*-----------------------------------------------------------------------
	Block: Image Gallery
-----------------------------------------------------------------------*/

.block-image-gallery .container-xl {
  padding: 0px;
}
.block-image-gallery .swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 2/1.95;
  object-fit: cover;
}

/*-----------------------------------------------------------------------
	Block: Hero Banner
-----------------------------------------------------------------------*/
.block-hero-banner{
  height: 100vh;
  -webkit-mask-image: url('../img/banner-mask.svg');
  mask-image: url('../img/banner-mask.svg');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: bottom;
  z-index: 1;
  mask-size: cover;
  margin-bottom: -20px;
}
.block-hero-banner .block-setting-padding{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-hero-banner .background-video-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.block-hero-banner .background-video-image video,.block-hero-banner .background-video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.block-hero-banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: 
  linear-gradient(
    4deg, 
    rgba(var(--black-rgb), 0%) 76.08%, 
    rgba(var(--black-rgb), 50%) 108.6%
  ),
  linear-gradient(
    270deg, 
    rgba(var(--black-rgb), 0%) 35.86%, 
    rgba(var(--black-rgb), 80%) 82.4%
  );
}
.block-hero-banner .banner-content .wysiwyg-content img {
  margin: auto!important;
  max-width: 316px!important;
  margin-bottom: 18px!important;
}
.block-hero-banner .banner-content h1 {
  color: var(--white);
  max-width: 580px;
  text-align: center;
  margin: auto;
  text-transform: uppercase;
}
.boardriders-theme .title {
  margin-bottom: 60px;
  
}

/* responsive */

@media(max-width:1400px){
  .block-hero-banner .banner-content .wysiwyg-content img{
    max-width: 200px !important;
  }
}
@media(max-width:767px){
  .block-hero-banner .banner-content h1{
    font-size: 25px;
    line-height: 25px;
    max-width: 238px;
    margin-left: auto;
    margin-right: auto;
  }
  .block-hero-banner .banner-content .wysiwyg-content img {
    max-width: 164px !important;
  }
  .boardriders-theme .title {
    margin-bottom: 40px;
  }
  .block-hero-banner{
    height: calc(100vh - 130px);
  }
}
/*-----------------------------------------------------------------------
	Block: Split Content
-----------------------------------------------------------------------*/

.block-split-content .item-column.column-image img {
  aspect-ratio: 2 / 1.16;
  width: 100%;
  object-fit: cover;
}
.block-split-content .item-column.column-image img.portrait-img {
  width: auto;
  aspect-ratio: auto;
  max-width: 360px;
}
.block-split-content .item-column.column-image:nth-child(2) img.portrait-img{
  margin-left: auto;
}
.block-split-content .column-content.bg-image{
  position: relative;
}
.block-split-content .column-content.bg-image::after{
  content: "";
  position: absolute;
  width: 399px;
  height: 360px;
  background-image: url('../img/split-bg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  top: -21px;
  left: 107px;
}

/* responsive */

@media (max-width:767px) {
  .block-split-content .column-content.bg-image::after{
    width: 211px;
    height: 190px;
    top: -12px;
    left: 50%;
    transform: translate(-50%, 0px);
  }
  .block-split-content .wrapper.grid-col-2{
    grid-template-columns: repeat(1, 1fr);
  }
  .block-split-content .column-content {
    order: 9;
  }

  .block-split-content .column-image {
    order: 1;
  }
  .block-split-content .item-column.column-image img.portrait-img{
    margin: auto;
  }
}
@media (max-width:576px) {
  .block-split-content .item-column.column-image img.portrait-img{
    max-width: 100%;
  }
}

/*-----------------------------------------------------------------------
	Block: Cta
-----------------------------------------------------------------------*/

.cta-content {
  max-width: 723px;
}
.block-cta .full-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.block-cta .full-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
  270deg, 
  rgba(var(--black-rgb), 0%) 47.5%, 
  rgba(var(--black-rgb), 100%) 81.52%
);
}
.block-cta .cta-content p{
  font-size: 20px !important;
  line-height: 26px;
}

.block-cta .full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-cta .button-group {
  margin-top: 28px;
}

/* responsive */

@media (max-width:767px) {
  .block-cta .full-image::after{
    background: linear-gradient(
      0deg, 
      rgba(var(--black-rgb), 0%) 63.23%, 
      rgba(var(--black-rgb), 100%) 101.37%
    );
  }
  .cta-content{
    max-width: 320px;
    margin: auto;
  }
  .block-cta,.block-cta .block-setting-padding {
    min-height: 979px;
  }
}

/*-----------------------------------------------------------------------
	Block: Inner Baner
-----------------------------------------------------------------------*/

.block-inner-banner{
  position: relative;
  -webkit-mask-image: url('../img/inner-banner-mask.svg');
  mask-image: url('../img/inner-banner-mask.svg');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: bottom;
  margin-bottom: -20px;
  z-index: 1;
}
.block-inner-banner:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg,rgba(var(--black-rgb), 40%) 0%,rgba(var(--black-rgb), 40%) 100%);
}
.block-inner-banner .background-video-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.block-inner-banner .background-video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-inner-banner .banner-content h1{
  color: var(--white);
}
.block-inner-banner .banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}


/*-----------------------------------------------------------------------
	Block: Member
-----------------------------------------------------------------------*/

.block-member .members_block {
  border-radius: 12px;
  background: rgba(var(--soft-gray-rbg), 30%);
  padding: 10px 30px;
}
.block-member .wrapper {
  gap: 10px 28px;
}
.block-member .members_block .img {
  width: 77px;
}
.block-member .members_block .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 /1;
}
.block-member .members_block h4 {
  width: calc(100% - 77px);
  padding-left: 45px;
}
.block-member .members_block h4 span{
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1.26px;
}

/* responsive */

@media (max-width:991px) {
  .block-member .members_block{
    padding: 10px 20px;
  }
  .block-member .members_block h4{
    line-height: normal;
    font-size: 20px;
    padding-left: 15px;
  }
  .block-member .members_block h4 span{
    font-size: 14px;
    line-height: 20px;
  }
  .block-member .wrapper {
    gap: 10px;
  }
}

@media (max-width:767px) {
  .block-member .wrapper.grid-col-2{
    grid-template-columns: repeat(1, 1fr);
  }
}

/*-----------------------------------------------------------------------
	Block: Timeline
-----------------------------------------------------------------------*/

.block-timeline .timeline {
  width: 45%;
  padding-right: 100px;
  text-align: right;
}
.block-timeline .timeline-content {
  width: 55%;
  padding-left: 30px;
}
.block-timeline .swiper-free-mode > .swiper-wrapper {
  transition-timing-function: linear !important;
}
.block-timeline .timeline h2 {
  font-size: 30px;
  line-height: 35px; 
  letter-spacing: 3.5px;
  text-transform: capitalize;
}
.block-timeline .timeline h2 span {
  font-family: var(--font-primary);
  font-size: 16px;
}
.block-timeline .item {
  margin-bottom: 30px;
}
.block-timeline .slider-wrapper {
  max-height: 700px;
  overflow: auto;
}
.block-timeline .slider-wrapper::-webkit-scrollbar {
  display: none;
}
.block-timeline .slider-main{
  position:relative;
  max-width: 590px;
  margin: auto;
 
}
.block-timeline .timeline-main:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(90deg, #E9E9E9 0%, var(--black) 100%);
  top: 0px;
  left: 331px;
  z-index: -1;
}
.block-timeline span.c-timeline {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--burnt-orange);
  left: 283px;
  border-radius: 50%;
  top: 10px;
  background-color: var(--white);
  transition: var(--transition);
}

.block-timeline .timeline-wrapper {
  position: relative;
} 
.block-timeline .timeline-main{
  overflow: hidden;
  max-width: 680px;
  margin: auto;
  padding-top: 50px;
}
.block-timeline .timeline-slider {
  width: 100%;
  /* height: 680px; */
  position: relative;
}
.block-timeline .swiper-wrapper {
  display: flex;
  flex-direction: column;
}
.block-timeline span.c-timeline:after {
  width: 34px;
  height: 34px;
  content: "";
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -10px;
  border-radius: 50%;
  background-color: transparent;
  transition: var(--transition);
}
.block-timeline .swiper-slide-active span.c-timeline:after{
  background-color: #f6dbd3;
}
.block-timeline .swiper-slide-active span.c-timeline{
  background-color: var(--burnt-orange);
}
/* .block-timeline .timeline-slider:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 207px;
  bottom: -34px;
  left: 0;
  display: block;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 1) 100%);
} */
.block-timeline .timeline-slider:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 107px;
  top: -54px;
  left: 0;
  display: block;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 1) 100%);
  transform: rotate(180deg);
}
.block-timeline .timeline-content p{
  margin-top: 10px !important;
}

/* responsive */

@media(max-width:767px){
  .block-timeline .timeline-content {
    padding-left: 50px;
  }
  .block-timeline span.c-timeline {
    left: 165.5px;
  }
  .block-timeline .timeline-main:after{
    left: 307px;
  }
  .block-timeline .timeline{
    width: 200px;
    text-align: left;
    padding-right: 50px;
  }
  .block-timeline .timeline-content {
   width: calc(100% - 200px);
  }
  .block-timeline .timeline-main:after {
    left: 194px;
  }
}
@media(max-width:576px){
  .block-timeline .timeline {
    width: 100%;
    margin-bottom: 15px;
  }
  .block-timeline .timeline-content {
    width: 100%;
    padding-left: 0px;
  }
  .block-timeline .timeline-wrapper{
    padding-left: 50px;
  }
  .block-timeline span.c-timeline {
    left: 7.5px;
    top: 15px;
  }
  .block-timeline .timeline-main:after {
    left: 36px;
  }
}
/*-----------------------------------------------------------------------
	Block: champions
-----------------------------------------------------------------------*/

.block-champions .wrapper{
  max-width:1060px;  
  margin:auto;
  gap: 0px;
}
.block-champions td{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.block-champions .img {
  width: 44px;
}
.block-champions th h4:first-child{
  width: 65%;
} 
.block-champions th h4:nth-child(2){
  width: 35%;
} 
.block-champions  .column.img-column p {
  width: calc(100% - 44px);
  padding-left: 20px;
  text-align: left;
  text-transform: uppercase;
}
.block-champions  .column p{
  color: var(--black);
  margin: 0px;
  text-align: center;
}
.block-champions  .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.block-champions .column.img-column {
  width: 65%;
}
.block-champions .column.year-column {
  width: 35%;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 20px;
}

/* responsive */

@media (max-width:991px) {
  .block-champions .wrapper{
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width:767px) {
  .block-champions .column p{
    font-size: 14px;
    line-height: normal;
  }
  .block-champions .column.year-column p {
    margin: 5px 0px;
  }
}

/*-----------------------------------------------------------------------
	Block: prices
-----------------------------------------------------------------------*/

.block-prices .wrapper .table-block{
  margin: auto;
}
.block-prices .wrapper {
  margin-top: 60px;
}
.block-prices table td{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 37px;
  gap: 10px;
  text-align: left;
}
.block-prices table td p{
  margin: 0px;
  text-align: right;
}
.block-prices table td h4{
  width: 50%;
}
.block-prices table td p{
  width: 50%;
}

/* responsive */

@media(max-width:767px){
  .block-prices table td{
    text-align: left;
    padding: 10px 18px;
  }
  .block-prices table td p{
    font-size: 16px;
    line-height: 20px;
  }
  .block-prices table td h4{
    font-size: 18px;
    line-height: 24px;
  }
  .block-prices .wrapper {
    margin-top: 40px;
  }
}

/*-----------------------------------------------------------------------
	Block: uniform
-----------------------------------------------------------------------*/

.block-uniform .wysiwyg-content {
  max-width: 881px;
  margin-left: auto;
  margin-right: auto;
}
.block-uniform .wrapper{
  margin: auto;
  margin-top: 40px;
}
.block-uniform .wrapper.grid-col-2 {
  gap: 0px;
}
.block-uniform .wysiwyg-content .button-group {
  margin-top: 20px!important;
}
.block-uniform .wysiwyg-content li {
  font-size: 14px;
}
.block-uniform .table-block tr td p {
  display: inline-block;
  width: 49%;
  text-align: left;
  margin: 0px;
}
.block-uniform .table-block{
  margin-bottom: 42px;
}
.block-uniform .table-block tr td {
  padding: 7px 31px;
}
.block-uniform .table-block tr td p:last-child {
  text-align: right;
}
.block-uniform .table-block table{
  border-spacing: 7px 8px;
}
/* responsive */

@media (max-width:767px) {
  .block-uniform .table-block tr td {
    padding: 7px 15px;
  }
  .block-uniform .table-block tr td p:last-child{
    justify-content: flex-end;
  }
  .block-uniform .table-block tr td p{
    display: inline-flex;
    width: 45%;
    font-size: 16px;
    line-height: 20px;
  }
  .block-uniform .table-block {
    margin-bottom: 0px;
  }
}

/*-----------------------------------------------------------------------
	Block: Dates
-----------------------------------------------------------------------*/

.block-calendar .wrapper{
  margin-top: 40px;
}
.block-calendar .wysiwyg-content li {
  font-size: 14px;
}
.block-calendar .table-block{
  margin-bottom: 42px;
}
/* responsive */

@media (max-width:767px) {
  .block-calendar .table-block table tr td{
    font-size: 16px;
    line-height: 20px;
    } 
    .block-calendar .table-block {
      margin-bottom: 20px;
  }
}


/*-----------------------------------------------------------------------
	Block: Contact-Form
-----------------------------------------------------------------------*/

.block-contact-form .wrapper{
  gap: 120px;
}
.block-contact-form .wrapper .wysiwyg-content h4{
  margin-bottom: 0px!important;
}
.block-contact-form .wrapper .contact_info p a{
  text-decoration: none;
}
.block-contact-form .wrapper .contact_info p{
  margin-top: 0px!important;
}
.block-contact-form .wrapper .contact_info address{
  max-width: 365px;
  font-style: normal;
  display: block;
  font-style: normal;
}
.block-contact-form .wrapper .contact_info ul li {
  margin-bottom: 29px;
}
.block-contact-form .wrapper .social-contact h4 {
  margin-bottom: 20px;
}
.block-contact-form .wrapper .social-contact .social-icons li a{
  background-color: var(--dark-gray);
  width: 38px;
  height: 38px;
}
.block-contact-form .wrapper .contact_info ul li h4 {
  margin-bottom: 10px;
}

.block-contact-form .wrapper .contact_info {
  margin-top: 24px;
}
.block-contact-form .wrapper .wysiwyg-content h2{
  margin-bottom: 50px!important;
}
.block-contact-form .social-icons li svg path{
  fill: var(--white);
}
.block-contact-form .wrapper .social-contact .social-icons li a:hover{
  background-color: var(--burnt-orange);
}
.block-contact-form .google-map-link {
  text-decoration: underline;
}
.block-contact-form .contact-form h2 {
  margin-bottom: 37px;
}
.block-color-tint-white.boardriders-theme input:not([class*='ui-'], [type='button'], [type='submit']),.block-color-tint-white.boardriders-theme select:not([class*='ui-']), .block-color-tint-white.boardriders-theme .select2-container .select2-selection, .block-color-tint-white.boardriders-theme textarea:not([class*='ui-']){
  background: #EDECEC!important;
}
@media (max-width:991px){
  .block-contact-form .wrapper {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width:767px){
  .block-contact-form .wrapper .wysiwyg-content h2 {
    margin-bottom: 30px !important;
  }
}
/*-----------------------------------------------------------------------
	Block: Logo Slider
-----------------------------------------------------------------------*/

.block-logo-slider .item.swiper-slide img {
  margin: auto;
  text-align: center;
}
.block-logo-slider{
  overflow: hidden;
}
.block-logo-slider .swiper-free-mode > .swiper-wrapper {
  transition-timing-function: linear!important;
  align-items: center;
}

@media(max-width:767px){
  .block-logo-slider .item.swiper-slide img{
    max-width: 80%;
  }
}

/*-----------------------------------------------------------------------
	Block: Social Feed
-----------------------------------------------------------------------*/

.block-social-feed span.sbi_follow_btn.sbi_custom a {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  outline: 0;
  width: auto;
  height: auto;
  min-width: 193px;
  min-height: 0 !important;
  padding: 17px !important;
  font-size: 18px !important;
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 22px !important;
  text-align: center;
  text-decoration: none !important;
  border-radius: 0 !important;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 1.33px;
  color: var(--white);
  background: url(../img/btn-bg-shape.svg) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  margin-top: 80px!important;
}
.block-social-feed span.sbi_follow_btn.sbi_custom a svg{
  display: none!important;
}
.block-social-feed span.sbi_follow_btn.sbi_custom a:hover,.block-social-feed span.sbi_follow_btn.sbi_custom a:focus{
  background: url(../img/btn-orange-bgshape.svg) !important;
  box-shadow: none!important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

@media(max-width:767px){
  .block-social-feed span.sbi_follow_btn.sbi_custom a{
    margin-top: 40px !important;
  }
}