:root {
  --s-0: 0;
  --s-0-5: .25rem;
  --s-1: .5rem;
  --s-1-5: .75rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-6: 3rem;
}

html,
body {
  background: #ffffff;
  color: #111111;
}
.section {
  padding: var(--s-4) 0;
}
.section--tinted {
  background: #ffffff;
}

.view-article .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--s-2);
}
.sd-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--s-2);
}
.h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 var(--s-1);
}
.h2 {
  font-size: 1.4rem;
  line-height: 1.25;
  margin: 0 0 var(--s-1);
}
.lede,
.lead {
  color: #4b5563;
  max-width: 60ch;
}
.lead {
  line-height: 1.6;
  font-size: 1.05rem;
}
a {
  color: #24c3de;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.row {
  
}
.row-flex {
  display: flex;
  align-items: center;
}
.row-between {
  justify-content: space-between;
}
.row-wrap {
  flex-wrap: wrap;
}
.ow-hero-row {
  min-height: 360px;
}
@media (min-width: 768px) {
  .ow-hero-row {
    display: flex;
    align-items: center;
  }
}
.grid {
  display: grid;
  gap: var(--s-3);
}
.grid-2 {
  grid-template-columns: 1.2fr .8fr;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.stack {
  display: flex;
  flex-direction: column;
}
.gap-0-5 {
  gap: var(--s-0-5);
}
.gap-1 {
  gap: var(--s-1);
}
.gap-2 {
  gap: var(--s-2);
}
.gap-3 {
  gap: var(--s-3);
}

.hero.hero--compact {
  padding: var(--s-4) 0 var(--s-3);
}
.meta {
  list-style: none;
  margin: var(--s-1) 0 0;
  padding: 0;
  color: #4b5563;
}
.meta li {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.media-card {
  margin: 0;
  align-self: start;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
}
.media-card__img {
  display: block;
  width: 100%;
  height: auto;
}
.media-card__caption {
  font-size: .8rem;
  color: #4b5563;
  padding: .4rem .6rem;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}
.media-card--cover .media-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masthead,
.masthead-flex,
.masthead-text,
.masthead-image,
.masthead-cta,
.masthead-overlay,
.masthead-title,
.masthead-subtitle {
  all: unset;
}
.masthead.dark-block {
  padding: var(--s-4) 0;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  padding: var(--s-2);
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
  color: #111111;
}
.card__title {
  margin: 0 0 var(--s-1);
  font-size: 1.05rem;
}
.card__body {
  margin: 0;
  color: #4b5563;
}
.card--cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: flex-start;
}
.card--cta .card__content {
  flex: 1 1 360px;
}
.card--cta .card__action {
  flex: 1 1 420px;
}

.list-check,
.list-dot {
  margin: 0;
  padding-left: 1.1rem;
}
.list-check li {
  margin: .35rem 0;
  list-style: none;
  position: relative;
}
.list-check li:before {
  content: "\f00c";
  font-family: "FontAwesome", "Font Awesome 5 Free", "Font Awesome 6 Free";
  font-weight: 900;
  color: #24c3de;
  position: absolute;
  left: -1.1rem;
}
.list-dot li {
  margin: .35rem 0;
  list-style: disc;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.chip {
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #4b5563;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: #fff;
}
.accordion details {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  background: #ffffff;
  margin: .5rem 0;
  padding: .6rem .8rem;
}
.accordion summary {
  cursor: pointer;
  font-weight: 500;
}
.accordion summary::-webkit-details-marker {
  display: none;
}

.btn {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #111111;
  background: #fff;
}
.btn-primary {
  background: #24c3de;
  color: #00151a;
  border-color: transparent;
}
.btn-ghost {
  background: transparent;
  color: #111111;
}
.btn:hover {
  filter: brightness(1.05);
}

.row.gap-1 > * + * {
  margin-left: var(--s-1);
}

.ocean-dock {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-55%);
  transform-origin: left center;
  z-index: 12000;
  will-change: opacity;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.ocean-dock .dock-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  text-decoration: none;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.ocean-dock .dock-btn .ico {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
  transition: opacity 160ms ease, transform 160ms ease;
}

.ocean-dock .dock-btn::after {
  content: attr(data-label);
  position: absolute;
  left: calc(108%);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}
.ocean-dock .dock-btn:hover,
.ocean-dock .dock-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}
.ocean-dock .dock-btn:hover .ico {
  opacity: 1;
  transform: translateY(-1px);
}
.ocean-dock .dock-btn:hover::after,
.ocean-dock .dock-btn:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.ocean-dock .dock-btn:active {
  transform: translateY(0);
}
@media (min-width: 1280px) {
  .ocean-dock .dock-btn {
    width: 62px;
    height: 62px;
  }
  .ocean-dock .dock-btn .ico {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 640px) {
  .ocean-dock {
    transform: translateY(-48%);
    gap: 6px;
    padding: 4px;
    border-radius: 0 10px 10px 0;
  }
  .ocean-dock .dock-btn {
    width: 42px;
    height: 42px;
  }
  .ocean-dock .dock-btn .ico {
    width: 22px;
    height: 22px;
  }
  .ocean-dock .dock-btn::after {
    display: none;
  }
  
  .ocean-dock .dock-btn::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
  }
  
  
}
@media (max-width: 640px) and (min-height: 820px) {
  .ocean-dock {
    transform: translateY(-47%);
  }
}
@media (max-width: 640px) and (max-height: 560px) {
  .ocean-dock {
    transform: translateY(-52%);
  }
}

.t3-off-canvas-open .ocean-dock,
.off-canvas-open .ocean-dock,
.offcanvas-open .ocean-dock,
.off-canvas-active .ocean-dock {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.dock-btn--highlight {
  background: rgba(36, 195, 222, 0.18);
  border-color: #24c3de;
  box-shadow: 0 0 8px rgba(36, 195, 222, 0.55), 0 0 18px rgba(36, 195, 222, 0.35);
}
.dock-btn--highlight:hover,
.dock-btn--highlight:focus-visible {
  background: #24c3de;
  border-color: #59d2e6;
  box-shadow: 0 0 12px rgba(36, 195, 222, 0.65), 0 0 24px rgba(36, 195, 222, 0.45);
}

.dock-btn--highlight .ico {
  width: 36px;
  height: 36px;
  transform: scale(1.15);
  transform-origin: center;
  will-change: transform, filter;
  animation: sd-pulse 2.4s ease-in-out infinite;
}
.dock-btn--highlight:hover .ico,
.dock-btn--highlight:focus-visible .ico {
  animation: sd-pulse-soft 1.8s ease-in-out infinite;
  transform: scale(1.25);
  filter: drop-shadow(0 0 6px rgba(36, 195, 222, 0.55));
}
@media (prefers-reduced-motion: reduce) {
  .dock-btn--highlight .ico,
  .dock-btn--highlight:hover .ico,
  .dock-btn--highlight:focus-visible .ico {
    animation: none !important;
    transform: scale(1.2);
    filter: none;
  }
}
@keyframes sd-pulse {
  0% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  50% {
    transform: scale(1.22);
    filter: drop-shadow(0 0 8px rgba(36, 195, 222, 0.45));
  }
  100% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
}
@keyframes sd-pulse-soft {
  0% {
    transform: scale(1.22);
    filter: drop-shadow(0 0 6px rgba(36, 195, 222, 0.35));
  }
  50% {
    transform: scale(1.28);
    filter: drop-shadow(0 0 10px rgba(36, 195, 222, 0.55));
  }
  100% {
    transform: scale(1.22);
    filter: drop-shadow(0 0 6px rgba(36, 195, 222, 0.35));
  }
}

@media (max-width: 640px) {
  .view-article .container,
  .sd-container,
  .t3-mainbody .container,
  .t3-content {
    padding-left: calc(31px);
    
    padding-right: 16px;
    
  }
}
@media (max-width: 360px) {
  .view-article .container,
  .sd-container,
  .t3-mainbody .container,
  .t3-content {
    padding-left: calc(32px);
    padding-right: 16px;
  }
}

.off-canvas-open body,
.offcanvas-open body,
.t3-off-canvas-open body {
  padding-right: 0 !important;
}

.rental-section,
.gas-section {
  padding: 2rem 0;
}
.rental-section h2,
.gas-section h2 {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: .2px;
}
.rental-grid,
.gas-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}
.rental-card,
.gas-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  color: #111;
}
.rental-card:hover,
.gas-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  border-color: rgba(17, 24, 39, 0.16);
}
.rental-head {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.rental-body {
  padding: .25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .35rem 0;
  border-bottom: 1px dashed rgba(17, 24, 39, 0.16);
}
.item-row:last-child {
  border-bottom: 0;
}
.item-name {
  font-weight: 600;
  color: #111;
}
.item-price {
  font-weight: 800;
  color: #111;
}
.rental-note {
  font-size: .92rem;
  color: #4b5563;
  margin-top: .6rem;
}
.gas-intro {
  max-width: 900px;
  margin: 0 0 1rem;
  color: #4b5563;
}
.gas-section a {
  color: #24c3de;
  text-decoration: underline;
}
.gas-section a:hover {
  color: #167f90;
}
.gas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .5rem;
  color: #111;
}
.gas-code {
  display: inline-flex;
  gap: .4rem;
  align-items: center;
  font-weight: 800;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #111;
}
.gas-code .code {
  letter-spacing: .3px;
}
.gas-code .pct {
  font-weight: 700;
  opacity: .9;
}
.gas-meta .gas-tag {
  font-size: .8rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #4b5563;
}
.gas-card .accent {
  height: 4px;
  border-radius: 999px;
  margin: .4rem 0 .7rem;
  opacity: .95;
}
.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.size-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #111;
  font-weight: 600;
}
.size-chip .litre {
  opacity: .9;
  font-weight: 500;
}
.size-chip .price {
  font-weight: 800;
}
.accent--air {
  background: linear-gradient(90deg, #4fc3f7, #29b6f6);
}
.accent--ean {
  background: linear-gradient(90deg, #66bb6a, #43a047);
}
.accent--oxy {
  background: linear-gradient(90deg, #ef5350, #e53935);
}
.gas-code.air {
  background: rgba(41, 182, 246, 0.08);
  border-color: rgba(41, 182, 246, 0.22);
}
.gas-code.ean {
  background: rgba(67, 160, 71, 0.08);
  border-color: rgba(67, 160, 71, 0.22);
}
.gas-code.oxy {
  background: rgba(229, 57, 53, 0.08);
  border-color: rgba(229, 57, 53, 0.22);
}

.rental-card .accent {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}
.accent-title {
  color: #111;
  font-weight: 800;
  font-size: 1.05rem;
}
.accent-title small {
  font-size: .9em;
  opacity: .85;
}
.accent--scuba,
.accent--shark {
  border: 2px solid #24c3de;
  box-shadow: 0 0 0 1px rgba(36, 195, 222, 0.8) inset, 0 0 10px rgba(36, 195, 222, 0.4), 0 0 22px rgba(36, 195, 222, 0.25);
}
.accent--scuba {
  background: #023e8a;
}
.accent--shark {
  background: #0096c7;
}

#holiday-clubs.tryout-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}
#holiday-clubs.tryout-block .tryout-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
#holiday-clubs.tryout-block .tryout-copy h1 {
  margin: 0 0 .5rem;
  line-height: 1.15;
  font-weight: 800;
  font-size: 1.8rem;
}
#holiday-clubs.tryout-block .tryout-copy p {
  margin: .5rem 0 0;
  line-height: 1.7;
}

.ssi-hero-row {
  margin: 2.2rem auto;
}
.ssi-hero-row .ssi-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.ssi-hero-row .ssi-intro h2 {
  margin: 0 0 .75rem;
  font-weight: 800;
  line-height: 1.2;
}
.ssi-hero-row .ssi-intro p {
  margin: .25rem 0 0;
  color: #4b5563;
}
.ssi-hero-row .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.25rem;
  margin-top: .5rem;
}
.ssi-hero-row .grid-2 ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}
@media (min-width: 700px) {
  .ssi-hero-row .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.ssi-tiles {
  --card-w: 260px;
  --gap: 1rem;
  max-width: 1100px;
  margin: 1.25rem auto 0;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
@media (min-width: 640px) {
  .ssi-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .ssi-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .ssi-tiles {
    grid-template-columns: repeat(auto-fill, minmax(var(--card-w), var(--card-w)));
    justify-content: center;
  }
}
.ssi-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ssi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.1);
  border-color: rgba(17, 24, 39, 0.16);
}
.ssi-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.6;
}
@supports not (aspect-ratio: 1) {
  .ssi-img-wrap {
    height: 200px;
  }
}
.ssi-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ssi-body {
  padding: .9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  color: #111;
  flex: 1 1 auto;
}
.ssi-body h3 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.3;
}
.ssi-body p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

#details-marine-ecology.tryout-block,
#details-snorkelling.tryout-block,
#details-rockpooling.tryout-block,
#details-strandline.tryout-block,
#details-film-media.tryout-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  max-width: 1100px;
  margin: 2.2rem auto;
  padding: 0 1rem;
}
#details-marine-ecology .tryout-media img,
#details-snorkelling .tryout-media img,
#details-rockpooling .tryout-media img,
#details-strandline .tryout-media img,
#details-film-media .tryout-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
#details-marine-ecology .tryout-copy h2,
#details-snorkelling .tryout-copy h2,
#details-rockpooling .tryout-copy h2,
#details-strandline .tryout-copy h2,
#details-film-media .tryout-copy h2 {
  margin: 0 0 .5rem;
  line-height: 1.2;
  font-weight: 800;
}
#details-marine-ecology .tryout-copy p,
#details-snorkelling .tryout-copy p,
#details-rockpooling .tryout-copy p,
#details-strandline .tryout-copy p,
#details-film-media .tryout-copy p {
  margin: .5rem 0 0;
  line-height: 1.7;
  color: #4b5563;
}
@media (min-width: 900px) {
  #details-* .tryout-block {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  #details-snorkelling.reverse .tryout-copy,
  #details-strandline.reverse .tryout-copy {
    order: 2;
  }
  #details-snorkelling.reverse .tryout-media,
  #details-strandline.reverse .tryout-media {
    order: 1;
  }
}

.ssi-divider {
  border: 0;
  height: 1px;
  width: 100%;
  max-width: 1100px;
  margin: 2.5rem auto;
  background: rgba(17, 24, 39, 0.1);
}

.view-article .article-intro,
.view-article .introtext {
  display: none !important;
}

@media (max-width: 767px) {
  .ow-hero-row {
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .view-article .container,
  .sd-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero .h1,
  .ow-hero .h1 {
    font-size: 26px;
    line-height: 1.2;
  }
  .ow-hero .lead {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .ow-hero .label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 12px;
    padding: 4px 8px;
  }
  .ow-card {
    max-width: 460px;
    margin: 8px auto 0;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
  }
  .section .panel[style*="height:100%"] {
    height: auto !important;
  }
  .section .panel .panel-body {
    padding: 12px 14px;
  }
  .section .panel h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .section h2.h2 {
    font-size: 22px;
    margin: 0 0 10px;
  }
  .panel .panel-heading {
    padding: 10px 14px;
  }
  .panel .panel-body {
    padding: 12px 14px;
  }
  .section ul {
    padding-left: 18px !important;
  }
  .ow-gallery {
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    padding: 0 2px 8px;
  }
  .ow-gallery .item {
    width: 82vw;
    height: 46vw;
    max-height: 200px;
    border-radius: 10px;
  }
  #ow-faq .panel-title a,
  #bd-faq .panel-title a {
    display: block;
    padding: 10px 14px;
    font-size: 16px;
  }
  #ow-faq .panel-body,
  #bd-faq .panel-body {
    font-size: 15px;
    line-height: 1.5;
  }
  .hero .row,
  .section .row,
  .ow-hero-row {
    display: block !important;
  }
  .hero .row > [class*="col-"],
  .section .row > [class*="col-"] {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero .row > [class*="col-"] + [class*="col-"],
  .section .row > [class*="col-"] + [class*="col-"] {
    margin-top: 12px;
  }
  .ow-card {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ow-hero-row {
    min-height: 320px;
  }
  .ow-hero .h1 {
    font-size: 30px;
  }
  .ow-hero .lead {
    font-size: 17px;
  }
  .ow-gallery .item {
    width: 42vw;
    height: 23.5vw;
    max-height: 220px;
  }
  .section .row > .col-sm-3 {
    width: 50% !important;
    float: left !important;
  }
  .section .row > .col-sm-3:nth-child(n+3) {
    margin-top: 12px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ow-gallery .item {
    width: 300px;
    height: 168px;
  }
}

html.com_community #community-wrap {
  background: #ffffff;
  color: #111111;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.08);
  padding: 10px;
}
html.com_community,
html.com_community body,
html.com_community #community-wrap {
  font-size: 15px;
  line-height: 1.6;
  color: #111111;
}
html.com_community small {
  font-size: 92%;
  line-height: inherit;
}
html.com_community #community-wrap .joms-button--link small,
html.com_community #community-wrap .joms-tab__bar a small {
  font-size: 100%;
}
html.com_community #community-wrap .muted,
html.com_community #community-wrap .text-muted,
html.com_community #community-wrap .joms-text--muted {
  color: #6b7280;
}
html.com_community #community-wrap .joms-module,
html.com_community #community-wrap .joms-stream,
html.com_community #community-wrap .joms-chat__window,
html.com_community #community-wrap .joms-popover,
html.com_community #community-wrap .joms-hcard__cover + .joms-hcard__info,
html.com_community #community-wrap .joms-textarea__wrapper,
html.com_community #community-wrap .joms-dropdown,
html.com_community #community-wrap .panel,
html.com_community #community-wrap .panel-default,
html.com_community #community-wrap .panel-heading,
html.com_community #community-wrap .card,
html.com_community #community-wrap .module,
html.com_community #community-wrap .t3-content,
html.com_community #community-wrap .well,
html.com_community #community-wrap .alert,
html.com_community #community-wrap .modal-content,
html.com_community #community-wrap .popover,
html.com_community #community-wrap .dropdown-menu,
html.com_community #community-wrap .list-group-item {
  background: #ffffff !important;
  border: 1px solid rgba(17, 24, 39, 0.1) !important;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.08);
  color: #111111;
  background-image: none !important;
}
html.com_community #community-wrap .joms-stream__header,
html.com_community #community-wrap .joms-list,
html.com_community #community-wrap .joms-list--thumbnail,
html.com_community #community-wrap .joms-list--group {
  border-radius: 12px;
}
html.com_community #community-wrap .joms-module,
html.com_community #community-wrap .joms-stream {
  margin-bottom: 14px;
}
html.com_community #community-wrap .joms-gap {
  height: 12px;
}
html.com_community #community-wrap .joms-gap--small {
  height: 6px;
}
html.com_community #community-wrap .joms-avatar img,
html.com_community #community-wrap .joms-avatar--stream img {
  border-radius: 50%;
}
html.com_community #community-wrap .joms-button--primary,
html.com_community #community-wrap .joms-button--comment,
html.com_community #community-wrap .joms-button--reaction.active {
  background: #24c3de;
  border-color: #1eadc6;
  color: #00151a;
}
html.com_community #community-wrap .joms-button--primary:hover,
html.com_community #community-wrap .joms-button--comment:hover,
html.com_community #community-wrap .joms-button--reaction.active:hover {
  background: #3fcae2;
  border-color: #24c3de;
  color: #001015;
}
html.com_community #community-wrap .joms-button--neutral,
html.com_community #community-wrap .joms-button--hellome,
html.com_community #community-wrap .joms-button--link {
  background: #fff;
  color: #111111;
  border: 1px solid rgba(17, 24, 39, 0.1);
}
html.com_community #community-wrap .joms-button--neutral:hover,
html.com_community #community-wrap .joms-button--hellome:hover,
html.com_community #community-wrap .joms-button--link:hover {
  background: #fff;
  border-color: rgba(17, 24, 39, 0.16);
  box-shadow: 0 1px 6px rgba(17, 24, 39, 0.1);
}
html.com_community #community-wrap .joms-button--reaction {
  background: #fff;
  color: #6b7280;
  border: 1px solid rgba(17, 24, 39, 0.1);
}
html.com_community #community-wrap .joms-button--reaction:hover {
  color: #5d636f;
  border-color: rgba(17, 24, 39, 0.16);
}
html.com_community #community-wrap .joms-tab__bar {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
html.com_community #community-wrap .joms-tab__bar a {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 500;
  color: #6b7280;
  background: #fff;
  border-right: 1px solid rgba(17, 24, 39, 0.1);
}
html.com_community #community-wrap .joms-tab__bar a:last-child {
  border-right: 0;
}
html.com_community #community-wrap .joms-tab__bar a.active,
html.com_community #community-wrap .joms-tab__bar a:hover {
  color: #111111;
  background: rgba(36, 195, 222, 0.1);
}
html.com_community #community-wrap .colorful-status__container {
  border-radius: 12px;
  overflow: hidden;
}
html.com_community #community-wrap .colorful-status__inner {
  font-size: 16px;
  line-height: 1.5;
  text-shadow: none;
  padding: 18px;
}
html.com_community #community-wrap .joms-textarea,
html.com_community #community-wrap textarea.joms-textarea,
html.com_community #community-wrap input[type="text"],
html.com_community #community-wrap input[type="search"],
html.com_community #community-wrap input[type="email"],
html.com_community #community-wrap input[type="password"] {
  color: #111111;
  background: #f9fafb;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 6px;
}
html.com_community #community-wrap .joms-textarea::placeholder {
  color: #6b7280;
}
html.com_community #community-wrap .joms-textarea__beautifier {
  display: none;
}
html.com_community #community-wrap .joms-textarea__attachment {
  background: #f9fafb;
  border-color: rgba(17, 24, 39, 0.1);
}
html.com_community #community-wrap .joms-stream__time,
html.com_community #community-wrap .joms-popover__content small,
html.com_community #community-wrap .joms-toolbar small {
  font-size: 90%;
  color: #6b7280;
}
html.com_community #community-wrap .joms-dropdown {
  padding: 6px 0;
  background: #fff;
}
html.com_community #community-wrap .joms-dropdown li a {
  padding: 8px 14px;
  color: #111111;
  background: #fff;
}
html.com_community #community-wrap .joms-dropdown li a:hover {
  background: rgba(36, 195, 222, 0.12);
  color: #111111;
}
html.com_community #community-wrap .joms-notifications a,
html.com_community #community-wrap .joms-icon {
  color: #6b7280;
  fill: #6b7280;
}
html.com_community #community-wrap .joms-notifications a:hover,
html.com_community #community-wrap .joms-icon:hover {
  color: #111111;
  fill: #111111;
}
html.com_community #community-wrap img,
html.com_community #community-wrap video {
  border-radius: 6px;
}
html.com_community video {
  width: 100% !important;
  height: auto !important;
}
@media (max-width: 767px) {
  html.com_community #community-wrap {
    padding: 8px;
  }
  html.com_community #community-wrap .joms-tab__bar a {
    padding: 8px 10px;
  }
  html.com_community #community-wrap .joms-stream,
  html.com_community #community-wrap .joms-module {
    margin-bottom: 12px;
  }
  html.com_community #community-wrap .colorful-status__inner {
    padding: 14px;
  }
}

.t3-off-canvas .joms-icon {
  vertical-align: middle;
}

.t3-off-canvas-toggle,
.off-canvas-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  cursor: pointer;
  z-index: 13000;
}
.t3-off-canvas-toggle .icon-bar,
.off-canvas-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #111111;
  margin: 3px 0;
  transition: transform .15s ease, opacity .15s ease;
}

@media (max-width: 992px) {
  .t3-mainnav,
  .t3-navbar {
    display: none !important;
  }
  .t3-off-canvas-toggle,
  .off-canvas-toggle {
    display: inline-flex !important;
  }
}

@media (min-width: 993px) {
  .t3-mainnav,
  .t3-navbar {
    display: block !important;
  }
  
}

.t3-off-canvas {
  background: #fff;
  color: #111;
  border-left: 1px solid rgba(17, 24, 39, 0.1);
}
.t3-off-canvas .off-canvas-body {
  padding: 12px;
}
.t3-off-canvas .nav > li > a {
  padding: 10px 14px;
}
.t3-off-canvas .nav .nav-child {
  padding-left: 10px;
  border-left: 1px solid rgba(17, 24, 39, 0.1);
}

.t3-off-canvas .module.nav-mobile,
.t3-off-canvas .module.nav-mobile .module-inner {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
  padding: 0;
}
.t3-off-canvas .nav-mobile .nav > li > a {
  display: block;
  padding: 10px 34px 10px 14px;
  color: #111111;
  border-radius: 14px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.t3-off-canvas .nav-mobile .nav > li > a:hover,
.t3-off-canvas .nav-mobile .nav > li > a:focus {
  background: #f3f4f6;
  color: #111;
}
.t3-off-canvas .nav-mobile .nav > li.active > a,
.t3-off-canvas .nav-mobile .nav > li.current > a {
  background: #24c3de;
  color: #00151a;
}
.t3-off-canvas .nav-mobile .divider,
.t3-off-canvas .nav-mobile .separator {
  height: 1px;
  margin: 6px 0;
  background: rgba(17, 24, 39, 0.1);
}

.t3-off-canvas .nav-mobile .nav > li {
  position: relative;
  border-radius: 14px;
}
.t3-off-canvas .nav-mobile .nav > li:nth-child(1) {
  --bar: #24C3DE;
}
.t3-off-canvas .nav-mobile .nav > li:nth-child(2) {
  --bar: #0ea5e9;
}
.t3-off-canvas .nav-mobile .nav > li:nth-child(3) {
  --bar: #10b981;
}
.t3-off-canvas .nav-mobile .nav > li:nth-child(4) {
  --bar: #8b5cf6;
}
.t3-off-canvas .nav-mobile .nav > li:nth-child(5) {
  --bar: #f59e0b;
}
.t3-off-canvas .nav-mobile .nav > li:nth-child(6) {
  --bar: #ef4444;
}
.t3-off-canvas .nav-mobile .nav > li > a {
  border-left: 4px solid var(--bar, #24c3de);
}
.t3-off-canvas .nav-mobile .nav > li.has-children > .js-oc-toggle {
  position: absolute;
  right: 6px;
  top: 8px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #fff;
  color: #111;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.t3-off-canvas .nav-mobile .nav > li.has-children > .js-oc-toggle:hover {
  background: #f8fafc;
}
.t3-off-canvas .nav-mobile .nav > li.has-children > .js-oc-toggle::before {
  content: "\f105";
  font-family: "FontAwesome", "Font Awesome 5 Free", "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
}
.t3-off-canvas .nav-mobile .nav > li .nav-child {
  display: none;
  margin: 6px 0 8px 12px;
  padding-left: 10px;
  border-left: 1px dashed rgba(17, 24, 39, 0.1);
}
.t3-off-canvas .nav-mobile .nav > li.open > .js-oc-toggle::before {
  transform: rotate(90deg);
  display: inline-block;
}
.t3-off-canvas .nav-mobile .nav > li.open > .nav-child {
  display: block;
}
.t3-off-canvas .nav-mobile .nav .nav-child > li > a {
  padding: 8px 12px;
  color: #4b5563;
  border-radius: 14px;
}
.t3-off-canvas .nav-mobile .nav .nav-child > li > a:hover {
  background: #f3f4f6;
  color: #111;
}
.t3-off-canvas .nav-mobile .nav li.parent > a:after {
  content: "\f105";
  font-family: "FontAwesome", "Font Awesome 5 Free", "Font Awesome 6 Free";
  font-weight: 900;
  float: right;
  opacity: .6;
}
body,
.component-content,
.t3-content,
.t3-mainbody {
  background: #fff;
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7em;
}
.btn,
.button,
a.btn,
input[type="submit"],
.jomsocial .btn,
#community-wrap .btn {
  background: linear-gradient(135deg, #1f7292, #114d64);
  color: #ffffff !important;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(31, 114, 146, 0.6);
  transition: all 0.3s ease;
  text-shadow: none;
}
.btn:hover,
.button:hover,
a.btn:hover,
input[type="submit"]:hover,
.jomsocial .btn:hover,
#community-wrap .btn:hover {
  background: linear-gradient(135deg, #1f7292, #00b4d8);
  color: #ffffff !important;
  transform: translateY(-1px);
}
.btn:focus,
.button:focus,
a.btn:focus {
  outline: 2px solid #00b4d8;
  outline-offset: 2px;
}
.t3-section.masthead,
.hero-section,
.section-hero {
  background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  padding: 40px 20px;
  min-height: 300px;
}
.t3-section.masthead .custom {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 40px 20px;
}
.t3-section.masthead .custom img {
  max-width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .t3-section.masthead .custom img {
    max-width: 200px;
  }
  .t3-section.masthead .custom h1 {
    font-size: 1.8em;
  }
  .t3-section.masthead .custom p {
    font-size: 1em;
  }
}
h1,
h2,
h3,
h4 {
  color: #1f7292;
  font-weight: 600;
}
.t3-section.dark h1,
.t3-section.dark h2,
.t3-section.dark h3,
.t3-section.dark h4,
#community-wrap h1,
#community-wrap h2,
#community-wrap h3 {
  color: #24c3de;
}
a {
  color: #1f7292;
  text-decoration: underline;
  transition: color 0.3s ease;
}
a:hover {
  color: #00b4d8;
}
.t3-section.dark a,
.jomsocial a,
#community-wrap a {
  color: #24c3de !important;
  text-decoration: underline;
}
.t3-section.dark a:hover,
#community-wrap a:hover,
.jomsocial a:hover {
  color: #ffffff !important;
}
.t3-module,
.card,
.module-content {
  background: #fff;
  color: #222222;
  border: 1px solid rgba(31, 114, 146, 0.1);
  border-radius: 12px;
  padding: 20px;
}
.t3-section.dark,
.bg-dark,
.t3-module.dark {
  background: #135771;
  color: #ffffff;
  border-radius: 12px;
  padding: 20px;
}
.t3-section.dark h3,
.t3-module.dark h3,
.jomsocial .module-title {
  color: #00b4d8;
  border-bottom: 1px solid rgba(0, 180, 216, 0.3);
  padding-bottom: 0.4em;
}
#community-wrap .joms-body,
#community-wrap .joms-main,
#community-wrap .joms-sidebar {
  background: #fff !important;
  color: #222222 !important;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
input[type="text"],
input[type="email"],
textarea,
select {
  border: 1px solid #1f7292;
  padding: 10px;
  border-radius: 10px;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 5px #00b4d8;
  outline: none;
}
blockquote {
  border-left: 4px solid #00b4d8;
  background: rgba(0, 180, 216, 0.05);
  padding: 1em 1.5em;
  font-style: italic;
  color: #165168;
}
.alert-info {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.5);
  color: #00b4d8;
}
.t3-megamenu .mega-nav > li > a {
  color: #ffffff !important;
  background: transparent;
  text-decoration: none;
  border-radius: 30px;
  padding: 8px 18px;
  transition: all 0.3s ease;
}
.t3-megamenu .mega-nav > li > a:hover,
.t3-megamenu .mega-nav > li:hover > a {
  background: #1f7292;
  color: #ffffff !important;
  text-decoration: none;
}
.t3-megamenu .mega-nav > li.active > a,
.t3-megamenu .mega-nav > li.current > a {
  background: #1f7292;
  color: #ffffff !important;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
}
.t3-megamenu .dropdown-menu,
.t3-megamenu .mega-dropdown-inner {
  background: #000 !important;
  border: 1px solid rgba(31, 114, 146, 0.2);
  padding: 10px 0;
}
.t3-megamenu .dropdown-menu > li > a,
.t3-megamenu .mega-nav .mega-dropdown-inner li > a {
  background: transparent !important;
  color: #ffffff !important;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  font-weight: normal;
  transition: all 0.2s ease;
}
.t3-megamenu .dropdown-menu > li > a:hover,
.t3-megamenu .mega-nav .mega-dropdown-inner li > a:hover,
.t3-megamenu .dropdown-menu > li.active > a {
  background: #1f7292 !important;
  color: #ffffff !important;
  border-radius: 6px;
}
.t3-off-canvas .nav > li > a,
.t3-off-canvas .nav > li > a:link {
  color: #1f7292;
  background: none;
}
.t3-off-canvas .nav > li > a:hover,
.t3-off-canvas .nav > li.active > a {
  color: #ffffff !important;
  background: #1f7292 !important;
}
.navbar-toggle {
  display: none;
}
@media (max-width: 991px) {
  .navbar-toggle {
    display: block !important;
  }
}