/*
animation: fadeOut ease 1s;
-webkit-animation: fadeOut ease 1s;
-moz-animation: fadeOut ease 1s;
-o-animation: fadeOut ease 1s;
-ms-animation: fadeOut ease 1s;


@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
*/
::selection {
  color: #151313;
  background: #1cee1b; }

body {
  font-family: 'Inter';
  font-weight: 300;
  letter-spacing: 0.02rem;
  color: #151313; }

h1, h2, h3 {
  font-family: 'Inter';
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.1rem); }

p.head {
  margin-bottom: 2rem; }

nav.secondary {
  color: #c8bae5; }

nav.primary {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600; }

.strong {
  font-weight: 700; }

a {
  color: #fff;
  outline: 0; }

a:hover {
  color: #1cee1b;
  outline: 0; }

a:focus {
  color: #1cee1b;
  outline: 0; }

a:active {
  color: #1cee1b;
  outline: 0; }

a.gl {
  color: #1cee1b; }

a.gl:hover,
a.gl:focus,
a.gl:active {
  color: #fff; }

.nobreak {
  white-space: nowrap; }

@media only screen and (min-width: 1300px) {
  .breakHolder p {
    font-size: 1.25rem; } }

.impressions {
  font-size: 1.2rem; }

.key span p {
  font-size: 0.8rem; }
  @media only screen and (min-width: 1920px) {
    .key span p {
      font-size: 1rem; } }

.white {
  color: #fff; }

.pink {
  color: magenta; }

.footerText {
  padding: 1rem; }

footer p {
  margin-bottom: 0.9rem; }

footer h3 {
  margin-bottom: 1.4rem; }

.footerText, .footerText a {
  font-size: 0.8rem;
  color: #838383; }

.footerText a:hover {
  color: #fff; }

.grad {
  font-size: 3rem;
  font-weight: 600;
  background: -webkit-linear-gradient(270deg, #fed4a8 0%, #d76f78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 50vw; }

form {
  margin-bottom: 3.5rem; }

form ul li {
  margin: 0.75rem 0; }

input[type='text']:hover,
input[type='email']:hover,
input[type='password']:hover,
input[type='search']:hover,
textarea:hover,
.box select:hover {
  color: #151313;
  outline: none;
  background-color: #f5f5f5;
  border: 1px solid #4c00bb; }

input[type='submit']:hover,
input[type='button']:hover {
  color: #f5f5f5;
  outline: none;
  background-color: #151313;
  border: 1px solid #4c00bb; }

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='submit']:focus,
input[type='button']:focus,
textarea:focus,
.box select:focus {
  color: #151313;
  outline: none;
  background-color: #fbfbfb;
  border: 1px solid #4c00bb; }

input:active {
  background-color: #fff; }

label.text-field {
  display: block;
  color: #151313;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: left; }
  @media only screen and (min-width: 1300px) {
    label.text-field {
      font-size: 1rem; } }
  label.text-field.something {
    font-size: 1rem; }

input.dark {
  background: #151313 !important;
  color: #fff !important;
  border: 1px solid #50199f !important; }
  @media only screen and (min-width: 768px) {
    input.dark {
      background: #322a72 !important; } }

label.hide {
  margin-bottom: 0; }

::placeholder {
  color: #aaa; }

input[type='text'],
input[type='email'],
input[type='password'],
input[type='search'],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0 0.8rem 0.2rem 0.8rem;
  border: 1px solid #ddd;
  resize: vertical;
  font-size: 1.2rem;
  color: #151313;
  background-color: #f5f5f5;
  border-radius: 0.25rem; }

textarea {
  padding: 0.5rem 0.8rem 0.5rem 0.8rem; }

/*

      background-color: $field-bg;
      border: 2px solid $field-bg;

      */
/* Style inputs, select elements and textareas */
input[type='text'],
input[type='email'],
input[type='password'],
input[type='search'],
select {
  height: 3rem; }

textarea {
  height: 6rem; }

input[type='submit'],
input[type='button'] {
  height: 3rem;
  font-weight: 700;
  width: 100%;
  background-color: #1cee1b;
  color: #151313;
  border: 1px solid #1cee1b;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  cursor: pointer; }

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    --active: #1cee1b;
    --active-inner: #1b1464;
    --focus: 2px rgba(39, 94, 254, 0.3);
    --border: #ddd;
    --border-hover: #4c00bb;
    --background: #f5f5f5;
    --disabled: #ddd;
    --disabled-inner: #3a1686;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 30px;
    outline: none;
    display: inline-block;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
    vertical-align: top;
    position: absolute;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s; }
    input[type='checkbox']:after,
    input[type='radio']:after {
      content: '';
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s); }
    input[type='checkbox']:checked,
    input[type='radio']:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: 0.3s;
      --d-t: 0.6s;
      --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2); }
    input[type='checkbox']:disabled,
    input[type='radio']:disabled {
      --b: var(--disabled-inner);
      --bc: var(--disabled);
      cursor: not-allowed;
      opacity: 1; }
      input[type='checkbox']:disabled:checked,
      input[type='radio']:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--disabled); }
      input[type='checkbox']:disabled + label,
      input[type='radio']:disabled + label {
        cursor: not-allowed; }
    input[type='checkbox']:hover:not(:checked):not(:disabled),
    input[type='radio']:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover); }
    input[type='checkbox']:not(.switch),
    input[type='radio']:not(.switch) {
      width: 30px; }
      input[type='checkbox']:not(.switch):after,
      input[type='radio']:not(.switch):after {
        opacity: var(--o, 0); }
      input[type='checkbox']:not(.switch):checked,
      input[type='radio']:not(.switch):checked {
        --o: 1; }
    input[type='checkbox'] + label,
    input[type='radio'] + label {
      font-size: 1.3rem;
      line-height: 1.9rem;
      position: relative;
      display: inline-block;
      vertical-align: top;
      cursor: pointer;
      margin-left: 40px; }
  input[type='checkbox']:not(.switch) {
    border-radius: 0.25rem; }
    input[type='checkbox']:not(.switch):after {
      width: 8px;
      height: 16px;
      border: 3px solid var(--active-inner);
      border-top: 0;
      border-left: 0;
      left: 10px;
      top: 4px;
      transform: rotate(var(--r, 20deg)); }
    input[type='checkbox']:not(.switch):checked {
      --r: 43deg; }
  input[type='checkbox'].switch {
    width: 51px;
    border-radius: 22px; }
    input[type='checkbox'].switch:after {
      left: 0;
      top: 0;
      border-radius: 50%;
      width: 26px;
      height: 26px;
      background: var(--ab, var(--active));
      transform: translateX(var(--x, 0)); }
    input[type='checkbox'].switch:checked {
      --ab: var(--active-inner);
      --x: 21px; }
    input[type='checkbox'].switch:disabled:not(:checked):after, input[type='checkbox'].switch:disabled:checked:after {
      opacity: 0.6;
      background: var(--ab, var(--disabled)); }
  input[type='radio'] {
    border-radius: 50%; }
    input[type='radio']:after {
      width: 27px;
      height: 27px;
      border-radius: 50%;
      background: var(--active-inner);
      opacity: 0;
      transform: scale(var(--s, 0.7)); }
    input[type='radio']:checked {
      --s: 0.5; } }

.switch.stacked + label {
  margin-left: 4rem; }

/*
      textarea {
          -webkit-writing-mode: horizontal-tb !important;
          text-rendering: auto;
          color: -internal-light-dark-color(black, white);
          letter-spacing: normal;
          word-spacing: normal;
          text-transform: none;
          text-indent: 0px;
          text-shadow: none;
          display: inline-block;
          text-align: start;
          -webkit-appearance: textarea;
          background-color: -internal-light-dark-color(white, black);
          -webkit-rtl-ordering: logical;
          flex-direction: column;
          resize: auto;
          cursor: text;
          white-space: pre-wrap;
          overflow-wrap: break-word;
          margin: 0em;
          font: 400 11px system-ui;
          border-width: 1px;
          border-style: solid;
          border-color: initial;
          border-image: initial;
          padding: 2px;
      }
      */
.switch-active {
  font-size: 1.2rem;
  margin: 0 0.75rem 0 0;
  position: relative;
  display: inline-block; }

.switch-deactive {
  font-size: 1.2rem;
  color: #8d8d8d;
  margin-left: 3.5rem; }

/* //////////////// S E L E C T  B O X  //////////////// */
.box {
  position: relative; }

.box select {
  -webkit-appearance: button;
  appearance: button;
  outline: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.408 7.704'%3E%3Cpath d='M11.994 1.414l-5.29 5.29-5.29-5.29' fill='none' stroke='%231e1567' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E") no-repeat, #f5f5f5;
  background-position: center right 1.2rem;
  background-size: 0.9rem;
  -webkit-appearance: none; }
  .box select:focus {
    -webkit-appearance: button;
    appearance: button;
    outline: none;
    -webkit-appearance: none;
    background-position: center right 1.2rem; }

.box:hover::before {
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.2); }

.box select option {
  padding: 30px; }

input,
textarea,
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.error {
  border: 2px solid #ff5100 !important; }

.error-text {
  padding-top: 0.5rem;
  color: #ff5100 !important; }

.thanks {
  margin: 2rem; }

input[type='submit'] {
  margin-top: 2rem; }

/* // auto populate styling - remove random colours  /// */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #ddd;
  -webkit-text-fill-color: #151313;
  -webkit-box-shadow: 0 0 0px 1000px #f5f5f5 inset !important;
  transition: background-color 5000s ease-in-out 0s; }

/*
input:-webkit-autofill {
  color: #2a2a2a !important;
}
input:-internal-autofill-selected {
  background-color: transparent;
}


-webkit-text-fill-color: yellow !important;


  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
  select:-webkit-autofill,
  select:-webkit-autofill:hover,
  select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  }

  input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 60px #fafafa inset !important;
    background-color: #fafafa !important;
    background-clip: content-box !important;
}

@-webkit-keyframes autofill {
  0%,
  100% {
    color: #666;
    background: transparent;
  }
}

input:-webkit-autofill {
  -webkit-animation-delay: 1s; // Safari support - any positive time runs instantly
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

// https://stackoverflow.com/questions/2781549/removing-input-background-colour-for-chrome-autocomplete


*/
/* //// inputs disabled, within panels /// */
.panel input[type='text']:disabled,
.panel input[type='email']:disabled,
.panel input[type='password']:disabled,
.panel input[type='search']:disabled,
.panel input[type='checkbox']:disabled,
.panel input[type='radio']:disabled,
.panel input[type='select']:disabled,
.panel textarea:disabled {
  background: #fafafa;
  border: 1px solid #cecece;
  cursor: no-drop; }

.panel input[type='button']:disabled,
.panel input[type='submit']:disabled {
  background: #cecece;
  border: 1px solid #cecece;
  color: #8d8d8d;
  cursor: no-drop; }

.panel input[type='button']:disabled {
  text-decoration: line-through; }

.panel input[type='text']:disabled::placeholder,
.panel input[type='email']:disabled::placeholder,
.panel input[type='password']:disabled::placeholder,
.panel input[type='search']:disabled::placeholder,
.panel textarea:disabled::placeholder {
  color: #cecece;
  text-decoration: line-through;
  cursor: no-drop; }

.panel input[type='text']:disabled:hover,
.panel input[type='email']:disabled:hover,
.panel input[type='password']:disabled:hover,
.panel input[type='search']:disabled:hover {
  border: 1px solid #cecece;
  cursor: no-drop; }

.panel input[type='button']:disabled:hover,
.panel input[type='submit']:disabled:hover {
  border: 1px solid #f0f0f0;
  background: #cecece;
  border: 1px solid #cecece;
  color: #8d8d8d;
  cursor: no-drop; }

.panel input[type='button']:disabled:hover {
  text-decoration: line-through; }

/* //// status message panel /// */
.warning {
  font-size: 0.9rem;
  color: #856404;
  background-color: #fff3cd;
  padding: 0.9rem 1rem 1.1rem;
  border-radius: 0.25rem;
  margin-top: 1.5rem;
  border: 1px solid #ebddb1; }

.warning a {
  color: #5e4a0e;
  border-bottom: 1px dotted #b1880c; }

.warning a:hover {
  color: #1f1800;
  border-bottom: 1px dotted #b1880c; }

.fatal {
  font-size: 0.9rem;
  color: #7a1c1c;
  background-color: #fddede;
  padding: 0.9rem 1rem 1.1rem;
  border-radius: 0.25rem;
  margin-top: 1.5rem;
  border: 1px solid #e6a0a0; }

.fatal a {
  color: #700000;
  border-bottom: 1px dotted #ad6868; }

.fatal a:hover {
  color: #440d0d;
  border-bottom: 1px dotted #b1880c; }

.affirm {
  font-size: 0.9rem;
  color: #4d6e18;
  background-color: #f2fdde;
  padding: 0.9rem 1rem 1.1rem;
  border-radius: 0.25rem;
  margin-top: 1.5rem;
  border: 1px solid #c5e6a0; }

.affirm a {
  color: #2d4408;
  border-bottom: 1px dotted #89ad68; }

.affirm a:hover {
  color: #083108;
  border-bottom: 1px dotted #378106; }

/* //////////////////////////////////// 4 -  B U T T O N S   ////////////////////////// */
/*
.button {
  border: 0;
  border-radius: 0.25rem;
  background: #1E88E5;
  color: white;
  font-family: -system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem;
  cursor: pointer;
}

button[aria-pressed="true"] { }
button[aria-pressed="false"] { }

*/
a.button,
button {
  font-size: 1.3rem;
  font-weight: 600; }

a.button {
  text-decoration: none; }

button.button {
  border: none;
  background-color: transparent;
  font-family: inherit;
  padding: 0;
  cursor: pointer; }
  @media screen and (-ms-high-contrast: active) {
    button.button {
      border: 2px solid currentcolor; } }

a.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  background-color: #1cee1b;
  color: #151313;
  border-radius: 0.25rem;
  border: 0px solid #1cee1b;
  padding: 0.5rem 1.25rem;
  min-width: 10ch;
  min-height: 3rem;
  text-align: center;
  line-height: 1.1;
  transition: 220ms all ease-in-out; }
  a.button:focus,
  button.button:focus {
    outline-style: solid;
    outline-color: transparent; }
  a.button--outline,
  button.button--outline {
    position: absolute;
    border: 0;
    color: #CCC;
    text-decoration: none;
    width: 2rem;
    height: 2rem;
    top: 1rem;
    right: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg data-name='Group 730' fill='none' stroke='%23777777' stroke-width='1'%3E%3Cg data-name='Ellipse 73'%3E%3Ccircle cx='10' cy='10' r='10' stroke='none'/%3E%3Ccircle cx='10' cy='10' r='9'/%3E%3C/g%3E%3Cpath data-name='Line 65' d='M10 14.5v-6'/%3E%3Cpath data-name='Line 66' d='M10 7V5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
    background-size: 1.5rem;
    background-position: center center;
    transition: all 0.3s; }
    @media only screen and (min-width: 768px) {
      a.button--outline,
      button.button--outline {
        position: absolute;
        border: 1px solid #333;
        width: auto;
        height: unset;
        top: 6.5rem;
        right: 2rem;
        border-radius: 0.3rem;
        padding: 0.5rem 1.25rem 0.6rem 1.25rem;
        background: none; } }
    @media only screen and (min-width: 1300px) {
      a.button--outline,
      button.button--outline {
        position: relative;
        display: inline;
        top: 6.25rem;
        right: 3.5rem;
        float: right; } }
    a.button--outline:hover,
    button.button--outline:hover {
      /*background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg data-name='Group 730' fill='none' stroke='%23FFFFFF' stroke-width='1'%3E%3Cg data-name='Ellipse 73'%3E%3Ccircle cx='10' cy='10' r='10' stroke='none'/%3E%3Ccircle cx='10' cy='10' r='9'/%3E%3C/g%3E%3Cpath data-name='Line 65' d='M10 14.5v-6'/%3E%3Cpath data-name='Line 66' d='M10 7V5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
      background-size: 1.5rem;
      background-position: center center;*/
      transition: all 0.3s; }
      @media only screen and (min-width: 768px) {
        a.button--outline:hover,
        button.button--outline:hover {
          background: none;
          border: 1px solid #666;
          color: #FFF;
          transition: all 0.3s; } }
    @media only screen and (min-width: 768px) {
      a.button--outline:before,
      button.button--outline:before {
        content: 'More info'; } }

@media only screen and (min-width: 1500px) {
  .person a.button {
    height: 3rem;
    font-size: 1.2rem; } }

/* /////////////////////// E N D   B U T T O N S  /////////////////////// */
/*
//added html because of mega margin
html {
  background: #fff;
}
*/
html, body {
  max-width: 100%;
  overflow-x: hidden; }

body {
  color: #fff;
  background: #000;
  overscroll-behavior: none; }
  @media only screen and (min-width: 1500px) {
    body {
      margin-bottom: 4rem; } }

.wrapper {
  background: #151313;
  width: 100vw; }
  @media only screen and (min-width: 1500px) {
    .wrapper {
      max-width: 1500px;
      margin: 4rem auto 2rem;
      border-radius: 1.5rem; } }

header {
  margin: auto;
  text-align: center; }

a {
  color: #fff; }

.logo {
  margin-top: 1rem;
  padding: 2rem;
  width: 250px;
  height: 150px; }
  @media only screen and (min-width: 500px) {
    .logo {
      margin: 2rem 0 2rem 0;
      padding: 2rem;
      width: 350px;
      height: 175px;
      /*
    text-align: center;
    width: 250px;
    height: 125px;
    margin-left: auto;
    margin-right: auto;
    */ } }
  @media only screen and (min-width: 1300px) {
    .logo {
      width: calc(350px  + 200px);
      margin-right: -115px; } }

.gallery {
  display: none;
  margin: auto; }
  @media only screen and (min-width: 768px) {
    .gallery {
      display: block;
      text-align: center;
      width: 100%;
      max-width: 70rem; } }
  @media only screen and (min-width: 1500px) {
    .gallery {
      max-width: 100rem; } }

.gallery img {
  display: inline-block;
  padding: 10px; }
  @media only screen and (min-width: 768px) {
    .gallery img {
      width: 48%; } }
  @media only screen and (min-width: 1500px) {
    .gallery img {
      width: auto; } }

@media only screen and (min-width: 768px) {
  img.half {
    display: none; } }

@media only screen and (min-width: 1500px) {
  img.half {
    display: inline-block; } }

hr.divider {
  width: 2rem;
  border-top: 1px solid #8c8b8b;
  margin: 2rem auto; }
  @media only screen and (min-width: 1024px) {
    hr.divider {
      display: none; } }

.swiper {
  width: 100%;
  height: 372px; }
  @media only screen and (min-width: 768px) {
    .swiper {
      display: none; } }

.swiper-slide img {
  max-width: fit-content;
  width: fit-content;
  object-fit: cover; }

/*
  .swipe-half {
    padding-right:20px;
  }

.before-swipe-half {
    padding-right:20px;
  }

  .swipe-half::before {
    content: 'xxxxxxxxxxxxx';
  }
  .swipe-half::after {
    content: 'xxxxxxxxxxxxxx';
  }
*/
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #FFF; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; }

.swiper-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-pointer-events {
  touch-action: pan-y; }

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x; }

.swiper-slide {
  padding: 0 10px;
  height: 100%;
  position: relative;
  transition-property: transform; }

/*
    .swiper-slide:last-child {
    background-color: green;
    //flex-shrink: 0;
    padding-left: 10px;
    padding-right:0;
    }
    .swiper-slide:first-child {
    //flex-shrink: 0;
    background-color: red;
    padding-left: 0;
    padding-right:10px;
    }
    */
.swiper-slide-invisible-blank {
  visibility: hidden; }

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px; }

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d; }

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999; }

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after); }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after); }

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center; }

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0); }

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none; }

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size); }

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size); }

:root {
  --swiper-navigation-size: 44px; }

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none; }

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important; }

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1; }

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto; }

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev"; }

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto; }

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next"; }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important; }

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%; }

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #FFF);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.3); }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet:only-child {
  display: none !important; }

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block; }

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top; }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px); }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left; }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right; }

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-lock {
  display: none; }

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important; }

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column; }

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube {
  overflow: visible; }

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible; }

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0; }

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px); }

.swiper-flip {
  overflow: visible; }

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height; }

.swiper-cards {
  overflow: visible; }

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden; }

footer {
  text-align: center;
  margin-top: 4rem; }
  @media only screen and (min-width: 1024px) {
    footer {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1.4fr;
      grid-template-rows: auto auto;
      padding: 0 2rem;
      max-width: 1125px;
      margin: 4rem auto 0; } }
  @media only screen and (min-width: 1500px) {
    footer {
      grid-template-columns: 0.75fr 2.5fr 1.1fr;
      padding: 0 3.75rem;
      max-width: 1500px;
      margin: 4rem auto 0; } }

footer address {
  font-style: normal; }

@media only screen and (min-width: 1024px) {
  .location {
    text-align: left; } }

@media only screen and (min-width: 1024px) {
  .socials {
    text-align: left; } }

@media only screen and (min-width: 1024px) {
  .director {
    text-align: left; } }

.references {
  width: 300px;
  margin: 0 auto 1rem; }
  @media only screen and (min-width: 768px) {
    .references {
      width: 400px; } }
  @media only screen and (min-width: 1024px) {
    .references {
      width: unset; } }

.brian {
  margin: 0; }

i.role {
  font-size: 90%;
  color: #b7b7b7; }
  @media only screen and (min-width: 768px) {
    i.role {
      margin-top: -0.5rem; } }

.briansdeats {
  margin-top: 0.4rem; }

.socialIcons {
  margin-left: -0.2rem; }

i.twitter, i.linkedin, i.instagram {
  display: inline-block;
  position: relative;
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%; }

i.twitter {
  background-image: url("../img/icon-twitter.svg");
  margin-right: clamp(0.25rem, 1vw, 0.5rem);
  opacity: 0.75; }

i.instagram {
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54' width='54' height='54'%3E%3Cg data-name='Group 672'%3E%3Cg data-name='Ellipse 26' fill='%232c2c2c' stroke='%23434343'%3E%3Ccircle cx='27' cy='27' r='27' stroke='none'/%3E%3Ccircle cx='27' cy='27' r='26.5' fill='none'/%3E%3C/g%3E%3Cg data-name='Group 524'%3E%3Cpath data-name='Path 78' d='m32.187 39.152-9.962-.019a7.282 7.282 0 0 1-7.214-7.333l.017-9.777a7.282 7.282 0 0 1 7.241-7.305l9.962.017a7.285 7.285 0 0 1 7.214 7.333l-.019 9.777a7.282 7.282 0 0 1-7.239 7.307Zm-9.921-22.388a5.245 5.245 0 0 0-5.215 5.262l-.019 9.777a5.246 5.246 0 0 0 5.2 5.283l9.962.017a5.245 5.245 0 0 0 5.215-5.262l.017-9.777a5.242 5.242 0 0 0-5.195-5.281Zm4.951 16.244a6.074 6.074 0 1 1 6.007-6.062 6.045 6.045 0 0 1-6.007 6.067Zm.019-10.1a4.026 4.026 0 1 0 3.967 4.033 4.006 4.006 0 0 0-3.967-4.029Zm6.54-4a1.57 1.57 0 1 0 1.547 1.571 1.56 1.56 0 0 0-1.547-1.567Z' fill='%23FFFFFF'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  margin-left: clamp(0.25rem, 1vw, 0.5rem);
  margin-right: clamp(0.25rem, 1vw, 0.5rem);
  opacity: 0.75; }

i.linkedin {
  background-image: url("../img/icon-linkedin.svg");
  margin-left: clamp(0.25rem, 1vw, 0.5rem);
  opacity: 0.75; }

a i.linkedin:hover, a i.twitter:hover, a i.instagram:hover {
  animation: fadeIn 1s forwards; }

@keyframes fadeIn {
  0% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.5; } }

.footerText {
  display: grid;
  grid-column: 1 / span 3;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  margin-top: 4rem;
  background-color: #212121; }
  @media only screen and (min-width: 500px) {
    .footerText {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr; } }
  @media only screen and (min-width: 1024px) {
    .footerText {
      margin: 4rem -3.75rem 0; } }
  @media only screen and (min-width: 1500px) {
    .footerText {
      padding: 1.5rem;
      border-bottom-right-radius: 1.5rem;
      border-bottom-left-radius: 1.5rem; } }

@media only screen and (min-width: 500px) {
  .footLeft {
    text-align: left;
    margin-left: 2.1rem; } }

@media only screen and (min-width: 500px) {
  .footRight {
    text-align: right;
    margin-right: 2.1rem; } }

/*
a i.linkedin:hover, a i.twitter:hover, a i.instagram:hover {
  filter: invert(1);
}
*/
.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000; }

.modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s; }

.modal-bg {
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%; }

.modal-container {
  border-radius: 10px;
  position: relative;
  padding: 30px;
  /* vertical-align: top; */ }
  @media only screen and (min-width: 768px) {
    .modal-container {
      columns: 2;
      column-rule-width: 1px;
      column-gap: 2rem;
      width: 80vw;
      padding: 0; } }
  @media only screen and (min-width: 1300px) {
    .modal-container {
      width: 60vw; } }
  @media only screen and (min-width: 1700px) {
    .modal-container {
      width: 45vw; } }
  @media only screen and (min-width: 2400px) {
    .modal-container {
      width: 30vw; } }

.modal-container p {
  margin-bottom: 1rem; }

.modal-content {
  height: 20rem;
  width: 20rem;
  background: red; }

.modal-close {
  position: absolute;
  right: -0.2rem;
  top: 0.75rem;
  outline: none;
  appearance: none;
  color: #fff;
  background: none;
  border: 0px;
  font-weight: bold;
  cursor: pointer; }
  @media only screen and (min-width: 500px) {
    .modal-close {
      right: 1rem;
      top: 1rem; } }

.modal-close:after {
  content: '+';
  position: absolute;
  font-weight: 100;
  font-size: 3rem;
  width: 3rem;
  height: 3rem;
  transform-origin: left;
  transform: translate(-1rem, -2.25rem) rotate(45deg); }
