/* GLOBALS */
/* 
 * In this file you should declare any global variables
 * For example: brand colours, typefaces, etc.
 * imported by style.scss
 */
/* 
 * In this file Are opinionated base styles that come in after the normalize Reset.
 * We may want to merge some of these into the normalize stylesheet if they become common enough.
 * 
 * imported by style.scss
 */
:root {
  box-sizing: border-box;
}

*, *:before, *:after {
  -ms-box-sizing: border-box !important;
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main {
  z-index: 9998;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

#page {
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dd,
p, figure,
pre, table, fieldset, hr, a {
  margin-top: 0 !important;
  text-wrap: balance;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kodchasan", sans-serif;
  font-weight: 800;
  text-wrap: balance;
  line-height: 100%;
}

h1 {
  font-size: clamp(2.7994rem, 2.4609rem + 1.6922vw, 3.8147rem);
}

h2 {
  font-size: clamp(2.3328rem, 2.0931rem + 1.1983vw, 3.0518rem);
}

h3 {
  font-size: clamp(1.944rem, 1.7782rem + 0.829vw, 2.4414rem);
}

h4 {
  font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
}

h5 {
  font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
}

a,
p {
  font-family: "Kodchasan", sans-serif !important;
  font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
  line-height: 145%;
}
@media (max-width: 480px) {
  a,
  p {
    font-size: clamp(0.7813rem, 0.775rem + 0.0313vw, 0.8rem);
  }
}

/* ATOMS */
/*
    BUTTONS PARTIAL

    THIS IS THE STYLESHEET FOR THE BUTTONS AND LINKS
*/
nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
nav ul li {
  transition: all 0.2s ease-in-out;
}
nav ul li i {
  font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
}
nav ul li a {
  color: inherit;
}
nav ul li a:hover {
  color: #0c0c0c;
}
nav ul li:hover {
  transform: translateY(-2px);
}

/*
    CONTAINER PARTIAL

    THIS IS THE STYLESHEET FOR ALL THE STYLED CONTIANERS
*/
.container {
  text-transform: uppercase;
  font-weight: 800;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.container::after, .container::before {
  content: "";
  display: block;
  width: 2rem;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-mask-size: auto auto;
          mask-size: auto auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform-origin: center;
}
.container::before {
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-mask-image: url("../img/container_end.svg");
          mask-image: url("../img/container_end.svg");
  margin-right: -1px;
}
.container::after {
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-mask-image: url("../img/container_end-flipped.svg");
          mask-image: url("../img/container_end-flipped.svg");
  margin-left: -1px;
}
.container > * {
  padding: 0.5rem;
}
.container--blue::after, .container--blue::before {
  background-color: #099ac4;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.container--blue > * {
  background-color: #099ac4;
  color: #ffffff;
}
.container--red::after, .container--red::before {
  background-color: #EF3D27;
}
.container--red::before {
  transform: scaleY(-100%);
}
.container--red > * {
  background-color: #EF3D27;
  color: #0c0c0c;
}
.container--yellow::after, .container--yellow::before {
  background-color: #F2B11C;
}
.container--yellow::after {
  transform: scaleY(-100%);
}
.container--yellow > * {
  background-color: #F2B11C;
  color: #0c0c0c;
}
.container--green::after, .container--green::before {
  background-color: #65AA77;
}
.container--green::before {
  transform: scaleY(-100%);
}
.container--green::after {
  transform: scaleY(-100%);
}
.container--green > * {
  background-color: #65AA77;
  color: #ffffff;
}

/* MOLECULES */
/*
    TEAM PARTIAL

    THIS IS THE STYLESHEET FOR OUR TEAM
*/
.team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(auto-fill, minimax(0, 1fr));
  grid-gap: 1rem;
}
@media (max-width: 768px) {
  .team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .team {
    grid-template-columns: minmax(0, 1fr);
  }
}

.member {
  display: grid;
  grid-template-rows: auto repeat(2, auto);
  grid-gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #f0f0f0;
  border: solid #e2e2e2 1px;
  box-shadow: 2px 2px 4px 0 #f0f0f0;
}
.member__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  background-color: #ffffff;
}
.member__name {
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
}
.member__desc {
  font-size: clamp(0.7813rem, 0.775rem + 0.0313vw, 0.8rem);
}

/* ORGANISMS */
/*
    HEADER PARTIAL

    THIS IS THE STYLESHEET FOR THE HEADER
*/
#wpadminbar ~ #page header.site-header {
  margin-top: 32px;
}
@media (max-width: 480px) {
  #wpadminbar ~ #page header.site-header {
    margin-top: 46px;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: unset;
  }
}
header.scroll {
  background-color: #ffffff;
  box-shadow: 2px 2px 4px 0 rgba(12, 12, 12, 0.2);
}
header.hide {
  opacity: 0;
  pointer-events: none;
}
header .logo {
  height: 100%;
  width: auto;
  aspect-ratio: 2/1;
}
header .logo a {
  height: 100%;
  width: 100%;
}
header .logo .icon {
  display: block;
  height: 100%;
  width: 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(../img/logo_Horizontal-monochrome.svg);
  mask-image: url(../img/logo_Horizontal-monochrome.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: black; /* Or any color of your choice. */
}
header .logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  header .logo {
    height: 64px;
  }
}
header ul {
  list-style-type: none;
  list-style-position: inside;
  color: #0c0c0c;
  gap: 1rem;
}
header ul li a {
  color: inherit;
  text-transform: uppercase;
  text-decoration: unset;
  font-weight: 800;
}
header ul li a.active {
  text-decoration: underline;
}
header .page_nav {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
}
header .page_nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  header .page_nav {
    position: relative;
  }
}
header .social_nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
header .social_nav ul li i {
  font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
}
header .social_nav ul li p {
  display: none;
}
@media (max-width: 480px) {
  header .social_nav {
    display: none;
  }
}

nav ul {
  list-style-type: none;
  list-style-position: inside;
}
nav ul li a {
  text-decoration: none;
}

/*
    FOOTER PARTIAL

    THIS IS THE STYLESHEET FOR THE FOOTER
*/
footer {
  background-color: #0c0c0c;
  clip-path: polygon(0% 100%, 5% 94%, 10% 100%, 15% 94%, 20% 100%, 25% 94%, 30% 100%, 35% 94%, 40% 100%, 45% 94%, 50% 100%, 55% 94%, 60% 100%, 65% 94%, 70% 100%, 75% 94%, 80% 100%, 85% 94%, 90% 100%, 95% 94%, 100% 100%, 100% 0%, 0% 0%);
  clip-path: polygon(0% 0%, 5% 15%, 10% 0%, 15% 15%, 20% 0%, 25% 15%, 30% 0%, 35% 15%, 40% 0%, 45% 15%, 50% 0%, 55% 15%, 60% 0%, 65% 15%, 70% 0%, 75% 15%, 80% 0%, 85% 15%, 90% 0%, 95% 15%, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 480px) {
  footer {
    clip-path: polygon(0% 100%, 10% 94%, 20% 100%, 30% 94%, 40% 100%, 50% 94%, 60% 100%, 70% 94%, 80% 100%, 90% 94%, 100% 100%, 100% 0%, 0% 0%);
  }
}
@media (max-width: 480px) {
  footer {
    clip-path: polygon(0% 0%, 10% 6%, 20% 0%, 30% 6%, 40% 0%, 50% 6%, 60% 0%, 70% 6%, 80% 0%, 90% 6%, 100% 0%, 100% 100%, 0% 100%);
  }
}
footer .content {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  footer .content {
    grid-template-rows: minmax(0, 1fr) repeat(2, 3fr) minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
}
footer .content .section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}
@media (max-width: 768px) {
  footer .content .section {
    padding-top: unset;
  }
}
footer .content .section--blue {
  background-color: #099ac4;
}
footer .content .section--green {
  background-color: #65AA77;
}
footer .content .section--red {
  background-color: #EF3D27;
}
footer .content .section--yellow {
  background-color: #F2B11C;
}
footer .content .social_nav ul {
  color: #0c0c0c;
}
footer .content .social_nav ul a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .content .social_nav ul i {
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
}
footer .content nav {
  height: 100%;
  width: 100%;
}
footer .content nav ul {
  height: inherit;
  width: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  color: #ffffff;
  gap: 0.25em;
}
footer .content nav ul li a, footer .content nav ul li p {
  text-align: center;
  display: block;
  width: 100%;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
}

/*
    CRDM PARTIAL

    THIS IS THE STYLESHEET FOR THE LANDING PAGE
*/
header.crdm-header {
  max-width: 100vw;
}
header.crdm-header.scroll .icon {
  background-color: black;
}
header.crdm-header:not(.scroll) .social_nav i {
  color: white;
}
header.crdm-header:not(.scroll) .icon {
  background-color: white;
}

main#crdm1-page {
  justify-content: flex-start;
  align-items: center;
  z-index: 998;
  max-width: 100vw;
}
main#crdm1-page a, main#crdm1-page p, main#crdm1-page h1, main#crdm1-page h2, main#crdm1-page h3 {
  font-family: "Bitter", serif !important;
}

@media (max-width: 768px) {
  #crdm1-page section:not(#hero) {
    padding: 1.25rem;
  }
}
#crdm1-page section:not(#hero)::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transform: scale(110%);
  inset: 0;
}
#crdm1-page section:not(#hero) .container {
  max-width: 1280px;
  margin: auto auto;
  padding: 5vh 1em;
  height: 100%;
  width: 100%;
}
#crdm1-page section:not(#hero) .container::after, #crdm1-page section:not(#hero) .container::before {
  content: unset;
}

#hero.crdm1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 90vh;
}
#hero.crdm1 canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 100%;
  width: 100%;
  transform: scale(110%);
}
@media (max-width: 768px) {
  #hero.crdm1 canvas {
    pointer-events: none;
  }
}
#hero.crdm1::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  height: 100%;
  width: 100%;
  transform: scale(110%);
  background-image: url(../img/CRDM1/door.png);
  background-size: cover;
  background-position: bottom center;
}
#hero.crdm1::after {
  content: "";
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: scale(110%);
}
#hero.crdm1 .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 3;
  width: 80%;
  max-width: 1280px;
  height: 100%;
  margin: auto;
  padding: 4%;
  padding-bottom: 2em;
  gap: 0.5em;
  pointer-events: none;
}
@media (max-width: 768px) {
  #hero.crdm1 .content {
    padding: unset;
    pointer-events: all;
  }
}
#hero.crdm1 .content__logo {
  width: 100%;
}
#hero.crdm1 .content__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
#hero.crdm1 .content__info h3 {
  font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
  text-align: center;
  color: white;
  filter: drop-shadow(2px 2px 0 black);
}
@media (max-width: 768px) {
  #hero.crdm1 .content__info h3 {
    font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
  }
}
#hero.crdm1 .content__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1em;
  pointer-events: visible;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  #hero.crdm1 .content__links {
    flex-direction: column;
    gap: unset;
  }
}
#hero.crdm1 .content__links .btn__crdm1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.5em;
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
  font-weight: 800;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 768px) {
  #hero.crdm1 .content__links .btn__crdm1 {
    font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
  }
}

#crdm1-page .trailer {
  position: relative;
  height: auto;
  width: 100%;
}
#crdm1-page .trailer .bar {
  position: absolute;
  height: 100%;
}
@media (max-width: 1200px) {
  #crdm1-page .trailer .bar {
    display: none;
  }
}
#crdm1-page .trailer .bar img {
  height: 100%;
  width: auto;
}
@media (min-width: 2000px) {
  #crdm1-page .trailer .bar__jack {
    left: 0;
  }
}
@media (max-width: 2000px) {
  #crdm1-page .trailer .bar__jack {
    left: -25%;
  }
}
#crdm1-page .trailer .bar__huncan {
  bottom: -1.5em;
}
@media (min-width: 2000px) {
  #crdm1-page .trailer .bar__huncan {
    right: 0;
  }
}
@media (max-width: 2000px) {
  #crdm1-page .trailer .bar__huncan {
    right: -20%;
  }
}
#crdm1-page .trailer .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  #crdm1-page .trailer .container {
    padding: unset;
  }
}
#crdm1-page .trailer::before {
  background-image: url(../img/CRDM1/bar.png);
}
#crdm1-page .trailer__header {
  position: absolute;
  height: auto;
  width: auto;
  top: 1em;
  margin: auto auto;
  z-index: 998;
  padding: 2em;
}
#crdm1-page .trailer__header h2 {
  font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
}
@media (max-width: 768px) {
  #crdm1-page .trailer__header h2 {
    font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
  }
}
@media (max-width: 480px) {
  #crdm1-page .trailer__header h2 {
    font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
  }
}
@media (max-width: 768px) {
  #crdm1-page .trailer__header {
    top: 0.25em;
    padding: 1.25em;
  }
}
#crdm1-page .trailer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
#crdm1-page .trailer__content iframe {
  height: auto;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 4/3;
  -o-border-image: url(../img/CRDM1/frame.png) 128 fill/64px;
     border-image: url(../img/CRDM1/frame.png) 128 fill/64px;
  padding: 50px;
  filter: drop-shadow(4px 4px 10px black);
}
@media (max-width: 480px) {
  #crdm1-page .trailer__content iframe {
    -o-border-image: url(../img/CRDM1/frame.png) 128 fill/20px;
       border-image: url(../img/CRDM1/frame.png) 128 fill/20px;
    padding: 15px;
  }
}

#crdm1-page .CTA {
  position: relative;
  height: 50vh;
  width: 100%;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media (max-width: 1200px) {
  #crdm1-page .CTA {
    height: auto;
  }
}
@media (max-width: 768px) {
  #crdm1-page .CTA .container {
    padding: unset !important;
  }
}
#crdm1-page .CTA .babydactyl {
  position: absolute;
  height: 100%;
  overflow: hidden;
  max-width: 100vw;
  z-index: -1;
}
@media (min-width: 2000px) {
  #crdm1-page .CTA .babydactyl {
    right: 0;
  }
}
@media (max-width: 2000px) {
  #crdm1-page .CTA .babydactyl {
    right: -11%;
  }
}
@media (max-width: 1200px) {
  #crdm1-page .CTA .babydactyl {
    right: -60%;
  }
}
@media (max-width: 768px) {
  #crdm1-page .CTA .babydactyl {
    display: none;
  }
}
#crdm1-page .CTA .babydactyl img {
  height: 100%;
  width: auto;
  transform: rotate(10deg) translateY(25%);
}
@media (max-width: 1200px) {
  #crdm1-page .CTA .babydactyl img {
    transform: rotate(20deg) translateY(40%) scale(40%);
  }
}
#crdm1-page .CTA::before {
  background-image: url(../img/CRDM1/manor.png);
}
#crdm1-page .CTA__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #crdm1-page .CTA__header {
    padding: 1.5em;
  }
}
#crdm1-page .CTA__header h2 {
  font-size: clamp(2.3328rem, 2.0931rem + 1.1983vw, 3.0518rem);
  text-align: center;
}
@media (max-width: 768px) {
  #crdm1-page .CTA__header h2 {
    font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
  }
}
@media (max-width: 480px) {
  #crdm1-page .CTA__header h2 {
    font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
  }
}
#crdm1-page .CTA__header p {
  font-weight: 600;
  text-align: center;
}
#crdm1-page .CTA .content {
  width: 100%;
  height: 100%;
  padding: unset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #crdm1-page .CTA .content {
    justify-content: flex-start;
  }
}
#crdm1-page .CTA .content .social_nav {
  width: 100%;
}
#crdm1-page .CTA .content .social_nav ul {
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #crdm1-page .CTA .content .social_nav ul {
    gap: 0.5em;
  }
}

#crdm1-page nav.social_nav ul li a,
.btn__crdm1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}

#crdm1-page nav.social_nav ul li,
.btn__crdm1 {
  filter: drop-shadow(0 0 0 #C55D14) !important;
  transition: all 0.1s ease-in-out;
}
#crdm1-page nav.social_nav ul li:hover, #crdm1-page nav.social_nav ul li:active,
.btn__crdm1:hover,
.btn__crdm1:active {
  transform: translate(-4px, -4px);
  filter: drop-shadow(8px 8px 0 #C55D14) !important;
}

#crdm1-page nav.social_nav ul li {
  padding: 1.5em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #crdm1-page nav.social_nav ul li a i {
    font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem) !important;
  }
}
@media (max-width: 768px) {
  #crdm1-page nav.social_nav ul li a p {
    font-size: clamp(0.7813rem, 0.775rem + 0.0313vw, 0.8rem) !important;
  }
}
#crdm1-page nav.social_nav ul li:nth-child(odd) {
  background-image: url(../img/CRDM1/square-1.png);
}
#crdm1-page nav.social_nav ul li:nth-child(even) {
  background-image: url(../img/CRDM1/square-2.png);
}

.crdm1_rect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  filter: drop-shadow(4px 4px 10px black);
}
.crdm1_rect--1 {
  -o-border-image: url(../img/CRDM1/paper-1.png) 10 fill/2px;
     border-image: url(../img/CRDM1/paper-1.png) 10 fill/2px;
  padding: 3em;
}
.crdm1_rect--2 {
  -o-border-image: url(../img/CRDM1/paper-2.png) 10 fill/10px;
     border-image: url(../img/CRDM1/paper-2.png) 10 fill/10px;
  padding: 2.5em;
}
.crdm1_rect--3 {
  -o-border-image: url(../img/CRDM1/paper-3.png) 10 fill/10px;
     border-image: url(../img/CRDM1/paper-3.png) 10 fill/10px;
  padding: 1.5em;
}
.crdm1_rect--4 {
  -o-border-image: url(../img/CRDM1/paper-4.png) 10 fill/10px;
     border-image: url(../img/CRDM1/paper-4.png) 10 fill/10px;
  padding: 1.5em;
}

#crdm1-page .seperator {
  position: relative;
  z-index: 9999;
  display: block;
  height: 90px;
  width: 100%;
  background-color: yellow;
  box-shadow: 4px 4px 20px 0px black;
}
#crdm1-page .seperator::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  margin: auto;
  background-image: url(../img/CRDM1/atf-line.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
}
#crdm1-page .seperator::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px 0px black;
}
#crdm1-page .seperator--1 {
  transform: scaleX(120%) scaleY(130%) rotate(-1deg);
}
#crdm1-page .seperator--2 {
  transform: scaleX(120%) scaleY(130%) rotate(1deg);
}

footer.crdm1 {
  position: relative;
  z-index: 999;
  height: auto;
  padding: 0.5em;
  clip-path: unset;
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer.crdm1 p {
  color: white;
  font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
}
footer.crdm1 a {
  color: white;
  text-decoration: none;
  text-align: right;
  font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
}
@media (max-width: 768px) {
  footer.crdm1 a, footer.crdm1 p {
    font-size: clamp(0.7813rem, 0.775rem + 0.0313vw, 0.8rem);
  }
}/*# sourceMappingURL=crdm1.css.map */