/* -------
CSS RESET
------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

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

* {
	box-sizing: border-box;
}

/*--------
FONTS
---------*/
@font-face {
	font-family: "TNT Sports Sans";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: url('./assets/fonts/tntsports-sans-regular.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
		U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
		U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "TNT Sports Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('./assets/fonts/tntsports-sans-bold.woff2') format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
		U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
		U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "TNT-fallback";
	src: local("Arial");
	ascent-override: 86.76%;
	descent-override: 19.52%;
	line-gap-override: 20.61%;
	size-adjust: 89.61%;
}

@font-face {
    font-family: "TNT Sports Serif";
    src: url("./assets/fonts/tntsports-serif-bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* -------
ANIMACIONES
------- */
@keyframes fadeinall {
	0% {
		opacity: 1;
	}

	97% {
		opacity: 0;
	}

	98% {
		opacity: 0;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		z-index: -1;
	}
}

@-webkit-keyframes livepulse {
	0% {
		-webkit-transform: scale(.33);
		transform: scale(.33)
	}

	80%,
	100% {
		opacity: 0
	}
}

@-moz-keyframes livepulse {
	0% {
		-moz-transform: scale(.33);
		transform: scale(.33)
	}

	80%,
	100% {
		opacity: 0
	}
}

@-o-keyframes livepulse {
	0% {
		-o-transform: scale(.33);
		transform: scale(.33)
	}

	80%,
	100% {
		opacity: 0
	}
}

@keyframes livepulse {
	0% {
		-webkit-transform: scale(.33);
		-moz-transform: scale(.33);
		-o-transform: scale(.33);
		transform: scale(.33)
	}

	80%,
	100% {
		opacity: 0
	}
}

#fadein {
	opacity: 1;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	background-color: #FFFFFF;
	z-index: 999;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation: fadeinall 1s normal both;
	animation: fadeinall 1s normal both;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

/*--------
SMOOTH SCROLL
--------*/
html {
	scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
	font-family: 'TNT Sports Sans', 'TNT-fallback', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.mobile {
	display: none !important;
}
/*--------
CONTENEDORES
--------*/
.container {
	width: 90%;
	max-width: 850px;
	display: flex;
	margin: 0 auto;
	position: relative;
}

.container--fluid {
	display: flex;
	padding: 0px 80px;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 120px 9%;
	align-self: stretch;
	flex-wrap: wrap;
	position: relative;
}

/*--------
HEADER
--------*/
nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100; 
	width: 100%;
	background: white;
	height: 90px;
	display: flex;
}

nav.sticky {
	border-bottom: 1px solid #FF28FF;
}

nav .container {
	width: 83%;
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  padding: 0px 0;
  align-items: center;
}

#logo svg {
	height: 45px;
	width: auto;
}

nav #bt--header {
	display: flex;
	width: 274px;
	height: 45px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	border-radius: 26px;
	background: #000;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: white;
	text-align: center;
	text-decoration: none;
	border: 0px;
	cursor: pointer;
	transition: all 0.5s linear;
	font-family:inherit;
}

nav #bt--header:hover {
	background: #FF28FF;
}

nav.sticky #bt--header svg {
	opacity: 0;
	width: 0px;
	height:0px;
}

/*--------
HEADER
--------*/
header {
	height:85vh;
	overflow: hidden;
	margin-top: 90px;
}
header img {
	height: 100%;
	display: block;
	width: auto;
	margin: 0 auto;	
	top: 0%;
  margin-left: 50%;
  transform: translate(-50%, 0%);
}

header h1 {
	display: none;
}

/*--------
SUSCRIPCION
--------*/
#mod--suscription .container {
	padding: 50px 0px 0;
	align-items: center;
	gap: 25px;
	justify-content: space-around;
	text-align: center;
}

#mod--suscription .container + .container {
	padding-bottom: 50px;
}

#mod--suscription h1 {
	text-align: center;
	color: #000;
	font-size: 31px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 60px;
}

.mod--suscription--op {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	background: #FFF;
  box-shadow: 0px 0px 14px 6px rgba(0, 0, 0, 0.07);
	padding: 20px 20px;
	width: 48%;
	max-width: 382px;
	align-self: stretch;
	justify-content: space-between;
}

.mod--suscription--op div {
	width: 100%;
	gap: 0;
}

.mod--suscription--op div.stretch {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	align-self:center;
	flex: 1 1 auto;
	justify-content: center;
	padding: 10px 0 15px;
	gap: 13px;
}

#mod--suscription-op1 {
	padding-top: 70px;
}

.mod--suscription--op h2 {
	color: #6A6A6A;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.mod--suscription--op p {
	color: #000;
	text-align: center;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	max-width: 320px;
}

.mod--suscription--op a {
	display: block;
	width: 100%;
	max-width: 335px;
	margin-top: 20px;
	padding: 16px 0px;
	align-items: flex-start;
	border-radius: 26px;
	background: #FF5200;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: white;
	text-decoration: none;
	transition: all 0.5s linear;
}

.mod--suscription--op button,
.btn {
	display: block;
	width: 100%;
	max-width: 335px;
	margin-top: 20px;
	padding: 16px 0px;
	align-items: flex-start;
	border-radius: 26px;
	background: #FF28FF;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: white;
	text-align: center;
	text-decoration: none;
	border: 0px;
	cursor: pointer;
	transition: all 0.5s linear;
	font-family:inherit;
}

.mod--suscription--op a:hover,
.mod--suscription--op button:hover,
.btn:hover,
.mod--proveedores a:hover {
	background: black;
	transition: all 0.2s linear;
}

.mod--suscription--op span.disclaimer {
	color: #000;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	margin-top: 25px;
	display: inline-flex;
}

.mod--suscription--op span.label {
	background: #FF28FF;
	color: white;
	display: flex;
	width: 100%;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 2px;
	vertical-align: middle;
	padding: 10px 4px;
	justify-content: center;
	margin-bottom: 14px;
}

.mod--suscription--op .precio {
	display: flex;
	flex-direction: row;
	font-weight: 700;
	font-size: 45px;
	line-height: 45px;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
}

.mod--suscription--op .precio span {
	font-weight: 400;
	font-size: 16px;
	line-height: 45px;
	letter-spacing: 0px;
	text-align: center;
	vertical-align: middle;
	padding: 0 3px;
}

#mod--suscription-op2.on:after {
	bottom: -50px;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(245, 245, 245, 0);
	border-bottom-color: #F5F5F5;
	border-width: 33px;
	margin-left: -33px;
	transition: all 0.2s linear;
}

#mod--suscription-op1.off h2,
#mod--suscription-op1.off svg,
#mod--suscription-op1.off p,
#mod--suscription-op1.off span,
#mod--suscription-op1.off a{
	filter: grayscale(1);
	opacity: 0.5;
}

#mod--suscription-op1.off a:hover{
	filter: grayscale(0);
	opacity: 1;
	background: #FF5200;
}

.mod--proveedores {
	display: flex;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s linear;
	height: 0;
	overflow: hidden;
	display: none;
}

.mod--proveedores.on {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		align-self: stretch;
		background: #F5F5F5;
		position: relative;
		visibility: visible;
		height: auto;
		overflow: auto;
		transition: all 0.2s linear;
	}

@media only screen and (min-width: 576px) {
	#mod--proveedores.on {
		opacity: 1;
		display:flex;
	}
}

@media only screen and (max-width: 576px) {
	#mod--proveedores--mobile.on {
		opacity: 1;
		display:flex;
		max-width: 382px;
		margin: 0 auto;
		width: 100%;
	}
}

#mod--proveedores .container,
#mod--proveedores--mobile .container{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 120px 9%;
	align-self: stretch;
	flex-wrap: wrap;
	position: relative;
	padding: 150px 0px;
	box-sizing: border-box;
}

.close {
	position: absolute;
	top: 80px; 
	right: 0px;
	border: 0px solid black;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	line-height: 39px;
	font-weight: bold;
	transition: all 0.2s linear;
	background: transparent;
}

.close:hover {
	cursor: pointer;
	background: #dcdcdc;
	color: white;
}

.mod--proveedores .container div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 28px;
	text-align: left;
	max-width: 350px;
}

.mod--proveedores ul li {
  padding: 10px 5px;
}

.mod--proveedores ul li b {
	font-weight: 700;
	letter-spacing: 0.5px;
}

.mod--proveedores ul li img {
	margin-top: 13px;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align:text-bottom
}

.mod--proveedores img {
	max-height: 50px;
	max-width: 100%;
}

.mod--proveedores p {
	color: #000;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.mod--proveedores a {
	display: block;
	width: 100%;
	min-width: 300px;
	margin-top: 20px;
	padding: 16px 0px;
	align-items: flex-start;
	border-radius: 26px;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: white;
	text-decoration: none;
	text-align: center;
}

.telecentro {
	background: #40C1F3;
}

.claro {
	background: #E30613;
}

/* -------
ACCORDEON
------- */
#mod--faqs {
	flex-direction: column;
	padding: 100px 0;
	max-width: 785px;
}

#mod--faqs h3 {
	text-align: center;
	color: #000;
	font-size: 31px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 60px;
}

.accordion {
	width: 100%;
}

.accordion-item {
	color: #000000;
	cursor: pointer;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.accordion-header {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #E5E5E5;
	padding: 18px 0;
}

.accordion-content {
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s ease;
	height: 0;
	overflow: hidden;
	border-bottom: 1px solid #E5E5E5;
	font-size: 15px;
	line-height: 22px;
}

.open .accordion-content {
	display: block;
	background-color: white;
	visibility: visible;
	opacity: 1;
	height: auto;
	overflow: auto;
	transition: all 0.2s ease;
	padding: 20px 10px 20px 0;
}

.accordion__indicator {
	transition: all 0.2s ease;
}

.open .accordion__indicator {
	transform: rotate(180deg);
}

.open .accordion-content a {
    color: #FF28FF;
    text-decoration: none;
}

.open .accordion-content a:hover {
	text-decoration:underline;
}

#mod--features {
	background: #F5F5F5;
	margin-top: 80px;
	position: relative;
}

#mod--features img {
	width: 90%;
	max-width: 1045px;
	display: block;
	clear: both;
	margin: 0 auto -127px;
	transform: translateY(-127px);
	position: relative;
}

#mod--features .container {
	padding: 50px 0px 100px 0px;
	align-items: center;
	justify-content: space-around;
	gap: 120px;
	text-align: center;
}

#mod--features .container div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 43px;
}

#mod--features h4 {
	color: #000;
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

#mod--features h4 b {
	font-weight: 700;
	display: block;
}

#mod--features span {
	position: relative;
	margin-left: -22px;
}

#mod--features span:before {
	content: "";
	left: -7px;
	top: -7px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: block;
	position: absolute;
	width: 45px;
	height: 45px;
	-webkit-animation: livepulse 1.25s cubic-bezier(.215, .61, .355, 1) infinite;
	-moz-animation: livepulse 1.25s cubic-bezier(.215, .61, .355, 1) infinite;
	-o-animation: livepulse 1.25s cubic-bezier(.215, .61, .355, 1) infinite;
	animation: livepulse 1.25s cubic-bezier(.215, .61, .355, 1) infinite;
}

span.vivo:before {
	background: rgba(255, 0, 133, 0.30);
}

span.revivir:before {
	background: rgba(53, 166, 222, 0.30);
}

#mod--features p {
	font-size: 17px;
}

/*--------
 SLIDER
 ---------*/
#mod--fixture {
	padding: 100px 0;
}

.slider-wrapper {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 750px;
}

.slides-container {
	height: auto;
	width: 100%;
	display: flex;
	overflow: hidden;
	scroll-behavior: smooth;
	list-style: none;
	margin: 0;
	padding: 0 2rem;
	box-sizing: border-box;
	align-items: stretch;
}

.slide-arrow {
	position: absolute;
	display: flex;
	top: 0;
	bottom: 0;
	margin: auto;
	background-color: white;
	padding: 0;
	cursor: pointer;
	z-index: 2;
	width: 60px;
	height: 100%;
	border: 0px;
	justify-content:center;
}

.slide-arrow span {
	position: absolute;
	display: flex;
	top: 0;
	bottom: 0;
	margin: auto;
	background-color: white;
	padding: 0;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 100ms;
	z-index: 2;
	width: 58px;
	height: 58px;
	border: 1px solid  #E0E0E0;
	border-radius: 100%;
}

.slide-arrow:hover span,
.slide-arrow:focus span {
	opacity: 1;
}

.slide-arrow svg {
	transform: translate(50%, 50%);
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -14px;
}

#slide-arrow-prev {
	left: 0;
}

#slide-arrow-next {
	right: 0;
}

.slide {
	width: 100%;
	display: flex;
	flex: 1 0 100%;
	position: relative;
	padding-bottom: 0px;
	align-items: center;
}

.slide .btn {
	position: relative;
	margin: 40px auto 0;
	max-width: 330px;
}

.slide .fixture--fecha {
	width: 382px;
	height: 100%;
	background: url(./assets/img/bk_fixture.png) top center #101e28;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 3% 40px;
	margin: 0 auto;
}

.fixture--fecha .escudo img {
	width: 63px;
	height: auto;
}

.fixture--fecha h3 {
	font-family: "TNT Sports Serif";
	font-size: 44px;
	font-weight: bold;
	color: white;
	margin-bottom: 35px;
}

.partido {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.partido + .partido {
	margin-top: 0px;
}

.equipo {
	text-align: center;
	color: white;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 1.05px;
	text-transform: uppercase;
}

.fecha-hora {
	text-align: center;
	color: #ff23ff;
	font-size: 9px;
	line-height: 11px;
	letter-spacing: 1.05px;
	text-transform: uppercase;
	margin-top: 0px;
}


/* -------
SHOWS
------- */
#mod--shows img {
	width: 100%;
}

/* -------
FOOTER
------- */
#mod--shows,
footer {
	background: #1D1D1D;
	margin: 0px;
	padding: 0px;
	color: white;
}

footer .container {
	width: 83%;
	max-width: 1240px;
	display: flex;
	justify-content: space-between;
	padding: 60px 0;
	align-items: center;
}

.footer--text {
	width: 62%;
	gap: 20px;
	display: flex;
	flex-direction: column;
}

footer p {
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16.8px;
}

footer ul {
	display: flex;
	gap: 12px;
	justify-content: end;
}

footer a svg {
	fill: white;
}

footer a:hover {
	opacity: 0.8
}

@media only screen and (max-width: 768px) {
	.desktop {
		display: none !important;
	}

	.mobile {
		display: block !important;
	}
	
	header {
		height: auto;
	}
	
	header img {
		width: 100%;
		height: auto;
	}
	
	#mod--features img {
		width: 95%;
	}
	
	#mod--features .container {
		gap: 90px;
	}

}

@media only screen and (max-width: 576px) {
	nav .container {
		width: 90%;
	}
	nav #bt--header {
		width: auto;
		background: #000;
		font-size: 14px;
		letter-spacing: 1px;
		padding: 0 30px;
		height: 42px;
	}
	#mod--suscription .container {
		padding: 0px 0px 0px;
		gap: 50px;
		justify-content: space-around;
		text-align: center;
		flex-direction: column;
	}
	
	#mod--suscription .container + .container {
		padding: 30px 0px 0px;
		align-content: center;
		align-items: center;
	}
	
	#mod--suscription h1{
		font-size: 28px;
		padding: 0 15px 0;
	}
	
	.mod--suscription--op {
		width: 100%;
		align-self: center;
	}
	
	#mod--suscription-op2.on:after {
		bottom: -70px;
	}

	.mod--suscription--op {
		gap: 25px;
	}

	#mod--suscription .mod--suscription--op svg {
		height: 70px;
		width: auto;
	}
	
	.mod--suscription--op p {
		max-width: 300px;
	}
	
	.mod--proveedores {
		/*! margin-top: 70px; */
	}

	.mod--proveedores .container {
		padding: 100px 20px 100px !important;
		box-sizing: border-box;
		flex-direction: column;
	}
	
	.mod--suscription--op span.label {
		font-size: 18px;
		letter-spacing: 1px;
		padding: 10px 4px;
		margin-bottom: 0px;
	}
	
	#mod--suscription-op1 {
		padding-top: 40px;
	}
	
	.mod--suscription--op .precio {
		font-size: 40px;
		line-height: 40px;
	}
	
	.close {
		top: 40px;
	}

  #mod--faqs {
		padding: 70px 0 80px;
	}
	
	#mod--faqs h3 {
		font-size: 28px;
		margin-bottom: 20px;
	}
	
	.accordion-header {
		font-size: 20px;
		gap: 5px;
		padding: 24px 0;
	}

	.accordion-content {
		font-size: 16px;
		line-height: 28px;
	}

	#mod--features .container {
		padding: 0px 0px 80px 0px;
		align-items: center;
		justify-content: space-around;
		gap: 70px;
		text-align: center;
	}

	#mod--features .container {
		flex-direction: column;
	}

	#mod--features svg {
		height: 40px;
		width: auto;
	}

	#mod--features span:before {
		width: 55px;
		height: 55px;
	}

	#mod--features .container div {
		gap: 25px;
	}

	#mod--features .container div+div {
		margin-top: 0px;
	}
	
	#mod--fixture {
		padding: 80px 0;
	}
	
	.slide .fixture--fecha {
		padding: 40px 3%;

	}

.fixture--fecha .escudo img {
	width: 50px;
	height: auto;
}

.fixture--fecha h3 {
	font-size: 40px;
	margin-bottom: 25px;
}

.partido {
	gap: 10px;
}

.partido + .partido {
	margin-top: 5px;
}

.equipo {
	font-size: 13px;
	line-height: 15px;
	letter-spacing: 1px;
}
	
	.fecha-hora {
		font-size: 8px;
		line-height: 9px;
	}

	/*.slide img {
		width: 85%;
	}*/

	.slide .btn {
		width: 80%;
	}
	
	footer .container {
		flex-direction: column;
		gap: 60px;
		padding: 60px 0%;
	}

	.footer--text {
		width: 100%;
	}

}

@media only screen and (max-width: 480px) {
	#mod--suscription .mod--suscription--op svg {
		height: 60px;
		width: auto;
		max-width: 100%;
	}
	
	#mod--features h4 {
		font-size: 28px;
	}
	
	.slider-wrapper {
		width: 97%;
	}
	
	.slide-arrow {
		width: 38px;
	}

	.slide-arrow span {
		width: 30px;
		height: 30px;
	}
	
	.slide img {
		width: 90%;
	}

	.slide .btn {
		width: 80%;
		padding: 15px 0;
	}
}

@media only screen and (max-width: 420px) {
	nav #bt--header svg {
		display: none;
	}
}

@media only screen and (max-width: 390px) {
	#logo svg {
		height: 38px;
		width: auto;
	}  
	nav #bt--header {
			font-size: 13px;
			letter-spacing: 0.7px;
			padding: 0 25px;
			height: 36px;
		}
	
	 .slide .btn {
    width: 80%;
    padding: 10px 0;
	 font-size: 13px;
		letter-spacing: 0.7px;
		 bottom: 30px;
  }
}