/*
Theme Name: AJR Theme
Description: AJR Theme
Author: Kranzo Interactive
Author URI: http://www.kranzointeractive.com
Version: 1.0
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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; }

/* HTML5 display-role reset for older browsers */
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 {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

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

a {
  text-decoration: none;
  transition: color 0.5s ease, border 0.5s ease, background 0.5s ease; }
  a:active, a:focus, a:hover {
    text-decoration: none; }

/* apply a natural box layout model to all elements */
*, *:before, *:after {
  box-sizing: border-box; }

/* --- CLEARFIX --- */
.clearfix {
  display: block;
  zoom: 1; }
  .clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden; }

::-moz-selection {
  background: #000000;
  color: #ffffff; }

::selection {
  background: #000000;
  color: #ffffff; }

::-moz-selection {
  background: #000000;
  color: #ffffff; }

/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial; }

input {
  -webkit-appearance: none; }

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0; }

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  box-sizing: border-box; }

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  box-sizing: border-box; }

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px; }

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box; }

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none; }

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto; }

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none; }

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top; }

iframe[src*="youtube.com"],
iframe[src*="youtube-nocookie.com"],
iframe[src*="vimeo.com"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; }

@font-face {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal; }

/*
Ability to set font size, line height, and font size for each breakpoint
Headings usually have setup scale of 1, .95, .9, .85, .8, .75
*/
/*
Ability to set columns, margins, how many columns for each breakpoint, and margins for each breakpoint
For scaling down margin relatively, 1, .9, .8, .7, .6, .5 works well
*/
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important; }
  * {
    -webkit-animation: none !important;
            animation: none !important;
    transition-duration: 0s !important; } }

/*
////////////////////
LOGIN STYLES
////////////////////
*/
.login {
  background: #F4F3EE;
  color: #ffffff; }

.login #loginform {
  border: none; }

.login .wp-login-logo a {
  background-image: url(images/logo_dark.png);
  background-size: auto 100px !important;
  width: 250px !important;
  height: 100px !important; }

.login .button-primary {
  float: right;
  background-color: #000000 !important;
  color: #ffffff !important;
  border-radius: 0px !important;
  -webkit-appearance: none;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  padding: 10px 30px !important;
  text-shadow: none !important;
  border: none !important;
  box-shadow: none;
  line-height: auto !important;
  height: auto !important;
  outline: 0px !important;
  margin: 0px auto;
  float: none;
  display: inline-block;
  transition: color 0.5s ease, background-color 0.5s ease; }
  .login .button-primary:hover {
    background: #000000 !important; }

.login .button-primary:focus, .login .button-primary:active {
  box-shadow: none; }

.login .wp-generate-pw {
  display: none !important; }

.login .button-primary.disabled:hover, .login .button-primary:disabled:hover, .login .button-primary[disabled]:hover {
  background-color: #f6f7f7 !important; }

.login .button-primary.disabled:active, .login .button-primary:disabled:active, .login .button-primary[disabled]:active {
  background-color: #f6f7f7 !important; }

.login .button-primary.disabled:focus, .login .button-primary:disabled:focus, .login .button-primary[disabled]:focus {
  background-color: #f6f7f7 !important; }

.login input[type=checkbox], .login input[type=radio] {
  width: 18px;
  height: 18px; }

.login .button-primary:hover {
  color: #ffffff;
  background-color: #000000 !important;
  border-radius: 0px !important;
  -webkit-appearance: none;
  text-shadow: none !important;
  border: none !important;
  box-shadow: none;
  line-height: auto !important;
  height: auto !important; }

.login .button-primary:active, .login .button-primary:focus {
  color: #ffffff;
  background-color: #000000 !important;
  border-radius: 0px !important;
  -webkit-appearance: none;
  text-shadow: none;
  border: none; }

.login.login-action-lostpassword #login .message {
  display: none; }

.login input {
  font-size: 16px !important;
  border-radius: 0px !important; }
  .login input:after {
    display: none; }

.login input:focus,
.login select:focus,
.login textarea:focus,
.login button:focus {
  outline: none; }

.login #login_error {
  padding: 20px !important;
  color: #000000; }

.login p {
  color: #000000; }

.login .button:after {
  display: none; }

.login .message {
  font-size: 16px;
  padding: 20px; }
  .login .message.register {
    display: none; }
  .login .message.reset-pass {
    display: none; }
  .login .message a {
    color: #FF8200 !important; }
    .login .message a:hover {
      color: #FF8200 !important; }

.login #nav {
  color: #000000;
  text-align: center; }
  .login #nav a {
    margin: 0px 5px;
    color: #000000; }
    .login #nav a:hover {
      color: #000000 !important; }
    .login #nav a:first-of-type {
      margin-left: 0px !important; }

.login .privacy-policy-page-link {
  display: none !important; }

.login #backtoblog {
  display: none; }

.login-password-protected #loginform label {
  text-align: center;
  width: 100%; }

.login-password-protected input[type="password"] {
  text-align: center; }
  .login-password-protected input[type="password"]:focus {
    box-shadow: none !important; }

.login #reg_passmail {
  font-size: 16px; }

.login .dashicons {
  color: #999999 !important; }

.login input[type=text], .login input[type=password], .login input[type=email] {
  border-radius: 0px !important;
  border: 1px solid #ccc !important; }

.login #backtoblog a:hover, .login #nav a:hover, .login h1 a:hover {
  color: #000000 !important; }

.login #login_error, .login .message, .login .success {
  border-left: 4px solid #000000 !important;
  font-size: 16px; }

#login form p.submit {
  text-align: center; }

html {
  font-size: 18px; }

body {
  color: #e1e1e1;
  margin: 0px;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  background: #0d1114;
  width: 100%;
  line-height: 1.35;
  margin: 0px auto;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased; }
  body:before {
    content: '';
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: -9999px;
    background: #0d1114;
    opacity: 0;
    z-index: 997;
    opacity: 0;
    transition: opacity 0.5s ease; }
  body.disabled {
    height: 100vh;
    overflow: hidden; }
    body.disabled header .logo img {
      opacity: 0.35; }
    body.disabled:before {
      left: 0px;
      opacity: 0.5; }

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none; }

strong, b {
  font-weight: 700 !important; }

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

.sharpen {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */ }

.max-width {
  width: calc(100% - 80px) !important;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 960px) {
    .max-width {
      width: calc(100% - 40px) !important; } }
  @media (max-width: 480px) {
    .max-width {
      width: calc(100% - 40px) !important; } }
/*
.reveal {
	opacity: 0;
	transform: translateY(100px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
	&.active {
		opacity: 1;
		transform: translateY(0);
	}
}
*/
h1 {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 72px;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px; }
  @media only screen and (max-width: 1200px) {
    h1 {
      font-size: 65px; } }
  @media only screen and (max-width: 960px) {
    h1 {
      font-size: 50px; } }
  @media only screen and (max-width: 768px) {
    h1 {
      font-size: 43px; } }
  @media only screen and (max-width: 480px) {
    h1 {
      font-size: 36px; } }
  @media only screen and (max-width: 320px) {
    h1 {
      font-size: 29px; } }
h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600; }
  @media only screen and (max-width: 1200px) {
    h2 {
      font-size: 47px; } }
  @media only screen and (max-width: 960px) {
    h2 {
      font-size: 42px; } }
  @media only screen and (max-width: 768px) {
    h2 {
      font-size: 36px; } }
  @media only screen and (max-width: 480px) {
    h2 {
      font-size: 31px; } }
  @media only screen and (max-width: 320px) {
    h2 {
      font-size: 26px; } }
h3 {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 52px;
  line-height: 1.25;
  text-transform: uppercase; }
  @media only screen and (max-width: 1200px) {
    h3 {
      font-size: 47px; } }
  @media only screen and (max-width: 960px) {
    h3 {
      font-size: 36px; } }
  @media only screen and (max-width: 768px) {
    h3 {
      font-size: 31px; } }
  @media only screen and (max-width: 480px) {
    h3 {
      font-size: 29px; } }
  @media only screen and (max-width: 320px) {
    h3 {
      font-size: 29px; } }
h4 {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 52px;
  line-height: 1.25;
  text-transform: uppercase; }
  @media only screen and (max-width: 1200px) {
    h4 {
      font-size: 42px; } }
  @media only screen and (max-width: 960px) {
    h4 {
      font-size: 36px; } }
  @media only screen and (max-width: 768px) {
    h4 {
      font-size: 36px; } }
  @media only screen and (max-width: 480px) {
    h4 {
      font-size: 36px; } }
  @media only screen and (max-width: 320px) {
    h4 {
      font-size: 36px; } }
h5 {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  text-transform: uppercase; }

p, ul, ol {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 400; }

header {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: auto;
  left: 0px;
  top: 0px;
  background: none;
  -webkit-transform: background 0.5s ease;
          transform: background 0.5s ease;
  padding: 20px 20px 0px; }
  @media (max-width: 960px) {
    header {
      background: linear-gradient(to bottom, rgba(13, 17, 20, 0.65), rgba(13, 17, 20, 0)); } }
  header .logo img {
    width: auto;
    height: 88px;
    transition: opacity 0.5s ease; }
    @media (max-width: 960px) {
      header .logo img {
        height: 60px; } }
  header .menu-button {
    font-size: 36px;
    height: 100px;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 9999;
    color: #F4F3EE;
    line-height: 100px !important;
    padding: 0px 40px;
    cursor: pointer;
    transition: color 0.5s ease;
    display: none !important; }
    @media (max-width: 960px) {
      header .menu-button {
        line-height: 80px !important;
        padding: 0px 20px;
        height: 80px;
        display: block !important; } }
    header .menu-button.fa-xmark {
      color: #F4F3EE !important; }
  header .links {
    position: absolute;
    right: 40px;
    top: 0px;
    z-index: 9998; }
    @media (max-width: 960px) {
      header .links {
        right: 20px; } }
    header .links.open {
      right: 0px; }
    @media (max-width: 960px) {
      header .links {
        right: -100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        width: 50%;
        min-width: 250px;
        padding-left: 40px;
        background: #000000;
        flex-direction: column;
        transition: right 0.5s ease; } }
    header .links a {
      display: inline-block;
      margin-left: 30px;
      color: #F4F3EE;
      font-size: 48px;
      font-family: "Rubik", sans-serif;
      font-weight: 600;
      font-optical-sizing: auto;
      font-style: normal;
      line-height: 100px;
      text-transform: uppercase; }
      @media (max-width: 768px) {
        header .links a {
          line-height: 1;
          display: block;
          width: 100%;
          margin: 10px 0px;
          color: #F4F3EE !important; } }
.menu {
  width: 256px;
  height: 100vh;
  background: #0d1114;
  position: fixed;
  z-index: 997;
  width: 300px;
  left: 0px;
  top: 0px;
  padding: 158px 20px 20px;
  transition: right 0.5s ease; }
  .menu.open {
    right: 0px; }
  @media (max-width: 960px) {
    .menu {
      left: auto;
      right: -300px;
      padding: 80px 20px 20px; } }
  .menu .links a {
    display: block;
    color: #e1e1e1;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
    font-weight: 700; }
    @media (max-width: 960px) {
      .menu .links a:hover {
        color: #e1e1e1 !important; } }
    .menu .links a:hover {
      color: #707c44; }
  .menu .legal {
    margin-top: 50px; }
    .menu .legal a {
      display: block;
      color: #e1e1e1;
      font-size: 14px;
      margin-bottom: 10px;
      line-height: 1;
      font-weight: 500;
      cursor: pointer; }
      @media (max-width: 960px) {
        .menu .legal a:hover {
          color: #e1e1e1 !important; } }
      .menu .legal a:hover {
        color: #707c44; }
  .menu .socials {
    margin-top: 50px; }
    .menu .socials a {
      display: inline-block;
      color: #e1e1e1;
      font-size: 18px;
      margin-right: 8px;
      line-height: 1; }
      @media (max-width: 960px) {
        .menu .socials a:hover {
          color: #e1e1e1 !important; } }
      .menu .socials a:hover {
        color: #707c44; }
      .menu .socials a:last-of-type {
        margin-right: 0px; }

.wrapper {
  width: calc(100% - 300px);
  min-height: 100svh;
  position: relative;
  margin-left: 300px;
  overflow-x: hidden; }
  .wrapper .thinking {
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    bottom: 40px;
    width: 50%;
    max-width: 600px;
    height: auto;
    z-index: -1; }
    @media (max-width: 768px) {
      .wrapper .thinking {
        bottom: 25px;
        width: 65%; } }
  .wrapper .background {
    background-size: cover;
    background-position: bottom center;
    width: calc(100% - 300px);
    height: 100svh;
    z-index: -1;
    position: fixed;
    top: 0px;
    left: 300px; }
    @media (max-width: 960px) {
      .wrapper .background {
        width: 100%;
        left: 0px; } }
  @media (max-width: 960px) {
    .wrapper {
      width: 100%;
      margin-left: 0px; } }
  .wrapper.home:before {
    content: '';
    width: 100%;
    height: 50vh;
    background: linear-gradient(to bottom, rgba(13, 17, 20, 0.65), rgba(13, 17, 20, 0));
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 0; }
  .wrapper.home h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 20px; }
    @media only screen and (max-width: 1200px) {
      .wrapper.home h1 {
        font-size: 38px; } }
    @media only screen and (max-width: 960px) {
      .wrapper.home h1 {
        font-size: 34px; } }
    @media only screen and (max-width: 768px) {
      .wrapper.home h1 {
        font-size: 29px; } }
    @media only screen and (max-width: 480px) {
      .wrapper.home h1 {
        font-size: 21px; } }
    @media only screen and (max-width: 320px) {
      .wrapper.home h1 {
        font-size: 17px; } }
  .wrapper.home .content {
    padding: 40px 0px 0px !important;
    width: calc(100% - 80px) !important;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column; }
    @media (max-width: 960px) {
      .wrapper.home .content {
        padding: 100px 0px 0px !important; } }
  .wrapper.dark:before {
    content: '';
    width: 100%;
    height: 100svh;
    background: #0d1114;
    opacity: 0.65;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 0; }
  .wrapper.darker:before {
    content: '';
    width: 100%;
    height: 100svh;
    background: #0d1114;
    opacity: 0.8;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 0; }
  .wrapper .content {
    margin: 0px auto;
    width: calc(100% - 80px);
    max-width: 1000px;
    position: relative;
    z-index: 1;
    padding: 50px 0px; }
    @media (max-width: 960px) {
      .wrapper .content {
        width: calc(100% - 40px);
        padding: 100px 0px 50px; } }
.tour-hero {
  text-align: center; }
  .tour-hero img {
    width: calc(100% - 80px);
    max-width: 750px;
    height: auto;
    margin: 40px auto 0px; }
    @media (max-width: 480px) {
      .tour-hero img {
        width: 100%; } }
.albums {
  display: flex;
  width: 100%;
  justify-content: left;
  flex-flow: row wrap; }
  .albums .album {
    font-size: 0px;
    position: relative; }
    @media only screen and (min-width: 1440px) and (max-width: 9999px) {
      .albums .album {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 80px - .05px)/3); }
        .albums .album:nth-child(3n+3), .albums .album:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1440px) {
      .albums .album {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 80px - .05px)/3); }
        .albums .album:nth-child(3n+3), .albums .album:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 960px) and (max-width: 1200px) {
      .albums .album {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 80px - .05px)/3); }
        .albums .album:nth-child(3n+3), .albums .album:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 768px) and (max-width: 960px) {
      .albums .album {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 40px - .05px)/2); }
        .albums .album:nth-child(2n+2), .albums .album:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 480px) and (max-width: 768px) {
      .albums .album {
        margin-bottom: 40px;
        margin-right: 40px !important;
        width: calc((100% - 40px)/2); }
        .albums .album:nth-child(2n+2), .albums .album:last-of-type {
          margin-right: 0px !important; } }
    @media only screen and (min-width: 320px) and (max-width: 480px) {
      .albums .album {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 0px)/1); }
        .albums .album:nth-child(1n+1), .albums .album:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 0px) and (max-width: 320px) {
      .albums .album {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 0px)/1); }
        .albums .album:nth-child(1n+1), .albums .album:last-of-type {
          margin-right: 0px; } }
    .albums .album:before {
      content: '';
      width: 100%;
      height: 100%;
      background: #0d1114;
      transition: opacity 0.5s ease;
      opacity: 0.35;
      position: absolute;
      top: 0px;
      left: 0px; }
      @media (max-width: 960px) {
        .albums .album:before {
          opacity: 0; } }
    .albums .album:hover:before {
      opacity: 0; }

.videos {
  display: flex;
  width: 100%;
  justify-content: left;
  flex-flow: row wrap; }
  .videos .video {
    font-size: 0px;
    position: relative;
    cursor: pointer; }
    @media only screen and (min-width: 1440px) and (max-width: 9999px) {
      .videos .video {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 40px - .05px)/2); }
        .videos .video:nth-child(2n+2), .videos .video:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 1200px) and (max-width: 1440px) {
      .videos .video {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 40px - .05px)/2); }
        .videos .video:nth-child(2n+2), .videos .video:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 960px) and (max-width: 1200px) {
      .videos .video {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 40px - .05px)/2); }
        .videos .video:nth-child(2n+2), .videos .video:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 768px) and (max-width: 960px) {
      .videos .video {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 40px - .05px)/2); }
        .videos .video:nth-child(2n+2), .videos .video:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 480px) and (max-width: 768px) {
      .videos .video {
        margin-bottom: 40px;
        margin-right: 40px !important;
        width: calc((100% - 40px)/2); }
        .videos .video:nth-child(2n+2), .videos .video:last-of-type {
          margin-right: 0px !important; } }
    @media only screen and (min-width: 320px) and (max-width: 480px) {
      .videos .video {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 0px)/1); }
        .videos .video:nth-child(1n+1), .videos .video:last-of-type {
          margin-right: 0px; } }
    @media only screen and (min-width: 0px) and (max-width: 320px) {
      .videos .video {
        margin-bottom: 40px;
        margin-right: 40px;
        width: calc((100% - 0px)/1); }
        .videos .video:nth-child(1n+1), .videos .video:last-of-type {
          margin-right: 0px; } }
@media only screen and (max-width: 960px) and (min-width: 1440px) and (max-width: 9999px) {
  .videos .video {
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc((100% - 20px - .05px)/2); }
    .videos .video:nth-child(2n+2), .videos .video:last-of-type {
      margin-right: 0px; } }

@media only screen and (max-width: 960px) and (min-width: 1200px) and (max-width: 1440px) {
  .videos .video {
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc((100% - 20px - .05px)/2); }
    .videos .video:nth-child(2n+2), .videos .video:last-of-type {
      margin-right: 0px; } }

@media only screen and (max-width: 960px) and (min-width: 960px) and (max-width: 1200px) {
  .videos .video {
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc((100% - 20px - .05px)/2); }
    .videos .video:nth-child(2n+2), .videos .video:last-of-type {
      margin-right: 0px; } }

@media only screen and (max-width: 960px) and (min-width: 768px) and (max-width: 960px) {
  .videos .video {
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc((100% - 20px - .05px)/2); }
    .videos .video:nth-child(2n+2), .videos .video:last-of-type {
      margin-right: 0px; } }

@media only screen and (max-width: 960px) and (min-width: 480px) and (max-width: 768px) {
  .videos .video {
    margin-bottom: 20px;
    margin-right: 20px !important;
    width: calc((100% - 20px)/2); }
    .videos .video:nth-child(2n+2), .videos .video:last-of-type {
      margin-right: 0px !important; } }

@media only screen and (max-width: 960px) and (min-width: 320px) and (max-width: 480px) {
  .videos .video {
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc((100% - 0px)/1); }
    .videos .video:nth-child(1n+1), .videos .video:last-of-type {
      margin-right: 0px; } }

@media only screen and (max-width: 960px) and (min-width: 0px) and (max-width: 320px) {
  .videos .video {
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc((100% - 0px)/1); }
    .videos .video:nth-child(1n+1), .videos .video:last-of-type {
      margin-right: 0px; } }
    .videos .video .icon {
      border-radius: 50%;
      width: 60px;
      height: 60px;
      color: #e1e1e1;
      font-size: 24px;
      text-align: center;
      line-height: 60px;
      position: absolute;
      left: 50%;
      top: 50%;
      margin-left: -30px;
      margin-top: -30px;
      z-index: 2;
      transition: background 0.5s ease, border 0.5s ease, opacity 0.5s ease;
      padding-left: 3px;
      background: #0d1114;
      opacity: 0; }
      @media (max-width: 960px) {
        .videos .video .icon {
          opacity: 1; } }
      @media (max-width: 768px) {
        .videos .video .icon {
          width: 40px;
          height: 40px;
          margin-left: -20px;
          margin-top: -20px;
          line-height: 40px;
          font-size: 18px; } }
    .videos .video h2 {
      left: 20px;
      bottom: 15px;
      position: absolute;
      font-size: 18px;
      z-index: 2;
      margin-bottom: 0px;
      transition: opacity 0.5s ease;
      line-height: 1;
      text-transform: none;
      font-weight: 500; }
      @media (max-width: 960px) {
        .videos .video h2 {
          font-size: 16px; } }
      @media (max-width: 768px) {
        .videos .video h2 {
          font-size: 14px;
          left: 15px;
          bottom: 10px; } }
    .videos .video:before {
      content: '';
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(13, 17, 20, 0), rgba(13, 17, 20, 0.65));
      transition: opacity 0.5s ease;
      opacity: 1;
      position: absolute;
      top: 0px;
      left: 0px;
      z-index: 1; }
    .videos .video:hover:before {
      opacity: 0; }
      @media (max-width: 960px) {
        .videos .video:hover:before {
          opacity: 1; } }
    .videos .video:hover h2 {
      opacity: 0; }
      @media (max-width: 960px) {
        .videos .video:hover h2 {
          opacity: 1; } }
    .videos .video:hover .icon {
      opacity: 1; }

.overlay {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(13, 17, 20, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  left: -9999px;
  opacity: 0; }
  .overlay.open {
    left: 0px;
    opacity: 1; }
  .overlay .overlay-content {
    width: calc(100% - 80px);
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    position: relative; }
    @media (max-width: 480px) {
      .overlay .overlay-content {
        width: calc(100% - 40px); } }
    .overlay .overlay-content .overlay-close {
      position: absolute;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #e1e1e1;
      color: #0d1114;
      top: -25px;
      right: -25px;
      text-align: center;
      line-height: 50px;
      font-size: 21px;
      cursor: pointer; }
      @media (max-width: 960px) {
        .overlay .overlay-content .overlay-close {
          width: 40px;
          height: 40px;
          top: -20px;
          right: -20px;
          line-height: 40px;
          font-size: 18px; } }
      @media (max-width: 480px) {
        .overlay .overlay-content .overlay-close {
          width: 30px;
          height: 30px;
          top: -15px;
          right: -15px;
          line-height: 30px;
          font-size: 14px; } }
.button {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  color: #0d1114;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 30px;
  background: #e1e1e1;
  display: inline-block;
  border-radius: 0px;
  text-transform: uppercase;
  transition: opacity 0.5s ease; }
  @media (max-width: 960px) {
    .button {
      font-size: 21px; }
      .button:hover {
        opacity: 1 !important; } }
  .button:hover {
    opacity: 0.75; }
  @media (max-width: 480px) {
    .button {
      font-size: 18px; } }
