/*
Theme Name: Next Generation Health Club
Author: Concise Digital
Author URI: https://www.concise.digital/
Theme URI: https://www.nextgenclubs.com.au/
Tags: full-site-editing
Text Domain: nextgenclubs
Requires at least: 6.1
Requires PHP: 7.3
Tested up to: 6.2
Version: 1.0.0

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/* 
--------------------------------------------- */
:root {
  --wp--preset--color--black: #000000;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--primary: #B6005F;
  --wp--preset--color--secondary: #243444;
  --wp--preset--color--light-theme-grey: #E7E9EA;
  --block-padding: 44px;
  --site-min-padding: 15px;
  --site-max-width: 1200px;
  --content-max-width: 1190px;
  --vh: 1vh;
  --base-letter-spacing: 0.025em;
  --base-letter-spacing: 0.08em;
  --header-colour: #fff;
  --another-block-padding: 40px;
  --custom-block-padding: 40px;
}
@media (min-width: 782px) {
  :root {
    --block-padding: 50px;
    --another-block-padding: 60px;
    --custom-block-padding: 50px;
  }
}
@media (min-width: 1200px) {
  :root {
    --block-padding: 60px;
    --another-block-padding: 80px;
    --custom-block-padding: 60px;
  }
}
@media (min-width: 1500px) {
  :root {
    --site-max-width: 1440px;
    --content-max-width: 1400px;
  }
}

html body {
  background-color: var(--wp--preset--color--light-theme-grey);
  color: var(--wp--preset--color--secondary);
  --wp--preset--font-size--small: 14px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 28px;
  --wp--preset--font-size--x-large: 44px;
}
html body p {
  margin: 0;
  padding-bottom: 12px;
  font-weight: 500;
  line-height: 1.4;
}
html body p:last-child {
  padding-bottom: 0px;
}
@media (min-width: 782px) {
  html body p {
    padding-bottom: 14px;
  }
}
@media (min-width: 992px) {
  html body p {
    padding-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  html body p {
    padding-bottom: 18px;
  }
}
@media (min-width: 1500px) {
  html body p {
    padding-bottom: 20px;
  }
}

@media (min-width: 992px) {
  html body {
    --wp--preset--font-size--small: 16px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 30px;
    --wp--preset--font-size--x-large: 54px;
  }
}
@media (min-width: 1200px) {
  html body {
    --wp--preset--font-size--small: 16px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 30px;
    --wp--preset--font-size--x-large: 64px;
  }
}
@media (min-width: 1500px) {
  html body {
    --wp--preset--font-size--small: 16px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 30px;
    --wp--preset--font-size--x-large: 64px;
    --wp--style--global--content-size: 1200px;
    --wp--style--global--wide-size: 1200px;
  }
}
/*
CHANGES TO FILE
- Added font-size mixin 
*/
/**
 * Font Sizes
 * Create default font sizes across all screen sizes with one declaration
 * e.g. @include font-sizes( 34px, 42px, 46px );
 *
**/
/*
CHANGES TO FILE
- Added body background style 
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  color: var(--wp--preset--color--mid-black);
}

a {
  outline: none;
}
a img {
  border: 0;
}

img {
  max-width: 100%;
}

ol, ul {
  margin-top: 0px;
}

.image-wrapper img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

iframe {
  display: block;
}

::selection {
  background: var(--wp--preset--color--black);
  color: #fff;
}

.overflow-hidden {
  overflow: hidden;
}

@media (max-width: 1199px) {
  h2 br, h3 br, h4 br, h5 br, h6 br {
    display: none;
  }
}
@media (max-width: 781px) {
  .mobile-hide {
    display: none !important;
  }
}
/* Alignfull and Alignwide
  --------------------------------------------- */
@media (min-width: 782px) {
  .alignfull {
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
@media (min-width: 1200px) {
  .alignwide {
    max-width: calc(var(--site-max-width) + 2 * var(--site-min-padding));
    margin-left: calc(var(--site-max-width) / -2 + 50%);
    margin-right: calc(var(--site-max-width) / -2 + 50%);
  }
  .alignfull {
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
.wp-block-column {
  padding-left: 15px;
  padding-right: 15px;
}

.has-global-padding .wp-block-column {
  padding-left: 0px;
  padding-right: 0px;
}

/* Skiplink
--------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  /* Styled to match the default WordPress screen reader text */
  background-color: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
  text-transform: uppercase;
  display: block;
  font-size: 14px;
  height: auto;
  left: 6px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  width: auto;
  z-index: 100000; /* Above WP toolbar */
  -webkit-transition: top 0.75s ease-out;
  transition: top 0.75s ease-out;
}

.skip-link:focus {
  color: var(--wp--preset--color--white);
  top: 7px;
  -webkit-transition: top 0s;
  transition: top 0s;
}

.has-global-padding {
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1200px) {
  .has-global-padding {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

.common-padding {
  padding: 30px 15px;
}
@media (min-width: 782px) {
  .common-padding {
    padding: 40px 15px;
  }
}
@media (min-width: 992px) {
  .common-padding {
    padding: 60px 15px;
  }
}
@media (min-width: 1200px) {
  .common-padding {
    padding: 80px 15px;
  }
}
@media (min-width: 1500px) {
  .common-padding {
    padding: 100px 15px;
  }
}

/* Forms
-------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 10px !important;
}

.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  color: var(--wp--preset--color--primary);
  padding: 12px 18px !important;
  background-color: #f6f7f7;
  border: 1px solid #f6f7f7;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 1.4;
}
.gform_wrapper.gravity-theme input[type=email]::placeholder,
.gform_wrapper.gravity-theme input[type=password]::placeholder,
.gform_wrapper.gravity-theme input[type=tel]::placeholder,
.gform_wrapper.gravity-theme input[type=text]::placeholder,
.gform_wrapper.gravity-theme select::placeholder,
.gform_wrapper.gravity-theme textarea::placeholder {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  color: var(--wp--preset--color--primary);
}

.gform_heading {
  color: var(--wp--preset--color--primary);
}

.gform_required_legend {
  display: none;
}

.gform_button {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 12px 24px !important;
  border: 1px solid var(--wp--preset--color--white);
  border-radius: 0px;
  color: var(--wp--preset--color--white);
  background-color: transparent;
  cursor: pointer;
  font-weight: 400;
  min-width: 150px;
  font-size: 16px;
  text-decoration: none !important;
  line-height: normal;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.gform_button:hover, .gform_button:focus, .gform_button:focus-within {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .gform_button {
    padding: 12px 30px !important;
    min-width: 174px;
  }
}

@media (min-width: 1200px) {
  .gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 130px !important;
  }
}

.gform_wrapper.gravity-theme .gform_footer {
  margin: 0;
  padding: 4px 0 0 !important;
}

@media (min-width: 1200px) {
  .contact-form-sec .gform_wrapper {
    max-width: 844px;
    margin: auto;
  }
}

.single-post .inner_content {
  font-weight: 400;
  line-height: 1.4;
}
.single-post .inner_content ul {
  padding: 0 0 0 4px;
  margin-bottom: 20px;
}
.single-post .inner_content ul li {
  list-style: none;
  background-image: url(assets/images/list-arrow.svg);
  background-position: left 6px;
  background-repeat: no-repeat;
  background-size: 10px;
  padding-left: 18px;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .single-post .inner_content ul {
    margin-bottom: 30px;
  }
}

.gform_confirmation_message {
  text-align: center;
}

/*
CHANGES TO FILE
- Removing a lot of the base styles - most of these should be controlled in theme.json
*/
em,
.italic {
  font-style: italic;
}

strong,
b {
  font-weight: 700;
}

/* Links and buttons  */
a {
  color: inherit;
  cursor: pointer;
}

main a {
  text-decoration: underline;
}
main a:hover, main a:focus, main a:focus-within {
  text-decoration: none;
}

.site-header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99999;
}
.site-header .is-content-justification-space-between {
  justify-content: space-between;
}
.site-header .header-middle-main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
@media (min-width: 1200px) {
  .site-header .header-middle-main {
    padding: 0 30px;
  }
}
@media (min-width: 1500px) {
  .site-header .header-middle-main {
    padding: 0 32px;
  }
}
.site-header .header-btn {
  display: none;
}
@media (min-width: 1200px) {
  .site-header .header-btn {
    display: block;
    font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
    padding: 14px 24px !important;
    border: 1px solid var(--wp--preset--color--primary);
    border-radius: 0px;
    color: var(--wp--preset--color--white);
    background-color: var(--wp--preset--color--primary);
    cursor: pointer;
    font-weight: 400;
    min-width: 150px;
    font-size: 16px;
    text-decoration: none !important;
    line-height: normal;
    transition: all 0.3s ease;
    text-align: center;
  }
  .site-header .header-btn:hover, .site-header .header-btn:focus, .site-header .header-btn:focus-within {
    background-color: transparent;
    color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--white);
    transition: all 0.3s ease;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .site-header .header-btn {
    padding: 14px 24px !important;
    min-width: 160px;
  }
}
.site-header .header-middle {
  position: relative;
  padding: 8px 0 0;
}
.site-header .header-middle .wp-block-site-logo {
  max-width: 120px;
}
.site-header .header-middle .wp-block-site-logo a img {
  width: 100%;
}
@media (min-width: 1200px) {
  .site-header .header-middle .wp-block-site-logo a {
    max-width: 200px;
  }
}
@media (min-width: 1500px) {
  .site-header .header-middle .wp-block-site-logo a {
    max-width: 240px;
  }
}
.site-header .header-middle .navbar .navbar-nav {
  display: flex;
  grid-gap: 20px;
  padding: 0;
  margin: 0;
}
.site-header .header-middle .navbar .navbar-nav li {
  list-style: none;
}
.site-header .header-middle .navbar .navbar-nav li a {
  text-decoration: none !important;
}
.site-header .header-middle .navbar .navbar-nav > li {
  position: relative;
}
.site-header .header-middle .navbar .navbar-nav > li > a {
  padding: 12px 0;
  display: block;
  font-weight: 400;
  font-size: 18px;
  color: var(--wp--preset--color--white);
  font-family: "Inter", sans-serif;
}
.site-header .header-middle .navbar .navbar-nav > li > a:hover {
  color: var(--wp--preset--color--primary);
}
@media (min-width: 992px) {
  .site-header .header-middle .navbar .navbar-nav > li > a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .site-header .header-middle .navbar .navbar-nav > li > a {
    font-size: 17px;
    padding: 18px 0;
  }
}
@media (min-width: 1500px) {
  .site-header .header-middle .navbar .navbar-nav > li > a {
    font-size: 18px;
    padding: 18px 0;
  }
}
.site-header .header-middle .navbar .navbar-nav > li.current-page-ancestor > a, .site-header .header-middle .navbar .navbar-nav > li.current-menu-item > a {
  color: var(--wp--preset--color--primary);
}
.site-header .header-middle .navbar .navbar-nav > li > ul {
  display: none;
  border: 0px;
  border-radius: 0px;
  padding: 16px 0;
  min-width: 270px !important;
  left: -24px;
  top: 34px;
  position: absolute;
}
.site-header .header-middle .navbar .navbar-nav > li > ul > li {
  padding: 0 24px;
}
.site-header .header-middle .navbar .navbar-nav > li > ul > li > a {
  padding: 2px 0;
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  color: var(--wp--preset--color--white);
}
.site-header .header-middle .navbar .navbar-nav > li > ul > li > a:hover, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus-within {
  font-weight: 600;
  color: var(--wp--preset--color--primary);
}
.site-header .header-middle .navbar .navbar-nav > li > ul > li.current-page-ancestor > a, .site-header .header-middle .navbar .navbar-nav > li > ul > li.current-menu-item > a {
  font-weight: 600;
  color: var(--wp--preset--color--primary);
}
@media (min-width: 1200px) {
  .site-header .header-middle .navbar .navbar-nav > li > ul {
    min-width: 270px !important;
  }
}
@media (max-width: 1199px) {
  .site-header .header-middle .navbar .navbar-nav > li > ul {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
    padding: 12px 20px;
    border-radius: 0;
  }
  .site-header .header-middle .navbar .navbar-nav > li > ul > li > a {
    padding: 8px 0;
    font-size: 16px;
  }
  .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:hover, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus-within {
    color: var(--wp--preset--color--primary);
  }
}
@media (min-width: 1200px) {
  .site-header .header-middle .navbar .navbar-nav > li:hover > a, .site-header .header-middle .navbar .navbar-nav > li:focus > a, .site-header .header-middle .navbar .navbar-nav > li:focus-within > a {
    color: var(--wp--preset--color--primary);
  }
  .site-header .header-middle .navbar .navbar-nav > li:hover > ul, .site-header .header-middle .navbar .navbar-nav > li:focus > ul, .site-header .header-middle .navbar .navbar-nav > li:focus-within > ul {
    display: block;
  }
}
@media (max-width: 1199px) {
  .site-header .header-middle .navbar .navbar-nav > li.has-sub-nav > a {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .site-header .header-middle .navbar .navbar-nav {
    grid-gap: 40px;
  }
}
@media (min-width: 1500px) {
  .site-header .header-middle .navbar .navbar-nav {
    grid-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .site-header .header-middle {
    padding: 27px 0 0;
  }
}
.site-header.location-site-header .wp-block-site-logo:not(.not-location-logo) {
  max-width: 190px;
}
.site-header.location-site-header .wp-block-site-logo:not(.not-location-logo) a img {
  width: 100%;
}
@media (min-width: 1200px) {
  .site-header.location-site-header .wp-block-site-logo:not(.not-location-logo) {
    max-width: 290px;
  }
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav {
  display: flex;
  grid-gap: 20px;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav li {
  list-style: none;
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav li a {
  text-decoration: none !important;
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li {
  position: relative;
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
  padding: 12px 0;
  display: block;
  font-weight: 400;
  font-size: 18px;
  color: var(--wp--preset--color--white);
  font-family: "Inter", sans-serif;
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a:hover {
  color: var(--wp--preset--color--primary);
}
@media (min-width: 992px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
    font-size: 17px;
    padding: 18px 0;
  }
}
@media (min-width: 1500px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
    font-size: 18px;
    padding: 18px 0;
  }
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li.current-page-ancestor > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li.current-menu-item > a {
  color: var(--wp--preset--color--primary);
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul {
  display: none;
  border: 0px;
  border-radius: 0px;
  padding: 16px 0;
  min-width: 270px !important;
  left: -24px;
  top: 34px;
  position: absolute;
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li {
  padding: 0 24px;
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a {
  padding: 2px 0;
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  color: var(--wp--preset--color--white);
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:hover, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus-within {
  font-weight: 600;
  color: var(--wp--preset--color--primary);
}
.site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li.current-page-ancestor > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li.current-menu-item > a {
  font-weight: 600;
  color: var(--wp--preset--color--primary);
}
@media (min-width: 1200px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul {
    min-width: 270px !important;
  }
}
@media (max-width: 1199px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
    padding: 12px 20px;
    border-radius: 0;
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a {
    padding: 8px 0;
    font-size: 16px;
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:hover, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus-within {
    color: var(--wp--preset--color--primary);
  }
}
@media (min-width: 1200px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:hover > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:focus > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:focus-within > a {
    color: var(--wp--preset--color--primary);
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:hover > ul, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:focus > ul, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li:focus-within > ul {
    display: block;
  }
}
@media (max-width: 1199px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li.has-sub-nav > a {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav {
    grid-gap: 26px;
  }
}
@media (min-width: 1500px) {
  .site-header.location-site-header .header-bottom .navbar .navbar-nav {
    grid-gap: 26px;
  }
}
@media (min-width: 1200px) {
  .site-header.location-site-header .header-bottom {
    border-top: 1px solid var(--wp--preset--color--white);
    border-bottom: 1px solid var(--wp--preset--color--white);
    margin-top: 25px;
  }
}

.mobilemenu_icon {
  width: 36px;
  height: 24px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.navbar_line {
  background-color: var(--wp--preset--color--white);
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 0;
}

.navbar_line2 {
  top: 10px;
  width: 100%;
}

.navbar_line3 {
  top: 20px;
}

@media (max-width: 1199px) {
  .sidebar_open:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: 99;
  }
  .sidebar_open .mobilemenu_icon {
    background: transparent;
  }
  .sidebar_open .navbar_line {
    left: 100%;
  }
  .sidebar_open .navbar_line2 {
    left: 100%;
  }
  .sidebar_open .navbar_line3 {
    left: 100%;
  }
  .mobilemenu_icon_open {
    width: 25px;
    height: 25px;
    top: 15px;
    right: 15px;
    position: absolute;
    background-size: cover;
    z-index: 99;
    overflow: hidden;
  }
  .navbarclose_line1 {
    height: 2px;
    background-color: var(--wp--preset--color--primary);
    position: absolute;
    top: 11px;
    left: 0;
    width: 25px;
    transform: rotate(0);
    opacity: 0;
  }
  .navbarclose_line2 {
    height: 2px;
    background-color: var(--wp--preset--color--primary);
    position: absolute;
    top: 11px;
    left: 0;
    width: 25px;
    transform: rotate(0);
    opacity: 0;
  }
  .sidebar_open .navbarclose_line1 {
    transform: rotate(-136deg);
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
    transition-delay: 0.2s;
    opacity: 100;
  }
  .sidebar_open .navbarclose_line2 {
    transform: rotate(136deg);
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
    transition-delay: 0.2s;
    opacity: 100;
  }
  .navbar-header {
    overflow: auto;
  }
  .sidebar_open {
    overflow: hidden;
  }
  .navbar-header {
    float: none;
    position: fixed;
    background-color: var(--wp--preset--color--light-theme-grey);
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    pointer-events: none;
    height: 100%;
    max-width: 100vw;
    z-index: 99999999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .navbar-nav > li:hover > ul {
    display: none;
  }
  .sidebar_open .navbar-header {
    transition: opacity 0.3s ease;
    transform: translate3d(0, 0, 0);
    pointer-events: all;
    opacity: 1;
  }
  .site-header .header-middle .wp-block-group {
    width: 100%;
  }
  .site-header .header-middle .navbar .navbar-nav {
    flex-direction: column;
    grid-gap: 0px;
    margin-top: 60px;
  }
  .site-header .header-middle .navbar .navbar-nav > li {
    padding: 0;
  }
  .site-header .header-middle .navbar .navbar-nav > li > a {
    font-weight: 500;
    padding: 16px 15px;
    color: var(--wp--preset--color--secondary);
    font-size: 20px;
  }
  .site-header .header-middle .navbar .navbar-nav > li > a:hover, .site-header .header-middle .navbar .navbar-nav > li > a:focus, .site-header .header-middle .navbar .navbar-nav > li > a:focus-within {
    color: var(--wp--preset--color--primary);
  }
  .site-header .header-middle .navbar .navbar-nav > li.current-page-ancestor > a, .site-header .header-middle .navbar .navbar-nav > li.current-menu-item > a {
    color: var(--wp--preset--color--primary);
  }
  .site-header .header-middle .navbar .navbar-nav > li > ul {
    padding-top: 0px;
  }
  .site-header .header-middle .navbar .navbar-nav > li > ul > li {
    padding: 0;
  }
  .site-header .header-middle .navbar .navbar-nav > li > ul > li > a {
    color: var(--wp--preset--color--white);
  }
  .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:hover, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus, .site-header .header-middle .navbar .navbar-nav > li > ul > li > a:focus-within {
    color: var(--wp--preset--color--secondary);
  }
  .site-header .header-middle .navbar .navbar-nav > li > ul > li.current-page-ancestor > a, .site-header .header-middle .navbar .navbar-nav > li > ul > li.current-menu-item > a {
    color: var(--wp--preset--color--secondary);
  }
  .site-header.location-site-header .header-bottom .wp-block-group {
    width: 100%;
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav {
    flex-direction: column;
    grid-gap: 0px;
    margin-top: 60px;
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li {
    padding: 0;
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a {
    font-weight: 500;
    padding: 16px 15px;
    color: var(--wp--preset--color--secondary);
    font-size: 20px;
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a:hover, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a:focus, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > a:focus-within {
    color: var(--wp--preset--color--primary);
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li.current-page-ancestor > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li.current-menu-item > a {
    color: var(--wp--preset--color--primary);
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul {
    padding-top: 0px;
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li {
    padding: 0;
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a {
    color: var(--wp--preset--color--white);
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:hover, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li > a:focus-within {
    color: var(--wp--preset--color--secondary);
  }
  .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li.current-page-ancestor > a, .site-header.location-site-header .header-bottom .navbar .navbar-nav > li > ul > li.current-menu-item > a {
    color: var(--wp--preset--color--secondary);
  }
}
@media (min-width: 1500px) {
  .postid-53 .site-header .header-middle .wp-block-site-logo a {
    max-width: 240px;
  }
}

@media (min-width: 1500px) {
  .postid-51 .site-header .header-middle .wp-block-site-logo a {
    max-width: 240px;
  }
}

@media (min-width: 1500px) {
  .postid-55 .site-header .header-middle .wp-block-site-logo a {
    max-width: 240px;
  }
}

.header-search .header-search-icon {
  display: flex;
  justify-content: center;
  align-content: center;
}
.header-search .header-search-icon:hover {
  opacity: 0.8;
}
.header-search .header-search-mobile-icon {
  display: none;
}

.header-search-box {
  position: relative;
  background-color: var(--wp--preset--color--secondary);
  padding: 20px 12px 26px;
  z-index: 9;
  display: none;
}

.header_search_textbox {
  width: 100%;
  padding: 12px;
  border: 0px;
  line-height: normal;
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  font-size: 16px;
  outline: 0px;
}
.header_search_textbox:hover, .header_search_textbox:focus, .header_search_textbox:focus-within, .header_search_textbox:focus-visible {
  border: 0px;
  outline: 0px;
}

.header-search-box-form {
  position: relative;
}

.header_search_btn {
  background-image: url("assets/images/top-header-search.svg");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  right: 10px;
  top: 10px;
  position: absolute;
  cursor: pointer;
}

.header_search_box_close {
  position: absolute;
  right: 0px;
  color: #fff;
  bottom: -18px;
  font-size: 10px;
  line-height: normal;
}

.header-icons-flex {
  grid-gap: 30px;
}

button.menu-button.close-menu-button span {
  display: none;
}
@media (max-width: 1199px) {
  button.menu-button.close-menu-button span {
    display: block;
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  button.menu-button.close-menu-button {
    font-size: 0px;
    width: 18px;
    height: 20px;
    background-color: transparent;
    border: 0px;
    border-radius: 0;
    padding: 0 !important;
    min-width: auto;
  }
}

.mobile-header-btn {
  display: none;
}
@media (max-width: 1199px) {
  .mobile-header-btn {
    display: block;
    font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
    padding: 14px 24px !important;
    border: 1px solid var(--wp--preset--color--white);
    border-radius: 0px;
    color: var(--wp--preset--color--white);
    background-color: transparent;
    cursor: pointer;
    font-weight: 400;
    min-width: 150px;
    font-size: 16px;
    text-decoration: none !important;
    line-height: normal;
    transition: all 0.3s ease;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 180px;
  }
}

.sticky_header {
  top: -15px;
}

.sticky_header1 {
  top: 0;
  transition: all 0.3s;
}

.sticky_header1 {
  position: fixed;
  top: 0px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.62);
  z-index: 99999;
  border-bottom: 0;
  height: auto;
  background-color: var(--wp--preset--color--secondary);
  border-bottom: 1px solid var(--wp--preset--color--secondary);
}

.site-header.sticky_header1 .header-middle {
  padding: 12px 0;
}

@media (min-width: 1200px) {
  .location-site-header.site-header.sticky_header1 .header-middle {
    padding: 12px 0 0;
  }
}
@media (max-width: 1199px) {
  .navigation-overlay .extra-menu.location-extra-menu {
    display: flex;
    position: relative;
    margin: auto;
    width: 100%;
    text-align: center;
    font-size: 16px;
    grid-gap: 14px;
    left: 0;
    line-height: normal;
    top: 0;
    right: 0;
    margin-top: 8px;
  }
  .navigation-overlay .extra-menu.location-extra-menu a {
    font-size: 18px;
  }
  .full-navigation .location-nav-overlay-layout .navbar-nav li.current-menu-item a {
    color: var(--wp--preset--color--primary);
  }
  .location-nav-overlay-layout {
    padding-top: 90px !important;
  }
  .location-nav-overlay-layout .navbar-nav li {
    margin-bottom: 0px !important;
  }
  .location-nav-overlay-layout .navbar-nav > li > a {
    font-size: 18px !important;
  }
  .location-nav-overlay-layout .navbar-nav {
    grid-gap: 12px !important;
  }
  .location-nav-overlay-layout h5 {
    font-size: 24px;
    color: var(--wp--preset--color--primary);
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 24px;
  }
}
#search_form {
  display: flex;
  align-content: center;
  align-items: center;
  grid-gap: 12px;
  flex-direction: column;
}
#search_form .location-select {
  width: 100%;
  padding: 10px 12px;
  border: 0px;
  line-height: normal;
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  font-size: 16px;
  outline: 0px;
}
#search_form .header_search_textbox {
  width: 100%;
}
@media (min-width: 782px) {
  #search_form {
    flex-direction: row;
  }
  #search_form .header_search_textbox {
    width: 75%;
  }
  #search_form .location-select {
    width: 25%;
  }
}
@media (min-width: 992px) {
  #search_form .header_search_textbox {
    width: 80%;
  }
  #search_form .location-select {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  #search_form .header_search_textbox {
    width: 84%;
  }
  #search_form .location-select {
    width: 16%;
  }
}
@media (max-width: 781px) {
  #search_form .header_search_btn {
    top: 64px;
  }
}

#search_form .location-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #fff;
  padding: 12px;
  line-height: normal;
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  font-size: 16px;
  background-image: url(assets/images/select-dropdown.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 14px;
  color: #000 !important;
}

#search_form .location-select::placeholder {
  color: #8d8d8d !important;
}

@media (min-width: 1200px) {
  .location-header-overlay #navbar {
    display: none;
  }
  .location-header-overlay .navigation-links #navbar {
    display: block;
  }
}
@media (max-width: 1199px) {
  .location-header-overlay .navigation-links #navbar {
    display: none;
  }
  #search_form .location-select {
    border-radius: 5px;
  }
}
@media (max-width: 781px) {
  #search_form .header_search_btn {
    top: 68px;
  }
}
/************ FULL SCREEN NAVIGATION **************/
button.menu-button {
  color: #fff;
  background-color: transparent;
  border: solid 1px #fff;
  border-radius: 0;
  padding: 14px 24px !important;
  min-width: 160px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
}
button.menu-button:focus {
  outline: 2px solid #fff;
}
button.menu-button:hover, button.menu-button:focus, button.menu-button:focus-within {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  transition: all 0.3s ease;
}
button.menu-button.close-menu-button {
  position: absolute;
  top: 22px;
  right: 20px;
  cursor: pointer;
}

.navigation-overlay {
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wp--preset--color--secondary);
  pointer-events: none;
  z-index: 99999999999;
  color: #fff;
  transform: translateX(100vw);
  transition: 0.2s ease-in-out;
}
.navigation-overlay .navigation-logo,
.navigation-overlay .navigation-links,
.navigation-overlay .navigation-contact,
.navigation-overlay .close-menu-button,
.navigation-overlay .extra-menu {
  transform: translateX(300px);
  opacity: 0;
  transition: 0.2s ease-in-out;
}
@media (max-width: 1199px) {
  .navigation-overlay .extra-menu {
    display: none;
  }
}
.navigation-overlay.visible.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  visibility: visible;
}
.navigation-overlay.visible.active .navigation-logo,
.navigation-overlay.visible.active .navigation-links,
.navigation-overlay.visible.active .navigation-contact,
.navigation-overlay.visible.active .close-menu-button,
.navigation-overlay.visible.active .extra-menu {
  transform: translateX(0);
  opacity: 1;
}
.nav-overlay-layout {
  max-height: 100%;
  overflow: auto;
  padding: 50px 25px 25px 25px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  grid-template-areas: "logo" "links" "contact";
}
@media (min-width: 1200px) {
  .nav-overlay-layout {
    padding: 50px;
    grid-template-columns: 230px 1fr;
    grid-gap: 20px 40px;
    grid-template-areas: "logo links" "contact links";
    padding: 60px 50px;
    grid-template-columns: 260px 1fr;
  }
}
@media (max-width: 1199px) {
  .nav-overlay-layout {
    padding: 98px 25px 25px 25px;
  }
}
@media (max-width: 991px) {
  .nav-overlay-layout {
    padding: 98px 20px 25px 20px;
  }
}
@media (max-width: 767px) {
  .nav-overlay-layout {
    padding: 98px 15px 25px 15px;
  }
}

.navigation-logo {
  grid-area: logo;
}
.navigation-logo img {
  display: block;
  width: 190px;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .navigation-logo img {
    max-width: 144px;
  }
}

.navigation-links {
  grid-area: links;
  justify-self: start;
}

.navigation-contact {
  grid-area: contact;
  align-self: end;
}
.navigation-contact ul, .navigation-contact li {
  list-style: none;
  font-size: 15px;
}
.navigation-contact ul {
  margin-left: 0;
  padding-left: 0;
}

.menu_social_icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.menu_social_icons li {
  margin-right: 1em;
}
.menu_social_icons img {
  display: block;
  max-width: 20px;
  max-height: 20px;
  opacity: 0.75;
}
.menu_social_icons a:focus img,
.menu_social_icons a:hover img {
  opacity: 1;
}

header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  transition: top 0.2s ease 0s;
}

.header_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 9;
}
.header_menu li a {
  color: #fff;
  display: inline-block;
}
.header_menu li.search-icon {
  margin-right: 35px;
}
.header_menu li.search-icon a span {
  margin-right: 7px;
  font-size: 16px;
  line-height: 26px;
}
.header_menu li.mobile_btn a {
  padding: 9px 25px 9px 45px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
}

.header_top {
  padding: 30px 0;
}

.header_logo {
  text-align: center;
  padding-top: 60px;
}

/************ GENERAL STYLES  **************/
.full-navigation .navbar {
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
  border: none;
  text-align: left;
  padding: 0;
  justify-content: center;
}

.full-navigation .navbar-nav {
  margin: 0;
  padding: 0;
  display: block;
  text-align: left;
  list-style: none;
  display: block;
}
.full-navigation .navbar-nav li {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.full-navigation .navbar-nav a {
  color: #fff;
  opacity: 0.9;
  font-weight: 300;
  text-decoration: none;
  font-size: 17px;
}
.full-navigation .navbar-nav a:hover, .full-navigation .navbar-nav a:focus {
  opacity: 1;
  color: var(--wp--preset--color--primary);
}
.full-navigation .navbar-nav > li > a {
  font-size: 20px;
}

/************ MOBILE STYLES **************/
@media (max-width: 1199px) {
  .navigation-links {
    width: 100%;
  }
  .full-navigation .navbar-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    grid-gap: 14px;
    margin-top: 16px;
  }
  .full-navigation .navbar-nav li.has-sub-nav {
    position: relative;
  }
  .full-navigation .navbar-nav li.has-sub-nav > a {
    width: 85%;
  }
  .full-navigation .navbar-nav li.has-sub-nav::after {
    content: "";
    display: block;
    position: absolute;
    right: 6px;
    top: 4px;
    bottom: auto;
    width: 20px;
    background-image: url(assets/images/right-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    transform: rotate(90deg);
    transition: all 0.2s ease-in-out;
    height: 20px;
  }
  .full-navigation .navbar-nav .sub-menu {
    display: none;
  }
  .full-navigation .navbar-nav > li {
    width: 100%;
  }
  .full-navigation .navbar-nav > li > a {
    display: block;
    width: 100%;
  }
  .full-navigation .navbar-nav > li.focus::after {
    transform: rotate(-90deg);
  }
  .full-navigation .navbar-nav .sub-menu {
    padding-top: 18px;
    padding-left: 20px;
    padding-bottom: 10px;
  }
}
/************ DESKTOP STYLES **************/
@media (min-width: 1200px) {
  .full-navigation .navbar-nav {
    position: relative;
  }
  .full-navigation .navbar-nav a {
    font-size: 18px;
  }
  .full-navigation .navbar-nav li {
    min-width: 26ch;
    margin-bottom: 10px;
  }
  .full-navigation .navbar-nav > li {
    padding-top: 1vh;
    padding-bottom: 1vh;
  }
  .full-navigation .navbar-nav > li > a {
    font-size: 26px;
    padding-right: 2em;
  }
  .full-navigation .navbar-nav > li {
    padding-top: 1vh;
    padding-bottom: 1vh;
  }
  .full-navigation .navbar-nav > li:first-child {
    padding-top: 0;
  }
  .full-navigation .navbar-nav > li > .sub-menu > li > a {
    font-weight: 400;
    font-size: 22px;
    padding-right: 2em;
  }
  .full-navigation .navbar-nav > li .sub-menu .sub-menu a {
    font-size: 18px;
  }
  .full-navigation .navbar-nav > li > .sub-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    transform: translateX(-50vw);
    opacity: 0;
    border-left: solid 1px rgba(255, 255, 255, 0.15);
    padding-left: 40px;
    transition: 0.1s 0 ease-in-out;
  }
  .full-navigation .navbar-nav > li:hover.menu-item-has-children > a {
    background-image: url("assets/images/right-arrow.svg");
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 10px;
  }
  .full-navigation .navbar-nav > li.opened > .sub-menu {
    left: 100%;
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0s;
  }
  .full-navigation .navbar-nav > li .sub-menu .sub-menu {
    padding-left: 15px;
    margin-top: 0px;
  }
  .full-navigation .navbar-nav > li ul li {
    padding-top: 0.2vh;
    padding-bottom: 0.2vh;
  }
  .full-navigation .navbar-nav > li ul li > .sub-menu > li > a {
    font-weight: 400;
  }
  .full-navigation .navbar-nav > li ul li .sub-menu .sub-menu a {
    font-size: 20px;
  }
  .full-navigation .navbar-nav > li ul li > .sub-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    transform: translateX(-50vw);
    opacity: 0;
    border-left: solid 1px rgba(255, 255, 255, 0.15);
    padding-left: 40px !important;
    transition: 0.1s 0 ease-in-out;
  }
  .full-navigation .navbar-nav > li ul li > .sub-menu li a {
    background-image: none;
  }
  .full-navigation .navbar-nav > li ul li:hover.menu-item-has-children > a {
    background-image: url("assets/images/right-arrow.svg");
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 10px;
  }
  .full-navigation .navbar-nav > li ul li.opened > .sub-menu {
    left: 100%;
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0s;
  }
}
@media (max-width: 1199px) {
  .header-middle-main {
    width: auto;
    flex-direction: row;
  }
  .site-header .header-middle .wp-block-group {
    width: auto;
  }
}
.extra-menu {
  position: absolute;
  top: 30px;
  right: 198px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
}
.extra-menu a {
  text-decoration: none;
}
.extra-menu a:hover {
  color: var(--wp--preset--color--primary);
}
@media (max-width: 767px) {
  .extra-menu {
    top: 24px;
  }
}

@media (min-width: 1200px) {
  .nav-overlay-layout {
    height: 100%;
  }
}
.special-qualtrics-button {
  display: none !important;
}
@media (max-width: 1199px) {
  .special-qualtrics-button {
    display: flex !important;
    justify-content: center;
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
  }
}

.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
}
.site-footer .mobile-show {
  display: none;
}
@media (max-width: 781px) {
  .site-footer .mobile-show {
    display: block;
  }
}
@media (max-width: 781px) {
  .site-footer .desktop-show {
    display: none;
  }
}
.site-footer .footer-middle {
  width: 100%;
}
.site-footer .footer-middle-main {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 782px) {
  .site-footer .footer-middle-main .wp-block-column {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-middle-main .wp-block-column {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .site-footer .footer-middle-main .wp-block-column:first-child {
    flex-basis: 28%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(3) {
    flex-basis: 16%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(4) {
    flex-basis: 22%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(5) {
    flex-basis: 28%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(6) {
    flex-basis: 16%;
  }
}
@media (min-width: 1500px) {
  .site-footer .footer-middle-main .wp-block-column:first-child {
    flex-basis: 24%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(3) {
    flex-basis: 14%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(4) {
    flex-basis: 18%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(5) {
    flex-basis: 34%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(6) {
    flex-basis: 12%;
  }
}
@media (min-width: 1800px) {
  .site-footer .footer-middle-main .wp-block-column:first-child {
    flex-basis: 18%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(3) {
    flex-basis: 10%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(4) {
    flex-basis: 12%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(5) {
    flex-basis: 45%;
  }
  .site-footer .footer-middle-main .wp-block-column:nth-child(6) {
    flex-basis: 10%;
  }
}
@media (max-width: 781px) {
  .site-footer .footer-middle-main .wp-block-column {
    flex-basis: 44% !important;
  }
}
@media (min-width: 782px) {
  .site-footer .footer-middle-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-middle-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .site-footer .footer-middle-main {
    padding-left: 30px;
    padding-right: 40px;
  }
}
@media (min-width: 1500px) {
  .site-footer .footer-middle-main {
    padding-left: 50px;
    padding-right: 70px;
  }
}
.site-footer h6 {
  margin-bottom: 15px;
  font-weight: 600;
}
.site-footer .wp-block-navigation__container li {
  margin-bottom: 8px;
}
.site-footer .wp-block-navigation__container li a {
  font-size: 14px;
}
.site-footer .wp-block-navigation__container li a:hover {
  color: var(--wp--preset--color--primary);
}
@media (min-width: 992px) {
  .site-footer .wp-block-navigation__container li a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .site-footer .wp-block-navigation__container li a {
    font-size: 18px;
  }
}
.site-footer .wp-block-navigation__container li:last-child {
  margin-bottom: 0px;
}
.site-footer .social-links {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  margin: 0;
  padding: 0;
}
.site-footer .social-links li {
  list-style: none;
}
.site-footer .social-links li a:hover svg path {
  fill: var(--wp--preset--color--primary);
}
@media (min-width: 782px) {
  .site-footer {
    padding-top: 45px;
  }
}
@media (min-width: 992px) {
  .site-footer {
    padding-top: 55px;
  }
}
@media (min-width: 1200px) {
  .site-footer {
    padding-top: 65px;
  }
}

.footer-logo {
  max-width: 190px;
}

.pum-theme-838 .pum-container {
  max-width: 400px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0px !important;
  top: auto !important;
}
@media (max-width: 781px) {
  .pum-theme-838 .pum-container {
    max-width: 280px;
    bottom: 12px !important;
    margin-left: auto !important;
  }
}

/* Images
-------------------------------------------------------------- */
figure.wp-block-image {
  margin: 0;
  display: block;
}
figure.wp-block-image.has-custom-border picture, figure.wp-block-image.has-custom-border img {
  display: block;
}

/* Buttons
-------------------------------------------------------------- */
.wp-block-buttons {
  grid-gap: 18px;
  margin-top: 12px;
}
.wp-block-buttons .is-style-outline .wp-element-button, .wp-block-buttons .is-style-outline .wp-block-button__link {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 12px 24px !important;
  border: 1px solid var(--wp--preset--color--white);
  border-radius: 0px;
  color: var(--wp--preset--color--white);
  background-color: transparent;
  cursor: pointer;
  font-weight: 400;
  min-width: 150px;
  font-size: 16px;
  text-decoration: none !important;
  line-height: normal;
  transition: all 0.3s ease;
}
.wp-block-buttons .is-style-outline .wp-element-button:hover, .wp-block-buttons .is-style-outline .wp-element-button:focus, .wp-block-buttons .is-style-outline .wp-element-button:focus-within, .wp-block-buttons .is-style-outline .wp-block-button__link:hover, .wp-block-buttons .is-style-outline .wp-block-button__link:focus, .wp-block-buttons .is-style-outline .wp-block-button__link:focus-within {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white) !important;
  border: 1px solid var(--wp--preset--color--secondary);
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .wp-block-buttons .is-style-outline .wp-element-button, .wp-block-buttons .is-style-outline .wp-block-button__link {
    padding: 12px 30px !important;
    min-width: 174px;
  }
}
.wp-block-buttons .wp-element-button, .wp-block-buttons .wp-block-button__link {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 12px 24px !important;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 0px;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--primary);
  cursor: pointer;
  font-weight: 400;
  min-width: 150px;
  font-size: 16px;
  text-decoration: none !important;
  line-height: normal;
  transition: all 0.3s ease;
}
.wp-block-buttons .wp-element-button:hover, .wp-block-buttons .wp-element-button:focus, .wp-block-buttons .wp-element-button:focus-within, .wp-block-buttons .wp-block-button__link:hover, .wp-block-buttons .wp-block-button__link:focus, .wp-block-buttons .wp-block-button__link:focus-within {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--secondary);
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .wp-block-buttons .wp-element-button, .wp-block-buttons .wp-block-button__link {
    padding: 12px 30px !important;
    min-width: 174px;
  }
}

/* Special Content
-------------------------------------------------------------- */
.is-style-special-content {
  position: relative;
  overflow: hidden;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.is-style-special-content .wp-block-image img {
  width: 100%;
}
@media (max-width: 580px) {
  .is-style-special-content .wp-block-image img {
    width: 130%;
    max-width: 130%;
  }
}
.is-style-special-content .wp-block-columns {
  margin-bottom: 0;
}
.is-style-special-content .wp-block-columns .wp-block-buttons {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 14%;
}
@media (min-width: 782px) {
  .is-style-special-content .wp-block-columns .wp-block-buttons {
    bottom: 20%;
  }
}
@media (min-width: 992px) {
  .is-style-special-content .wp-block-columns .wp-block-buttons {
    bottom: 22%;
  }
}
@media (min-width: 1200px) {
  .is-style-special-content .wp-block-columns .wp-block-buttons {
    bottom: 24%;
  }
}
@media (min-width: 1500px) {
  .is-style-special-content .wp-block-columns .wp-block-buttons {
    left: 14%;
    bottom: 24%;
  }
}
@media (max-width: 781px) {
  .is-style-special-content .wp-block-columns .wp-block-buttons {
    display: none;
  }
}

/* Special Heading
-------------------------------------------------------------- */
.is-style-special-heading {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.is-style-special-heading:after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--wp--preset--color--secondary);
  height: 1px;
  width: 185px;
  margin: auto;
  bottom: 0;
}
@media (max-width: 781px) {
  .is-style-special-heading.mobile-center {
    text-align: center;
  }
  .is-style-special-heading.mobile-center::after {
    left: 0;
    right: 0;
  }
}
.is-style-special-heading.has-text-align-center::after {
  left: 0;
  right: 0;
}
@media (min-width: 782px) {
  .is-style-special-heading {
    padding-bottom: 16px;
    margin-bottom: 26px;
  }
}
@media (min-width: 992px) {
  .is-style-special-heading {
    padding-bottom: 18px;
    margin-bottom: 28px;
  }
}
@media (min-width: 1200px) {
  .is-style-special-heading {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .is-style-special-heading:after {
    width: 255px;
  }
}
@media (min-width: 1500px) {
  .is-style-special-heading {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}

.has-white-color .is-style-special-heading:after {
  background-color: var(--wp--preset--color--white);
}

/* Small Max Width
-------------------------------------------------------------- */
.is-style-small-max-width {
  max-width: 286px !important;
  margin: auto;
}
.is-style-small-max-width.news-small-max-width {
  max-width: 375px !important;
}
.is-style-small-max-width.sub-small-max-width {
  max-width: 485px !important;
}
@media (min-width: 782px) {
  .is-style-small-max-width.sub-small-max-width {
    margin: inherit;
  }
}

/* Medium Max Width
-------------------------------------------------------------- */
.is-style-medium-max-width {
  max-width: 375px !important;
  margin: auto;
}

/* Common Grid Gap
-------------------------------------------------------------- */
@media (min-width: 1500px) {
  .is-style-common-grid-gap {
    grid-gap: 80px;
  }
}
@media (min-width: 1200px) {
  .is-style-common-grid-gap {
    grid-gap: 100px;
  }
}

/* Image Content
-------------------------------------------------------------- */
@media (max-width: 781px) {
  .is-style-image-content .wp-block-columns .wp-block-column:first-child, .is-style-text-image-section .wp-block-columns .wp-block-column:first-child {
    order: 2;
  }
  .is-style-image-content .wp-block-columns .wp-block-column:last-child, .is-style-text-image-section .wp-block-columns .wp-block-column:last-child {
    order: 1;
  }
}
@media (max-width: 781px) {
  .is-style-image-content .wp-block-image, .is-style-text-image-section .wp-block-image {
    margin: 0 -15px;
  }
  .is-style-image-content .wp-block-image img, .is-style-text-image-section .wp-block-image img {
    width: 100%;
  }
}

.sub-section .wp-block-columns {
  margin: auto;
  max-width: 1100px;
}
.sub-section .wp-block-columns .wp-block-button__link.wp-element-button {
  min-width: 188px;
}
@media (min-width: 782px) {
  .sub-section .wp-block-columns .wp-block-button__link.wp-element-button {
    min-width: 232px;
  }
}
@media (max-width: 781px) {
  .sub-section .wp-block-columns {
    text-align: center;
  }
  .sub-section .wp-block-columns .wp-block-buttons {
    justify-content: center;
  }
}

.inner_content {
  border-bottom: 1px solid var(--wp--preset--color--secondary);
}

.contact-form-section .gform_wrapper {
  max-width: 725px;
  margin: auto;
}
@media (min-width: 782px) {
  .contact-form-section .gform_wrapper .gform_fields {
    grid-gap: 20px 40px !important;
  }
}
@media (min-width: 782px) {
  .contact-form-section .gform_wrapper .ginput_complex {
    grid-gap: 20px 30px !important;
  }
}
.contact-form-section .gform_wrapper input[type=color], .contact-form-section .gform_wrapper input[type=date], .contact-form-section .gform_wrapper input[type=datetime-local], .contact-form-section .gform_wrapper input[type=datetime], .contact-form-section .gform_wrapper input[type=email], .contact-form-section .gform_wrapper input[type=month], .contact-form-section .gform_wrapper input[type=number], .contact-form-section .gform_wrapper input[type=password], .contact-form-section .gform_wrapper input[type=search], .contact-form-section .gform_wrapper input[type=tel], .contact-form-section .gform_wrapper input[type=text], .contact-form-section .gform_wrapper input[type=time], .contact-form-section .gform_wrapper input[type=url], .contact-form-section .gform_wrapper input[type=week], .contact-form-section .gform_wrapper select, .contact-form-section .gform_wrapper textarea {
  background-color: transparent;
  color: var(--wp--preset--color--white);
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--white);
}
.contact-form-section .gform_wrapper input[type=color]::placeholder, .contact-form-section .gform_wrapper input[type=date]::placeholder, .contact-form-section .gform_wrapper input[type=datetime-local]::placeholder, .contact-form-section .gform_wrapper input[type=datetime]::placeholder, .contact-form-section .gform_wrapper input[type=email]::placeholder, .contact-form-section .gform_wrapper input[type=month]::placeholder, .contact-form-section .gform_wrapper input[type=number]::placeholder, .contact-form-section .gform_wrapper input[type=password]::placeholder, .contact-form-section .gform_wrapper input[type=search]::placeholder, .contact-form-section .gform_wrapper input[type=tel]::placeholder, .contact-form-section .gform_wrapper input[type=text]::placeholder, .contact-form-section .gform_wrapper input[type=time]::placeholder, .contact-form-section .gform_wrapper input[type=url]::placeholder, .contact-form-section .gform_wrapper input[type=week]::placeholder, .contact-form-section .gform_wrapper select::placeholder, .contact-form-section .gform_wrapper textarea::placeholder {
  color: var(--wp--preset--color--white);
}
.contact-form-section .gform_wrapper input[type=color] option, .contact-form-section .gform_wrapper input[type=date] option, .contact-form-section .gform_wrapper input[type=datetime-local] option, .contact-form-section .gform_wrapper input[type=datetime] option, .contact-form-section .gform_wrapper input[type=email] option, .contact-form-section .gform_wrapper input[type=month] option, .contact-form-section .gform_wrapper input[type=number] option, .contact-form-section .gform_wrapper input[type=password] option, .contact-form-section .gform_wrapper input[type=search] option, .contact-form-section .gform_wrapper input[type=tel] option, .contact-form-section .gform_wrapper input[type=text] option, .contact-form-section .gform_wrapper input[type=time] option, .contact-form-section .gform_wrapper input[type=url] option, .contact-form-section .gform_wrapper input[type=week] option, .contact-form-section .gform_wrapper select option, .contact-form-section .gform_wrapper textarea option {
  color: var(--wp--preset--color--secondary);
}
@media (min-width: 782px) {
  .contact-form-section .gform_wrapper input[type=color], .contact-form-section .gform_wrapper input[type=date], .contact-form-section .gform_wrapper input[type=datetime-local], .contact-form-section .gform_wrapper input[type=datetime], .contact-form-section .gform_wrapper input[type=email], .contact-form-section .gform_wrapper input[type=month], .contact-form-section .gform_wrapper input[type=number], .contact-form-section .gform_wrapper input[type=password], .contact-form-section .gform_wrapper input[type=search], .contact-form-section .gform_wrapper input[type=tel], .contact-form-section .gform_wrapper input[type=text], .contact-form-section .gform_wrapper input[type=time], .contact-form-section .gform_wrapper input[type=url], .contact-form-section .gform_wrapper input[type=week], .contact-form-section .gform_wrapper select, .contact-form-section .gform_wrapper textarea {
    font-size: 20px !important;
  }
}
.contact-form-section .gform_wrapper select {
  appearance: none;
  background-image: url(assets/images/dropdown.png);
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 22px;
}

.ginput_container_consent label {
  display: flex;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-items: center;
}

.ginput_container_consent input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.ginput_container_consent label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #fff;
}

.ginput_container_consent input:checked ~ label:before {
  background-color: var(--wp--preset--color--primary);
}

.ginput_container_consent label:after {
  content: "";
  position: absolute;
  display: none;
}

.ginput_container_consent input:checked ~ label:after {
  display: block;
}

.ginput_container_consent label:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (min-width: 1500px) {
  .wp-block-columns.is-style-text-image-section {
    grid-gap: 100px;
  }
}

.is-style-location-child-section {
  grid-gap: 30px;
  margin-bottom: 30px;
}
.is-style-location-child-section .wp-block-cover {
  position: relative;
  overflow: hidden;
}
.is-style-location-child-section .wp-block-cover img {
  transform: scale(1);
  transition: all 0.3s ease;
}
.is-style-location-child-section .wp-block-cover:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.plus-more-features {
  margin: auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
  margin-top: 30px;
}
.plus-more-features li {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  grid-gap: 30px;
  text-align: center;
}
.plus-more-features li img {
  max-width: 30px;
}
@media (min-width: 782px) {
  .plus-more-features {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .plus-more-features {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .plus-more-features {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
  }
}
.plus-more-features.gym-features {
  grid-gap: 30px;
}
.plus-more-features.gym-features li {
  flex-direction: column;
  grid-gap: 8px;
  max-width: 180px;
  margin: auto;
}
.plus-more-features.gym-features li img {
  max-width: 36px;
}
@media (min-width: 1200px) {
  .plus-more-features.gym-features {
    grid-gap: 60px 20px;
  }
}

.is-style-medium-max-column-width .wp-block-column .wp-block-columns .wp-block-column:first-child {
  flex-basis: 30px !important;
}
@media (max-width: 781px) {
  .is-style-medium-max-column-width .wp-block-column .wp-block-columns {
    grid-gap: 10px;
  }
}
@media (min-width: 782px) {
  .is-style-medium-max-column-width {
    padding: 0 6%;
    grid-gap: 80px;
  }
}
@media (min-width: 992px) {
  .is-style-medium-max-column-width {
    padding: 0 8%;
    grid-gap: 100px;
  }
}
@media (min-width: 1200px) {
  .is-style-medium-max-column-width {
    padding: 0 10%;
    grid-gap: 120px;
  }
}

@media (min-width: 782px) {
  .single-membership .is-style-medium-max-column-width {
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .single-membership .is-style-medium-max-column-width {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .single-membership .is-style-medium-max-column-width {
    padding: 0 20px;
  }
}

.is-style-slider-section {
  box-sizing: border-box;
  direction: ltr;
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto;
  grid-gap: 40px;
}
.is-style-slider-section .slider-images {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  align-self: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.is-style-slider-section .slider-images .wp-block-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.is-style-slider-section .slider-images .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-style-slider-section .slider-images .slick-dots {
  bottom: 26px;
  display: flex;
  justify-content: center;
  grid-gap: 4px;
  align-items: center;
}
.is-style-slider-section .slider-images .slick-dots li button {
  border: 1px solid var(--wp--preset--color--light-theme-grey);
  width: 15px;
  height: 15px;
}
.is-style-slider-section .slider-images .slick-dots li button:before {
  font-size: 15px;
  width: 15px;
  height: 15px;
  content: "";
  opacity: 1;
  color: var(--wp--preset--color--light-theme-grey);
}
.is-style-slider-section .slider-images .slick-dots li.slick-active button {
  background-color: var(--wp--preset--color--light-theme-grey);
}
.is-style-slider-section .slider-images .slick-track {
  display: flex !important;
}
.is-style-slider-section .slider-images .slick-slide {
  height: inherit !important;
}
.is-style-slider-section .slider-content {
  direction: ltr;
  grid-column: 2;
  grid-row: 1;
  padding: 0 20% 0 0%;
  word-break: break-word;
  align-self: center;
}
@media (min-width: 1200px) {
  .is-style-slider-section {
    grid-gap: 70px;
  }
}
@media (min-width: 1500px) {
  .is-style-slider-section {
    grid-gap: 80px;
  }
}
@media (min-width: 1800px) {
  .is-style-slider-section {
    grid-gap: 90px;
  }
}
@media (max-width: 1199px) {
  .is-style-slider-section {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  .is-style-slider-section .slider-images {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
@media (max-width: 781px) {
  .is-style-slider-section {
    display: flex;
    flex-direction: column;
  }
}

.membership-tab-content {
  color: var(--wp--preset--color--white);
}
.membership-tab-content table {
  width: 100%;
  border-collapse: collapse;
}
.membership-tab-content table .content-td td {
  padding: 8px 4px;
  text-align: center;
}
.membership-tab-content table .content-td td:nth-child(1) {
  width: 35%;
  padding-left: 20px;
  text-align: left;
}
.membership-tab-content table .content-td td:nth-child(2) {
  width: 12%;
}
.membership-tab-content table .content-td td:nth-child(3) {
  width: 12%;
}
.membership-tab-content table .content-td td:nth-child(4) {
  width: 12%;
}
.membership-tab-content table .content-td td:nth-child(5) {
  width: 12%;
}
.membership-tab-content table .heading-td td {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wp--preset--color--white);
  text-align: center;
}
.membership-tab-content table .heading-td td:nth-child(1) {
  width: 15%;
  padding-left: 20px;
  text-align: left;
}
.membership-tab-content .responsive-table {
  width: 100%;
}
@media (max-width: 781px) {
  .membership-tab-content .responsive-table {
    overflow-y: scroll;
  }
  .membership-tab-content .responsive-table table {
    width: 800px;
  }
  .membership-tab-content .responsive-table table .content-td td {
    padding: 8px 4px;
    text-align: center;
  }
  .membership-tab-content .responsive-table table .content-td td:nth-child(1) {
    width: 20%;
    padding-left: 20px;
    text-align: left;
  }
  .membership-tab-content .responsive-table table .content-td td:nth-child(2) {
    width: 6%;
  }
  .membership-tab-content .responsive-table table .content-td td:nth-child(3) {
    width: 6%;
  }
  .membership-tab-content .responsive-table table .content-td td:nth-child(4) {
    width: 6%;
  }
  .membership-tab-content .responsive-table table .heading-td td {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--wp--preset--color--white);
    text-align: center;
  }
  .membership-tab-content .responsive-table table .heading-td td:nth-child(1) {
    width: 20%;
    padding-left: 20px;
    text-align: left;
  }
}
.membership-tab-content .accordions {
  display: none;
}
@media (max-width: 781px) {
  .membership-tab-content .responsive-table {
    display: none;
  }
  .membership-tab-content .accordions {
    display: block;
  }
  .membership-tab-content .accordions .lightweight-accordion .lightweight-accordion-title {
    color: #fff !important;
  }
  .membership-tab-content .accordions .lightweight-accordion .lightweight-accordion-title::after {
    background-image: url(assets/images/white-accordion-arrow.svg);
  }
  .membership-tab-content .accordions .lightweight-accordion .lightweight-accordion-title::before {
    background-color: #fff;
  }
  .membership-tab-content .accordions .lightweight-accordion .lightweight-accordion-body ul li {
    font-size: 16px;
  }
}

.popup-form-section .gform_wrapper {
  max-width: 725px;
  margin: auto;
}
.popup-form-section .gform_wrapper h2 {
  font-size: 52px;
  margin-bottom: 30px;
  text-align: center;
}
.popup-form-section .gform_wrapper p {
  font-weight: 500;
  text-align: center;
}
@media (min-width: 782px) {
  .popup-form-section .gform_wrapper .gform_fields {
    grid-gap: 20px 40px !important;
  }
}
@media (min-width: 782px) {
  .popup-form-section .gform_wrapper .ginput_complex {
    grid-gap: 20px 30px !important;
  }
}
.popup-form-section .gform_wrapper input[type=color], .popup-form-section .gform_wrapper input[type=date], .popup-form-section .gform_wrapper input[type=datetime-local], .popup-form-section .gform_wrapper input[type=datetime], .popup-form-section .gform_wrapper input[type=email], .popup-form-section .gform_wrapper input[type=month], .popup-form-section .gform_wrapper input[type=number], .popup-form-section .gform_wrapper input[type=password], .popup-form-section .gform_wrapper input[type=search], .popup-form-section .gform_wrapper input[type=tel], .popup-form-section .gform_wrapper input[type=text], .popup-form-section .gform_wrapper input[type=time], .popup-form-section .gform_wrapper input[type=url], .popup-form-section .gform_wrapper input[type=week], .popup-form-section .gform_wrapper select, .popup-form-section .gform_wrapper textarea {
  background-color: transparent;
  color: var(--wp--preset--color--secondary);
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--secondary);
}
.popup-form-section .gform_wrapper input[type=color]::placeholder, .popup-form-section .gform_wrapper input[type=date]::placeholder, .popup-form-section .gform_wrapper input[type=datetime-local]::placeholder, .popup-form-section .gform_wrapper input[type=datetime]::placeholder, .popup-form-section .gform_wrapper input[type=email]::placeholder, .popup-form-section .gform_wrapper input[type=month]::placeholder, .popup-form-section .gform_wrapper input[type=number]::placeholder, .popup-form-section .gform_wrapper input[type=password]::placeholder, .popup-form-section .gform_wrapper input[type=search]::placeholder, .popup-form-section .gform_wrapper input[type=tel]::placeholder, .popup-form-section .gform_wrapper input[type=text]::placeholder, .popup-form-section .gform_wrapper input[type=time]::placeholder, .popup-form-section .gform_wrapper input[type=url]::placeholder, .popup-form-section .gform_wrapper input[type=week]::placeholder, .popup-form-section .gform_wrapper select::placeholder, .popup-form-section .gform_wrapper textarea::placeholder {
  color: var(--wp--preset--color--secondary);
}
.popup-form-section .gform_wrapper input[type=color] option, .popup-form-section .gform_wrapper input[type=date] option, .popup-form-section .gform_wrapper input[type=datetime-local] option, .popup-form-section .gform_wrapper input[type=datetime] option, .popup-form-section .gform_wrapper input[type=email] option, .popup-form-section .gform_wrapper input[type=month] option, .popup-form-section .gform_wrapper input[type=number] option, .popup-form-section .gform_wrapper input[type=password] option, .popup-form-section .gform_wrapper input[type=search] option, .popup-form-section .gform_wrapper input[type=tel] option, .popup-form-section .gform_wrapper input[type=text] option, .popup-form-section .gform_wrapper input[type=time] option, .popup-form-section .gform_wrapper input[type=url] option, .popup-form-section .gform_wrapper input[type=week] option, .popup-form-section .gform_wrapper select option, .popup-form-section .gform_wrapper textarea option {
  color: var(--wp--preset--color--secondary);
}
@media (min-width: 782px) {
  .popup-form-section .gform_wrapper input[type=color], .popup-form-section .gform_wrapper input[type=date], .popup-form-section .gform_wrapper input[type=datetime-local], .popup-form-section .gform_wrapper input[type=datetime], .popup-form-section .gform_wrapper input[type=email], .popup-form-section .gform_wrapper input[type=month], .popup-form-section .gform_wrapper input[type=number], .popup-form-section .gform_wrapper input[type=password], .popup-form-section .gform_wrapper input[type=search], .popup-form-section .gform_wrapper input[type=tel], .popup-form-section .gform_wrapper input[type=text], .popup-form-section .gform_wrapper input[type=time], .popup-form-section .gform_wrapper input[type=url], .popup-form-section .gform_wrapper input[type=week], .popup-form-section .gform_wrapper select, .popup-form-section .gform_wrapper textarea {
    font-size: 20px !important;
  }
}
.popup-form-section .gform_wrapper select {
  appearance: none;
  background-image: url(assets/images/dropdown.png);
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 22px;
}
.popup-form-section .ginput_container_consent label {
  display: flex;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-items: center;
}
.popup-form-section .ginput_container_consent input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.popup-form-section .ginput_container_consent label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid var(--wp--preset--color--secondary);
}
.popup-form-section .ginput_container_consent input:checked ~ label:before {
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
}
.popup-form-section .ginput_container_consent label:after {
  content: "";
  position: absolute;
  display: none;
}
.popup-form-section .ginput_container_consent input:checked ~ label:after {
  display: block;
}
.popup-form-section .ginput_container_consent label:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popup-form-section .gform_button {
  border: 1px solid var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--secondary);
}
.popup-form-section .gform_button:hover, .popup-form-section .gform_button:focus, .popup-form-section .gform_button:focus-within {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
}

.pum-theme-lightbox .pum-content + .pum-close {
  right: 0px !important;
  top: 8px !important;
}

.pum-theme-lightbox .pum-container {
  margin-bottom: 0px;
  width: 100% !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}
@media (min-width: 1200px) {
  .pum-theme-lightbox .pum-container {
    padding: 58px !important;
    width: 790px !important;
  }
}

.fancybox__container .fancybox__content {
  padding: 0px;
  height: 100% !important;
}

.magazine-section .wp-block-column a img {
  transition: all 0.3s ease;
}

.magazine-section .wp-block-column a:hover img {
  opacity: 0.8;
  transition: all 0.3s ease;
}

@media (min-width: 1200px) {
  .navigation-links {
    margin-top: 90px;
  }
}
/*.page-template-landing-page .site-header .header-middle .wp-block-site-logo {max-width: 186px;}*/
.page-template-landing-page .contact-form-section .gform_wrapper input[type=color], .page-template-landing-page .contact-form-section .gform_wrapper input[type=date], .page-template-landing-page .contact-form-section .gform_wrapper input[type=datetime-local], .page-template-landing-page .contact-form-section .gform_wrapper input[type=datetime], .page-template-landing-page .contact-form-section .gform_wrapper input[type=email], .page-template-landing-page .contact-form-section .gform_wrapper input[type=month], .page-template-landing-page .contact-form-section .gform_wrapper input[type=number], .page-template-landing-page .contact-form-section .gform_wrapper input[type=password], .page-template-landing-page .contact-form-section .gform_wrapper input[type=search], .page-template-landing-page .contact-form-section .gform_wrapper input[type=tel], .page-template-landing-page .contact-form-section .gform_wrapper input[type=text], .page-template-landing-page .contact-form-section .gform_wrapper input[type=time], .page-template-landing-page .contact-form-section .gform_wrapper input[type=url], .page-template-landing-page .contact-form-section .gform_wrapper input[type=week], .page-template-landing-page .contact-form-section .gform_wrapper select, .page-template-landing-page .contact-form-section .gform_wrapper textarea {
  background-color: transparent;
  color: var(--wp--preset--color--secondary);
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--secondary);
}

.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  line-height: normal;
}

.top-bar {
  background: linear-gradient(to right, #1c2b39 0%, #e40571 33%, #00aae7 75%, #1c2b39 100%);
  padding: 0 !important;
  margin: 0;
  height: 5px;
}

.tour-location {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 12px 18px !important;
  font-weight: 400;
  font-size: 20px !important;
  line-height: 1.4;
  background-color: transparent;
  color: var(--wp--preset--color--white);
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--white);
  appearance: none;
  background-image: url(assets/images/dropdown.png);
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 22px;
  width: 100%;
  margin: auto !important;
  max-width: 100% !important;
}

.tour-location option {
  color: var(--wp--preset--color--secondary);
}

.tour-location-section {
  width: 100% !important;
  margin: auto !important;
  max-width: 320px !important;
}

.timetable-section.tour-timetable-section .timetable-tabs-container {
  margin-bottom: 20px;
}

.tour-booking-buttons {
  display: flex;
  grid-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tour-booking-buttons button {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 12px 24px !important;
  border: 1px solid var(--wp--preset--color--white);
  border-radius: 0px;
  color: var(--wp--preset--color--white);
  background-color: transparent;
  cursor: pointer;
  font-weight: 400;
  min-width: 150px;
  font-size: 16px;
  text-decoration: none !important;
  line-height: normal;
  transition: all 0.3s ease;
  margin-top: 0px;
  border-radius: 8px;
}

.tour-booking-buttons button:hover, .tour-booking-buttons button:focus, .tour-booking-buttons button:focus-within {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  transition: all 0.3s ease;
}

.tour-booking-buttons .activebt, .tour-booking-buttons .activebt:hover, .tour-booking-buttons .activebt:focus, .tour-booking-buttons .activebt:focus-within {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  transition: all 0.3s ease;
}

#field_9_8 {
  margin-top: 20px;
}

#field_10_8 {
  margin-top: 20px;
}

.page-id-1581 .contact-form-section .gform_wrapper {
  max-width: 100%;
  margin: auto;
}

.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full), .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
  padding-right: 0;
}

.time_loading {
  position: relative;
}

.time_loading:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(assets/images/ajax-loader.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  display: block;
  position: absolute;
  top: 20%;
  z-index: 9;
  min-height: 78px;
}

#gform_wrapper_9 {
  display: none;
}

#popmake-1768 .wp-block-buttons {
  justify-content: center;
  width: 100%;
}

#popmake-1768 .wp-block-button {
  display: block;
  width: 100%;
}

#popmake-1768 .wp-block-buttons .wp-element-button, #popmake-1768 .wp-block-buttons .wp-block-button__link {
  display: block;
  width: 100%;
  border: 1px solid var(--wp--preset--color--white);
}

@media (min-width: 1200px) {
  .pum-theme-lightbox #popmake-1747.pum-container {
    padding: 58px !important;
    width: 1084px !important;
  }
  .pum-theme-lightbox #popmake-1747.pum-container .wp-block-buttons .wp-element-button, .pum-theme-lightbox #popmake-1747.pum-container .wp-block-buttons .wp-block-button__link {
    min-width: 310px;
  }
}
@media (min-width: 1200px) {
  .tour-location {
    font-size: 20px !important;
  }
}
@media (max-width: 1199px) {
  .page-template-landing-page .site-header .header-middle .wp-block-group {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .tour-booking-buttons {
    grid-gap: 12px;
  }
  .timetable-section.tour-timetable-section .timetable-tabs-container nav ul li {
    text-align: left;
    font-weight: 400;
  }
  .timetable-section.tour-timetable-section .timetable-tabs-container nav ul li.active {
    background-image: url(assets/images/dropdown.png);
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 22px;
  }
  .timetable-section.tour-timetable-section .timetable-tabs-container nav {
    width: 100% !important;
    margin: auto !important;
    max-width: 300px !important;
  }
  .timetable-section.tour-timetable-section .timetable-tabs-container nav ul li.active:after {
    height: 1px;
  }
  .timetable-section.tour-timetable-section .timetable-tabs-container nav ul li:hover:after {
    height: 1px;
  }
  .tour-location {
    padding: 12px 32px 12px 8px !important;
  }
}
@media (max-width: 325px) {
  .timetable-section.tour-timetable-section .timetable-tabs-container nav {
    width: 100% !important;
    margin: auto !important;
    max-width: 240px !important;
  }
}
.is-style-billing-column {
  margin-bottom: 12px;
  grid-gap: 20px;
}
.is-style-billing-column .wp-block-column {
  padding: 24px 18px;
}
.is-style-billing-column .wp-block-column ul {
  padding-left: 22px;
}

@media (min-width: 1200px) {
  .is-style-billing-column {
    width: 800px;
    grid-gap: 76px;
  }
  .is-style-billing-column .wp-block-column {
    padding: 30px 18px;
  }
}
.is-style-hide-section {
  display: none !important;
}

.mobile-only {
  display: none !important;
}

.is-style-mobile-only {
  display: none !important;
}

@media (max-width: 991px) {
  .is-style-desktop-only {
    display: none !important;
  }
  .is-style-mobile-only {
    display: flex !important;
  }
  .mobile-only {
    display: block !important;
  }
}
.is-style-special-offer {
  min-height: 284px;
}
.is-style-special-offer .wp-block-cover__inner-container {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}
.is-style-special-offer .wp-block-image {
  max-width: 220px;
  margin: 0 !important;
  margin-bottom: 10px !important;
}
@media (min-width: 782px) {
  .is-style-special-offer .wp-block-image {
    max-width: 400px;
    margin-bottom: 24px !important;
  }
}
@media (min-width: 992px) {
  .is-style-special-offer .wp-block-image {
    max-width: 500px;
    margin-bottom: 26px !important;
  }
}
@media (min-width: 1200px) {
  .is-style-special-offer .wp-block-image {
    max-width: 600px;
    margin-bottom: 30px !important;
  }
}
@media (min-width: 782px) {
  .is-style-special-offer {
    min-height: 440px;
  }
}
@media (min-width: 992px) {
  .is-style-special-offer {
    min-height: 540px;
  }
}
@media (min-width: 1200px) {
  .is-style-special-offer {
    min-height: 640px;
  }
}
@media (min-width: 1500px) {
  .is-style-special-offer {
    min-height: 740px;
  }
}

.is-style-text-image-section:not(.new-about-section-image) .wp-block-image img {
  aspect-ratio: 6/5 !important;
  object-fit: cover !important;
  height: auto !important;
  max-width: 100% !important;
}

.search-results-content h3 span {
  display: block;
  margin-bottom: 8px;
  color: var(--wp--preset--color--secondary);
  font-size: 18px;
}

@media (max-width: 781px) {
  .program-section .is-style-medium-max-column-width .wp-block-column .wp-block-columns {
    margin-bottom: 24px !important;
  }
  .program-section figure.wp-block-image.size-full {
    max-width: 34px;
  }
}

.page-id-1592 .contact-form-section .gform_wrapper {
  max-width: var(--wp--style--global--content-size);
}

@media (max-width: 781px) {
  .postid-51 h3.is-style-special-heading br {
    display: block;
  }
  .page-id-31 .wp-block-buttons {
    justify-content: center;
  }
}
.personal-trainer h3.wp-block-heading {
  margin-bottom: 8px;
}

.personal-trainer h4.wp-block-heading {
  margin-bottom: 8px;
}

.personal-trainer h5.wp-block-heading {
  margin-bottom: 8px;
}

.personal-trainer h6.wp-block-heading {
  margin-bottom: 8px;
}

.personal-trainer ul {
  padding-left: 30px;
}

.personal-trainer ul li {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

#pum-3419 {
  display: none !important;
}

@media (max-width: 1199px) {
  #popmake-3419 .pum-close {
    display: none !important;
  }
  #pum-3419 {
    display: block !important;
  }
}
.credit_conc span {
  color: #f47920;
}

.credit_conc_center {
  text-align: right;
}

a.credit_conc {
  text-decoration: none;
}

.footer-credit-conc {
  margin: 0;
  justify-content: end;
  display: none;
}

a.credit_conc:hover {
  color: #b6005f;
}

.personal-trainer .wp-block-image img {
  width: 100%;
}

.wp-block-buttons .wp-element-button, .wp-block-buttons .wp-block-button__link {
  text-align: center;
}

@media (max-width: 992px) {
  .footer-credit-conc {
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .nav-overlay-layout {
    grid-gap: 15px;
  }
}
.fancybox__container {
  z-index: 99999 !important;
}

.page-id-239 .inner_content {
  padding-bottom: 30px;
}

@media (max-width: 495px) {
  .video-banner .mejs__mediaelement {
    position: relative;
  }
  .custom-inner-banner.video-banner .custom-inner-banner-content {
    height: 490px !important;
    min-height: 490px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .video-sec::after {
    content: none !important;
  }
  #videobanner {
    display: block;
    height: 490px !important;
    position: relative;
    width: 100%;
    z-index: 9;
    object-fit: cover;
  }
  #videobanner #videobanner_html5 {
    position: absolute;
    width: 160% !important;
    height: 160% !important;
    object-fit: cover !important;
    top: 32%;
    left: 50%;
    display: block;
    transform: translate(-50%, -32%);
  }
}
#class_timetables.time_loading {
  margin-bottom: 30px;
}

.footer-credit-conc {
  display: none;
}

/* @media(min-width: 992px){
.credit_conc_center {padding-right: 5%;}
}

@media(min-width: 1200px){
.credit_conc_center {padding-right: 3%;}
}

@media(min-width: 1500px){
.credit_conc_center {padding-right: 1%;}
}

@media(max-width: 991px){
.credit_conc_center {text-align: center;}
}

@media(max-width: 781px){
.credit_conc_center {text-align: left;padding: 10px 72px 0 15px;}
} */
@media (min-width: 1200px) {
  .location-header-overlay #navbar {
    display: none;
  }
  .location-header-overlay .navigation-links #navbar {
    display: block;
  }
}
/* (location/ryde/ry-club-video) override the position of the video to look more centred on the page in tablet devices and larger */
@media (min-width: 768px) {
  .ng-centre-yt-video {
    position: relative;
    left: 45px;
  }
}
@media (max-width: 1199px) {
  .location-header-overlay .navigation-links #navbar {
    display: none;
  }
}
.custom-inner-banner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--secondary);
}
.custom-inner-banner .custom-inner-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 582px;
  padding-top: 88px;
  padding-bottom: 40px;
}
.custom-inner-banner .custom-inner-banner-content h1 {
  line-height: normal;
  margin-bottom: 20px;
  color: var(--wp--preset--color--white);
}
.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
  margin-bottom: 18px;
  color: var(--wp--preset--color--white);
  padding: 0 22px;
}
.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
  padding-bottom: 10px;
  color: var(--wp--preset--color--white);
  max-width: 582px;
  margin: auto;
}
.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons {
  display: flex;
  grid-gap: 20px;
  justify-content: center;
  align-items: center;
}
.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 12px 24px !important;
  border: 1px solid var(--wp--preset--color--white);
  border-radius: 0px;
  color: var(--wp--preset--color--white);
  background-color: transparent;
  cursor: pointer;
  font-weight: 400;
  min-width: 150px;
  font-size: 16px;
  text-decoration: none !important;
  line-height: normal;
  transition: all 0.3s ease;
}
.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:hover, .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:focus, .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:focus-within {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--secondary);
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a {
    padding: 12px 30px !important;
    min-width: 174px;
  }
}
.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 13px 24px !important;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 0px;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--primary);
  cursor: pointer;
  font-weight: 400;
  min-width: 150px;
  font-size: 16px;
  text-decoration: none !important;
  line-height: normal;
  transition: all 0.3s ease;
}
.custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child:hover, .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child:focus, .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child:focus-within {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--secondary);
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a:first-child {
    padding: 13px 30px !important;
    min-width: 174px;
  }
}
@media (max-width: 440px) {
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons {
    flex-direction: column;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-buttons a {
    display: block;
    width: 100%;
  }
}
@media (min-width: 782px) {
  .custom-inner-banner .custom-inner-banner-content {
    min-height: 482px;
  }
  .custom-inner-banner .custom-inner-banner-content h1 {
    margin-bottom: 28px;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
    margin-bottom: 22px;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
    padding-bottom: 14px;
  }
}
@media (min-width: 992px) {
  .custom-inner-banner .custom-inner-banner-content {
    min-height: 582px;
  }
  .custom-inner-banner .custom-inner-banner-content h1 {
    margin-bottom: 30px;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
    margin-bottom: 24px;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
    padding-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .custom-inner-banner .custom-inner-banner-content {
    min-height: 782px;
  }
  .custom-inner-banner .custom-inner-banner-content h1 {
    margin-bottom: 35px;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
    margin-bottom: 26px;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
    padding-bottom: 18px;
  }
}
@media (min-width: 1500px) {
  .custom-inner-banner .custom-inner-banner-content {
    min-height: 800px;
  }
  .custom-inner-banner .custom-inner-banner-content h1 {
    margin-bottom: 30px;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main {
    margin-bottom: 22px;
  }
  .custom-inner-banner .custom-inner-banner-content .custom-inner-banner-content-main p {
    padding-bottom: 16px;
  }
}

.custom-inner-banner .custom-inner-banner-content.h1-style-update h1 {
  line-height: normal;
  margin-bottom: 20px;
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--large);
}
.custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
  line-height: normal;
  margin-bottom: 20px;
  color: var(--wp--preset--color--white);
}
@media (min-width: 782px) {
  .custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
    margin-bottom: 28px;
  }
}
@media (min-width: 992px) {
  .custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
    margin-bottom: 35px;
  }
}
@media (min-width: 1500px) {
  .custom-inner-banner .custom-inner-banner-content.h1-style-update h2 {
    margin-bottom: 30px;
  }
}

.single-post .custom-inner-banner .custom-inner-banner-content {
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 300px;
  padding-top: 74px;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}
.single-post .custom-inner-banner .custom-inner-banner-content h1 {
  display: block;
}
@media (min-width: 782px) {
  .single-post .custom-inner-banner .custom-inner-banner-content {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .single-post .custom-inner-banner .custom-inner-banner-content {
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  .single-post .custom-inner-banner .custom-inner-banner-content {
    min-height: 700px;
  }
}
@media (min-width: 1500px) {
  .single-post .custom-inner-banner .custom-inner-banner-content {
    min-height: 736px;
  }
}
@media (max-width: 1199px) {
  .single-post .custom-inner-banner .custom-inner-banner-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.single-team .custom-inner-banner .custom-inner-banner-content {
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 300px;
  padding-top: 74px;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}
.single-team .custom-inner-banner .custom-inner-banner-content h1 {
  display: block;
}
@media (min-width: 782px) {
  .single-team .custom-inner-banner .custom-inner-banner-content {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .single-team .custom-inner-banner .custom-inner-banner-content {
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  .single-team .custom-inner-banner .custom-inner-banner-content {
    min-height: 700px;
  }
}
@media (min-width: 1500px) {
  .single-team .custom-inner-banner .custom-inner-banner-content {
    min-height: 736px;
  }
}
@media (max-width: 1199px) {
  .single-team .custom-inner-banner .custom-inner-banner-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Location Block
-------------------------------------------------------------- */
.location-grid {
  position: relative;
}
.location-grid a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.location-grid a:hover .location-grid-item-image img {
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.location-grid a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.location-grid .location-grid-item {
  position: relative;
}
.location-grid .location-grid-item .location-grid-item-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: -1;
}
.location-grid .location-grid-item .location-grid-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  transform: scale(1);
}
.location-grid .location-grid-item .location-grid-item-content {
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 0 15px;
}
.location-grid .location-grid-item .location-grid-item-content h3 {
  color: var(--wp--preset--color--white);
}
.location-grid .slick-dots li button:before {
  color: #243444;
}
.location-grid .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #243444;
}
@media (min-width: 782px) {
  .location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    grid-gap: 0px;
  }
  .location-grid .location-grid-item-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .location-grid .location-grid-item {
    width: 100%;
    min-height: 450px;
  }
}
@media (max-width: 781px) {
  .location-grid {
    padding-left: 15px;
  }
  .location-grid .location-grid-item-content {
    bottom: 20px;
    left: 6px;
    text-align: left;
  }
  .location-grid .location-grid-item-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .location-grid {
    padding-left: 20px;
  }
  .location-grid .location-grid-item-content h3 {
    font-size: 22px;
  }
}

.page-id-309 .testimonial-section .testimonials .slick-next {
  background-image: url(assets/images/dark-right-slide.png);
}
.page-id-309 .testimonial-section .testimonials .slick-prev {
  background-image: url(assets/images/dark-left-slide.png);
}

.has-light-theme-grey-background-color .testimonial-section .testimonials .slick-next {
  background-image: url(assets/images/dark-right-slide.png);
}
.has-light-theme-grey-background-color .testimonial-section .testimonials .slick-prev {
  background-image: url(assets/images/dark-left-slide.png);
}

.testimonial-section {
  max-width: 870px;
  margin: auto !important;
}
.testimonial-section .testimonials .slick-next {
  top: 48%;
  width: 46px;
  height: 30px;
  right: 40px;
  background-image: url(assets/images/right-slide.png);
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-48%);
  background-size: contain;
}
@media (max-width: 991px) {
  .testimonial-section .testimonials .slick-next {
    top: auto;
    width: 18px;
    height: 18px;
    bottom: 0;
    right: 30%;
  }
}
@media (max-width: 781px) {
  .testimonial-section .testimonials .slick-next {
    right: 20%;
  }
}
@media (max-width: 580px) {
  .testimonial-section .testimonials .slick-next {
    right: 10%;
  }
}
.testimonial-section .testimonials .slick-prev {
  top: 48%;
  width: 46px;
  height: 30px;
  left: 0px;
  background-image: url(assets/images/left-slide.png);
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-48%);
  background-size: contain;
}
@media (max-width: 991px) {
  .testimonial-section .testimonials .slick-prev {
    top: auto;
    width: 18px;
    height: 18px;
    bottom: 0;
    left: 30%;
  }
}
@media (max-width: 781px) {
  .testimonial-section .testimonials .slick-prev {
    left: 20%;
  }
}
@media (max-width: 580px) {
  .testimonial-section .testimonials .slick-prev {
    left: 10%;
  }
}
.testimonial-section .testimonial-item-content {
  text-align: center;
  max-width: 580px;
  margin: auto !important;
}
.testimonial-section .testimonial-item-content img {
  margin: auto;
  margin-top: 20px;
  max-width: 78px;
}
@media (min-width: 782px) {
  .testimonial-section .testimonial-item-content img {
    margin-top: 22px;
  }
}
@media (min-width: 992px) {
  .testimonial-section .testimonial-item-content img {
    margin-top: 26px;
  }
}
@media (min-width: 1200px) {
  .testimonial-section .testimonial-item-content img {
    margin-top: 28px;
  }
}

/* News Block
-------------------------------------------------------------- */
.news-section .wp-block-buttons {
  margin-top: 20px;
  justify-content: center;
}
@media (min-width: 1200px) {
  .news-section .wp-block-buttons {
    margin-top: 68px;
  }
}
@media (min-width: 1500px) {
  .news-section .wp-block-buttons {
    margin-top: 88px;
  }
}
.news-section .news-grid {
  position: relative;
}
.news-section .news-grid a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.news-section .news-grid a:hover h3 {
  color: var(--wp--preset--color--primary);
}
.news-section .news-grid .date-content {
  padding-bottom: 8px;
}
.news-section .news-grid h3 {
  margin-bottom: 10px;
}
.news-section .news-grid .news-grid-item {
  position: relative;
}
.news-section .news-grid .news-grid-item .news-grid-item-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}
.news-section .news-grid .news-grid-item .news-grid-item-image img {
  width: 100%;
}
@media (max-width: 781px) {
  .news-section .news-grid .news-grid-item {
    margin-bottom: 30px;
    overflow: hidden;
  }
  .news-section .news-grid .news-grid-item .news-grid-item-content {
    position: absolute;
    bottom: 4px;
    padding: 0px 10px 14px;
    z-index: 99;
    color: var(--wp--preset--color--white);
  }
  .news-section .news-grid .news-grid-item .news-grid-item-image {
    margin-bottom: 0px;
    min-height: 254px;
    position: relative;
    height: 254px;
  }
  .news-section .news-grid .news-grid-item .news-grid-item-image:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
  }
  .news-section .news-grid .news-grid-item .news-grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 782px) {
  .news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    grid-gap: 20px;
  }
}
@media (min-width: 992px) {
  .news-section .news-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}
@media (min-width: 1200px) {
  .news-section .news-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }
}
@media (min-width: 1500px) {
  .news-section .news-grid {
    grid-gap: 40px;
  }
}
@media (max-width: 781px) {
  .news-section .news-grid .news-grid-item-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .news-section .news-grid .news-grid-item-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 781px) {
  .home .news-section {
    padding-bottom: var(--wp--preset--spacing--10) !important;
  }
}

.news-grid-item.class-grid-item {
  position: relative;
  display: flex;
  grid-gap: 30px;
}
.news-grid-item.class-grid-item .news-grid-item-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 0px !important;
  text-align: center;
  flex-basis: 15%;
  height: auto !important;
  min-height: auto !important;
}
.news-grid-item.class-grid-item .news-grid-item-image:before {
  content: none !important;
}
.news-grid-item.class-grid-item .news-grid-item-image img {
  width: auto !important;
  height: auto !important;
  max-width: 34px;
}
.news-grid-item.class-grid-item .news-grid-item-content {
  flex-basis: 85%;
  position: relative !important;
  bottom: auto !important;
  padding: 0px !important;
  color: var(--wp--preset--color--secondary) !important;
}
.news-grid-item.class-grid-item .news-grid-item-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
@media (min-width: 1200px) {
  .news-grid-item.class-grid-item .news-grid-item-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 781px) {
  .news-grid-item.class-grid-item {
    margin-bottom: 30px;
  }
  .news-grid-item.class-grid-item .news-grid-item-content h3 {
    margin-bottom: 8px;
  }
}

@media (min-width: 1200px) {
  .contact-inner-banner .custom-inner-banner-content h1 {
    margin-bottom: 66px;
    margin-top: 30px;
  }
}
@media (min-width: 1500px) {
  .contact-inner-banner .custom-inner-banner-content h1 {
    margin-bottom: 96px;
    margin-top: 30px;
  }
}
.contact-inner-banner .contact-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-content-main {
  margin: 0;
  background-color: var(--wp--preset--color--light-theme-grey);
  width: 100%;
  height: 100%;
  max-width: 378px;
  text-align: left;
  color: var(--wp--preset--color--secondary);
  padding: 30px;
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-content-main h3 {
  margin-bottom: 16px;
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-content-main p {
  color: var(--wp--preset--color--secondary);
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-content-main p:last-child {
  padding-bottom: 0px;
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons {
  flex-direction: column;
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 12px 24px !important;
  border: 1px solid var(--wp--preset--color--white);
  border-radius: 0px;
  color: var(--wp--preset--color--white);
  background-color: transparent;
  cursor: pointer;
  font-weight: 400;
  min-width: 150px;
  font-size: 16px;
  text-decoration: none !important;
  line-height: normal;
  transition: all 0.3s ease;
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:hover, .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:focus, .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:focus-within {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a {
    padding: 12px 30px !important;
    min-width: 174px;
  }
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro);
  padding: 13px 24px !important;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 0px;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--primary);
  cursor: pointer;
  font-weight: 400;
  min-width: 150px;
  font-size: 16px;
  text-decoration: none !important;
  line-height: normal;
  transition: all 0.3s ease;
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child:hover, .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child:focus, .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child:focus-within {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--secondary);
  transition: all 0.3s ease;
}
@media (min-width: 1200px) {
  .contact-inner-banner .contact-banner-content .custom-inner-banner-buttons a:first-child {
    padding: 13px 30px !important;
    min-width: 174px;
  }
}
.contact-inner-banner .contact-banner-content .custom-inner-banner-buttons .btn {
  min-width: 220px !important;
}
@media (min-width: 992px) {
  .contact-inner-banner .contact-banner-content {
    grid-gap: 80px;
  }
}
@media (min-width: 1200px) {
  .contact-inner-banner .contact-banner-content {
    grid-gap: 160px;
  }
}
@media (min-width: 1500px) {
  .contact-inner-banner .contact-banner-content {
    grid-gap: 274px;
  }
}
@media (max-width: 991px) {
  .contact-inner-banner .contact-banner-content {
    flex-direction: column;
    grid-gap: 30px;
  }
}

.slider-inner-banner {
  margin-bottom: 0px !important;
}
.slider-inner-banner .slick-dots {
  display: flex;
  width: auto;
  padding: 0;
  margin: 0;
  left: 18px;
  top: 50%;
  flex-direction: column;
  transform: translateY(-50%);
  bottom: auto;
}
.slider-inner-banner .slick-dots li button:before {
  color: #fff;
}
.slider-inner-banner .slick-dots li.slick-active button:before {
  color: #fff;
}
@media (max-width: 781px) {
  .slider-inner-banner .slick-dots {
    left: 50%;
    top: auto;
    bottom: 14px;
    flex-direction: row;
    transform: translateX(-50%);
  }
}

.accordions .lightweight-accordion .lightweight-accordion-title {
  list-style: none;
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro) !important;
  background: transparent;
  padding: 16px 36px 16px 0;
  color: #243444 !important;
  font-size: var(--wp--preset--font-size--large);
  font-weight: 500 !important;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  cursor: pointer;
  line-height: normal;
}

.accordions .lightweight-accordion .lightweight-accordion-title::after {
  content: "";
  width: 22px;
  height: 15px;
  background-image: url(assets/images/accordion-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  right: 0;
  top: 28px;
  transition: all 0.3s ease;
}

.lightweight-accordion details[open] .lightweight-accordion-title::after {
  transition: all 0.3s ease;
  transform: rotate(180deg);
}

.accordions .lightweight-accordion .lightweight-accordion-title span {
  font-family: var(--wp--preset--font-family--avenir-next-lt-pro) !important;
  font-size: var(--wp--preset--font-size--large);
  font-weight: 500 !important;
  position: relative;
}

.accordions .lightweight-accordion .lightweight-accordion-title::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0px;
  background-color: #243444;
}

.accordions .lightweight-accordion {
  margin-bottom: 12px;
}

.accordions .lightweight-accordion:last-child {
  margin-bottom: 0px;
}

.accordions .lightweight-accordion .lightweight-accordion-title span b {
  color: #243444 !important;
}

.accordions .lightweight-accordion .lightweight-accordion-title::marker {
  content: none !important;
  display: none !important;
}

.accordions .lightweight-accordion .lightweight-accordion-title::-webkit-details-marker {
  display: none !important;
  color: transparent !important;
  content: none !important;
  padding: 0 !important;
}

.accordions .lightweight-accordion details[open] summary ~ * {
  padding: 20px 0 14px;
}

.lightweight-accordion details[open] .lightweight-accordion-title {
  background: none;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0;
}

.accordions .lightweight-accordion .lightweight-accordion-body p:last-child {
  margin-bottom: 0px;
}

.accordions .lightweight-accordion .lightweight-accordion-body ul {
  padding-left: 22px;
}

.accordions .lightweight-accordion .lightweight-accordion-body ul li {
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.accordions .lightweight-accordion .lightweight-accordion-body ul li:last-child {
  margin-bottom: 0px;
}

.accordions .lightweight-accordion .lightweight-accordion-body ol {
  padding-left: 22px;
}

.accordions .lightweight-accordion .lightweight-accordion-body ol li {
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.accordions .lightweight-accordion .lightweight-accordion-body ol li:last-child {
  margin-bottom: 0px;
}

@media (max-width: 1199px) {
  .accordions .lightweight-accordion .lightweight-accordion-title span {
    font-size: 26px;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .accordions .lightweight-accordion .lightweight-accordion-title span {
    font-size: 24px;
    line-height: normal;
  }
}
@media (max-width: 781px) {
  .accordions .lightweight-accordion .lightweight-accordion-title span {
    font-size: 22px;
    line-height: normal;
  }
}
.single-location .accordions .lightweight-accordion .lightweight-accordion-title span {
  font-size: 24px;
  font-weight: 600 !important;
}
.single-location .accordions .lightweight-accordion .lightweight-accordion-title::after {
  width: 18px;
}

.gallery-section {
  padding: 0;
}
@media (min-width: 768px) {
  .gallery-section {
    padding: 0 30px;
  }
}
@media (min-width: 1500px) {
  .gallery-section {
    padding: 0;
  }
}
@media (max-width: 781px) {
  .gallery-section {
    margin-bottom: 44px;
  }
}

.gallery-grid .gallery-grid-item {
  padding: 8px;
}
.gallery-grid .gallery-grid-item a {
  display: block;
}
.gallery-grid .gallery-grid-item a img {
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}
@media (max-width: 767px) {
  .gallery-grid .gallery-grid-item {
    max-width: 480px;
  }
}
@media (max-width: 480px) {
  .gallery-grid .gallery-grid-item {
    max-width: 340px;
  }
}
@media (max-width: 340px) {
  .gallery-grid .gallery-grid-item {
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .gallery-grid.slick-initialized .slick-slide {
    text-align: center;
  }
}
.gallery-grid .slick-prev {
  width: 36px;
  height: 36px;
  top: 50%;
  left: 10px;
  background-image: url(assets/images/mobile-project-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  background-size: contain;
}
@media (min-width: 768px) {
  .gallery-grid .slick-prev {
    left: -36px;
  }
}
@media (min-width: 1500px) {
  .gallery-grid .slick-prev {
    left: -50px;
  }
}
@media (max-width: 781px) {
  .gallery-grid .slick-prev {
    bottom: -54px;
    width: 30px;
    height: 30px;
    top: auto;
  }
}
.gallery-grid .slick-next {
  width: 36px;
  height: 36px;
  top: 50%;
  right: 10px;
  left: auto;
  background-image: url(assets/images/mobile-project-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  background-size: contain;
}
@media (min-width: 768px) {
  .gallery-grid .slick-next {
    right: -36px;
  }
}
@media (min-width: 1500px) {
  .gallery-grid .slick-next {
    right: -50px;
  }
}
@media (max-width: 781px) {
  .gallery-grid .slick-next {
    bottom: -54px;
    width: 30px;
    height: 30px;
    top: auto;
  }
}

.video-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.video-banner:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 8;
}

.video-sec {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100% !important;
}

.video-sec::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.video-sec iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mejs-controls {
  display: none !important;
}

.mejs-container .mejs-controls {
  visibility: hidden !important;
}

.mejs-mediaelement iframe {
  pointer-events: none !important;
}

.mejs__controls {
  display: none !important;
}

@media (min-width: 782px) {
  .video-sec {
    height: 520px;
  }
}
@media (min-width: 992px) {
  .video-sec {
    height: 620px;
  }
}
@media (min-width: 1200px) {
  .video-sec {
    height: 720px;
  }
}
@media (min-width: 1500px) {
  .video-sec {
    height: 780px;
  }
}
.custom-inner-banner.video-banner .custom-inner-banner-content {
  z-index: 9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  right: auto;
  margin: auto;
}

.nextgen-image-video-section img {
  width: 100%;
  max-width: 100%;
  margin: auto;
  aspect-ratio: 6/5 !important;
  object-fit: cover !important;
  height: auto !important;
  max-width: 100% !important;
}
.nextgen-image-video-section .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.nextgen-image-video-section .embed-container iframe, .nextgen-image-video-section .embed-container object, .nextgen-image-video-section .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nextgen-image-video-section.video-only {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.nextgen-image-video-section.video-only video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.is-style-special-list {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.is-style-special-list > li {
  list-style: none;
  background-image: url(assets/images/special-list-bg.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto;
  line-height: 1.4;
  padding: 4px 0 4px 32px;
}

.new-about-section .is-style-special-heading {
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.new-about-section p {
  padding-bottom: 10px !important;
}

.location-child-pages .location-child-pages-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: auto;
  grid-gap: 20px;
}
@media (min-width: 782px) {
  .location-child-pages .location-child-pages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .location-child-pages .location-child-pages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
  padding: 20px 10px 20px 10px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 101vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 14px;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .location-child-page-btn-sec {
  text-align: center;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .location-child-page-btn-sec .location-child-page-btn {
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid var(--wp--preset--color--white);
  padding-bottom: 4px;
  font-weight: 500;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion {
  position: relative;
  z-index: 9;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title {
  background-color: transparent;
  position: relative;
  list-style: none;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title::marker {
  content: none !important;
  padding: 0 !important;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title::-webkit-details-marker {
  display: none !important;
  color: transparent !important;
  content: none !important;
  padding: 0 !important;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 40px;
  height: 15px;
  clear: both;
  transform: translateX(-50%);
  background-image: url(assets/images/accordion-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title span {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 782px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title span {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion .lightweight-accordion-title span {
    font-size: 26px;
  }
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion details[open] .lightweight-accordion-title::after {
  transition: all 0.3s ease;
  border: 0 !important;
  border-bottom: 2px solid #fff !important;
  width: 100px !important;
  height: 2px;
  bottom: -10px !important;
  background-image: none;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body {
  position: relative;
  z-index: 9;
  color: #fff;
  text-align: left;
  font-weight: 400;
  margin-top: 22px;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
  margin-bottom: 18px;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li {
  font-size: 14px;
  margin-bottom: 4px;
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li::marker {
  color: var(--wp--preset--color--primary);
}
.location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li:last-child {
  margin-bottom: 0px;
}
@media (min-width: 782px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li {
    font-size: 15px;
  }
}
@media (min-width: 1500px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul li {
    font-size: 17px;
  }
}
@media (min-width: 782px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul {
    margin-bottom: 22px;
  }
}
@media (min-width: 1200px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item .lightweight-accordion-body ul {
    margin-bottom: 24px;
  }
}
@media (min-width: 782px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
    padding: 20px 10px 20px 10px;
    min-height: 93vw;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
    padding: 50px 30px 30px 30px;
    min-height: 71vw;
    font-size: 15px;
  }
}
@media (min-width: 1500px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
    padding: 50px 30px 30px 30px;
    min-height: 55vw;
    font-size: 17px;
  }
}
@media (min-width: 1600px) {
  .location-child-pages .location-child-pages-grid .location-child-pages-grid-item {
    padding: 66px 76px 55px 76px;
    min-height: 872px;
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .new-about-section {
    padding-top: 30px !important;
    padding-bottom: 0 !important;
  }
  .new-location-child-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    padding-right: 15px;
    padding-left: 15px;
  }
  .new-location-child-section h3 br {
    display: none !important;
  }
  .new-location-child-section p {
    margin-bottom: 8px;
  }
}
.wp-site-blocks, #content {
  overflow: hidden;
}

.home, .blog, .page, .single, .error404, .search {
  overflow: hidden;
  overflow-y: scroll;
}

@media (min-width: 1200px) {
  .pum-open .home, .pum-open .page, .pum-open .single, .pum-open .error404, .pum-open .blog {
    overflow-y: inherit;
  }
}

.tabs-container nav {
  margin: 0 auto;
  background: #fff;
}

.tabs-container nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.tabs-container nav ul li {
  padding: 1rem;
  cursor: pointer;
  color: #A7A7A7;
  border-top: 1px solid #eee;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 25px;
}

.tabs-container nav ul li:hover {
  color: #3e4b58;
}

.tabs-container nav ul li.active {
  color: #3e4b58;
  border-top: none;
}

/* the nitty gritty */
.tabs-container {
  position: relative;
  height: 4em;
}

.tabs-container nav {
  position: absolute;
  width: 100%;
}

.tabs-container nav ul {
  display: flex;
  flex-direction: column;
}

.tabs-container nav ul li {
  order: 1;
}

.tabs-container nav ul li.active {
  order: 0;
}

.tabs-container nav ul li:not(.active) {
  position: absolute;
  top: -999em;
}

.tabs-container nav ul.expanded li:not(.active) {
  position: relative;
  top: auto;
}
@media (max-width: 781px) {
  .tabs-container nav ul.expanded li:not(.active) {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 8px 15px;
    font-size: 18px;
    border: 0px;
  }
  .tabs-container nav ul.expanded li:not(.active):after {
    content: none;
  }
}

@media (min-width: 992px) {
  nav {
    background: transparent;
  }
  .tabs-container nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    padding: 0;
  }
  .tabs-container nav ul li {
    display: inline-block;
    margin: 0 1rem 0 1rem;
    padding: 0 0 0.2rem 0;
    border: none;
  }
  .tabs-container nav ul li:not(.active) {
    position: relative;
    top: auto;
  }
  .tabs-container nav ul li.active {
    order: 1;
  }
  .tabs-container nav ul li.active:after {
    display: none;
  }
}
.tab-content {
  display: none;
  padding: 15px;
}

.tab-content.current {
  display: inherit;
}

.faculty-section-content {
  position: relative;
}
.faculty-section-content .tabs-container {
  height: auto;
  top: 35px;
  z-index: 999;
}
@media (min-width: 992px) {
  .faculty-section-content .tabs-container nav {
    margin: 0 auto;
    background: transparent;
  }
  .faculty-section-content .tabs-container nav ul li {
    color: var(--wp--preset--color--white);
    font-size: 20px;
    font-weight: 400;
    min-width: 140px;
    position: relative;
    text-align: center;
    padding: 16px 12px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    letter-spacing: 1px;
  }
  .faculty-section-content .tabs-container nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--white);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .faculty-section-content .tabs-container nav ul li.active {
    border: 0px;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .faculty-section-content .tabs-container nav ul li.active:after {
    height: 2px;
  }
  .faculty-section-content .tabs-container nav ul li:hover {
    border: 0px;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .faculty-section-content .tabs-container nav ul li:hover:after {
    height: 2px;
  }
}
.faculty-section-content .tab-content {
  padding: 165px 18px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}
.faculty-section-content .tab-content:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}
.faculty-section-content .tab-content.current {
  display: flex;
  transition: all 0.3s ease;
}
.faculty-section-content .tab-content .faculty-item {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative;
  height: 100%;
  display: block;
  width: 100%;
  z-index: 99;
}
.faculty-section-content .tab-content .faculty-item-content {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  max-width: 638px;
  color: var(--wp--preset--color--white);
}
.faculty-section-content .tab-content .faculty-item-content h3 {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .faculty-section-content .tab-content {
    min-height: 700px;
  }
  .faculty-section-content .tab-content .faculty-item-content {
    padding: 30px;
  }
  .faculty-section-content .tab-content .wp-block-buttons {
    margin-top: 18px;
  }
}
@media (min-width: 1500px) {
  .faculty-section-content .tab-content {
    min-height: 750px;
  }
}

@media (min-width: 1500px) {
  .high-level-content .faculty-section-content .tab-content {
    min-height: 805px;
  }
}

@media (max-width: 991px) {
  .tabs-container nav {
    margin: 0 auto;
    background: transparent;
  }
  .tabs-container nav {
    width: auto;
  }
  .tabs-container nav ul {
    list-style: none;
    margin: 0;
    border: 0;
    padding: 0;
    color: var(--wp--preset--color--white);
  }
  .tabs-container nav ul li {
    color: var(--wp--preset--color--white);
    font-size: 20px;
    font-weight: 600;
    min-width: 140px;
    position: relative;
    text-align: center;
    padding: 10px 30px;
    background-color: var(--wp--preset--color--secondary);
  }
  .tabs-container nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--white);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .tabs-container nav ul li.active {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--white);
    background-image: url(assets/images/dropdown-bg.png);
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 14px;
    background-color: transparent;
  }
  .tabs-container nav ul li.active:after {
    height: 2px;
  }
  .tabs-container nav ul li:hover {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--white);
  }
  .tabs-container nav ul li:hover:after {
    height: 2px;
  }
  .faculty-section-content .tabs-container {
    display: flex;
    justify-content: center;
  }
}
.inner-faculty-section .faculty-section-content .tab-content {
  padding: 0;
  width: 100%;
  height: auto;
  position: relative;
  min-height: auto !important;
  transition: all 0.3s ease;
}
.inner-faculty-section .faculty-section-content .tab-content:before {
  content: none;
}
.inner-faculty-section .faculty-section-content .tab-content.current {
  display: block;
  transition: all 0.3s ease;
}
.inner-faculty-section .faculty-section-content .tab-content .gallery {
  display: flex !important;
  grid-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0px !important;
  margin-top: 40px !important;
}
.inner-faculty-section .faculty-section-content .tab-content .gallery .gallery-item {
  float: none !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  text-align: center !important;
  width: auto !important;
}
.inner-faculty-section .faculty-section-content .tab-content .gallery .gallery-item img {
  border: 0 !important;
  width: 100% !important;
  height: auto !important;
}
@media (max-width: 781px) {
  .inner-faculty-section .faculty-section-content .tab-content .gallery {
    flex-direction: column;
    grid-gap: 20px;
    margin-top: 10px !important;
  }
  .inner-faculty-section .faculty-section-content .tab-content .gallery .gallery-item {
    width: 100% !important;
  }
}
.inner-faculty-section .faculty-section-content .tabs-container {
  top: -92px;
}
.inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container {
  top: -120px;
}
@media (min-width: 1200px) {
  .inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li:nth-child(2) {
    margin-right: 60px;
  }
  .inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li:nth-child(3) {
    margin-left: 60px;
  }
}
@media (min-width: 1500px) {
  .inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li:nth-child(2) {
    margin-right: 80px;
  }
  .inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li:nth-child(3) {
    margin-left: 80px;
  }
}
@media (max-width: 1199px) {
  .inner-faculty-section.policies-inner-faculty-section .faculty-section-content .tabs-container li br {
    display: none;
  }
}

.main-news-section.news-section .news-tabs-container {
  top: -114px;
  height: auto;
}
.main-news-section.news-section .news-tabs-container nav ul li {
  color: var(--wp--preset--color--white);
}
.main-news-section.news-section .news-tabs-container nav ul li:after {
  background-color: var(--wp--preset--color--white);
}

.news-tabs-container nav {
  margin: 0 auto;
  background: #fff;
}

.news-tabs-container nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.news-tabs-container nav ul li {
  padding: 1rem;
  cursor: pointer;
  color: #A7A7A7;
  border-top: 1px solid #eee;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 25px;
}

.news-tabs-container nav ul li:hover {
  color: #3e4b58;
}

.news-tabs-container nav ul li.active {
  color: #3e4b58;
  border-top: none;
}

/* the nitty gritty */
.news-tabs-container {
  position: relative;
  height: 4em;
}

.news-tabs-container nav {
  position: absolute;
  width: 100%;
}

.news-tabs-container nav ul {
  display: flex;
  flex-direction: column;
}

.news-tabs-container nav ul li {
  order: 1;
}

.news-tabs-container nav ul li.active {
  order: 0;
}

.news-tabs-container nav ul li:not(.active) {
  position: absolute;
  top: -999em;
}

.news-tabs-container nav ul.expanded li:not(.active) {
  position: relative;
  top: auto;
}
@media (max-width: 781px) {
  .news-tabs-container nav ul.expanded li:not(.active) {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 8px 15px;
    font-size: 18px;
    border: 0px;
  }
  .news-tabs-container nav ul.expanded li:not(.active):after {
    content: none;
  }
}

@media (min-width: 992px) {
  nav {
    background: transparent;
  }
  .news-tabs-container nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    padding: 0;
  }
  .news-tabs-container nav ul li {
    display: inline-block;
    margin: 0 1rem 0 1rem;
    padding: 0 0 0.2rem 0;
    border: none;
  }
  .news-tabs-container nav ul li:not(.active) {
    position: relative;
    top: auto;
  }
  .news-tabs-container nav ul li.active {
    order: 1;
  }
  .news-tabs-container nav ul li.active:after {
    display: none;
  }
}
.news-tab-content {
  display: none;
  padding: 15px;
}

.news-tab-content.current {
  display: inherit;
}

.news-section {
  position: relative;
}
.news-section .news-tabs-container {
  z-index: 999;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .news-section .news-tabs-container nav {
    margin: 0 auto;
    background: transparent;
  }
  .news-section .news-tabs-container nav ul li {
    color: var(--wp--preset--color--secondary);
    font-size: 20px;
    font-weight: 400;
    min-width: 140px;
    position: relative;
    text-align: center;
    padding: 16px 12px;
    letter-spacing: 1px;
  }
  .news-section .news-tabs-container nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--secondary);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .news-section .news-tabs-container nav ul li.active {
    border: 0px;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .news-section .news-tabs-container nav ul li.active:after {
    height: 2px;
  }
  .news-section .news-tabs-container nav ul li:hover {
    border: 0px;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .news-section .news-tabs-container nav ul li:hover:after {
    height: 2px;
  }
}
.news-section .news-tab-content {
  padding: 0;
  width: 100%;
  position: relative;
}
.news-section .news-tab-content.current {
  display: flex;
}

@media (max-width: 991px) {
  .news-tabs-container nav {
    margin: 0 auto;
    background: transparent;
  }
  .news-tabs-container nav {
    width: auto;
  }
  .news-tabs-container nav ul {
    list-style: none;
    margin: 0;
    border: 0;
    padding: 0;
    color: var(--wp--preset--color--white);
  }
  .news-tabs-container nav ul li {
    color: var(--wp--preset--color--white);
    font-size: 20px;
    font-weight: 600;
    min-width: 140px;
    position: relative;
    text-align: center;
    padding: 10px 15px;
    background-color: var(--wp--preset--color--secondary);
  }
  .news-tabs-container nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--secondary);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .news-tabs-container nav ul li.active {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--secondary);
    background-image: url(assets/images/news-dropdown-bg.png);
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 14px;
    background-color: transparent;
  }
  .news-tabs-container nav ul li.active:after {
    height: 2px;
  }
  .news-tabs-container nav ul li:hover {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--secondary);
  }
  .news-tabs-container nav ul li:hover:after {
    height: 2px;
  }
}
@media (max-width: 991px) and (max-width: 781px) {
  .news-tabs-container nav ul li {
    padding: 12px 32px 12px 8px;
  }
}
@media (max-width: 991px) {
  .news-tabs-container {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 781px) {
  .news-section .news-tab-content.current {
    display: block !important;
  }
}
.tennisnews-tabs-container nav {
  margin: 0 auto;
  background: #fff;
}

.tennisnews-tabs-container nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.tennisnews-tabs-container nav ul li {
  padding: 1rem;
  cursor: pointer;
  color: #A7A7A7;
  border-top: 1px solid #eee;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 25px;
}

.tennisnews-tabs-container nav ul li:hover {
  color: #3e4b58;
}

.tennisnews-tabs-container nav ul li.active {
  color: #3e4b58;
  border-top: none;
}

/* the nitty gritty */
.tennisnews-tabs-container {
  position: relative;
  height: 4em;
}

.tennisnews-tabs-container nav {
  position: absolute;
  width: 100%;
}

.tennisnews-tabs-container nav ul {
  display: flex;
  flex-direction: column;
}

.tennisnews-tabs-container nav ul li {
  order: 1;
}

.tennisnews-tabs-container nav ul li.active {
  order: 0;
}

.tennisnews-tabs-container nav ul li:not(.active) {
  position: absolute;
  top: -999em;
}

.tennisnews-tabs-container nav ul.expanded li:not(.active) {
  position: relative;
  top: auto;
}
@media (max-width: 781px) {
  .tennisnews-tabs-container nav ul.expanded li:not(.active) {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 8px 15px;
    font-size: 18px;
    border: 0px;
  }
  .tennisnews-tabs-container nav ul.expanded li:not(.active):after {
    content: none;
  }
}

@media (min-width: 992px) {
  nav {
    background: transparent;
  }
  .tennisnews-tabs-container nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    padding: 0;
  }
  .tennisnews-tabs-container nav ul li {
    display: inline-block;
    margin: 0 1rem 0 1rem;
    padding: 0 0 0.2rem 0;
    border: none;
  }
  .tennisnews-tabs-container nav ul li:not(.active) {
    position: relative;
    top: auto;
  }
  .tennisnews-tabs-container nav ul li.active {
    order: 1;
  }
  .tennisnews-tabs-container nav ul li.active:after {
    display: none;
  }
}
.tennisnews-tab-content {
  display: none;
  padding: 15px;
}

.tennisnews-tab-content.current {
  display: inherit;
}

.news-section {
  position: relative;
}
.news-section .tennisnews-tabs-container {
  z-index: 999;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .news-section .tennisnews-tabs-container nav {
    margin: 0 auto;
    background: transparent;
  }
  .news-section .tennisnews-tabs-container nav ul li {
    color: var(--wp--preset--color--secondary);
    font-size: 20px;
    font-weight: 400;
    min-width: 140px;
    position: relative;
    text-align: center;
    padding: 16px 12px;
    letter-spacing: 1px;
  }
  .news-section .tennisnews-tabs-container nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--secondary);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .news-section .tennisnews-tabs-container nav ul li.active {
    border: 0px;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .news-section .tennisnews-tabs-container nav ul li.active:after {
    height: 2px;
  }
  .news-section .tennisnews-tabs-container nav ul li:hover {
    border: 0px;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  .news-section .tennisnews-tabs-container nav ul li:hover:after {
    height: 2px;
  }
}
.news-section .tennisnews-tab-content {
  padding: 0;
  width: 100%;
  position: relative;
}
.news-section .tennisnews-tab-content.current {
  display: flex;
}

@media (max-width: 991px) {
  .tennisnews-tabs-container nav {
    margin: 0 auto;
    background: transparent;
  }
  .tennisnews-tabs-container nav {
    width: auto;
  }
  .tennisnews-tabs-container nav ul {
    list-style: none;
    margin: 0;
    border: 0;
    padding: 0;
    color: var(--wp--preset--color--white);
  }
  .tennisnews-tabs-container nav ul li {
    color: var(--wp--preset--color--white);
    font-size: 20px;
    font-weight: 600;
    min-width: 140px;
    position: relative;
    text-align: center;
    padding: 10px 15px;
    background-color: var(--wp--preset--color--secondary);
  }
  .tennisnews-tabs-container nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--secondary);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .tennisnews-tabs-container nav ul li.active {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--secondary);
    background-image: url(assets/images/news-dropdown-bg.png);
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 14px;
    background-color: transparent;
  }
  .tennisnews-tabs-container nav ul li.active:after {
    height: 2px;
  }
  .tennisnews-tabs-container nav ul li:hover {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--secondary);
  }
  .tennisnews-tabs-container nav ul li:hover:after {
    height: 2px;
  }
}
@media (max-width: 991px) and (max-width: 781px) {
  .tennisnews-tabs-container nav ul li {
    padding: 12px 32px 12px 8px;
  }
}
@media (max-width: 991px) {
  .tennisnews-tabs-container {
    display: flex;
    justify-content: center;
  }
}
.timetable-tabs-container nav {
  margin: 0 auto;
  background: #fff;
}

.timetable-tabs-container nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.timetable-tabs-container nav ul li {
  padding: 1rem;
  cursor: pointer;
  color: #A7A7A7;
  border-top: 1px solid #eee;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 25px;
}

.timetable-tabs-container nav ul li:hover {
  color: #3e4b58;
}

.timetable-tabs-container nav ul li.active {
  color: #3e4b58;
  border-top: none;
}

/* the nitty gritty */
.timetable-tabs-container {
  position: relative;
  height: 4em;
}

.timetable-tabs-container nav {
  position: absolute;
  width: 100%;
}

.timetable-tabs-container nav ul {
  display: flex;
  flex-direction: column;
}

.timetable-tabs-container nav ul li {
  order: 1;
}

.timetable-tabs-container nav ul li.active {
  order: 0;
}

.timetable-tabs-container nav ul li:not(.active) {
  position: absolute;
  top: -999em;
}

.timetable-tabs-container nav ul.expanded li:not(.active) {
  position: relative;
  top: auto;
}
@media (max-width: 781px) {
  .timetable-tabs-container nav ul.expanded li:not(.active) {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 8px 15px;
    font-size: 18px;
    border: 0px;
  }
  .timetable-tabs-container nav ul.expanded li:not(.active):after {
    content: none;
  }
}

@media (min-width: 992px) {
  nav {
    background: transparent;
  }
  .timetable-tabs-container nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    padding: 0;
  }
  .timetable-tabs-container nav ul li {
    display: inline-block;
    margin: 0 1rem 0 1rem;
    padding: 0 0 0.2rem 0;
    border: none;
  }
  .timetable-tabs-container nav ul li:not(.active) {
    position: relative;
    top: auto;
  }
  .timetable-tabs-container nav ul li.active {
    order: 1;
  }
  .timetable-tabs-container nav ul li.active:after {
    display: none;
  }
}
.timetable-tab-content {
  display: none;
  padding: 15px;
}

.timetable-tab-content.current {
  display: inherit;
}

.timetable-section {
  position: relative;
}
.timetable-section .timetable-tabs-container {
  z-index: 999;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .timetable-section .timetable-tabs-container nav {
    margin: 0 auto;
    background: transparent;
  }
  .timetable-section .timetable-tabs-container nav ul li {
    color: var(--wp--preset--color--white);
    font-size: 20px;
    font-weight: 400;
    min-width: 140px;
    position: relative;
    text-align: center;
    padding: 16px 12px;
  }
  .timetable-section .timetable-tabs-container nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--white);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .timetable-section .timetable-tabs-container nav ul li.active {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--white);
    font-weight: 600;
  }
  .timetable-section .timetable-tabs-container nav ul li.active:after {
    height: 2px;
    background-color: var(--wp--preset--color--white);
  }
  .timetable-section .timetable-tabs-container nav ul li:hover {
    border: 0px;
    box-shadow: none;
    font-weight: 600;
    color: var(--wp--preset--color--white);
  }
  .timetable-section .timetable-tabs-container nav ul li:hover:after {
    height: 2px;
    background-color: var(--wp--preset--color--white);
  }
}
.timetable-section .timetable-tab-content {
  padding: 0;
  width: 100%;
  position: relative;
}
.timetable-section .timetable-tab-content.current {
  display: flex;
}

@media (max-width: 991px) {
  .timetable-tabs-container nav {
    margin: 0 auto;
    background: transparent;
  }
  .timetable-tabs-container nav {
    width: auto;
  }
  .timetable-tabs-container nav ul {
    list-style: none;
    margin: 0;
    border: 0;
    padding: 0;
    color: var(--wp--preset--color--secondary);
  }
  .timetable-tabs-container nav ul li {
    color: var(--wp--preset--color--white);
    font-size: 20px;
    font-weight: 600;
    min-width: 140px;
    position: relative;
    text-align: center;
    padding: 10px 15px;
    background-color: var(--wp--preset--color--white);
    padding: 12px 32px 12px 8px;
  }
  .timetable-tabs-container nav ul li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--white);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .timetable-tabs-container nav ul li.active {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--secondary);
    background-image: url(assets/images/timetable-dropdown-bg.png);
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 14px;
    background-color: transparent;
    color: var(--wp--preset--color--white);
  }
  .timetable-tabs-container nav ul li.active:after {
    height: 2px;
  }
  .timetable-tabs-container nav ul li:hover {
    border: 0px;
    box-shadow: none;
    color: var(--wp--preset--color--white);
  }
  .timetable-tabs-container nav ul li:hover:after {
    height: 2px;
  }
  .timetable-tabs-container {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 781px) {
  .timetable-tabs-container nav ul li {
    padding: 12px 32px 12px 8px;
  }
}
.timetable-tab-content table {
  width: 100%;
  border-collapse: collapse;
}
.timetable-tab-content table .content-td td {
  padding: 4px;
}
.timetable-tab-content table .content-td td:nth-child(1) {
  width: 14%;
}
.timetable-tab-content table .content-td td:nth-child(2) {
  width: 14%;
}
.timetable-tab-content table .content-td td:nth-child(3) {
  width: 14%;
}
.timetable-tab-content table .content-td td:nth-child(4) {
  width: 14%;
}
.timetable-tab-content table .heading-td td {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wp--preset--color--white);
}

.responsive-table {
  width: 100%;
}
@media (max-width: 781px) {
  .responsive-table {
    overflow-y: scroll;
  }
  .responsive-table table {
    width: 550px;
  }
  .responsive-table table .content-td td {
    padding: 6px 4px;
  }
  .responsive-table table .content-td td:nth-child(1) {
    width: 4%;
    text-align: left;
    padding-right: 0;
  }
  .responsive-table table .content-td td:nth-child(2) {
    width: 4%;
  }
  .responsive-table table .content-td td:nth-child(3) {
    width: 8%;
  }
  .responsive-table table .content-td td:nth-child(4) {
    width: 8%;
  }
}

/*# sourceMappingURL=style.css.map */