  /*FONTS*/
@font-face {
    font-family: 'Heebo';
    src: url('/e-content/4x4-series/assets/fonts/Heebo-Regular.woff2') format('woff2'),
        url('/e-content/4x4-series/assets/fonts/Heebo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('/e-content/4x4-series/assets/fonts/Heebo-Light.woff2') format('woff2'),
        url('/e-content/4x4-series/assets/fonts/Heebo-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('/e-content/4x4-series/assets/fonts/Heebo-Bold.woff2') format('woff2'),
        url('/e-content/4x4-series/assets/fonts/Heebo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('/e-content/4x4-series/assets/fonts/MyriadPro-Regular.woff2') format('woff2'),
        url('/e-content/4x4-series/assets/fonts/MyriadPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/*BASE*/
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html, 
body {
	overflow-x: hidden;
}

body {
	font-family: 'Heebo';
	font-weight: 400;
	line-height: 1.2;
	background-color: #000;
	position: relative;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

/*GENERAL*/
.container {
	max-width: 1450px;
	width: 100%;
	padding-left: 35px;
	padding-right: 35px;
	margin-left: auto;
	margin-right: auto;
}


.hide-desk {
	display: none;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

/*MAIN HEADER*/
.main-header {
	background-color: #21211f;
	padding: 15px 0;
	height: 70px;
}

.main-header .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.main-header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.lang-selector-wrap {
	color: #fff;
	font-family: "Orbitron", sans-serif;
	font-size: 11px;
	letter-spacing: 0.2px;
	margin-right: 40px;
	position: relative;
}

.lang-selector-wrap:hover .lang-selector-menu {
	opacity: 1;
}

.lang-selector-dropdown {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
}

.lang-selector-dropdown img {
	width: 22px;
	height: auto;
	margin-right: 10px;
}

.lang-selector-menu {
	position: absolute;
	top: 100%;
	left: 11px;
	background-color: #21211f;
	padding: 20px;
	z-index: 999;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.lang-selector-menu a {
	display: inline-block;
	color: #fff;
}

.lang-selector-menu a:not(:last-child) {
	margin-bottom: 5px;
}

.lang-selector-menu a:hover {
	color: #ddd;
}

.right-menu-toggler {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 23px;
	height: 21px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}


.right-menu-toggler.active span:nth-of-type(1) {
	-webkit-transform: translate(0, 9px) rotate(-45deg);
	        transform: translate(0, 9px) rotate(-45deg);
}

.right-menu-toggler.active span:nth-of-type(2) {
	width: 0;
}

.right-menu-toggler.active span:nth-of-type(3) {
  	-webkit-transform: translate(0, -9px) rotate(45deg);
  	        transform: translate(0, -9px) rotate(45deg);
	width: 100%;
}

.right-menu-toggler span {
	display: block;
	background-color: #fff;
	width: 100%;
	height: 2px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.right-menu-toggler span:last-child {
	width: 12px;
}

/*FOOTER*/
.main-footer {
	height: 100px;
	padding: 30px 0;
	background-color: #000;
}

.main-footer .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.main-footer ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap:  wrap;
	    flex-wrap:  wrap;
}

.main-footer li a {
	font-size: 12px;
}

.footer-links1 {
	margin-bottom: 10px;
}

.footer-links1 li:not(:first-child):before {
	content: '|';
	color: #fff;
	display: inline-block;
	margin: 0 15px;
}

.footer-links1 li a {
	color: #fff;
}

.footer-links1 li a:hover {
	color: #fccf00;
}

.footer-links2  {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
	-webkit-column-gap: 15px;
	   -moz-column-gap: 15px;
	        column-gap: 15px;
}

.footer-links2 li,
.footer-links2 li a {
	font-size: 10px;
	font-weight: 300;
	color: #616161;
}

.footer-links2 li a:hover {
	color: #eee;
}

/*RIGHT MENU*/
.right-menu {
	background-color: rgba(0, 0, 0, 0.8);
	width: 300px;
	padding: 50px 10px;
	position: absolute;
	right: -300px;
	top: 70px;
	/*bottom: 100px;*/
	height: calc(100% - 170px);
	z-index: 99;
	-webkit-transition: right 0.3s;
	transition: right 0.3s;
}

.right-menu.active {
	right: 0;
}

/*.right-menu ul {
	margin: 20px 0;
}*/

.right-menu ul li {
	position: relative;
	padding: 20px;
	height: 60px;
	border-bottom: 1px solid #fff;
}

.right-menu ul li:first-child {
	border-top: 1px solid #fff;
}

.right-menu li img {
	position: absolute;
	top: 20px;
	left: 20px;
	-webkit-transition: opacity 0.3s ;
	transition: opacity 0.3s ;
}

.right-menu li a:hover .white,
.right-menu li .yellow {
	opacity: 0;
}

.right-menu li a:hover .yellow {
	opacity: 1;
}

.right-menu-title {
	padding: 20px;
}

.right-menu-title a {
	font-size: 12px;
	color: #fccf00;
}


/* HOME */
.hero-wrap,
.home-hero {
	position: relative;
	height: calc(100vh - 170px);
}

.hero-wrap {
	min-height: 745px;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.hero-intro {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform:  translateY(-50%);
	        transform:  translateY(-50%);
	z-index: 2;
}

.home-logo {
	display: block;
	max-width: 500px;
	width: 100%;
	height: auto;
	margin: 0 auto 60px;
}

.home-hero-bg {
	opacity: 0;
	-webkit-transition: 0.3s opacity;
	transition: 0.3s opacity;
}

.home-hero-bg.active {
	opacity: 1;
}

.next-btn-wrap {
	position: absolute;
	bottom: 50px;
	right: 0;
	width: 100%;
	z-index: 9;
}

.next-btn-wrap .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
}

.next-btn {
	font-family: "Orbitron", sans-serif;
	font-size: 14px;
	font-weight: 700;
	/*position: absolute;
	right: 5%;
	bottom: 10%;
	z-index: 1;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: 0.3s -webkit-transform;
	transition: 0.3s -webkit-transform;
	transition: 0.3s transform;
	transition: 0.3s transform, 0.3s -webkit-transform;
	letter-spacing: 0.8px;
}

.next-btn:hover {
	color: #fccf00;
	/*-webkit-transform: translateX(5px);
	        transform: translateX(5px);*/
}

.next-icon-desk {
	margin-left: 10px;
}

.next-icon-mob {
	display: none;
	margin-top: 10px;
}

.back-btn {
	margin-right: 40px;
}

.back-btn .next-icon-desk {
	transform: rotate(180deg);
	margin-left: 0;
	margin-right: 10px;
}

.back-btn .next-icon-mob {
	transform: rotate(180deg);
	margin: 0 0 10px;
}

.back-btn:hover {
	/*-webkit-transform: translateX(-5px);
	        transform: translateX(-5px);*/
}

.tire-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.tire-item {
	position: relative;
	margin: 0 -50px;
}

.tire-item:hover {
	z-index: 1;
}

.tire-item:hover .tire-30 {
	display: block;
}

.tire-item:hover .tire-100 {
	display: none;
}

.tire-link {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.tire-100 {
	width: auto;
	height: 300px;
}

.tire-30 {
	width: auto;
	height: 300px;
	display: none;
}

/* PRODUCT */
.product-hero {
	font-family: "Orbitron", sans-serif;
	color: #fff;
}

.product-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-column-gap: 20px;
	   -moz-column-gap: 20px;
	        column-gap: 20px;
}

.product-info {
	width: 70%;
}

.product-vehicle-type {
	width: 30%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.product-logo {
	display: block;
	max-width: 750px;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.product-title {
	max-width: 350px;
	width: 100%;
	height: auto;
}

.product-desc {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin: 10px 0 30px;
}

.product-vehicle-type ul {
	background-image: url('/e-content/4x4-series/assets/images/xt71/Tire-Spec-Border-top-right.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	max-width: 250px;
	width: 100%;
	min-height: 80px;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 25px;
	   -moz-column-gap: 25px;
	        column-gap: 25px;
	padding-top: 20px;
}

.product-vehicle-type ul li {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.5px;
}

.product-vehicle-type ul li img {
	display: block;
	width: auto;
	height: 30px;
	margin: 0 auto;
}

.tire-size-btn {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 10px;
	color: #000;
	text-transform: uppercase;
	max-width: 150px;
	width: 100%;
	position: relative;
	margin: 10px 10px 0 0;
	text-align: center;
	cursor: pointer;
	-webkit-transition: max-width 0.3s;
	transition: max-width 0.3s;
}

.tire-size-btn:hover {
	max-width: 170px;
}

.tire-size-btn img {
	width: 20px;
	height: auto;
	margin-right: 10px;
}

.tire-size-btn:before {
	content: '';
	background-color: #fccf00;
	-webkit-transform: skewX(-20deg);
	        transform: skewX(-20deg);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tire-size-btn span {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	z-index: 1;
	background-color: #fccf00;
}


.product-tire {
	position: relative;
	/*margin-bottom: 45px;*/
}

.product-tire-img {
	display: block;
	max-width: 400px;
	width: 100%;
	height: auto;
}

/* PING */
.ping {
  -webkit-animation: ping 1.8s ease-in-out infinite both;
  animation: ping 1.8s ease-in-out infinite both;
}
@-webkit-keyframes ping {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0.9;
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0.1;
  }
}
@keyframes ping {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0.9;
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0.1;
  }
}

.product-dot {
	position: absolute;
	bottom: -12px;
	left: -200px;
	border-radius: 50%;
	background-color: #fccf00;
	width: 25px;
	height: 25px;
}

.product-dot:before {
	position: absolute;
	top: -7px;
	left: -7px;
	content: '';
	display: block;
	background-color: #fccf00;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	opacity: 0.5;
	-webkit-animation: 2s ping infinite;
	        animation: 2s ping infinite;
}

.product-connector:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -200px;
	width: 200px;
	height: 1px;
	background-color: #fccf00;
}

.product-connector:after {
	content: '';
	position: absolute;
	top: 34px;
	left: 0;
	width: 1px;
	height: calc(100% - 34px);
	background-color: #fccf00;
}

.product-feature {
	padding-left: 17px;
	position: absolute;
	top: 15%;
	left: 25%;
}

.product-feature-percentage {
	top: 0;
}

.product-feature-percentage li:last-child {
	height: auto;
	padding: 0;
	background: none;
}

.product-feature-percentage li:last-child:before {
	display: none;
}

.product-feature li {
	font-size: 10.5px;
	font-weight: 600;
	background-image: url('/e-content/4x4-series/assets/images/xt71/Tire-Spec-Border.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	max-width: 240px;
	height: 66px;
	padding: 15px 10px 10px 15px;
	text-transform: uppercase;
	margin-bottom: 20px;
	position: relative;
	letter-spacing: 0.6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.product-feature li:hover {
	color: #fccf00;
}

.product-feature li:before {
	content: '';
	position: absolute;
	display: inline-block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: -17px;
	width: 17px;
	height: 1px;
	background-color: #fccf00;
}

.product-category {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 15px;
	   -moz-column-gap: 15px;
	        column-gap: 15px;
}

.product-category li {
	font-size: 14px;
	font-weight: 700;
	background-image: url('/e-content/4x4-series/assets/images/xt71/blackbox.svg');
	background-size: cover;
	min-width: 174px;
	height: 43px;
	padding: 20px 20px 10px 20px;
	text-align: center;
	letter-spacing: 0.2px;
	text-transform: uppercase;
}

/*PRODUCT FEATURES*/
.product-feature-hero .hero-intro {
	margin-top: -30px;
}

.product-feature-hero .next-btn-wrap {
	bottom: 40px;
}

.product-feature-flex {
	font-family: "Orbitron", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	position: relative;
	color: #fff;
}

.product-feature-info {
	padding: 140px 0 0 30px;
	width: 40%;
}

.product-feature-video {
	width: 60%;
}

.product-feature-video video {
	max-width: 900px;
	width: 100%;
	height: auto;
}

.product-feature-box {
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('/e-content/4x4-series/assets/images/xt71/blackbox.svg');
	background-size: cover;
	max-width: 370px;
	width: 100%;
	height: 95px;
	font-size: 25px;
	font-weight: 700;
	padding: 30px 30px 0 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.product-feature-title {
	font-size: 21px;
	color: #fbcf00;
	text-transform: uppercase;
	margin: 20px 0;
	letter-spacing: 1px;
}

.product-feature-desc {
	font-family: 'Myriad Pro';
	font-size: 17px;
	max-width: 330px;
	letter-spacing: 1px;
}

.product-feature-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: end;
	margin-top: 60px;
	max-width: 370px;
}

.product-feature-slender {
	position: relative;
	padding: 0 20px;
}

.product-feature-slender img {
	max-width: 100%;
	height: auto;
}

.product-feature-slender:before {
	content: '';
	position: absolute;
	top: 20%;
	left: 0;
	width: 100%;
	bottom: 30%;
	z-index: -1;
	background-color: #fbcf00;
}


/*TIRE TABLE*/
.tire-table-wrap {
	max-width: 925px;
	width: 100%;
	margin: 0 auto;
}

.tire-table-wrap ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
	width: 100%;
	margin-bottom: -10px;
}

.tire-table-wrap ul li {
	width: 25%;
	text-align: center;
	position: relative;
}

.tire-table-wrap ul li:hover .tire-table-tire {
	-webkit-transform: translateX(-10px);
	        transform: translateX(-10px);
}

.tire-table-wrap ul li a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tire-table-logo {
	max-width: 200px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 10px;
}

.tire-table-tire {
	max-width: 115px;
	width: 100%;
	height: auto;
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

/* RATING */
.rating-table-wrap {
	max-width: 1075px;
	padding-left: 150px;
}

.rating-table {
	max-width: 925px;
	width: 100%;
	height: 373px;
	background-image: url('/e-content/4x4-series/assets/images/rating/bg.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.rating-tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 25%;
	position: relative;
}

.rating-icon {
	font-family: "Orbitron", sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	display: block;
	/*max-width: 40px;*/
	width: 100%;
	height: auto;
	margin: 0 auto 10px; 
	text-transform: uppercase;
}

.rating-icon img {
	display: block;
	max-width: 40px;
	width: 100%;
	height: auto;
	margin: 0 auto 10px; 
}

.rating-th {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 150px;
	left: -150px;
	color: #fff;
}

.rating-td {
	text-align: center;
}

.rating-td {
	width: 25%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.rating-td:not(:first-child) {
	border-left: 1px dashed #fccf00;
}

.rating-td img {
	height: 20px;
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.rating-td img:hover {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}

/*TIRE SIZE*/
.tire-size-modal-wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*overflow: auto;*/
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	padding: 50px;
}

.tire-size-close {
	position: absolute;
	font-size: 30px;
	color: #ccc;
	top: 0;
	right: 0;
	cursor: pointer;
}

.tire-size-close:hover {
	color: #fff;
}

.tire-size-modal-inner {
	margin: calc(10vh - 50px) auto 0;
	max-width: 700px;
	width: 100%;
	position: relative;
	padding-top: 50px;
}

.tire-size-modal {
	width: 100%;	
	height: 70vh;
	overflow: auto;
	border-radius: 5px;
	/*border: 1px dashed #fccf00;*/
	/*box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19);*/
}

/* width */
.tire-size-table {
	/*table-layout: fixed;*/
	width: 100%;
	border-collapse: collapse;
}

.tire-size-table th,
.tire-size-table td {
	/*font-family: "Orbitron", sans-serif;*/
	font-family: 'Heebo';
	padding: 10px;
	white-space: nowrap;
}

.tire-size-table th {
	text-align: left;
	font-weight: 700;
	background-color: #3c3b36;
	color: #fff;
}

.tire-size-table td:first-child {
	font-weight: 700;
	background-color: #fccf00;
	color: #000;
}

.tire-size-table td {
	background-color: #000;
	color: #fff;
}

/*RESPONSIVE*/
@media (max-height: 800px) {
	.home-logo {
		max-width: 350px;
	}
	.tire-item {
		margin: 0 -40px;
	}
	.tire-100, .tire-30 {
		height: 250px;
	}

	/*.product-logo {
		max-width: calc(750px * 0.8);
	}

	.product-pathfinder {
		max-width: calc(350px * 0.8);
	}

	.product-tire-img {
	    max-width: calc(300px * 0.8);
	}*/
}

@media (max-width: 767px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.hide-desk {
		display: block;
	}
	.hide-mob {
		display: none;
	}
	.main-footer {
		height: auto;
		text-align: center;
	}
	.main-footer .container {
		display: block;
	}

	.main-footer ul {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		row-gap: 10px;
	}
	.footer-links1 li:not(:first-child):before {
		margin: 0 10px;
	}
	.footer-links1 {
		margin-top: 20px;
	}
	.home-hero .hero-intro {
		top: 5%;
		-webkit-transform: none;
		        transform: none;
		height: 100%;
	}
	.home-hero .container {
		height: 70%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.home-hero:before {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 30%;
		content: '';
		background-image: -webkit-linear-gradient(rgba(0,0,0,1) 80%, rgba(0,0,0,0));
		background-image: linear-gradient(rgba(0,0,0,1) 80%, rgba(0,0,0,0));
	}
	.home-hero:after {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 15%;
		content: '';
		background-image: -webkit-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1) 80%);
		background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1) 80%);
	}
	.tire-item {
		margin: 0 -25px;
	}
	.tire-30, 
	.tire-100 {
		height: 150px;
	}
	.next-btn {
		font-size: 12px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		letter-spacing: 3px;
		text-align: center;
		max-width: 150px;
		margin: 0 auto;
	}
	.next-btn:hover {
		-webkit-transform: translateX(0) translateY(10px);
		        transform: translateX(0) translateY(10px);
	}
	.next-icon-desk {
		display: none;
	}
	.next-icon-mob {
		display: block;
	}
	.back-btn {
		margin-right: 30px;
	}
	.product-hero {
		height: auto;
	}
	.product-hero:before {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 22%;
		content: '';
		background-image: -webkit-linear-gradient(rgba(0,0,0,1) 80%, rgba(0,0,0,0));
		background-image: linear-gradient(rgba(0,0,0,1) 80%, rgba(0,0,0,0));
	}
	.product-hero:after {
		position: absolute;
		bottom: 41%;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 15%;
		content: '';
		background-image: -webkit-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1) 80%);
		background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1) 80%);
	}
	.product-hero .hero-intro {
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: none;
		        transform: none;
	}
	.product-hero .hero-bg {
		top: 15%;
		-o-object-position: right;
		   object-position: right;
		height: 40%;
	}
	.product-header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding-top: 50px;
	}
	.product-info,
	.product-vehicle-type {
		width: 100%;
	}
	.product-info {
		text-align: center;
	}
	.product-title {
		max-width: 270px;
	}
	.product-desc {
		font-size: 9px;
	}
	.product-vehicle-type {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.product-vehicle-type ul li {
		font-size: 11px;
	}
	.product-tire {
		margin-top: 40vh;
	}
	.product-tire-img {
		width: 160px;
		height: 220px;
		margin: 0 auto 30px;
		-o-object-fit: cover;
		   object-fit: cover;
		-o-object-position: left;
		   object-position: left;
	}
	.product-feature {
		position: relative;
		top:  auto;
		left: auto;
		padding-left: 0;
		max-width: 430px;
		margin: auto;
	}
	.product-feature ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		row-gap:  15px;
		-webkit-column-gap: 25px;
		   -moz-column-gap: 25px;
		        column-gap: 25px;

	}
	.product-feature li {
		max-width: 180px;
		width: calc(50% - 15px);
		height: 73px;
		font-size: 9px;
		background-image: url('/e-content/4x4-series/assets/images/xt71/Tire-Spec-Border-mob.png');
		background-size: 100% 100%;
		margin: 0 auto;
		background-color: #000;
		z-index: 1;
	}
	.product-feature li:before {
		display: none;
	}
	.product-feature li:first-child:before {
		display: block;
		width: 100%;
		left: 100%;
	}
	.product-dot {
		top: -83px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
	.product-connector:before {
		display: none;
	}
	.product-connector:after {
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
		height: 100%;
		top: -58px;
	}
	.product-feature-percentage li:last-child {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		max-width: 100%;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.product-category {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin-top: 70px;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		row-gap:  15px;
	}
	.product-category li {
		font-size: 10px;
		min-width: 155px;
		height: 40px;
		background-image: url('/e-content/4x4-series/assets/images/xt71/blackbox-mob.png');
	}
	.product-hero .next-btn-wrap {
		position: relative;
		bottom: auto;
		padding: 20px 0;
		border-bottom: 1px solid #616161;
	}
	.next-btn-wrap .container {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.product-feature-hero {
		height: auto;
		min-height: auto;
	}

	.product-feature-flex {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.product-feature-box {
		position: static;
	}

	.product-feature-info,
	.product-feature-video {
		width: 100%;
	}

	.product-feature-info {
		padding: 0;
	}

	.product-feature-hero .hero-intro {
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: none;
		        transform: none;
		margin-top: 0;
	}

	.product-feature-video {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}

	.product-feature-box {
		padding-top: 35px;
		margin-bottom: 25px;
	}

	.product-feature-info {
		-webkit-box-ordinal-group:  3;
		    -ms-flex-order:  2;
		        order:  2;
		text-align: center;
	}

	.product-feature-box,
	.product-feature-title {
		font-size: 18px;
	}
	.product-feature-desc {
		margin: 0 auto;
	}
	.product-feature-hero .next-btn-wrap {
	    position: relative;
	    z-index: 1;
	    bottom: auto;
	    padding: 30px 0 50px;
	}
	.rating-hero {
		height: auto;
	}
	.rating-hero .hero-intro {
		position: relative;
		-webkit-transform: none;
		        transform: none;
		padding-top: 30%;
	}
	.rating-hero:before {
		position: absolute;
		top: 40%;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 10%;
		content: '';
		background-image: -webkit-linear-gradient(rgba(0,0,0,0), #000 80%);
		background-image: linear-gradient(rgba(0,0,0,0), #000 80%);
	}
	.rating-hero .hero-bg {
		height: 50%;
	}
	.rating-table-wrap {
		padding-left: 140px;
	}
	.rating-table-wrap ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: end;
	}
	.rating-table {
		width: 100%;
		min-height: 575px;
		background-image: url('/e-content/4x4-series/assets/images/rating/mob/table-bg.png');
		background-repeat: no-repeat;
		background-size: 100% 100%;
		padding: 0 0 50px;
	}
	.rating-tr {
		position: relative;
	}
	.rating-td {
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: end;
		padding-bottom: 20px;
	}
	.rating-td:first-child {
		position: absolute;
		left: -140px;
		bottom: 0;
		width: 140px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: end;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		row-gap: 15px;
		padding: 0 15px 0 0;
		border-bottom: 1px dashed #fccf00;
	}
	.rating-td img {
		max-width: 100%;
		height: auto;
	}
	.rating-td a {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.rating-td:not(:first-child) {
		border-left: none;
	    border-bottom: 1px dashed #fccf00;
	}
	.rating-icon {
		font-size: 8px;
	}
	.rating-icon img {
		height: 30px;
	}
	.rating-hero .next-btn-wrap {
		position: static;
		padding: 50px 0 20px;
	}
	.tire-size-modal-wrap {
		padding: 20px;
	}
	.tire-table-hero:before {
		position: absolute;
		top: 30%;
		left: 0;
		z-index: 1;
		width: 100%;
		height: 10%;
		content: '';
		background-image: -webkit-linear-gradient(rgba(0,0,0,0), #000 80%);
		background-image: linear-gradient(rgba(0,0,0,0), #000 80%);
	}
	.tire-table-hero {
		height: auto;
	}
	.tire-table-hero .hero-bg {
		height: 40%;
	}
	.tire-table-hero .hero-intro {
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: none;
		        transform: none;
		padding-top: 35%;
	}
	.tire-table-wrap {
		display: none;
	}
	.tire-table-mob {
		text-align: center;
	}
	.tire-table-hero .next-btn-wrap {
		position: relative;
		bottom: auto;
		padding: 50px 0;
		border-bottom: 1px solid #616161;
	}
} /* End mobile */