﻿/*======================================
//--//-->   STYLES GENERALES
======================================*/


/* Tablets horizontaal MD) */
@media only screen 
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (orientation: landscape) {
body {
 color: #000000;
}
.intro .intro-title {
	transition-duration: 9s !important;
	color: #ffffff;
	font-weight: 500;
	font-size: 62px;
	text-transform: uppercase;
}
}

/* Tablets verticaal SM) */
@media only screen 
  and (min-width: 768px) 
  and (max-width: 1024px) 
  and (orientation: portrait) {
body {
 color: #000000;
}
.intro .intro-title {
  transition-duration: 9s !important;
  color: #ffffff;
  font-weight: 500;
	font-size: 62px;
  text-transform: uppercase;
}
}

/* Smartphones horizontaal XS */
@media only screen 
  and (min-width: 481px) 
  and (max-width: 767px) {
body {
 color: #000000;
}
.intro .intro-title {
  transition-duration: 9s !important;
  color: #ffffff;
  font-weight: 500;
	font-size: 48px;
  text-transform: uppercase;
}
}

/* Smartphones verticaal XS */
@media only screen 
  and (min-width: 320px) 
  and (max-width: 480px) {
body {
 color: #000000;
}
.text-brand {
	font-size: 24px;
	font-weight: 400;
}
.intro .intro-title {
  transition-duration: 9s !important;
  color: #ffffff;
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
}
}






