// Variables// Variables
$mq-mobile-narrower: "only screen and (max-width : 320px)";
$mq-mobile-wider: "only screen and (min-width : 320px)";

$mq-tablet-narrower: "only screen and (max-width : 767px)";
$mq-tablet-wider: "only screen and (min-width : 768px) and (max-width : 1023px)";

$mq-desktop-narrower: "only screen and (max-width : 1023px)";
$mq-desktop-wider: "only screen and (min-width : 1024px)";

$mq-large-desktop-narrower: "only screen and (max-width : 1379px)";
$mq-large-desktop-wider: "only screen and (min-width : 1380px)";

$mq-tablet: "only screen and (min-width : 768px) and (max-width : 1024px)";
$mq-mobile: "only screen and (min-width : 320px) and (max-width : 480px)";

$cor1:#393778;
$cor2: #FFCC00;
$cinza: #f5f5f5;
$offwhite: #f7f7f7;

$texto: #777777;
$preto: #000000;
$branco: #ffffff;

// Font stacks
@include google-font(Martel Sans, 400 500 700);
@include google-font(Ubuntu, 400 500 700);

$fonte: 'Martel Sans', sans-serif;
$fonte-texto: 'Ubuntu', sans-serif;

// Asset paths
$path-image: '../img';
$path-fonts: '../fonts';
