/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	-webkit-transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  -webkit-transition: none;
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: -webkit-box;
	display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: end;
          justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-animation: pswp-clockwise 600ms linear infinite;
          animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@-webkit-keyframes pswp-clockwise {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes pswp-clockwise {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

:root {
  --xs: map-get($breakpoints, "xs");
  --sm: map-get($breakpoints, "sm");
  --md: map-get($breakpoints, "md");
  --lg: map-get($breakpoints, "lg");
  --xl: map-get($breakpoints, "xl");
  --xxl: map-get($breakpoints, "xxl");
  --xxxl: map-get($breakpoints, "xxxl");
  --wrap-spacing: var(--base-spacing);
  --wrap-body: 1920px;
  --wrap-content: 1080px;
  --wrap-xl: 1920px;
  --wrap-lg: 1440px;
  --wrap-md: 1096px;
  --wrap-sm: 864px;
  --base-font-size: 1.125rem;
  --base-line-height: 1.5;
  --base-spacing-half: calc(var(--base-spacing) * 0.5);
  --base-spacing: 8px;
  --base-spacing-double: calc(var(--base-spacing) * 2);
  --headings-line-height: 1.2;
  --headings-margin-bottom: 0.4em;
  --duration: 200ms;
  --gutter-width-base: 4px;
  --gutter-width-double: calc(var(--gutter-width-base) * 2);
  --border-radius-half: calc(var(--border-radius-base) * 0.5);
  --border-radius-base: 8px;
  --border-radius-double: calc(var(--border-radius-base) * 2);
  --border-width-xs: 2px;
  --border-width-sm: 4px;
  --border-width-md: 8px;
  --border-width-lg: 16px;
  --box-shadow-1: 0px 0px 16px 0px rgba(255, 255, 255, 0.50) inset, 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
  --box-shadow-2: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
  --btn-radius-large: 9px;
  --btn-radius-medium: 7px;
  --btn-radius-small: 5px;
  --btn-padding-tb-large: 9px;
  --btn-padding-lr-large: 25px;
  --btn-padding-icon-large: 11px;
  --btn-padding-tb-medium: 7px;
  --btn-padding-lr-medium: 17px;
  --btn-padding-icon-medium: 7px;
  --btn-padding-tb-small: 5px;
  --btn-padding-lr-small: 13px;
  --btn-padding-icon-small: 5px;
}

:root {
  --font-primary: "SofiaProLight", "Work Sans", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
}

/* SofiaProLight */
@font-face {
  font-family: "SofiaProLight";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("../fonts/SofiaProLight-webfont.woff") format("woff");
}
:root {
  --color-primary: #16160E;
  --color-primary-hover: #000;
  --color-secondary: #FCAE4A;
  --color-secondary-hover: #FE9815;
  --color-tertiary: #FEFCFC;
  --color-tertiary-hover: #FAF8F8;
  --color-background-primary: #16160E;
  --color-background-secondary: #FCAE4A;
  --color-background-page: #EFEFEF;
  --color-bg-1: #FAF4F2;
  --color-bg-2: #074d67;
  --color-bg-3: #F3F3F3;
  --color-bg-page: #fff;
  --color-text: #666;
  --color-text-on-primary: #fff;
  --color-text-on-secondary: #fff;
  --color-link-hover: #353535;
  --color-grey-1: #555;
  --color-grey-2: #BCBCBC;
  --color-grey-3: #F8F8F8;
}

/* stylelint-disable */
/* stylelint-enable */
html {
  text-rendering: optimizeSpeed;
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
figcaption,
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

p {
  margin-bottom: 1em;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  width: 100%;
  margin: 2em auto;
  padding: 0.25em 0;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: var(--color-brand-primary-hex);
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.3;
  margin: 0 0 1rem;
  padding: 1rem;
}

input,
select,
textarea {
  border: 1px solid #ddd;
}

textarea {
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

html {
  font-family: var(--font-primary);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-size: var(--base-font-size);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg-page);
}

a {
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
  color: var(--color-link-hover);
}

.main {
  position: relative;
  max-width: var(--wrap-lg);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: var(--color-plain-white);
}

table,
.table {
  width: 100%;
  color: var(--color-text);
  border-collapse: collapse;
}
table thead,
.table thead {
  background-color: rgba(22, 22, 14, 0.1);
}
table thead th,
.table thead th {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--color-primary);
}
table tbody td,
.table tbody td {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  padding: 14px 8px 4px 8px;
  text-align: left;
  border-bottom: 1px solid var(--color-primary);
}

dl {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 16px;
}

.hidden {
  display: none;
}

.icon {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.content {
  margin-bottom: 3rem;
}
.content a {
  text-decoration: underline;
}

h1, .h1, .alpha,
h2, .h2, .beta,
h3, .h3, .gamma,
h4, .h4, .delta,
h5, .h5, .epsilon,
h6, .h6, .zeta,
.h7, .eta {
  line-height: 1;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 16px;
  line-height: 1;
}

p:last-child {
  margin: 0;
}

ol {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

ul {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

dl dt {
  color: #000;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}
dl dd {
  color: #000;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

button,
.button {
  position: relative;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 22px;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
button:hover,
.button:hover {
  color: #fff;
  background: #000;
  border: 1px solid transparent;
}

.block {
  margin-bottom: calc(var(--base-spacing-double) * 4);
}

.divider {
  margin: var(--base-spacing-double) 0;
  padding: 0;
}

.link .link-alpha .icon {
  -webkit-box-ordinal-group: 2;
          order: 1;
}
.link.link-alpha .icon {
  -webkit-box-ordinal-group: 3;
          order: 2;
}

video,
.video {
  width: 100%;
}

.embed-container {
  position: relative;
  height: 594px;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* stylelint-disable */
/* stylelint-enable */
.page-grid {
  position: relative;
  display: grid;
  grid-template-columns: 600px 1fr;
  grid-gap: 3rem;
  max-width: var(--wrap-lg);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20vh;
}
@media (max-width: 992px) {
  .page-grid {
    grid-template-columns: 1fr;
    margin-top: 10vh;
  }
}
.page-grid.mb-small {
  margin-top: 10vh;
}
.page-grid.xl {
  max-width: var(--wrap-xl);
}
.page-grid.lg {
  max-width: var(--wrap-lg);
}
.page-grid.md {
  max-width: var(--wrap-md);
}
.page-grid.sm {
  max-width: var(--wrap-sm);
}

.px {
  padding-right: calc(var(--base-spacing-double) * 2);
  padding-left: calc(var(--base-spacing-double) * 2);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 576px) {
  .px {
    padding-right: var(--base-spacing-double);
    padding-left: var(--base-spacing-double);
  }
}

@media (max-width: 992px) {
  .main_menu {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}
.main_menu .title {
  font-size: 35px;
  margin-bottom: 30px;
}
.main_menu .menu_link {
  display: block;
  line-height: 2em;
}
.main_menu .menu_link[aria-current=page] {
  color: var(--color-link-hover);
}
.main_menu a {
  text-decoration: none;
}

@media (max-width: 992px) {
  .content-left {
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}

.footer {
  margin-bottom: 3rem;
}

.copyright .text {
  font-size: 13px;
}

.gallery-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, auto));
  grid-gap: calc(var(--base-spacing-double) * 2);
}
.gallery-content .image {
  aspect-ratio: 1;
}

.image_preview {
  float: left;
  max-width: 600px;
  width: 100%;
  height: 360px;
}
.image_preview img {
  display: none;
}

.image_set_preview {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}
@media (max-width: 768px) {
  .image_set_preview {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.image_set_item {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  align-content: center;
  gap: 0.5rem;
  aspect-ratio: 1;
}
.image_set_item .image-container {
  width: 100%;
  height: 100%;
}

.image_set_preview .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image_grid_preview {
  -webkit-column-count: 2;
          column-count: 2;
  margin-bottom: 60px;
}

.image_grid_item {
  display: inline-block;
  vertical-align: top;
  height: 100%;
}

.image_grid_preview img {
  display: block;
}

@media (max-width: 768px) {
  .image_grid_preview img {
    margin-right: 5px;
    margin-bottom: 5px;
  }
}
.pswp__img {
  padding: 0 3rem;
}

.image_set_name {
  margin-bottom: 1rem;
}
.image_set_name a {
  text-decoration: none;
}

.product-meta {
  margin-bottom: 1rem;
}

.product-name {
  margin-bottom: 0.5rem;
}

.options {
  display: -webkit-box;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.options.hidden {
  display: none;
}
.options.versions {
  display: none;
}
.options.versions.is-active {
  display: -webkit-box;
  display: flex;
}

.product-images {
  margin-bottom: 1rem;
}
.product-images.has-more {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-images.has-more .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-images.has-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.option-input-label {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.option-input-label:hover {
  cursor: pointer;
}

.option-input {
  position: absolute;
  cursor: pointer;
  height: 100%;
  width: 100%;
  opacity: 0;
  margin: 0;
  left: 0;
  top: 0;
}
.option-input:checked + .option-input-text {
  border-color: #000;
  background-color: #ccc;
  color: #000;
}
.option-input:hover {
  cursor: pointer;
}

.option-input-text {
  background-color: transparent;
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
  border: 1px solid #000;
  padding: 10px 22px;
}
.option-input-text:hover {
  cursor: pointer;
}

.product .image-container {
  display: inline-block;
}
.product .image-container picture {
  display: inline-block;
}
.product .image-container .image_grid_preview img {
  margin: 0;
}

.product-versions {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column wrap;
}

.product-size-box {
  position: relative;
  border-left: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 1rem;
  margin-bottom: 2rem;
}
.product-size-box .version-box {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
  gap: 10px;
}
.product-size-box .version-box:not(:last-child) {
  margin-bottom: 10px;
}
.product-size-box .version-text {
  position: relative;
  line-height: 1.2;
}

.product-size-info hr {
  margin-block: 0.5rem;
}

.product-version {
  line-height: 1.3;
}

.form-error.alert {
  color: red;
  font-weight: 600;
}

label {
  line-height: 1.3;
}

input {
  margin-bottom: 0;
}

.form-field-check {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  position: relative;
  line-height: 1;
}
.breadcrumb-item:not(:last-child) {
  padding-right: 0.5rem;
}
.breadcrumb-item:not(:last-child):after {
  position: absolute;
  content: "|";
  top: 0;
  right: 0;
}

.breadcrumb-link {
  font-size: 1rem;
}
.breadcrumb-link[aria-current=page] {
  color: var(--color-link-hover);
  text-decoration: none;
}

.w100 {
  width: 100%;
}

.w50 {
  width: 50%;
}

.d-none, .desktop {
  display: none;
}

.d-block {
  display: block;
}

.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mt1 {
  margin-top: clamp(0.5rem, 0.0555555556rem + 0.9259259259vw, 0.75rem);
}

.mt2 {
  margin-top: clamp(0.75rem, 0.0833333333rem + 1.3888888889vw, 1.125rem);
}

.mt3 {
  margin-top: clamp(1rem, 0.1111111111rem + 1.8518518519vw, 1.5rem);
}

.mt4 {
  margin-top: clamp(1.25rem, 0.1388888889rem + 2.3148148148vw, 1.875rem);
}

.mt5 {
  margin-top: clamp(1.5rem, 0.1666666667rem + 2.7777777778vw, 2.25rem);
}

.mt6 {
  margin-top: clamp(1.75rem, 0.1944444444rem + 3.2407407407vw, 2.625rem);
}

.mt7 {
  margin-top: clamp(2rem, 0.2222222222rem + 3.7037037037vw, 3rem);
}

.mb1 {
  margin-bottom: clamp(0.5rem, 0.0555555556rem + 0.9259259259vw, 0.75rem);
}

.mb2 {
  margin-bottom: clamp(0.75rem, 0.0833333333rem + 1.3888888889vw, 1.125rem);
}

.mb3 {
  margin-bottom: clamp(1rem, 0.1111111111rem + 1.8518518519vw, 1.5rem);
}

.mb4 {
  margin-bottom: clamp(1.25rem, 0.1388888889rem + 2.3148148148vw, 1.875rem);
}

.mb5 {
  margin-bottom: clamp(1.5rem, 0.1666666667rem + 2.7777777778vw, 2.25rem);
}

.mb6 {
  margin-bottom: clamp(1.75rem, 0.1944444444rem + 3.2407407407vw, 2.625rem);
}

.mb7 {
  margin-bottom: clamp(2rem, 0.2222222222rem + 3.7037037037vw, 3rem);
}

.pt1 {
  padding-top: clamp(0.5rem, 0.0555555556rem + 0.9259259259vw, 0.75rem);
}

.pt2 {
  padding-top: clamp(0.75rem, 0.0833333333rem + 1.3888888889vw, 1.125rem);
}

.pt3 {
  padding-top: clamp(1rem, 0.1111111111rem + 1.8518518519vw, 1.5rem);
}

.pt4 {
  padding-top: clamp(1.25rem, 0.1388888889rem + 2.3148148148vw, 1.875rem);
}

.pt5 {
  padding-top: clamp(1.5rem, 0.1666666667rem + 2.7777777778vw, 2.25rem);
}

.pt6 {
  padding-top: clamp(1.75rem, 0.1944444444rem + 3.2407407407vw, 2.625rem);
}

.pt7 {
  padding-top: clamp(2rem, 0.2222222222rem + 3.7037037037vw, 3rem);
}

.pb1 {
  padding-bottom: clamp(0.5rem, 0.0555555556rem + 0.9259259259vw, 0.75rem);
}

.pb2 {
  padding-bottom: clamp(0.75rem, 0.0833333333rem + 1.3888888889vw, 1.125rem);
}

.pb3 {
  padding-bottom: clamp(1rem, 0.1111111111rem + 1.8518518519vw, 1.5rem);
}

.pb4 {
  padding-bottom: clamp(1.25rem, 0.1388888889rem + 2.3148148148vw, 1.875rem);
}

.pb5 {
  padding-bottom: clamp(1.5rem, 0.1666666667rem + 2.7777777778vw, 2.25rem);
}

.pb6 {
  padding-bottom: clamp(1.75rem, 0.1944444444rem + 3.2407407407vw, 2.625rem);
}

.pb7 {
  padding-bottom: clamp(2rem, 0.2222222222rem + 3.7037037037vw, 3rem);
}

.u-align-left {
  text-align: left;
}

.u-align-center {
  text-align: center;
}

.u-align-right {
  text-align: right;
}

.u-is-boxed, video,
.video, .embed-container {
  background-color: var(--color-tertiary);
  border-radius: var(--border-radius-double);
  box-shadow: var(--box-shadow-2);
}

.desktop {
  display: block;
}
@media (max-width: 992px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 992px) {
  .mobile {
    display: block;
  }
}

.u-background-transparent {
  background: rgba(254, 252, 252, 0.8);
}
