html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

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

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

textarea,
input,
button,
select {
  font-family: inherit;
  font-size: inherit;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

input,
textarea,
input::placeholder,
textarea::placeholder {
  background: inherit;
  color: inherit;
  border: none;
  padding: 0;
  outline: inherit;
  opacity: 1;
}

textarea {
  resize: none;
}

input:not([type="submit"]),
textarea {
  display: block;
  width: 100%;
  border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  background: none;
  width: 100%;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0;
  color: var(--fg);
  margin: 0;
  padding: 0;
}

select option {
  color: var(--fg);
  margin: 0;
  padding: 0;
  background: var(--bg);
}

select:focus {
  outline: none;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

/* Input Elements */
button,
input[type="submit"],
input[type="reset"],
div[role="button"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="button"],
input[type="button"]:focus {
  outline: none;
}

a:link,
a:visited,
a:link span,
a:visited span {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

@font-face {
  font-family: "StyreneMedium";
  src: url("../fonts/StyreneA-Medium-Trial.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "StyreneRegular";
  src: url("../fonts/StyreneA-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Root Elements */
:root {
  --black: #000000;
  --white: #ffffff;

  --fg: var(--white);
  --bg: var(--black);
  --fg50: rgba(255, 255, 255, 0.5);
  --fg25: rgba(255, 255, 255, 0.25);

  --black50: rgba(0, 0, 0, 0.5);
  --grey50: rgba(255, 255, 255, 0.5);

  /* padding base */
  --Pg: 10px;
  --Pm: 10px;

  /* font sizes */
  --fl: 15px;
  --fm: 11px;
  --fs: 9px;
  --size: var(--fs);
}

[data-theme="light"] {
  --fg: var(--black);
  --bg: var(--white);
  --fg50: rgba(0, 0, 0, 0.5);
  --fg25: rgba(0, 0, 0, 0.25);
}

html {
  color: var(--fg);
  background-color: var(--bg);
  font-size: var(--size);
  font-weight: 400;
  font-family: "StyreneRegular";
  font-style: normal;
  line-height: 16px;
  letter-spacing: 0;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
  overflow-x: hidden;
  height: auto;
  transition: color 1s ease, background-color 1s ease;
}

body {
  font-size: var(--size);
}

body.no-scroll {
  height: 100vh;
  overflow: hidden;
}

h1 {
  font-family: "StyreneMedium";
  font-size: var(--fl);
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2,
h3 {
  font-family: "StyreneMedium";
  font-size: var(--fs);
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
h3.regular {
  font-family: "StyreneRegular";
  font-size: var(--fs);
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  font-family: "StyreneRegular";
  font-size: var(--fm);
  letter-spacing: 0px;
  line-height: 16px;
  text-transform: none;
}

p.uppercase {
  font-family: "StyreneMedium";
  font-size: var(--fs);
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.grey {
  opacity: 0.8;
}

svg path,
svg polygon,
svg polyline,
svg rect {
  fill: var(--fg);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  z-index: 1000;
}

header.white,
footer.white {
  color: var(--white);
}

header.hover-white,
footer.hover-white {
  color: var(--white);
}

header .left {
  justify-items: start;
  flex: 1;
}

.project-btn {
  position: relative;
  z-index: 100;
}

.project-nav {
  display: none;
  position: relative;
  z-index: 100;
}

.project-nav.active {
  display: block;
}

.left.project {
  display: none !important;
}

.left.top {
  display: none !important;
}

.left.project.active {
  display: block !important;
}

.left.top.active {
  display: block !important;
}

.project-nav-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

.project-nav-video {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.project-nav-video.active {
  opacity: 1;
}

header .center {
  justify-items: center;
  flex: 1;
  z-index: 100;
}

header .right {
  display: flex;
  justify-content: end;
  flex: 1;
  z-index: 100;
}

.hamburger {
  display: none;
}

.hamburger-menu-container {
  display: none;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  z-index: 1000;
}

.dark-light-toggle {
  display: flex;
  gap: 4px;
}

footer .left {
  display: flex;
  justify-content: start;

  flex: 1;
}

footer .center-left {
  justify-items: center;
  flex: 1;
}

footer .center {
  text-align: center;
  flex: 1;
}

footer .center-right {
  justify-items: center;
  flex: 1;
}

footer .right {
  justify-items: end;
  justify-content: end;
  flex: 1;
}

main {
  min-height: 100vh;
}

.visaully-hidden {
  visibility: hidden;
  position: absolute;
  z-index: -10;
  display: none;
}

.enter {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 1.5s ease 0.5s, transform 1s ease 0.5s;
}

.enter-video {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 1.5s ease 1s, transform 1s ease 1s;
}

.enter.entered,
.enter-video.entered {
  transform: translateY(0);
  opacity: 1;
}

/* hover states */

button {
  opacity: 1;
  transition: opacity 0.3s ease;
}

a:not(.center, .featured-project, .project-nav a) {
  opacity: 1;
  transition: opacity 0.3s ease;
}

a.email {
  opacity: 0.8 !important;
  transition: opacity 0.3s ease !important;
  padding-bottom: 4px;
}

button.dark-button,
button.light-button {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

button.dark-button.active,
button.light-button.active {
  opacity: 1;
  transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  button:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  a:not(.center, .featured-project, .project-nav a):hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  a.email:hover {
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
  }

  button.dark-button:hover,
  button.light-button:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  /* testing navigation animation */

  .project-category > * {
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.5s ease, filter 0.5s ease;
  }

  .project-nav-summary:hover {
    opacity: 0.8 !important;
  }

  .project-category:hover > *:not(.project-nav-summary) {
    opacity: 0.8 !important;
  }

  .project-category:hover > *:not(summary):hover {
    opacity: 1 !important;
  }
}

/* PROJECT VIDEO */

.aspectholder-project {
  width: 100vw;
  height: 100vh;
}

.aspectholder-project > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-fullscreen="true"] video {
  object-fit: contain;
}

/* .project-main .main-video {
  width: 100vw;
  height: 100vh;
  transition: filter 0.4s ease;
  position: relative;
} */

/* .project-main .main-video-text {
  position: absolute;
  top: calc(var(--Pm) * 2);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  text-align: center;
} */

.aspectholder video,
.aspectholder img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.project-main .main-video.blur {
  filter: blur(12px);
}

div.video-controls-holder {
  position: absolute;
  bottom: 50%;
  top: 50%;
  width: 100%;
}

.media-section {
  background-color: #000000 !important;
}

.video-controls {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 154px;
  padding-right: 154px;
  position: absolute;
  bottom: 0px;
  gap: 16px;
  color: var(--white);
  transition: 0.8s opacity ease;
}
.video-controls.do-not-show {
  opacity: 0;
  pointer-events: none;
}

.video-controls button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-controls svg {
  height: auto;
  width: auto;
}

.video-controls button span {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* play button */

.video-controls .play-btn * {
  pointer-events: none;
}
.video-controls .play-btn .pause {
  display: none;
}
.video-controls .play-btn.playing .pause {
  display: block;
}
.video-controls .play-btn.playing .play {
  display: none;
}
/* volume */

.video-controls .volume * {
  pointer-events: none;
}
.video-controls .volume .mute {
  display: none;
}
.video-controls .volume.muted .mute {
  display: block;
}
.video-controls .volume.muted .unmute {
  display: none;
}

/* progress */
.video-progress {
  position: relative;
}
.video-controls .video-progress .seek-tooltip {
  display: none;
}
.progress {
  flex: 1 1 auto;
  cursor: pointer;
  min-width: 100px;
  height: 15px;
  display: flex;
}

.video-controls progress {
  width: 100%;
  height: 2px;
  position: relative;
  border-radius: 5px;
}

.progress-bar::-webkit-progress-bar {
  background: linear-gradient(
    to bottom,
    transparent 0px,
    transparent 6.5px,
    var(--grey50) 6.5px,
    var(--grey50) 8.5px,
    transparent 8.5px,
    transparent 15px
  );
  border-radius: 5px;
  height: 15px;
}

.progress-bar::-webkit-progress-value {
  background: linear-gradient(
    to bottom,
    transparent 0px,
    transparent 6.5px,
    var(--white) 6.5px,
    var(--white) 8.5px,
    transparent 8.5px,
    transparent 15px
  );
  border-right: 2px solid var(--white);
  position: relative;
}

/* .time {
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 12px;
}
.time-slash {
  padding-left: 2px;
  padding-right: 2px;
} */

/* full screen button */

.full-btn {
  display: inline !important;
}

.full-btn-mobile {
  display: none !important;
}

.close-btn {
  position: absolute;
  padding: 16px;
  top: 0;
  right: 0;
  z-index: 50;
}

/* Details Elements */
summary,
summary:focus {
  outline: none;
  list-style-type: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

details summary::marker,
details summary::-webkit-details-marker {
  content: "";
  visibility: hidden;
  position: absolute;
  z-index: -10;
  list-style-type: none;
  display: none;
}

summary > * {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

summary > *::after {
  content: "+";
  margin-left: var(--Pm);
}

@media (hover: hover) and (pointer: fine) {
  details summary:hover {
    opacity: 0.8;
  }
}
details[open] summary > *::after {
  content: "-";
}

details[open] summary ~ * {
  animation: appear 0.4s ease-in;
  -webkit-animation: appear 0.4s ease-in;
}

details.closing summary ~ * {
  animation: close 0.4s ease-out;
}

/* Project-Nav Details Element */

.project-nav summary,
.project-nav summary:focus {
  outline: none;
  list-style-type: none;
  position: relative;
  cursor: pointer;
  opacity: 1;
}

.project-nav details summary::marker,
.project-nav details summary::-webkit-details-marker {
  content: "";
  visibility: hidden;
  position: absolute;
  z-index: -10;
  list-style-type: none;
  display: none;
}

.project-nav summary > * {
  width: 100%;
  padding-bottom: calc(var(--Pg) / 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-nav summary > *::after {
  content: "";
  margin-left: var(--Pm);
}

@media (hover: hover) and (pointer: fine) {
  .project-nav details summary:hover {
    opacity: 1;
  }
}

.project-nav details[open] summary {
  opacity: 1;
  padding-bottom: var(--Pg);
}

.project-nav details[open] summary > *::after {
  content: "";
}

.project-nav details[open] .project-nav-link {
  padding-bottom: calc(var(--Pg) / 2);
  padding-left: var(--Pg);
}

.project-nav details[open] {
  padding-bottom: 15px;
}

.project-nav details[open] summary ~ * {
  animation: appear 0.4s ease-in;
  -webkit-animation: appear 0.4s ease-in;
}

.project-nav details.closing summary ~ * {
  animation: close 0.4s ease-out;
}

@keyframes appear {
  0% {
    opacity: 0;
    max-height: 0;
  }
  100% {
    opacity: 1;
    max-height: calc(var(--vh, 1vh) * 100);
  }
}
@keyframes close {
  0% {
    opacity: 1;
    max-height: calc(var(--vh, 1vh) * 100);
  }
  100% {
    opacity: 0;
    max-height: 0;
  }
}

/* Image/Video Elements */
.aspectholder > * {
  display: block;
}

.vsc-controller {
  height: 0 !important;
  width: 0 !important;
  object-fit: unset !important;
}

.full-w-video {
  width: 100vw;
  height: 100vh;
  display: flex;
  z-index: 1;
}

.full-w-video figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.grid-11 {
  width: 100vw;
  display: grid;
  align-self: center;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(min-content, max-content);
  column-gap: var(--Pm);
  row-gap: var(--Pm);
}

section {
  display: flex;
  min-height: 100vh;
  width: 100%;
  z-index: 1;
}

/* contact page */

body[data-template="contact"] .grid-11 li:nth-child(odd) {
  grid-column: 1 / 7;
  grid-row: var(--index);
  text-align: right;
}

body[data-template="contact"] .grid-11 li:nth-child(even) {
  grid-column: 7 / -1;
  grid-row: var(--index);
  text-align: left;
}

body[data-template="contact"] .grid-11 li:nth-child(odd) .flex {
  display: flex;
  gap: 4px;
  justify-content: end;
}

body[data-template="contact"] .grid-11 li:nth-child(even) .flex {
  display: flex;
  gap: 4px;
  justify-content: start;
}

/* privacy policy */

body[data-template="privacypolicy"] .grid-11 .privacy-policy-container {
  grid-column: 4 / 10;
}

body[data-template="privacypolicy"] .grid-11 .privacy-policy-container {
  grid-column: 4 / 10;
}
body[data-template="privacypolicy"] .grid-11 .privacy-policy-container {
  border-top: 1px solid var(--fg25);
}

body[data-template="privacypolicy"] .privacy-policy-container details {
  border-bottom: 1px solid var(--fg25);
  padding-top: 10px;
  padding-bottom: 10px;
}

body[data-template="privacypolicy"] .privacy-policy-container p {
  padding-top: 10px;
  color: var(--fg50);
}

/* project page */

body[data-template="project"] .project-info-section {
  z-index: 1001;
  top: 0;
  position: absolute;
  padding-left: 20px;
  padding-right: 20px;
  backdrop-filter: blur(50px);
  background-color: var(--black50);
  opacity: 0;
  transition: 0.5s opacity ease;
  pointer-events: none;
  color: var(--white);
}

.project-info-section .back path {
  fill: var(--white) !important;
}

body[data-template="project"] .project-info-section.active {
  opacity: 1;
  pointer-events: all;
}

body[data-template="project"] .project-info {
  grid-column: 1 / 7;
  align-self: center;
}

body[data-template="project"] .back {
  display: flex;
  gap: 15px;
  position: absolute;
  top: 20px;
  left: 20px;
}

body[data-template="project"] .back img {
  width: auto;
  height: 11px;
  align-self: center;
}

body[data-template="project"] .gallery-grid {
  grid-column: 7/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(min-content, max-content);
  column-gap: var(--Pm);
  row-gap: var(--Pm);
  max-height: 80vh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body[data-template="project"] .gallery-grid::-webkit-scrollbar {
  display: none;
}

body[data-template="project"] .gallery-grid figure {
  width: 100% !important;
  height: auto !important;
}

/* this causes images to be cropped in grid view */

body[data-template="project"] .gallery-grid figure img {
  transition: filter 0.3s ease;
}

@media (hover: hover) {
  body[data-template="project"] .gallery-grid figure:hover img {
    filter: brightness(0.5);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0;
}

.modal .close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal .mobile-close {
  display: none;
}

.modal .lightbox-container {
  justify-content: space-between;
  display: flex;
  width: 100%;
  align-items: center;
  height: auto;
}

.modal.active {
  pointer-events: all;
  opacity: 1;
}

.modal .lightbox {
  width: 90%;
  height: auto;
  display: none;
}

.modal .lightbox.active {
  display: block;
}

.modal .left {
  display: flex;
  justify-content: center;
  padding: 50px;
  margin-left: 50px;
}

.modal .right {
  display: flex;
  justify-content: center;
  padding: 50px;
  margin-right: 50px;
}

@media (min-width: 1440px) {
  .modal .left {
    display: flex;
    justify-content: center;
    padding: 100px;
    margin-left: 100px;
  }

  .modal .right {
    display: flex;
    justify-content: center;
    padding: 100px;
    margin-right: 100px;
  }
}

.modal .center {
  display: none;
}

.modal .close path,
.modal .left path,
.modal .right path {
  fill: var(--white) !important;
}

/* featured project */

.featured-project-grid {
  width: auto;
  display: grid;
  align-self: center;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(min-content, max-content);
  column-gap: var(--Pm);
  row-gap: var(--Pm);
  padding-inline: 19vw;
}

/* @media (min-width: 1650px) and (max-width: 2560px) {
  .featured-project-grid {
    padding-inline: 20vw;
   
  }
} */

.featured-project-grid figure {
  object-fit: cover;
  aspect-ratio: 1.8;
}

.featured-project {
  position: relative;
}

.featured-project img {
  transition: filter 0.3s ease;
}

@media (hover: hover) {
  .featured-project:hover img {
    filter: brightness(0.5);
  }
}

.featured-project-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  align-items: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 1s ease;
}

@media (hover: hover) {
  .featured-project:hover .featured-project-info {
    opacity: 1;
  }
}

/* 5 */
.pxs {
  padding-left: calc(var(--Pg) / 2);
  padding-right: calc(var(--Pg) / 2);
}

.pys {
  padding-top: calc(var(--Pg) / 2);
  padding-bottom: calc(var(--Pg) / 2);
}

/* 10 */
.px {
  padding-left: var(--Pg);
  padding-right: var(--Pg);
}

.py {
  padding-top: var(--Pg);
  padding-bottom: var(--Pg);
}

/* 20 */
.pxm {
  padding-left: calc(var(--Pg) * 2);
  padding-right: calc(var(--Pg) * 2);
}

.pym {
  padding-top: calc(var(--Pg) * 2);
  padding-bottom: calc(var(--Pg) * 2);
}

/* 40 */
.pxl {
  padding-left: calc(var(--Pg) * 4);
  padding-right: calc(var(--Pg) * 4);
}

.pyl {
  padding-top: calc(var(--Pg) * 4);
  padding-bottom: calc(var(--Pg) * 4);
}

.pr {
  padding-right: var(--Pg);
}

.pl {
  padding-left: var(--Pg);
}

.pt {
  padding-top: var(--Pg);
}

.pb {
  padding-bottom: var(--Pg);
}

.prs {
  padding-right: calc(var(--Pg) / 2);
}

.pls {
  padding-left: calc(var(--Pg) / 2);
}

.pts {
  padding-top: calc(var(--Pg) / 2);
}

.pbs {
  padding-bottom: calc(var(--Pg) / 2);
}

.prl {
  padding-right: calc(var(--Pg) * 2);
}

.pll {
  padding-left: calc(var(--Pg) * 2);
}

.ptl {
  padding-top: calc(var(--Pg) * 2);
}

.pbl {
  padding-bottom: calc(var(--Pg) * 2);
}

.pbl2 {
  padding-bottom: calc(var(--Pg) * 2);
}

.phh {
  padding-top: 54px;
}
