@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/nunito-sans-v4-latin-300.eot");
  src: local("Nunito Sans Light"), local("NunitoSans-Light"),
    url("fonts/nunito-sans-v4-latin-300.eot?#iefix") format("embedded-opentype"),
    url("fonts/nunito-sans-v4-latin-300.woff2") format("woff2"),
    url("fonts/nunito-sans-v4-latin-300.woff") format("woff"),
    url("fonts/nunito-sans-v4-latin-300.ttf") format("truetype"),
    url("fonts/nunito-sans-v4-latin-300.svg#NunitoSans") format("svg");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: bolder;
  font-weight: 400;
  src: url("fonts/nunito-sans-v4-latin-regular.eot");
  src: local("Nunito Sans Regular"), local("NunitoSans-Regular"),
    url("fonts/nunito-sans-v4-latin-regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/nunito-sans-v4-latin-regular.woff2") format("woff2"),
    url("fonts/nunito-sans-v4-latin-regular.woff") format("woff"),
    url("fonts/nunito-sans-v4-latin-regular.ttf") format("truetype"),
    url("fonts/nunito-sans-v4-latin-regular.svg#NunitoSans") format("svg");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: bold;
  font-weight: 700;
  src: url("fonts/nunito-sans-v4-latin-700.eot");
  src: local("Nunito Sans Regular"), local("NunitoSans-Regular"),
    url("fonts/nunito-sans-v4-latin-700.eot?#iefix") format("embedded-opentype"),
    url("fonts/nunito-sans-v4-latin-700.woff2") format("woff2"),
    url("fonts/nunito-sans-v4-latin-700.woff") format("woff"),
    url("fonts/nunito-sans-v4-latin-700.ttf") format("truetype"),
    url("fonts/nunito-sans-v4-latin-700.svg#NunitoSans") format("svg");
}

@font-face {
  font-family: 'Mont';
  src: url('fonts/Mont-HeavyDEMO.woff2') format('woff2'),
    url('fonts/Mont-HeavyDEMO.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: 'Mont Lite';
  src: url('fonts/Mont-ExtraLightDEMO.woff2') format('woff2'),
    url('fonts/Mont-ExtraLightDEMO.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */

:root {
  /* --color-background: #c9132f; */
  --color-background: #bb0202;

  --color-lite: #f1e7d5;
  --color-lite-line: #c66a59;

  --color-primary: #dd3222;
  --color-primary-hover: #cc2314;
  --color-primary-darker: #a61a0e;
  --color-secondary: #f04132;
  --color-secondary-hover: #f04132;

  --color-link: #ffffff;
  --color-link-hover: #ffffff;
  --color-cta: #e40a11;
  --color-cta-hover: #be1754;

  --color-section-1: #dc6760;
  --color-section-2: #f4f4f4;
  --color-section-3: #748dab;

  --font: "Nunito Sans", sans-serif;
  --font-2: "Times New Roman", serif;
  --font-3: "Mont", sans-serif;
  --font-4: "Mont Lite", sans-serif;


  --color-font-1: #221f20;
  --color-font-2: #e2e2e2;
  --color-font-3: #f04132;

  --color-logo-1: #e2e2e2;
  --color-logo-2: #221f20;
  --color-1: #fbba00;
  --color-2: #e63312;
  --color-3: #c00d0d;
  --color-4: #0056a4;
  --color-5: #009757;
  --color-6: #e88162;
  --color-7: #d75e3a;
  --color-8: #b1492a;
  --color-9: #aeb548;
  --color-10: #f7f8f8;

  --color-progress: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  transition: all 0.2s linear;
  line-height: 1.2;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--color-font-2);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1.6rem;

  background-image: url('img/bg-gr.png');
  background-color: var(--color-background);
  background-blend-mode: soft-light;
  background-size: 100%;
  background-position-y: -4rem;
  background-repeat: no-repeat;

  overflow-x: hidden;
}

/* or put in wrapper under body */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-3);
  color: var(--color-font-1);
  font-weight: 300;
  line-height: 1;
}

h1 {
  font-size: 5em;
  margin-bottom: 1rem;
  font-weight: 300;
}

h2 {
  font-size: 4em;
  font-weight: 300;
  margin-bottom: 1rem;
}

h3 {
  font-size: 3em;
  font-weight: 300;
  margin-bottom: 1rem;
}

h4 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 2rem;
}

img {
  max-width: 100%;
}

.float-clear {
  clear: both;
}


a {
  /* border-bottom: 1px solid var(--color-link); */
  color: var(--color-link);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  /* text-decoration: underline; */
  font-weight: bold;
}

a:hover {
  color: var(--color-link-hover);
}


.link-btn {
  background-color: var(--color-logo-1);
  color: var(--color-primary-darker);
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
}

.link-btn:hover {
  background-color: var(--color-link);
  color: var(--color-primary-darker);
}


.btn {
  background-color: var(--color-section-2);
  display: inline-block;
  padding: .4rem;
  font-size: 1.2rem;
  border-radius: 0.2rem;
  font-weight: normal;
  color: var(--color-primary-darker);
  text-align: center;
  text-decoration: none;
}

a.btn-rev,
a.btn-rev:active,
a.btn-rev:visited {
  background-color: var(--color-logo-1);
  color: var(--color-primary-darker);
}


a.btn-rev:hover {
  background-color: var(--color-link);
  color: var(--color-primary-darker);
}


.btn-cta {
  background-color: var(--color-cta);
  color: var(--color-link);
  /* border: 3px solid #ffffff; */
}

.btn-huge {
  font-size: 1.7rem;
  /* font-weight: bold; */
}

.btn-wide {
  display: block;
}

.btn-grp {
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
}





.tgs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.tgs-lbl {
  display: inline;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: normal;
}

.tg {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.4rem;
  background-color: var(--color-logo-1);
  border-radius: 0.1rem;
  font-size: 0.9rem;
}

.ca .tg {
  color: var(--color-logo-2);
}

.tg-follow {
  display: inline-block;
}

.tg-att {
  background-color: var(--primary-color);
  color: #fff;
}

.tg-att:hover {
  background-color: var(--primary-color-darker);
  color: #fff;
}

.tg-lbl {
  display: inline-block;
  padding: 0.1rem 0.3rem;
  background-color: var(--color-logo-2);
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  white-space: nowrap;
}

a.tg-lbl:hover {
  background-color: var(--color-cta-hover);
  color: #fff;
}

.tg-lbl-2 {
  background-color: var(--color-primary-darker);
}

a.tg-lbl-2:hover {
  background-color: var(--color-primary-hover);
  color: #fff;
}

.tg-lbl-follow {
  display: inline-block;
}





.lmt {
  width: 26rem;
}

.lots-cpy {
  font-size: .8rem;
}

.lots-cpy h1 {
  font-size: 1.3rem;
}

.lots-cpy h2 {
  font-size: 1.1rem;
}

.lots-cpy h3 {
  font-size: 1.1rem;
}



.p-info {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06rem;
  word-break: break-word;
}





section {
  padding-top: 8rem;
  padding-right: 2rem;
  padding-bottom: 8rem;
  padding-left: 2rem;
}

.section-1 {
  background-color: var(--color-section-1);
}

.section-rev {
  background-color: var(--color-section-2);
  color: var(--color-logo-2);
}

.section-car {
  padding: 3rem 0 3rem 3rem;
}

.section-half {
  padding: 0;
}

.section-half-1>div:first-child {
  background-color: var(--color-logo-1);
  color: var(--color-font-1);
  padding: 2rem;
}

.section-half-1>div:last-child {
  background-color: var(--color-logo-2);
  color: var(--color-font-2);
  padding: 2rem;
}

.divi-top {
  border-top: 2px solid var(--color-logo-1);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg-img-right {
  background-position: right 25%;
  background-size: 40%;
  background-repeat: no-repeat;
}

.bg-img-left {
  background-position: left;
  background-size: 40%;
  background-repeat: no-repeat;
}

.bg-img-1 {
  background-image: url('img/bg-1.jpg');
  background-color: var(--color-logo-2);
  background-blend-mode: saturation;
  background-size: cover;
  background-attachment: fixed;
}

.bg-img-2 {
  background-image: url(img/bg-2.png);
}






.bg-img-fx {
  position: relative;
  overflow: hidden;
}

.bg-img-fx .img-outer {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  /* background-image: url('img/bg-1.jpg');
  background-color: var(--color-logo-2);
  background-blend-mode: difference;
  background-size: cover; */
  height: 110%;
}

.bg-img-fx .img-outer img {
  height: 100%;
  /* object-fit: cover; */
  /* mix-blend-mode: saturation; */
  filter: blur(8px);
  position: absolute;
}

.bg-img-fx .ovrly {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg-img-fx .ovrly-1 {
  background-color: var(--color-logo-2);
  opacity: .8;
}

.bg-img-fx .ovrly-2 {
  /* background-color: var(--color-primary);
  opacity: .3; */
}

.bg-img-fx .cont {
  position: relative;
}


section.bnr-frm {
  padding: 2rem;
}

.bnr-frm .cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  border: 3px solid var(--color-logo-1);
  padding: 2rem;
}





.bnr-grfc {
  max-width: 24rem;
  margin: auto;
}




.txt-shade {
  color: #ffffff;
  text-shadow: 0px 0px 5px var(--color-font-1);
}






.bnr-crnr {}

.bnr-crnr>div {
  position: relative;
  display: flex;
  flex-direction: column;
  /* flex-direction: row; */
  justify-content: space-between;
  width: 100%;
  border: 2px solid var(--color-lite-line);
}

.bnr-crnr .title {
  position: relative;
  top: -13px;
  left: -9px;
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  /* max-width: 22rem; */
  color: var(--color-font-2);
  color: #d38e8e;
  text-transform: uppercase;
  font-weight: 700;
  padding-right: 1rem;
  padding-bottom: 1rem;
  /* margin-bottom: 5rem; */
  max-width: 80%;
  background-color: var(--color-background);
}

.bnr-crnr h2.title span {
  display: inline-block;
  background-color: var(--color-background);
  font-size: 8rem;
  line-height: 7.5rem;
  padding-right: 1rem;
}

.bnr-crnr .cont {
  padding: 2rem 2rem 4rem 2rem;
}









.release {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.release .cover {
  max-width: 16rem;
  max-height: 16rem;
}

.release h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--color-logo-1);
}

.release .pre {
  background-color: #0d0e15;
  color: #fff;
  padding: .2rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-family: 'Mont', sans-serif;
}








.pge-content {
  padding-top: 5rem;
}

.grd .rw {}

.cols-2 {}

.cols-2>div {}

.cols-3 {}

.cols-3>div {}



.grd-lin {}

.grd-lin .row.gl-ws {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.grd-lin .row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-top: 2px solid #ccc;
}

.grd-lin.row:first-child {
  /* border-top: none; */
}

.gl-2c>div:first-child {}

.gl-2c>div:last-child {
  border-top: 2px solid #ccc;
}

.gl-2c>div {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.gl-itms>div {
  text-align: center;
  margin-bottom: 1rem;
}

.gl-itms>div:last-child {
  margin-bottom: 0;
}

.gl-itms>div span {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.gl-itms>div p:nth-child(2) {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-logo-1);
  margin-bottom: 0;
  line-height: 1.2;
}




.bnr-lin {
  display: flex;
  gap: 1rem;
  border-top: 1px solid var(--color-logo-1);
  border-bottom: 1px solid var(--color-logo-1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  /* flex-wrap: nowrap; */
  /* overflow-x: scroll; */
  /* white-space: nowrap; */
  /* padding-bottom: 2rem; */
  flex-direction: column;
}

.bnr-lin-itm {
  padding: 1rem;
  border-bottom: 1px solid var(--color-logo-1);
}

.bnr-lin-itm:last-child {
  border-bottom: none;
}

.bnr-lin-title {
  font-size: 1.6rem;
  margin-top: .5rem;
}








.ca {
  /* border: 0;
  border-radius: 0; */
  color: var(--color-font-2);
  font-size: .9rem;
}

.ca:hover {
  --color: var(--color-link);
}

.ca-img {
  display: block;
  overflow: hidden;
}

figure.ca-img {
  margin-bottom: 1rem;
}

.ca figure {
  position: relative;
  display: block;
}

.ca figure picture {
  display: block;
  overflow: hidden;
}

.ca figure picture img {
  object-fit: cover;
}

.ca-img img {
  transition: all 300ms ease;
  width: 100%;
}

.ca:hover .ca-img img {
  transform: scale(1.02);
}

.ca.img-cred figure {
  padding-top: 1rem;
}

.ca figure figcaption .cpy {
  display: none;
}

.ca.img-cred figure figcaption .cpy {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: auto;
  align-self: flex-end;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--font);

  display: block;
}

.ca.img-cred figure figcaption .cpy:before {
  content: "Photo by: ";
}

.ca figure figcaption .cap {
  color: var(--font);
  font-size: .7rem;
  font-weight: bold;
  display: none;
}

.ca.img-cap figure figcaption .cap {
  display: block;
}

.ca-bdy-outer {
  position: relative;
}

.ca-sve {
  display: none;
}

.save-it .ca-sve {
  display: unset;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 1.2rem;
  text-align: center;
  color: var(--primary-color);
  color: rgba(0, 0, 0, 0.3);
  opacity: 0.6;
}

.save-it .ca-meta {
  margin-right: 1.7rem;
}

.ca-sve:hover {
  /* background-color: var(--primary-color); */
  opacity: 1;
}

.ca-sve:hover i {
  color: var(--primary-color);
}

.ca-bdy-top {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.ca-pre {
  margin-bottom: 0.2rem;
  color: var(--primary-color);
  text-transform: uppercase;
  white-space: initial;
  font-weight: bold;
}

.ca-meta {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.5rem;
}

.ca-meta>div {
  white-space: nowrap;
}

.ca .ca-title {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 300;
  text-wrap: auto;
}

.ca .ca-txt {
  margin-bottom: 0.1rem;
  text-wrap: auto;
}

.ca .ca-txt .tgs {
  padding-top: 0.8rem;
}

.ca-top .ca-title {
  font-size: 2rem;
  color: var(--color-logo-2);
}

.ca-rev {
  background-color: transparent;
}

.ca-rev a {
  color: var(--color-font-1);
}

.ca-img-left {
  display: flex;
  flex-direction: column !important;
  flex-flow: nowrap;
  gap: 1rem;
}

.ca-img-left .ca-img {
  width: 14rem;
  height: 14rem;
  overflow: initial;
}

.ca-img-left .ca-bdy {
  padding-top: 0;
}

.ca-img-left .ca-sve {
  top: 0.15rem;
}

.ca-img-left .ca-img picture {
  overflow: hidden;
  display: flex;
}

.ca-img-left .ca-img img {
  object-fit: cover;
}



.ca-wide {
  display: flex;
  flex-direction: column !important;
  justify-content: space-between;
  flex-flow: nowrap;
  gap: 4rem;
}

.ca-wide .ca-img {
  /* max-width: 65%; */
}

.ca-wide .ca-bdy-outer {
  /* max-width: 35%; */
}

.ca-wide-rev {
  flex-direction: row-reverse !important;
  display: flex;
  gap: 4rem;
}

.ca-wide-bx {
  position: relative;
  text-align: right;
  display: block;
}

.ca-wide-bx .ca-img {
  max-width: 80%;
}

.ca-wide-bx .ca-bdy-outer {
  position: absolute;
  background-color: var(--color-primary-darker);
  color: #fff;
  max-width: 23rem;
  top: 2rem;
  right: 2rem;
  text-align: left;
}

.ca-wide-bx .ca-bdy {
  padding: 1.2rem;
}

.ca-wide-bx .ca-sve {
  top: 1.35rem;
  right: 1.2rem;
}

.ca-wide-bx-rev>a:first-child {
  display: flex;
  justify-content: flex-end;
}

.ca-wide-bx-rev .ca-bdy-outer {
  left: 0;
  right: unset;
}








.up {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
  background-color: var(--color-primary-darker);
  color: #fff;
  border-radius: 0.3rem;
  padding: 0.3rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.up img {
  width: 80%;
}

body.scrll .up {
  opacity: 0.4;
}

body.scrll .up:hover {
  opacity: 1;
  color: #fff;
}






.logo {
  font-family: var(--font-3);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.logo span {
  display: inline-block;
  color: var(--color-logo-1);
  margin-right: 7px;
  line-height: 1;
}

.logo span:last-child {
  margin-right: 0;
}

.logo-title span:last-child {
  margin-right: 0;
  color: var(--color-logo-2);
}

.logo-lg {
  font-size: 3rem;
}

.logo-lg span {
  margin-right: 9px;
}

.logo-sm {
  font-size: 1rem;
}

.logo-home {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-home img {
  width: 100%;
  max-width: 24rem;
  opacity: .8;
}

.logo-huge {
  font-size: 3.5rem;
}




















/* header {
  padding: .6rem;
  min-height: 3rem;
} */

header>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

header a {
  text-decoration: none;
}

footer {
  /* margin-top: 3rem; */
}

footer,
footer a {
  color: #fff;
  font-size: .8rem;
  text-decoration: none;
}

footer section {
  padding-top: 0;
}




.scls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scls a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .06rem;
  /* opacity: .9; */
}

.scls a:hover {
  /* color: var(--color-primary); */
  /* opacity: 1; */
}

.scls a img {
  width: 100%;
  max-width: 70%;
  opacity: .9;
}

/* .scls a:hover img {
  opacity: 1;
} */

.scls a.i-lg img {
  max-width: 100%;
}

.scls-sm {
  gap: 0.4rem;
  flex-wrap: wrap;
}

.scls-sm a {
  font-size: 1.2rem;
  width: 3rem;
  height: 3rem;
  /* opacity: .9; */
}

.scls-lg {
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  flex-direction: column;
}

.scls-lg a {
  font-size: 1rem;
  flex-direction: column;
  width: 8rem;
  text-align: center;
}

.scls-lg a span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .6rem;
  height: 10rem;
}

/* .scls-lg a:nth-child(2) img {
  width: 90%;
} */



footer .scls {
  justify-content: unset;
  flex-wrap: wrap;
  /* gap: 1.2rem; */
  margin-bottom: 2rem;
}

.header-top .scls a {
  width: 2rem;
  height: 2rem;
}

.header-top .scls a.top-lnk {
  width: initial;
  height: 1.6rem;
}











.header-nav {
  position: fixed;
  z-index: 20;
  width: 100%;
  /* padding: 1rem; */
  background-color: var(--color-primary-darker);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  height: 2.2rem;
  transition: height ease 200ms;
}

a.top-lnk {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: .8rem;
  font-weight: bold;
  width: initial;
  padding: 0 0.3rem;
  height: 1.6rem;
  text-transform: uppercase;
}

.header-top a.top-lnk:nth-child(2) {
  margin-left: 0.5rem;
}

a.top-lnk:hover {
  color: var(--primary-color);
  background-color: #fff;
}

a.top-lnk-feat {
  display: none;
}



.header-nav nav {
  width: 100%;
  border-bottom: 2px solid var(--primary-color);
  height: 2.5em;
  padding: 0;
  display: flex;
  align-items: center;
  padding-top: 6px;
}

.header-nav nav>div:first-child {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-name {
  position: relative;
}

.nav-name svg,
.nav-name img {
  width: 7em;
  margin-top: 0.2em;
  transition: all 100ms ease-in;
}

.nav-name span {
  position: absolute;
  font-size: 1.6rem;
  margin-left: 0.5rem;
  bottom: 0.15rem;
  color: var(--color-logo-2);
}

.nav-lnks-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-lnks-bar>a {
  font-size: 1rem;
  text-transform: unset;
}

.nav-toggle {
  display: inline-block;
  /* width: 4rem; */
  font-size: 1.5rem;
  /* height: 4rem; */
  /* border: none; */
  /* border-bottom: 2px solid transparent; */
  transition: all ease-out 200ms;
  border-radius: 0;
  position: relative;
  z-index: 30;
  margin-right: .5rem;
}

.nav-toggle:focus {
  box-shadow: none;
}

.nav-toggle img {
  width: 2rem;
}

.nav-toggle:hover {
  font-size: 1.6rem;
  transition: all ease-out 200ms;
}

.nav-toggle.menu-open {
  font-size: 1.6rem;
  border-bottom: 2px solid #fff;
  border-left: 2px solid var(--primary-color);
  transition: all ease-out 200ms;
}



.nav-collapsable {
  width: 20rem;
  max-width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  background-color: var(--color-primary-darker);
  padding: 5rem 1rem 5rem 1rem;
  overflow: scroll;

  opacity: 0;
  height: initial !important;
  transition: opacity ease 200ms;
  box-shadow: 0 0 10px var(--color-font-1);

  display: flex;
  flex-direction: column;

  /* disable */
  display: none;

}

.nav-collapsable.show {
  opacity: 1;
  height: 100vh !important;
  transition: opacity ease 200ms;
}

.link-nav {
  background-color: var(--color-logo-1);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  margin-top: 0.5rem;
  font-weight: bold;
}

.link-nav:hover {
  background-color: var(--color-logo-2);
  color: #fff;
}

.current-page {
  position: relative;
}

.current-page::after {
  content: " ";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  right: 0.5rem;
}

body.menu-open {
  /* overflow: hidden; */
}

.nav,
.nav ul {
  padding: 0;
  margin: 0;
}

.nav li {
  list-style: none;
}

.nav li a {
  display: flex;
  align-items: center;
  /* color: #666; */
  font-size: 1.3rem;
  line-height: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  width: 100%;
}

.nav li a:hover {
  color: var(--primary-color);
}

.menu-lbl {
  background-color: var(--color-logo-2);
  color: #fff;
  margin-top: 0.5rem;
}

/* Level 1 */
.nav>li {
  border-top: 1px solid var(--color-logo-1);
  font-weight: bold;
}

.nav>li:first-child {
  border-top: none;
}

/* Levels */
.nav ul>li {
  border-top: 1px solid var(--color-logo-1);
  font-weight: normal;
}

.nav ul>li {
  padding-left: 1rem;
}

.nav ul ul>li {
  padding-left: 2rem;
}

.nav ul ul ul>li {
  /* text-indent: 3rem; */
  padding-left: 3rem;
}

.with-sub>span {
  display: flex;
  justify-content: space-between;
}

.with-sub .sub-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.8rem;
}

.with-sub .sub-toggle img {
  width: 1rem;
  transition: all 0.2s ease-out;
}

/* Open Sub Menu */
.with-sub>ul {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.with-sub.open>ul {
  max-height: 100rem;
}

.with-sub.open>span>.sub-toggle img {
  transform: rotate(180deg);
}

body.scrll .header-top {
  height: 0;
  overflow: hidden;
}

body.scrll .page-header {
  border-top: 4px solid var(--primary-color);
}

body.scrll .navbar {
  height: 3em;
}

body.scrll .link-scrll {
  opacity: 1;
}





.progress-outer {
  width: 100%;
  height: 6px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
}

.progress-outer span {
  display: block;
  width: 0%;
  height: 6px;
  background-color: var(--color-progress);
}








.car {
  white-space: nowrap;
  padding-bottom: 2rem;
  height: 24rem;
  overflow: hidden;
}

.car-itms {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  gap: 1.5rem;
  white-space: nowrap;
  padding-bottom: 2rem;
  height: 26rem;
}

.car .ca {
  min-width: 16rem;
}

.car-xtr-end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 14rem;
  background-color: var(--color-primary-darker);
  font-size: 2rem;
  text-wrap: wrap;
  padding: 1rem;
  line-height: 1.2;
  text-decoration: none;
}

.car-xtr-end img {
  width: 3rem;
  opacity: .6;
}



.car-cover {
  display: flex;
  height: 22rem;
  overflow: hidden;
  border-top: 2px solid var(--color-primary-darker);
  border-bottom: 2px solid var(--color-primary-darker);
}

.car-cover-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  height: 24rem;
  overflow-x: scroll;
  overflow-y: hidden;
}

.car-cover-itms {
  display: flex;
  gap: 3rem;
  height: 24rem;
}

.car-xtr-start {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-width: 14rem;
  min-height: 22rem;
  padding: 1.5rem;
  background-color: var(--color-primary-darker);
  font-size: 2rem;
  line-height: 1.2;
}

.car-xtr-start img {
  width: 3rem;
  margin-top: 1rem;
  opacity: .2;
}



.car-cover .ca-eve,
.car-cover .ca {
  width: 17rem;
}

.car-cover .ca {
  margin-top: 3rem;
}

.car-cover .ca:last-child {
  margin-right: 3rem;
}

.car-cover .pre {
  text-transform: uppercase;
}

.car-cover .ca-title {
  font-size: 2rem;
}

.car-cover .ca p {
  font-size: 1.2rem;
  font-weight: 300;
}



.car-stor {
  overflow-y: hidden;
  height: 20rem;
}

.car-stor-itms {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  height: 21rem;
  overflow-y: hidden;
}

.stor {
  width: 13rem;
  height: 20rem;
  background-color: #a78c8c;
  display: flex;
  transition: all ease 200ms;
}

.stor:last-child {
  margin-right: 2rem;
}

.stor>div {
  width: 13rem;
  padding: 1rem;
  white-space: initial;
  color: #fff;
  background-image: url(img/story.png);
  /* background-color: var(--color-logo-2);
  background-blend-mode: saturation; */
  background-size: cover;
  /*
  background: linear-gradient(transparent, #000);
  background-image: url(img/2.jpg);
  background-size: cover;
  background-repeat: no-repeat; */
}

.stor h3 {
  color: #fff;
}

.stor-title {
  font-size: 1.1rem;
  line-height: 1.2rem;
  font-weight: bold;
}

.stor:hover {
  transform: scale(1.02);
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.1);
}




.car-nav {
  position: relative;
  width: 100%;
  height: 3rem;
  overflow-y: hidden;
  background-color: var(--color-primary-darker);
}

.car-nav-itms {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
  height: 4rem;

  overflow-x: auto;
  -moz-window-dragging: drag;
  margin-left: 2rem;
  margin-right: 2rem;
  overflow-x: scroll;
  scroll-behavior: smooth;
}

.car-nav-itms>* {
  margin-right: 0.8rem;
}

.car-nav-itms>*:last-child {
  margin-right: 5px;
}

.car-nav .link-feat {
  text-align: center;
  font-weight: bold;
  padding: 0 1rem;
  color: #ccc;
  margin: 0;
}

.car-nav .link-feat:hover {
  background-color: unset;
  color: #818181;
}

.car-nav-itms a {
  font-weight: bold;
  color: var(--font);
  display: inline-block;
  font-size: 1rem;
  background-color: transparent;
  border-radius: 0.2rem;
  padding: 0.2rem 0.4rem;
  white-space: nowrap;
  text-decoration: none;
  /* height: 3rem; */
}

.car-nav-itms a:hover {
  background-color: #f5f5f5;
}

.car-nav-itms .divi {
  width: 2px;
  background-color: #ccc;
  display: block;
}

.arr-left {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(270deg, transparent, var(--color-primary-darker), var(--color-primary-darker));
  display: flex;
  align-items: center;
  justify-content: start;
  opacity: 0.4;
  transition: all 200ms ease-in;
  cursor: default;
}

.arr-left img::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.5);
}

.scrll-right .arr-left {
  opacity: .8;
  cursor: pointer;
}

.scrll-right .arr-left img::after {
  display: none;
}

.arr-left img {
  width: 1rem;
  margin-left: 0.5rem;
}

.arr-right {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(90deg, transparent, var(--color-primary-darker), var(--color-primary-darker));
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  opacity: .8;
  transition: all 200ms ease-in;
  cursor: pointer;
}

.scrll-end .arr-right {
  opacity: 0.4;
}

.scrll-end .arr-right img::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.5);
}

.arr-right img {
  width: 1rem;
  margin-right: 0.5rem;
}













.tili h2 {
  font-size: 2rem;
}

.tili>div {
  display: flex;
  gap: 1rem;
}

.tili>div>div:first-child {
  margin-top: 4px;
}

.tili>div>div:nth-child(2) {
  position: relative;
  width: 30px;
  padding-right: 30px;
  border-right: 2px solid var(--color-logo-1);
}

.tili>div>div:nth-child(2) span {
  position: absolute;
  top: 11px;
  right: -6px;
  width: 10px;
  height: 10px;
  background-color: var(--color-logo-1);
  border-radius: 50%;
}

.tili>div>div:last-child {
  max-width: 24rem;
  margin-top: 4px;
  margin-bottom: 2rem;
}


.tili>div>div:last-child img {
  margin-bottom: 0.5rem;
}

.tili>div:first-child>div:nth-child(2) {
  margin-top: 11px;
}

.tili>div:first-child>div:nth-child(2) span {
  top: unset;
}

.tili>div:last-child>div:nth-child(2) {
  height: 12px;
}

.tili>div {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 4rem auto 1fr;
  grid-row-gap: 0;
  grid-column-gap: 0;
}

.tili>div>div:first-child {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: 3;
}

.tili>div>div:nth-child(2) {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 1;
}

.tili>div>div:last-child {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 2;
  grid-column-end: 3;
}





.gllry {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.gllry a {
  display: inline-block;
  width: 8rem;
  width: 8rem;
}

.gllry a img {
  border: 3px solid #fff;
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;

  /* cursor: grabbing; */
  /* cursor: grab; */
}






/* Big initial */
.bigini::first-letter {
  font-family: 'Courier New', Courier, monospace;
  font-size: 3.8rem;
  font-weight: 700;
  float: left;
  margin-top: 8px;
  margin-right: 14px;
}



.stuck {
  position: -webkit-sticky;
  position: sticky;
}



.cntdwn {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cntdwn span {
  font-size: 2.3rem;
  color: var(--color-font-2);
  font-weight: bold;
}




.nmbr {
  max-width: 18rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.nmbr>p:first-child {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.nmbr>p:nth-child(2) {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.nmbr>p:nth-child(3) {
  font-size: 1.6rem;
  line-height: 1.2;
}




.na-quo p {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: .5rem;
}

.na-quo a {
  width: 2rem;
  height: 2rem;
  opacity: .7;
}

.na-quo a:hover {
  opacity: 1;
}

.na-quo a img {}






.i-playing {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 15px;
  height: 10px;
  margin: 0.6rem;
}

.i-playing span {
  width: 4px;
  height: 3px;
  background-color: orange;
  /* border-radius: 3px; */
  content: '';
  transform-origin: bottom;
}

body.play-on .i-playing {
  /* align-items: center; */
  /* height: 10px; */
}

body.play-on .i-playing span {
  height: 100%;
  transform-origin: bottom;
  animation: bounce 2.2s ease infinite alternate;
}

body.play-off .i-playing span {
  filter: grayscale(100);
}



@keyframes bounce {
  10% {
    transform: scaleY(0.5);
    /* start by scaling to 30% */
  }

  30% {
    transform: scaleY(1);
    /* scale up to 100% */
  }

  60% {
    transform: scaleY(0.5);
    /* scale down to 50% */
  }

  80% {
    transform: scaleY(0.75);
    /* scale up to 75% */
  }

  100% {
    transform: scaleY(0.6);
    /* scale down to 60% */
  }
}

body.play-on .i-playing span:nth-child(2) {
  animation-delay: -2.2s;
  /* Start at the end of animation */
}

body.play-on .i-playing span:nth-child(3) {
  animation-delay: -3.7s;
  /* Start mid-way of return of animation */
}






.spn-add {
  position: relative;
  /* overflow- x: hidden; */
}

.spn-bg {
  position: absolute;
  top: 0;
  margin: 0%;
  width: 6rem;
  filter: blur(2px);
  text-transform: uppercase;
  opacity: .2;
}

#spn-circle-1 {
  position: relative;
  width: 50rem;
  transform: scale(5.5);
  top: -1650px;
  left: 430px;
}

#spn-circle-1 text {
  font-size: 16px;
  font-weight: bold;
}

#spn-circle-1 svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 540px;

  -webkit-animation-name: rotate-txt;
  -moz-animation-name: rotate-txt;
  -ms-animation-name: rotate-txt;
  -o-animation-name: rotate-txt;
  animation-name: rotate-txt;
  -webkit-animation-duration: 25s;
  -moz-animation-duration: 25s;
  -ms-animation-duration: 25s;
  -o-animation-duration: 25s;
  animation-duration: 25s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

@-webkit-keyframes rotate-txt {
  from {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotate-txt {
  from {
    transform: rotate(360deg);
  }
}








*::selection {
  color: #fff;
  background-color: var(--color-primary);
  text-shadow: none;
}

*::-moz-selection {
  color: #fff;
  background-color: var(--color-primary);
  text-shadow: none;
}

img::selection {
  color: #fff;
  background: transparent;
}

img::-moz-selection {
  color: #fff;
  background-color: transparent;
}

a::selection {
  color: #fff;
  background-color: var(--color-primary-darker);
}

a::-moz-selection {
  color: #fff;
  background-color: var(--color-primary-darker);
}







.video-player {
  position: relative;
  width: 640px;
  width: 100%;
  margin: auto;
  background: #000;
}

.video-player video {
  width: 100%;
  display: block;
}

.video-player .controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 1rem;
}

.video-player .controls button {
  padding: .2rem;
  background-color: var(--color-logo-1);
  color: var(--color-logo-2);
}


.video-player button,
.video-player input[type=range] {
  margin: 0 5px;
}














.playa-title-big {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: .2rem;
  color: var(--color-link);
}

.playa-desc-big {
  font-size: 1.3rem;
  color: var(--color-link);
  margin-bottom: 2rem;
}


/* #msg-mover {
            position: fixed;
            height: 30px;
            width: 100%;
            top: 0;
            left: 0;
            color: #fff;
            z-index: 1;
          } */

#playa-mover {
  width: 1px;
  height: 1px;
  opacity: 0;
}

.playa audio {
  display: none;
}

.playa-audio {
  font-family: arial;
  color: white;
  font-size: 0.75em;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto;
  max-width: 50rem;
}

.playa-audio .timeline {
  background: var(--color-logo-1);
  width: 100%;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, .4);
}

.playa-audio .timeline .progress {
  background: coral;
  width: 0%;
  height: 100%;
  transition: 0.25s;
}

.playa-audio .controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.playa-audio .controls>* {
  display: flex;
  justify-content: center;
  align-items: center;
}

.playa-audio .controls .toggle-play {
  width: 2rem;
  height: 3rem;
}

.playa-audio .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  background-image: url(img/ip-play-o.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.playa-audio .controls .toggle-play.play:hover {
  transform: scale(1.1);
}

.playa-audio .controls .toggle-play.pause {
  /* height: 15px;
          width: 20px; */
  cursor: pointer;
  position: relative;
  background-image: url(img/ip-pause-o.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.playa-audio .controls .toggle-play.pause:hover {
  transform: scale(1.1);
}

.playa-audio .controls .time {
  display: flex;
  width: 5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.playa-audio .controls .time>* {
  padding: 2px;
}

.playa-audio .controls .time .current {
  width: 3rem;
}

.playa-audio .controls .name {
  display: none;
}


.playa-audio .controls .time .length {
  width: 3rem;
}

.playa-audio .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.playa-audio .controls .volume {
  width: 2rem;
  height: 2rem;
}

.playa-audio .controls .volume-on {
  background-image: url(img/ip-vol-o.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.playa-audio .controls .volume-mute {
  background-image: url(img/ip-mute-o.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}




.playa-audio .controls .volume-container .volume-button {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
}

.playa-audio .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}

.playa-audio .controls .volume-container .volume-slider {
  position: absolute;
  left: -3px;
  top: 8px;
  width: 0;
  height: 15px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, .4);
  transition: 0.25s;
}

.playa-audio .controls .volume-container .volume-slider .volume-percentage {
  background: coral;
  height: 100%;
  width: 75%;
}

.playa-audio .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}

.playa-audio .controls .volume-mute-cont .volume-slider {
  /* opacity: .5; */
  filter: grayscale(90%);
}






.playa-rec {
  position: relative;
  /* display: none; */
}

.playa-rec img {
  height: 55rem;
  width: 55rem;
  position: absolute;
  z-index: -2;
  top: -33rem;
  right: -11rem;
  animation: rotate 3s linear infinite;
  animation-play-state: paused;
  opacity: .2;
}

.playa.playa-on .playa-rec img {
  animation-play-state: running;
  opacity: .5;
}

.playa.playa-off .playa-rec img {
  animation-play-state: paused;
  opacity: .2;
}

.playa:hover .playa-rec img {
  opacity: .5;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}





.playa-crnr {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 100;
  background-color: var(--color-primary-darker);
  color: #fff;
  border-radius: 0.3rem .5rem .3rem .7rem;
  padding: 0.3rem;
  width: 8rem;
  height: 3rem;
  text-align: center;
  /* opacity: 0; */
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  left: -10rem;
}

.playa-started .playa-crnr {
  left: 1rem;
}

.playa-vis .playa-crnr {
  left: -10rem;
}

.playa-crnr>div {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;

  background-position: center center;
}

.playa-crnr-play {
  background-image: url(img/ip-play.svg);
  background-size: 1.2rem;
}

.playa-crnr-play.pause {
  background-image: url(img/ip-pause.svg);
  background-size: 1.2rem;
}

.playa-crnr-mute {
  background-image: url(img/ip-vol.svg);
  background-size: 1.5rem;
}

.playa-crnr-mute.unmute {
  background-image: url(img/ip-vol-mute.svg);
  background-size: 1.5rem;
}

.playa-crnr img {
  width: 1.6rem;
}

/* body.scrll .up {
  opacity: 0.4;
}

body.scrll .up:hover {
  opacity: 1;
  color: #fff;
} */



@media (min-width: 600px) {
  .playa-audio {
    height: 80px;

  }

  .playa-audio .controls {
    padding: 0 1rem;
  }


  .playa-audio .controls .name {
    /* display: unset; */
  }


}









.swiper {
  width: 100%;
  /* height: 300px; */
}

.swiper-pagination {
  position: initial !important;
}

.swiper-slide {
  display: flex !important;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.swiper-button-next,
.swiper-button-prev {
  top: 26px !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  color: #fff;
  background-color: rgba(0, 0, 0, .3);
  padding: .4rem;
}



.slide-lnks {
  position: relative;
}

.slide-lnks div {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: .5rem;
  background-color: rgba(0, 0, 0, .3);
  width: 5.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
}

.slide-lnks div a {

  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}





.agr {
  position: fixed;
  bottom: -30rem;
  z-index: 1100;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 3rem 1rem;
  border-top: 1rem solid var(--color-primary);
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
  color: var(--color-logo-2);
}

.agr>p:first-child {
  font-size: 1.1rem;
  max-width: 25rem;
}

.agr .btn,
.agr p {
  margin: 0;
}

.agr a {
  color: var(--color-primary);
  text-decoration: none;
}

.agr a:hover {
  color: var(--color-primary-darker);
}

.agr .btn {
  font-size: 1.4rem;
  padding: .4rem 1rem;
}

.agr.na {
  bottom: 0;
}


.mbd {
  position: relative;
  z-index: 40
}

.mbd .mbd-agr {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3rem;
  background-color: var(--color-secondary);
  text-align: center;
}

.mbd .mbd-agr .mbd-btn {
  cursor: pointer;
}

.mbd .mbd-agr.na {
  display: none;
}


@media (min-width: 440px) {

  .scls-lg {
    flex-direction: row;
    justify-content: flex-start;
  }

  .ca-img-left {
    flex-direction: row !important;
  }

  .ca-img-left .ca-img {
    width: 7rem;
    height: 7rem;
  }

}

@media (min-width: 660px) {



  .logo-huge {
    font-size: 5rem;
  }


  .bnr-crnr .title {

    max-width: 30%;
  }





  a.lnk-top-feat {
    display: unset;
  }




  .bg-img-3 {
    background-image: url(img/bg-2.png);
    background-position: 90% 103%;
    background-size: 40%;
    background-repeat: no-repeat;
  }



  .gl-2c>div:first-child {
    border-right: 2px solid #ccc;
    padding-right: 2rem;
  }

  .gl-2c>div:last-child {
    border-top: none;
    padding-left: 2rem;
  }

  .gl-itms>div {
    margin-bottom: unset;
  }




  .ca-bdy-top {
    flex-direction: row;
  }

  .ca-meta {
    justify-content: center;
  }

  .ca-wide {
    flex-direction: row !important;
  }

  .ca-wide .ca-img {
    /* max-width: 65%; */
  }

  .ca-wide .ca-bdy-outer,
  .ca-wide-rev .ca-bdy-outer {
    max-width: 35%;
  }

  .ca-wide-rev {
    flex-direction: row-reverse !important;
  }

  .ca-wide-bx .ca-img {
    max-width: 80%;
  }

  .ca-wide-bx .ca-bdy-outer {
    position: absolute;
    max-width: 23rem;
    top: 2rem;
    right: 2rem;
  }

  .ca-wide-bx-rev {
    display: flex;
    flex-direction: row-reverse;
  }

  .ca-wide-bx-rev>a:first-child {
    display: flex;
    justify-content: end;
  }

  .ca-wide-bx-rev .ca-bdy-outer {
    left: 2rem;
    right: unset;
  }


  .ca-eve {
    display: flex;
    flex-direction: column;
  }

  .ca-eve>*:first-child {}

  .ca-eve>div:nth-child(2) {}

  .ca-eve>div:last-child {}

  .eve-img {
    max-width: 16rem;
    overflow: hidden;
    margin-bottom: 0;
  }

  .eve-img picture {
    display: block;
  }

  .eve-img img {
    /* object-fit: cover; */
  }

  .eve-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 25%;
    max-width: 9rem;
    padding: 1rem;
    background-color: var(--primary-color-darker);
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    transition: all 140ms ease-in;
  }

  .eve-date div:first-child {
    font-size: 3rem;
    line-height: 3rem;
  }

  .eve-date div:nth-child(2) {
    text-transform: uppercase;
    font-weight: bold;
  }

  .eve-date-sm {
    width: 6rem;
    height: 6rem;
    font-size: .8rem;
  }

  .eve-date.eve-date-sm div:nth-child(1) {
    font-size: 2.3rem;
    line-height: 2.3rem;
  }

  .eve-date.event-date-sm div:nth-child(2) {
    font-size: 0.8rem;
    line-height: 0.9rem;
  }

  .eve-date.eve-date-sm div:nth-child(3) {
    font-size: 0.8rem;
  }

  .eve-info {
    width: 75%;
    transition: all 140ms ease-in;
  }

  .eve-info::after {
    transition: all 140ms ease-in;
  }

  .eve-info h2 {
    margin-bottom: 0.2rem;
    font-size: 3rem;
  }

  .eve-info p {
    width: unset;
    margin-bottom: 0.2rem;
    padding: 0;
    font-size: 1rem;
  }

  .eve-loc {}

  .eve-card:hover {
    /* color: var(--color-logo-2); */
  }

  .ca-eve:hover .eve-date {
    background-color: var(--color-logo-2);
  }

  .eve-tgs {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .ca-eve-wide {
    flex-direction: row;
    gap: 1rem;
  }

  .ca-eve-wide .eve-img {
    margin-bottom: 0;
  }

  .ca-eve-wide .eve-date {
    max-height: 9rem;
  }

  .ca-eve-wide .eve-info {
    padding: 0;
  }




  .tili>div>div:first-child {
    text-align: right;
  }

  .tili>div {
    grid-template-columns: 4rem 62px 1fr;
  }

  .tili>div>div:first-child {
    grid-column-start: 1;
    grid-column-end: 1;
  }

  .tili>div>div:nth-child(2) {
    grid-column-start: 2;
    grid-column-end: 2;
  }

  .tili>div>div:last-child {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 3;
    grid-column-end: 3;
  }

}

@media (min-width: 991px) {

  header>div {
    flex-direction: row;
    gap: 2em;
  }

  .bg-img-3 {
    background-image: url(img/bg-2-2.png);
    background-position: 85% 110%;
    background-size: 40%;
    background-repeat: no-repeat;
  }

  .scls a img {
    opacity: .8;
  }

  .scls a:hover img {
    opacity: 1;
  }



  .bnr-crnr>div {
    flex-direction: row;
  }

  .bnr-crnr .title {
    margin-bottom: 5rem;
  }


  .release .cover {
    max-width: 20rem;
    max-height: 20rem;
  }


  .cols-2 {
    display: flex;
  }

  .cols-2>div {
    width: 50%;
  }

  .cols-3 {
    display: flex;
  }

  .cols-3>div {
    width: 33%;
  }


  .bnr-lin {
    flex-direction: row;
  }

  .bnr-lin-itm {
    width: 25%;
    border-right: 1px solid var(--color-logo-1);
    border-bottom: none;
  }

  .bnr-lin-itm:last-child {
    border-right: none;
  }



  .release {
    flex-direction: row;
    gap: 4rem;
  }



  .gllry {
    gap: 2rem;
  }

  .gllry a {
    width: 10rem;
    width: 10rem;
  }

  .gllry a:hover {
    transform: scale(1.05);
    transform-origin: center center;
  }

}

@media (min-width: 1200px) {}

@media (orientation: landscape) {}

@media (orientation: portrait) {}