/**************************
@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;
    }
} 
*/
#is-there-a-cure {
  color: #fff;
  bacckground-color: #000;
}
#is-there-a-cure .is-there-a-cure__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
  padding: 75px 0;
  text-align: center;
}
@media (max-width: 1024px) {
  #is-there-a-cure .is-there-a-cure__inner {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #is-there-a-cure .is-there-a-cure__inner {
    max-width: 600px;
    padding-inline: 16px;
  }
}
#is-there-a-cure .is-there-a-cure__inner__heading {
  margin-bottom: 25px;
}
#is-there-a-cure .is-there-a-cure__inner__heading h2 {
  font-family: 'Teko Bold';
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  #is-there-a-cure .is-there-a-cure__inner__heading h2 {
    font-family: 'Teko Bold';
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}
#is-there-a-cure .is-there-a-cure__inner__heading h2 > span {
  font-family: 'Teko Regular';
}
#is-there-a-cure .is-there-a-cure__inner__heading p {
  max-width: 725px;
  display: inline-block;
  margin: 0 auto;
  line-height: 1.6;
}
#is-there-a-cure .is-there-a-cure__inner__videos {
  margin-bottom: 50px;
}
#is-there-a-cure .is-there-a-cure__inner__videos .compare {
  position: relative;
  width: 800px;
  max-width: 100%;
  aspect-ratio: 1.77777778;
  margin: 2rem auto;
}
#is-there-a-cure .is-there-a-cure__inner__videos .image {
  position: absolute;
  inset: 0;
  max-width: 100%;
  z-index: 10;
  object-fit: cover;
  height: 100%;
  width: 50%;
}
#is-there-a-cure .is-there-a-cure__inner__videos .image-1,
#is-there-a-cure .is-there-a-cure__inner__videos .image-3 {
  right: auto;
  object-position: left;
}
#is-there-a-cure .is-there-a-cure__inner__videos .image-2,
#is-there-a-cure .is-there-a-cure__inner__videos .image-4 {
  left: auto;
  object-position: right;
  border-left: 4px solid #fff;
}
#is-there-a-cure .is-there-a-cure__inner__videos .slider-1,
#is-there-a-cure .is-there-a-cure__inner__videos .slider-2 {
  position: absolute;
  z-index: 20;
  inset: 0 -10px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
#is-there-a-cure .is-there-a-cure__inner__videos .compare:has(.slider-1:active) .image-2,
#is-there-a-cure .is-there-a-cure__inner__videos .compare:has(.slider-2:active) .image-4 {
  border-left: 4px solid #fff;
}
#is-there-a-cure .is-there-a-cure__inner__videos .thumb-1,
#is-there-a-cure .is-there-a-cure__inner__videos .thumb-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  background: none;
  background-image: url('../../../../../../../../content/dam/atvi/tony-hawk/chicago/shred/Chicago_icon_slider@2x.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 250ms ease-in-out;
}
@media (min-width: 768px) {
  #is-there-a-cure .is-there-a-cure__inner__videos .thumb-1,
  #is-there-a-cure .is-there-a-cure__inner__videos .thumb-2 {
    width: 80px;
    height: 80px;
  }
}
#is-there-a-cure .is-there-a-cure__inner__satire p {
  color: #808081;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
}
html[dir="rtl"] .image-1,
html[dir="rtl"] .image-3 {
  object-position: right;
}
html[dir="rtl"] .image-2,
html[dir="rtl"] .image-4 {
  object-position: left;
  border-left: none;
}
