/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;
 
@accent-color    : @green;
**************************/
/************************
IMPORT FONT FAMILIES HERE
************************/
/*
@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-BoldItalic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Italic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../../../../common/fonts/Tahoma.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

// LESS mixins for Teko font weights
.teko-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.teko-light() {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.teko-reg() {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
}

.teko-regular() {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

.teko-semi-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
}

.neosans-bold() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: normal;
}

.neosans-bold-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: italic;
}

.neosans-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: italic;
}

.neosans-reg() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tahoma-reg() {
    font-family: 'Tahoma', sans-serif; 
	font-weight: 400;
    font-style: normal;
}
*/
/* TO DO */
/*
//  M I X I N S
// -------------

// no conversion necessary
.convertRem(@selector, @amt) when (isunit(@amt, rem)),
(isunit(@amt, em)) {
	@{selector}: @amt;
}

// convert px -> rem
.convertRem(@selector, @amt, @remInPx: @fontSizeBase) when (ispixel(@amt)) {
	@{selector}: round(unit((@amt / @remInPx), rem), 2);
}

// Heading
.heading-base() {
	.teko-bold();
    text-transform: uppercase;
    .convertRem(letter-spacing, 1px);
}

.heading-xxs() {
	.heading-base();
    .convertRem(font-size, 16px);
}

.heading-xs() {
	.heading-base();
    .convertRem(font-size, 20px);
}

.heading-sm() {
    .heading-base();
    .convertRem(font-size, 28px);
}

.heading-md() {
    .heading-base();
    .convertRem(font-size, 36px);
}

.heading-lg() {
    //.heading-base();
    //.convertRem(font-size, 56px);
}

.heading-xl() {
    .heading-base();
    .convertRem(font-size, 60px);
}

// Custom heading size
.heading-custom(@font-size, @line-height, @letter-spacing:optional) {
    .heading-base();
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
}

// Body
.body-base() {
	.neosans-reg();
    .convertRem(letter-spacing, 0.75px);

    &:lang(ru) {
      .tahoma-reg();
    }
}

.body-xxs() {
    .body-base();
    .convertRem(font-size, 10px);
    .convertRem(line-height, 12px);
    letter-spacing: 1px;
}

.body-xs() {
    .body-base();
    .convertRem(font-size, 12px);
    .convertRem(line-height, 16px);
    letter-spacing: 1px;
}

.body-sm() {
    .body-base();
    .convertRem(font-size, 16px);
    .convertRem(line-height, 28px);
}

.body-md() {

}

.body-lg() {
    .body-base();
    .convertRem(font-size, 20px);
    .convertRem(line-height, 32px);
}

.body-bold() {
	.body-base();
    font-weight: bold;
}

.body-italic() {
	.body-base();
    font-style: italic;
}

.body-custom(@font-size, @line-height, @letter-spacing:optional) {
    .body-base();
    // Define your own font family on local css
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
} 
*/
/**********************
Home page css
**********************/
#overview-buy-container {
  position: relative;
}
#overview-buy-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/home/overview-buy-bg.webp) center center no-repeat;
  background-size: cover;
  z-index: -1;
}
body#home #playnow {
  display: none;
}
body#home #playnow h1 {
  display: none;
}
body#home #playnow h2 {
  display: block;
}

/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;
 
@accent-color    : @green;
**************************/
/************************
IMPORT FONT FAMILIES HERE
************************/
/*
@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-BoldItalic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Italic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../../../../common/fonts/Tahoma.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

// LESS mixins for Teko font weights
.teko-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.teko-light() {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.teko-reg() {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
}

.teko-regular() {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

.teko-semi-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
}

.neosans-bold() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: normal;
}

.neosans-bold-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: italic;
}

.neosans-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: italic;
}

.neosans-reg() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tahoma-reg() {
    font-family: 'Tahoma', sans-serif; 
	font-weight: 400;
    font-style: normal;
}
*/
/* TO DO */
/*
//  M I X I N S
// -------------

// no conversion necessary
.convertRem(@selector, @amt) when (isunit(@amt, rem)),
(isunit(@amt, em)) {
	@{selector}: @amt;
}

// convert px -> rem
.convertRem(@selector, @amt, @remInPx: @fontSizeBase) when (ispixel(@amt)) {
	@{selector}: round(unit((@amt / @remInPx), rem), 2);
}

// Heading
.heading-base() {
	.teko-bold();
    text-transform: uppercase;
    .convertRem(letter-spacing, 1px);
}

.heading-xxs() {
	.heading-base();
    .convertRem(font-size, 16px);
}

.heading-xs() {
	.heading-base();
    .convertRem(font-size, 20px);
}

.heading-sm() {
    .heading-base();
    .convertRem(font-size, 28px);
}

.heading-md() {
    .heading-base();
    .convertRem(font-size, 36px);
}

.heading-lg() {
    //.heading-base();
    //.convertRem(font-size, 56px);
}

.heading-xl() {
    .heading-base();
    .convertRem(font-size, 60px);
}

// Custom heading size
.heading-custom(@font-size, @line-height, @letter-spacing:optional) {
    .heading-base();
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
}

// Body
.body-base() {
	.neosans-reg();
    .convertRem(letter-spacing, 0.75px);

    &:lang(ru) {
      .tahoma-reg();
    }
}

.body-xxs() {
    .body-base();
    .convertRem(font-size, 10px);
    .convertRem(line-height, 12px);
    letter-spacing: 1px;
}

.body-xs() {
    .body-base();
    .convertRem(font-size, 12px);
    .convertRem(line-height, 16px);
    letter-spacing: 1px;
}

.body-sm() {
    .body-base();
    .convertRem(font-size, 16px);
    .convertRem(line-height, 28px);
}

.body-md() {

}

.body-lg() {
    .body-base();
    .convertRem(font-size, 20px);
    .convertRem(line-height, 32px);
}

.body-bold() {
	.body-base();
    font-weight: bold;
}

.body-italic() {
	.body-base();
    font-style: italic;
}

.body-custom(@font-size, @line-height, @letter-spacing:optional) {
    .body-base();
    // Define your own font family on local css
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
} 
*/
#thps-hero .atvi-card-inner-container {
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  #thps-hero .atvi-card-media-container:before {
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 17%, #000000 40%, #000000 100%);
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
#thps-hero .atvi-card-content-container {
  width: 1200px;
  padding-inline: 15px;
  margin: 0 auto;
  postion: relative;
}
#thps-hero .atvi-card-content-container:before {
  content: "";
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/home/character-hero-key-art.webp) center center no-repeat;
  background-size: contain;
  position: absolute;
  width: 80%;
  aspect-ratio: 1.54343808;
  top: 100px;
  left: 0%;
  top: 160px;
  translate: -262px;
}
@media screen and (max-width: 768px) {
  #thps-hero .atvi-card-content-container:before {
    top: 115px;
    translate: -50% 0;
    left: 50%;
  }
}
#thps-hero .atvi-card-content-container .atvi-card-custom-content > .layout-container-element {
  display: flex;
  flex-direction: column;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) {
  width: 400px;
  align-self: end;
  margin-top: 175px;
}
@media screen and (max-width: 768px) {
  #thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) {
    align-self: center;
    width: 100%;
    max-width: 400px;
    padding-inline: 15px;
    margin-top: 80%;
  }
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-image #hero-logo-container {
  max-width: 285px;
  margin: 0 auto;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-image img {
  width: 100%;
  display: block;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .hero-available {
  margin-top: 24px;
  text-align: center;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .hero-available p {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-media-gallery {
  margin-top: 24px;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-media-gallery #hero-video {
  position: relative;
  aspect-ratio: 1.63958333;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-media-gallery #hero-video:before {
  content: "";
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/home/video-frame.webp) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-media-gallery #hero-video img {
  clip-path: polygon(2% 2%, 98% 4%, 98% 100%, 2% 100%);
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-media-gallery #hero-video .atvi-gallery-thumbnail-entry .thumb-play-icon {
  display: none;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-media-gallery #hero-video .atvi-gallery-thumbnail-entry:hover:after {
  scale: 1.1;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-media-gallery #hero-video .atvi-gallery-thumbnail-entry:after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/common/play-btn.webp) center center no-repeat;
  background-size: contain;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  scale: 1;
  transition: .5s all;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-media-gallery .atvi-gallery-media-carousel-arrows {
  display: none;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .hero-preorder-description {
  margin-top: 24px;
  text-align: center;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-cta {
  margin-top: 24px;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-cta a {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #FFF;
  letter-spacing: 0px;
  /*-webkit-text-stroke-width: 1.35px;
	-webkit-text-stroke-color: #000;*/
  padding: 10px 60px;
  text-decoration: none;
  display: block;
  width: fit-content;
  text-align: center;
  border-radius: 50px;
  border: 2px solid #FFF;
  box-shadow: 2px 3px 2px 0px #000;
  text-shadow: #000000 2px 0px 0px, #000000 -2px 0px 0px, #000000 0px 2px 0px, #000000 0px -2px 0px, #000000 2px 2px 0px, #000000 -2px 2px 0px, #000000 2px -2px 0px, #000000 -2px -2px 0px;
  line-height: 1;
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/home/CTA-Primary_Orange.jpg) center center no-repeat;
  background-size: cover;
  transition: background-image 0.2s ease-in-out;
  margin: 0 auto;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-cta a::after {
  content: '';
  display: block;
  position: absolute;
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/common/CTA-Primary_Orange_Hover.png');
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-cta a:hover {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/common/CTA-Primary_Orange_Hover.png');
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-cta a .cta-text {
  display: inline-block;
  margin-top: 0px;
  position: relative;
  top: 3px;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(2) {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  #thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(2) {
    margin-top: 50px;
  }
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(2) .atvi-text {
  padding: 50px 15px;
  text-align: center;
  /*p:last-of-type {
                    margin-top: 20px;
                    .heading-md();
                    color: @orange;
                    text-transform: uppercase;
                }*/
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(2) .atvi-text #hero-overview {
  position: relative;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(2) .atvi-text #hero-overview:before {
  content: "";
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/home/white-divider.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -80px;
  height: 80px;
  width: 100%;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(2) .atvi-text #hero-overview:after {
  content: "";
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/home/white-divider.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 80px;
  height: 80px;
  width: 100%;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(2) .atvi-text h1 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Teko Bold' !important;
  font-weight: 700 !important;
  font-style: normal !important;
}
#thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(2) .atvi-text p {
  font-size: 18px;
}
html[lang='ar'] #thps-hero .atvi-card-content-container:before {
  right: 0;
  left: auto;
  translate: 170px;
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  html[lang='ar'] #thps-hero .atvi-card-content-container:before {
    top: 90px;
    translate: 0;
    left: 11%;
    right: auto;
  }
}
html[lang='ru'] #thps-hero .atvi-card-content-container .atvi-layout-container:nth-child(1) .atvi-cta a .cta-text {
  top: 0;
}

/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;
 
@accent-color    : @green;
**************************/
/************************
IMPORT FONT FAMILIES HERE
************************/
/*
@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-BoldItalic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Italic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../../../../common/fonts/Tahoma.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

// LESS mixins for Teko font weights
.teko-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.teko-light() {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.teko-reg() {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
}

.teko-regular() {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

.teko-semi-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
}

.neosans-bold() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: normal;
}

.neosans-bold-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: italic;
}

.neosans-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: italic;
}

.neosans-reg() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tahoma-reg() {
    font-family: 'Tahoma', sans-serif; 
	font-weight: 400;
    font-style: normal;
}
*/
/* TO DO */
/*
//  M I X I N S
// -------------

// no conversion necessary
.convertRem(@selector, @amt) when (isunit(@amt, rem)),
(isunit(@amt, em)) {
	@{selector}: @amt;
}

// convert px -> rem
.convertRem(@selector, @amt, @remInPx: @fontSizeBase) when (ispixel(@amt)) {
	@{selector}: round(unit((@amt / @remInPx), rem), 2);
}

// Heading
.heading-base() {
	.teko-bold();
    text-transform: uppercase;
    .convertRem(letter-spacing, 1px);
}

.heading-xxs() {
	.heading-base();
    .convertRem(font-size, 16px);
}

.heading-xs() {
	.heading-base();
    .convertRem(font-size, 20px);
}

.heading-sm() {
    .heading-base();
    .convertRem(font-size, 28px);
}

.heading-md() {
    .heading-base();
    .convertRem(font-size, 36px);
}

.heading-lg() {
    //.heading-base();
    //.convertRem(font-size, 56px);
}

.heading-xl() {
    .heading-base();
    .convertRem(font-size, 60px);
}

// Custom heading size
.heading-custom(@font-size, @line-height, @letter-spacing:optional) {
    .heading-base();
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
}

// Body
.body-base() {
	.neosans-reg();
    .convertRem(letter-spacing, 0.75px);

    &:lang(ru) {
      .tahoma-reg();
    }
}

.body-xxs() {
    .body-base();
    .convertRem(font-size, 10px);
    .convertRem(line-height, 12px);
    letter-spacing: 1px;
}

.body-xs() {
    .body-base();
    .convertRem(font-size, 12px);
    .convertRem(line-height, 16px);
    letter-spacing: 1px;
}

.body-sm() {
    .body-base();
    .convertRem(font-size, 16px);
    .convertRem(line-height, 28px);
}

.body-md() {

}

.body-lg() {
    .body-base();
    .convertRem(font-size, 20px);
    .convertRem(line-height, 32px);
}

.body-bold() {
	.body-base();
    font-weight: bold;
}

.body-italic() {
	.body-base();
    font-style: italic;
}

.body-custom(@font-size, @line-height, @letter-spacing:optional) {
    .body-base();
    // Define your own font family on local css
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
} 
*/
#thps-official-media {
  background: #000;
  padding-top: 70px;
  padding-bottom: 70px;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1024px) {
  #thps-official-media {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #thps-official-media {
    max-width: 600px;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 768px) {
  #thps-official-media {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#thps-official-media .atvi-text h2 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 3.75rem;
  line-height: 4.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #thps-official-media .atvi-text h2 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}
#thps-official-media .atvi-media-gallery #thps-gallery .inner-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  gap: 28px;
  /*gap: 20px;
                max-width: @container-width;
                padding-inline: @container-padding-sm;
                margin: 0 auto;
                width: 100%;*/
}
@media screen and (max-width: 768px) {
  #thps-official-media .atvi-media-gallery #thps-gallery .inner-container {
    grid-template-columns: repeat(1, minmax(0px, 1fr));
  }
}
#thps-official-media .atvi-media-gallery #thps-gallery .inner-container .atvi-gallery-thumbnail-entry {
  border: 2px solid #4f4f4f;
}
#thps-official-media .atvi-media-gallery #thps-gallery .atvi-gallery-expand {
  margin-top: 30px;
}
#thps-official-media .atvi-media-gallery #thps-gallery .atvi-gallery-expand button {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #FFF;
  letter-spacing: 0px;
  /*-webkit-text-stroke-width: 1.35px;
	-webkit-text-stroke-color: #000;*/
  padding: 10px 60px;
  text-decoration: none;
  display: block;
  width: fit-content;
  text-align: center;
  border-radius: 50px;
  border: 2px solid #FFF;
  box-shadow: 2px 3px 2px 0px #000;
  text-shadow: #000000 2px 0px 0px, #000000 -2px 0px 0px, #000000 0px 2px 0px, #000000 0px -2px 0px, #000000 2px 2px 0px, #000000 -2px 2px 0px, #000000 2px -2px 0px, #000000 -2px -2px 0px;
  line-height: 1;
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/home/CTA-Primary_Orange.jpg) center center no-repeat;
  background-size: cover;
  transition: background-image 0.2s ease-in-out;
  margin-bottom: 0;
  margin-inline: auto;
}
#thps-official-media .atvi-media-gallery #thps-gallery .atvi-gallery-expand button::after {
  content: '';
  display: block;
  position: absolute;
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/common/CTA-Primary_Orange_Hover.png');
}
#thps-official-media .atvi-media-gallery #thps-gallery .atvi-gallery-expand button:hover {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/common/CTA-Primary_Orange_Hover.png');
}
#thps-official-media .atvi-media-gallery #thps-gallery .atvi-gallery-expand button {
  padding: 10px 60px 6px;
}
html[lang='ru'] #thps-testimonials .atvi-cta a {
  padding: 9px 60px 8px;
}

/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;
 
@accent-color    : @green;
**************************/
/************************
IMPORT FONT FAMILIES HERE
************************/
/*
@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-BoldItalic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Italic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../../../../common/fonts/Tahoma.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

// LESS mixins for Teko font weights
.teko-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.teko-light() {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.teko-reg() {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
}

.teko-regular() {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

.teko-semi-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
}

.neosans-bold() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: normal;
}

.neosans-bold-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: italic;
}

.neosans-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: italic;
}

.neosans-reg() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tahoma-reg() {
    font-family: 'Tahoma', sans-serif; 
	font-weight: 400;
    font-style: normal;
}
*/
/* TO DO */
/*
//  M I X I N S
// -------------

// no conversion necessary
.convertRem(@selector, @amt) when (isunit(@amt, rem)),
(isunit(@amt, em)) {
	@{selector}: @amt;
}

// convert px -> rem
.convertRem(@selector, @amt, @remInPx: @fontSizeBase) when (ispixel(@amt)) {
	@{selector}: round(unit((@amt / @remInPx), rem), 2);
}

// Heading
.heading-base() {
	.teko-bold();
    text-transform: uppercase;
    .convertRem(letter-spacing, 1px);
}

.heading-xxs() {
	.heading-base();
    .convertRem(font-size, 16px);
}

.heading-xs() {
	.heading-base();
    .convertRem(font-size, 20px);
}

.heading-sm() {
    .heading-base();
    .convertRem(font-size, 28px);
}

.heading-md() {
    .heading-base();
    .convertRem(font-size, 36px);
}

.heading-lg() {
    //.heading-base();
    //.convertRem(font-size, 56px);
}

.heading-xl() {
    .heading-base();
    .convertRem(font-size, 60px);
}

// Custom heading size
.heading-custom(@font-size, @line-height, @letter-spacing:optional) {
    .heading-base();
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
}

// Body
.body-base() {
	.neosans-reg();
    .convertRem(letter-spacing, 0.75px);

    &:lang(ru) {
      .tahoma-reg();
    }
}

.body-xxs() {
    .body-base();
    .convertRem(font-size, 10px);
    .convertRem(line-height, 12px);
    letter-spacing: 1px;
}

.body-xs() {
    .body-base();
    .convertRem(font-size, 12px);
    .convertRem(line-height, 16px);
    letter-spacing: 1px;
}

.body-sm() {
    .body-base();
    .convertRem(font-size, 16px);
    .convertRem(line-height, 28px);
}

.body-md() {

}

.body-lg() {
    .body-base();
    .convertRem(font-size, 20px);
    .convertRem(line-height, 32px);
}

.body-bold() {
	.body-base();
    font-weight: bold;
}

.body-italic() {
	.body-base();
    font-style: italic;
}

.body-custom(@font-size, @line-height, @letter-spacing:optional) {
    .body-base();
    // Define your own font family on local css
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
} 
*/
#thps-testimonials {
  background: #000;
  padding-top: 70px;
  padding-bottom: 70px;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1024px) {
  #thps-testimonials {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #thps-testimonials {
    max-width: 600px;
    padding-inline: 16px;
  }
}
@media screen and (max-width: 768px) {
  #thps-testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#thps-testimonials .atvi-text h2 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 3.75rem;
  line-height: 4.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #thps-testimonials .atvi-text h2 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}
#thps-testimonials .atvi-carousel .atvi-inner-carousel-container {
  padding-inline: 75px;
}
@media screen and (max-width: 1024px) {
  #thps-testimonials .atvi-carousel .atvi-inner-carousel-container {
    padding-inline: 25px;
  }
}
#thps-testimonials .atvi-carousel .slick-dots {
  left: 0;
  bottom: -75px;
}
#thps-testimonials .atvi-carousel .slick-dots li {
  margin: 0 8px;
}
#thps-testimonials .atvi-carousel .slick-dots li button {
  position: relative;
  border: 2px #f18449 solid;
  border-radius: 100%;
  padding: 0;
  width: 15px;
  height: 15px;
}
#thps-testimonials .atvi-carousel .slick-dots li button .slick-dot-icon:before {
  display: none;
}
#thps-testimonials .atvi-carousel .slick-dots li.slick-active button {
  background: #f18449;
}
#thps-testimonials .atvi-carousel .slick-prev,
#thps-testimonials .atvi-carousel .slick-next {
  z-index: 5;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: .25s all;
}
#thps-testimonials .atvi-carousel .slick-prev .slick-prev-icon::before,
#thps-testimonials .atvi-carousel .slick-next .slick-prev-icon::before,
#thps-testimonials .atvi-carousel .slick-prev .slick-next-icon::before,
#thps-testimonials .atvi-carousel .slick-next .slick-next-icon::before {
  content: none;
}
#thps-testimonials .atvi-carousel .slick-prev:hover,
#thps-testimonials .atvi-carousel .slick-next:hover {
  scale: 1.1;
}
#thps-testimonials .atvi-carousel .slick-prev {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/common/arrow-previous.png');
  left: 0;
}
#thps-testimonials .atvi-carousel .slick-next {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/common/arrow-next.png');
  right: 0;
}
#thps-testimonials .atvi-carousel .slick-prev:hover,
#thps-testimonials .atvi-carousel .slick-next:hover {
  background-color: black;
  color: white;
}
#thps-testimonials .atvi-cta {
  margin-top: 23px;
}
#thps-testimonials .atvi-cta a {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 1.25rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: #FFF;
  letter-spacing: 0px;
  /*-webkit-text-stroke-width: 1.35px;
	-webkit-text-stroke-color: #000;*/
  padding: 10px 60px;
  text-decoration: none;
  display: block;
  width: fit-content;
  text-align: center;
  border-radius: 50px;
  border: 2px solid #FFF;
  box-shadow: 2px 3px 2px 0px #000;
  text-shadow: #000000 2px 0px 0px, #000000 -2px 0px 0px, #000000 0px 2px 0px, #000000 0px -2px 0px, #000000 2px 2px 0px, #000000 -2px 2px 0px, #000000 2px -2px 0px, #000000 -2px -2px 0px;
  line-height: 1;
  background: url(../../../../../../../content/dam/atvi/tony-hawk/chicago/home/CTA-Primary_Orange.jpg) center center no-repeat;
  background-size: cover;
  transition: background-image 0.2s ease-in-out;
  margin-bottom: 0;
  margin-inline: auto;
  padding: 10px 60px 6px;
}
#thps-testimonials .atvi-cta a::after {
  content: '';
  display: block;
  position: absolute;
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/common/CTA-Primary_Orange_Hover.png');
}
#thps-testimonials .atvi-cta a:hover {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/common/CTA-Primary_Orange_Hover.png');
}
#thps-testimonials .testimonials-disclaimer {
  position: relative;
  top: -45px;
}
#thps-testimonials .testimonials-disclaimer p {
  color: #808081;
  font-size: 16px;
  text-align: center;
}
html[lang="ar"] #thps-testimonials .atvi-carousel .slick-prev {
  background-image: url("../../../../../../../content/dam/atvi/tony-hawk/chicago/common/arrow-next.png");
  right: 0;
}
html[lang="ar"] #thps-testimonials .atvi-carousel .slick-next {
  background-image: url("../../../../../../../content/dam/atvi/tony-hawk/chicago/common/arrow-previous.png");
  right: auto;
  left: 0;
}

/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;
 
@accent-color    : @green;
**************************/
/************************
IMPORT FONT FAMILIES HERE
************************/
/*
@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-BoldItalic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Italic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../../../../common/fonts/Tahoma.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

// LESS mixins for Teko font weights
.teko-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.teko-light() {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.teko-reg() {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
}

.teko-regular() {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

.teko-semi-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
}

.neosans-bold() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: normal;
}

.neosans-bold-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: italic;
}

.neosans-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: italic;
}

.neosans-reg() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tahoma-reg() {
    font-family: 'Tahoma', sans-serif; 
	font-weight: 400;
    font-style: normal;
}
*/
/* TO DO */
/*
//  M I X I N S
// -------------

// no conversion necessary
.convertRem(@selector, @amt) when (isunit(@amt, rem)),
(isunit(@amt, em)) {
	@{selector}: @amt;
}

// convert px -> rem
.convertRem(@selector, @amt, @remInPx: @fontSizeBase) when (ispixel(@amt)) {
	@{selector}: round(unit((@amt / @remInPx), rem), 2);
}

// Heading
.heading-base() {
	.teko-bold();
    text-transform: uppercase;
    .convertRem(letter-spacing, 1px);
}

.heading-xxs() {
	.heading-base();
    .convertRem(font-size, 16px);
}

.heading-xs() {
	.heading-base();
    .convertRem(font-size, 20px);
}

.heading-sm() {
    .heading-base();
    .convertRem(font-size, 28px);
}

.heading-md() {
    .heading-base();
    .convertRem(font-size, 36px);
}

.heading-lg() {
    //.heading-base();
    //.convertRem(font-size, 56px);
}

.heading-xl() {
    .heading-base();
    .convertRem(font-size, 60px);
}

// Custom heading size
.heading-custom(@font-size, @line-height, @letter-spacing:optional) {
    .heading-base();
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
}

// Body
.body-base() {
	.neosans-reg();
    .convertRem(letter-spacing, 0.75px);

    &:lang(ru) {
      .tahoma-reg();
    }
}

.body-xxs() {
    .body-base();
    .convertRem(font-size, 10px);
    .convertRem(line-height, 12px);
    letter-spacing: 1px;
}

.body-xs() {
    .body-base();
    .convertRem(font-size, 12px);
    .convertRem(line-height, 16px);
    letter-spacing: 1px;
}

.body-sm() {
    .body-base();
    .convertRem(font-size, 16px);
    .convertRem(line-height, 28px);
}

.body-md() {

}

.body-lg() {
    .body-base();
    .convertRem(font-size, 20px);
    .convertRem(line-height, 32px);
}

.body-bold() {
	.body-base();
    font-weight: bold;
}

.body-italic() {
	.body-base();
    font-style: italic;
}

.body-custom(@font-size, @line-height, @letter-spacing:optional) {
    .body-base();
    // Define your own font family on local css
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
} 
*/
#thps-1-2-banner {
  display: flex;
  justify-content: center;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
  padding-top: 70px;
  padding-bottom: 70px;
  /*@media screen and (max-width: @tablet-s) {
		padding-top: @section-gap-m;
    	padding-bottom: @section-gap-m;
    }*/
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  #thps-1-2-banner {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #thps-1-2-banner {
    max-width: 600px;
    padding-inline: 16px;
  }
}
#thps-1-2-banner .atvi-card-inner-container {
  aspect-ratio: auto;
  background-image: url("../../../../../../../content/dam/atvi/tony-hawk/chicago/home/chicago-banner-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
  position: relative;
}
#thps-1-2-banner .atvi-card-inner-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 200px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #000000 100%);
}
@media screen and (min-width: 576px) {
  #thps-1-2-banner .atvi-card-inner-container::before {
    content: none;
  }
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-media-container .atvi-card-image {
  overflow: hidden;
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-media-container .atvi-card-image img {
  height: auto;
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container {
  position: relative;
  padding: 40px;
  border: 1px solid #404041;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container {
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container {
    padding: 12px;
  }
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-logo {
  margin-bottom: 5px;
  /*@media screen and (min-width: @tablet) {
                        margin-bottom: 16px;
                    }*/
  margin-bottom: 16px;
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-logo img {
  width: 260px;
}
@media screen and (max-width: 768px) {
  #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-logo img {
    width: 205px;
  }
}
@media screen and (max-width: 1024px) {
  #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-logo img {
    width: 120px;
  }
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text h2 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 2.25rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #FFF;
  font-family: 'Teko Bold' !important;
  font-weight: 700 !important;
  font-style: normal !important;
}
@media screen and (max-width: 768px) {
  #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text h2 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    font-size: 1.25rem;
    line-height: 1.25rem;
    text-transform: uppercase;
  }
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text p {
  font-family: 'Neo Sans Pro Regular';
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 0.75rem;
  line-height: 1.25rem;
  line-height: 1;
  margin-bottom: 9px;
  color: #b0b0b0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) {
  #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text p {
    font-family: 'Neo Sans Pro Regular';
    font-weight: normal;
    font-style: normal;
    letter-spacing: 1px;
    font-size: 1.25rem;
    line-height: 1.75rem;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text {
    display: block;
  }
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .banner-cta a {
  position: relative;
  padding-right: 25px;
  transition: transform 0.1s ease-in-out;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  line-height: 1;
  padding: 0;
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1rem;
  letter-spacing: 0.03rem;
  padding-top: 4px;
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .banner-cta a:hover {
  transform: scale(1.025);
}
@media screen and (max-width: 1024px) {
  #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .banner-cta a {
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    line-height: 1;
    padding: 0;
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    color: #FFF;
    font-size: 0.75rem;
    line-height: 0.75rem;
    letter-spacing: 0.03rem;
    padding-top: 3px;
  }
}
#thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .banner-cta a::after {
  content: "";
  background: url("../../../../../../../content/dam/atvi/tony-hawk/alcatraz-v2/common/ChevronRight_Icon.svg") center center no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
html[lang="ar"] #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content,
html[lang="rtl"] #thps-1-2-banner .atvi-card-inner-container .atvi-card-content-container .atvi-card-content {
  position: relative;
  right: 52%;
}

/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;
 
@accent-color    : @green;
**************************/
/************************
IMPORT FONT FAMILIES HERE
************************/
/*
@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-BoldItalic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Italic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../../../../common/fonts/Tahoma.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

// LESS mixins for Teko font weights
.teko-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.teko-light() {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.teko-reg() {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
}

.teko-regular() {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

.teko-semi-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
}

.neosans-bold() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: normal;
}

.neosans-bold-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: italic;
}

.neosans-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: italic;
}

.neosans-reg() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tahoma-reg() {
    font-family: 'Tahoma', sans-serif; 
	font-weight: 400;
    font-style: normal;
}
*/
/* TO DO */
/*
//  M I X I N S
// -------------

// no conversion necessary
.convertRem(@selector, @amt) when (isunit(@amt, rem)),
(isunit(@amt, em)) {
	@{selector}: @amt;
}

// convert px -> rem
.convertRem(@selector, @amt, @remInPx: @fontSizeBase) when (ispixel(@amt)) {
	@{selector}: round(unit((@amt / @remInPx), rem), 2);
}

// Heading
.heading-base() {
	.teko-bold();
    text-transform: uppercase;
    .convertRem(letter-spacing, 1px);
}

.heading-xxs() {
	.heading-base();
    .convertRem(font-size, 16px);
}

.heading-xs() {
	.heading-base();
    .convertRem(font-size, 20px);
}

.heading-sm() {
    .heading-base();
    .convertRem(font-size, 28px);
}

.heading-md() {
    .heading-base();
    .convertRem(font-size, 36px);
}

.heading-lg() {
    //.heading-base();
    //.convertRem(font-size, 56px);
}

.heading-xl() {
    .heading-base();
    .convertRem(font-size, 60px);
}

// Custom heading size
.heading-custom(@font-size, @line-height, @letter-spacing:optional) {
    .heading-base();
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
}

// Body
.body-base() {
	.neosans-reg();
    .convertRem(letter-spacing, 0.75px);

    &:lang(ru) {
      .tahoma-reg();
    }
}

.body-xxs() {
    .body-base();
    .convertRem(font-size, 10px);
    .convertRem(line-height, 12px);
    letter-spacing: 1px;
}

.body-xs() {
    .body-base();
    .convertRem(font-size, 12px);
    .convertRem(line-height, 16px);
    letter-spacing: 1px;
}

.body-sm() {
    .body-base();
    .convertRem(font-size, 16px);
    .convertRem(line-height, 28px);
}

.body-md() {

}

.body-lg() {
    .body-base();
    .convertRem(font-size, 20px);
    .convertRem(line-height, 32px);
}

.body-bold() {
	.body-base();
    font-weight: bold;
}

.body-italic() {
	.body-base();
    font-style: italic;
}

.body-custom(@font-size, @line-height, @letter-spacing:optional) {
    .body-base();
    // Define your own font family on local css
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
} 
*/
/**********************
Social css
**********************/
#thps-3-4-social {
  /*.container-padding();
    margin: 0 auto;
    max-width: @container-width;*/
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
  text-align: center;
  padding: 24px 54px 44px;
}
@media (max-width: 1024px) {
  #thps-3-4-social {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #thps-3-4-social {
    max-width: 600px;
    padding-inline: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #thps-3-4-social {
    padding-bottom: 24px;
  }
}
#thps-3-4-social .social-header {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  font-size: 1.75rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 20px;
}
#thps-3-4-social .social-icons {
  margin-bottom: 64px;
}
@media (min-width: 1200px) {
  #thps-3-4-social .social-icons ul {
    width: 560px;
    margin: 0 auto;
  }
}
#thps-3-4-social .social-icons a {
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
#thps-3-4-social .social-icons a.fb-icon {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/alcatraz-v2/common/social/Facebook_Icon.svg');
}
#thps-3-4-social .social-icons a.x-icon {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/alcatraz-v2/common/social/X_Icon.svg');
}
#thps-3-4-social .social-icons a.ig-icon {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/alcatraz-v2/common/social/Instagram_Icon.svg');
}
#thps-3-4-social .social-icons a.yt-icon {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/alcatraz-v2/common/social/Youtube_Icon.svg');
}
#thps-3-4-social .social-icons a.tiktok-icon {
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/alcatraz-v2/common/social/TikTok_Icon.svg');
}
#thps-3-4-social .social-icons a span {
  text-indent: 102%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  letter-spacing: 0;
}
#thps-3-4-social .social-icons .icon-btn {
  background: none;
  border: none;
}
#thps-3-4-social .social-icons .icon {
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: transform 0.1s ease-in-out;
}
@media screen and (min-width: 1024px) {
  #thps-3-4-social .social-icons .icon {
    width: 32px;
    height: 32px;
  }
}
#thps-3-4-social .social-icons .icon:hover {
  cursor: pointer;
  transform: scale(1.15);
}
#thps-3-4-social .social-icons::after {
  content: "";
  display: block;
  width: calc(100% - 24px);
  height: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 64px;
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/home/social-texture-orange.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000000 20%, #000000 80%, transparent 100%);
}
@media screen and (min-width: 1024px) {
  #thps-3-4-social .social-icons::after {
    margin-top: 40px;
    background-size: contain;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

body.test-b #get-the-game {
  display: none;
}
body.test-b #playnow {
  display: block !important;
  margin-bottom: 70px;
}

/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;
 
@accent-color    : @green;
**************************/
/************************
IMPORT FONT FAMILIES HERE
************************/
/*
@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Teko';
    src: url('../../../../common/fonts/Teko-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Bold.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Regular.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-BoldItalic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neo Sans Pro';
    src: url('../../../../common/fonts/NeoSansPro-Italic.woff2') format('woff2'),
        url('../../../../common/fonts/NeoSansPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../../../../common/fonts/Tahoma.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

// LESS mixins for Teko font weights
.teko-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
}

.teko-light() {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
}

.teko-reg() {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
}

.teko-regular() {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

.teko-semi-bold() {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
}

.neosans-bold() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: normal;
}

.neosans-bold-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 700;
    font-style: italic;
}

.neosans-italic() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: italic;
}

.neosans-reg() {
    font-family: 'Neo Sans Pro',sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tahoma-reg() {
    font-family: 'Tahoma', sans-serif; 
	font-weight: 400;
    font-style: normal;
}
*/
/* TO DO */
/*
//  M I X I N S
// -------------

// no conversion necessary
.convertRem(@selector, @amt) when (isunit(@amt, rem)),
(isunit(@amt, em)) {
	@{selector}: @amt;
}

// convert px -> rem
.convertRem(@selector, @amt, @remInPx: @fontSizeBase) when (ispixel(@amt)) {
	@{selector}: round(unit((@amt / @remInPx), rem), 2);
}

// Heading
.heading-base() {
	.teko-bold();
    text-transform: uppercase;
    .convertRem(letter-spacing, 1px);
}

.heading-xxs() {
	.heading-base();
    .convertRem(font-size, 16px);
}

.heading-xs() {
	.heading-base();
    .convertRem(font-size, 20px);
}

.heading-sm() {
    .heading-base();
    .convertRem(font-size, 28px);
}

.heading-md() {
    .heading-base();
    .convertRem(font-size, 36px);
}

.heading-lg() {
    //.heading-base();
    //.convertRem(font-size, 56px);
}

.heading-xl() {
    .heading-base();
    .convertRem(font-size, 60px);
}

// Custom heading size
.heading-custom(@font-size, @line-height, @letter-spacing:optional) {
    .heading-base();
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
}

// Body
.body-base() {
	.neosans-reg();
    .convertRem(letter-spacing, 0.75px);

    &:lang(ru) {
      .tahoma-reg();
    }
}

.body-xxs() {
    .body-base();
    .convertRem(font-size, 10px);
    .convertRem(line-height, 12px);
    letter-spacing: 1px;
}

.body-xs() {
    .body-base();
    .convertRem(font-size, 12px);
    .convertRem(line-height, 16px);
    letter-spacing: 1px;
}

.body-sm() {
    .body-base();
    .convertRem(font-size, 16px);
    .convertRem(line-height, 28px);
}

.body-md() {

}

.body-lg() {
    .body-base();
    .convertRem(font-size, 20px);
    .convertRem(line-height, 32px);
}

.body-bold() {
	.body-base();
    font-weight: bold;
}

.body-italic() {
	.body-base();
    font-style: italic;
}

.body-custom(@font-size, @line-height, @letter-spacing:optional) {
    .body-base();
    // Define your own font family on local css
    .convertRem(font-size, @font-size);
	line-height: @line-height;
    & when not (letter-spacing = optional) {
    	letter-spacing: @letter-spacing;
    }
} 
*/
#foundry-demo {
  margin-bottom: 100px;
}
#foundry-demo .foundry-demo-body {
  color: #fff;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1024px) {
  #foundry-demo .foundry-demo-body {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #foundry-demo .foundry-demo-body {
    max-width: 600px;
    padding-inline: 16px;
  }
}
#foundry-demo .foundry-demo-body .atvi-card-inner-container {
  padding: 0 20px;
}
@media (min-width: 992px) {
  #foundry-demo .foundry-demo-body .atvi-card-inner-container {
    display: flex;
  }
}
@media (min-width: 992px) {
  #foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-media-container {
    width: 50%;
    order: 1;
  }
}
#foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-media-container .atvi-card-media .atvi-card-image {
  position: relative;
}
#foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-media-container .atvi-card-media .atvi-card-image::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: url('../../../../../../../content/dam/atvi/tony-hawk/chicago/home/image-border-strokes.png');
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  #foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-content-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text {
  padding: 40px;
  background-color: #000;
}
@media (min-width: 992px) {
  #foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text {
    padding: 0 40px 0 0;
    background: none;
  }
}
#foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text h3 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text h3 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
  }
}
#foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text p {
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: 1px;
}
#foundry-demo .foundry-demo-body .atvi-card-inner-container .atvi-card-content-container .atvi-card-content .atvi-card-text p.legal {
  font-size: 12px;
  color: #808081;
  margin-top: 24px;
  line-height: 16px;
}

