@charset "utf-8";

@font-face {
    font-family: 'robotolight';
    src: url('../fonts/roboto-light-webfont.eot');
    src: url('../fonts/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../fonts/roboto-light-webfont.woff') format('woff'),
         url('../fonts/roboto-light-webfont.ttf') format('truetype'),
         url('../fonts/roboto-light-webfont.svg#robotolight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'crimson_textbold';
    src: url('../fonts/crimsontext-bold-webfont.eot');
    src: url('../fonts/crimsontext-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/crimsontext-bold-webfont.woff2') format('woff2'),
         url('../fonts/crimsontext-bold-webfont.woff') format('woff'),
         url('../fonts/crimsontext-bold-webfont.ttf') format('truetype'),
         url('../fonts/crimsontext-bold-webfont.svg#crimson_textbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'crimson_textitalic';
    src: url('../fonts/crimsontext-italic-webfont.eot');
    src: url('../fonts/crimsontext-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/crimsontext-italic-webfont.woff2') format('woff2'),
         url('../fonts/crimsontext-italic-webfont.woff') format('woff'),
         url('../fonts/crimsontext-italic-webfont.ttf') format('truetype'),
         url('../fonts/crimsontext-italic-webfont.svg#crimson_textitalic') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'crimson_textroman';
    src: url('../fonts/crimsontext-regular-webfont.eot');
    src: url('../fonts/crimsontext-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/crimsontext-regular-webfont.woff2') format('woff2'),
         url('../fonts/crimsontext-regular-webfont.woff') format('woff'),
         url('../fonts/crimsontext-regular-webfont.ttf') format('truetype'),
         url('../fonts/crimsontext-regular-webfont.svg#crimson_textroman') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*universal reset*/
* {
	margin: 0;
	padding: 0;
}

/*removes old blue outline when clicked on*/
*:focus {
	outline: none;
}

/*new box style */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/*float styles*/
.clearall {
	clear: both;
}
.right {
	float:right;	
}
.left {
	float:left;
}

/*common styles*/
body, html {
	height:100%;
	width:100%;
	min-height:400px;
	min-width: 320px;
}
body {
	background: url(../images/bg-abstract.jpg);
	-webkit-background-size: auto;
	-moz-background-size: auto;
	-o-background-size: auto;
	background-size: auto;
	font-family: crimson_textroman;
	font-size: 100%;	
	color: #343434;
    font-weight: normal;
    font-style: normal;	
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
	font-family: robotolight;
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
	font-weight: normal;
    font-style: normal;
}
h1 {
	font-size: .85em;
	/*text-transform: uppercase;*/
}
h2 {
	font-size: 1.5em;
	text-transform: uppercase;	
	text-align: center;
}
h3 {
	font-size: 1.25em;
	text-transform: uppercase;	
	text-align: center;	
}
h4 {
	font-size: 1.15em;
	text-transform: uppercase;	
	text-align: center;	
}
strong {
	font-family: crimson_textbold;
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-weight: normal;
    font-style: normal;
}
i {
	font-family: crimson_textitalic;
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-weight: normal;
    font-style: normal;
}
p {
	font-family: crimson_textroman;
    font-weight: normal;
    font-style: normal;	
    font-size: 1em;
    color: #343434;
}
a {
	color: #9377b4;
	text-decoration: none;
}
a:hover {
	color:#555487;
	/*color: #9377b4;*/
	text-decoration: underline;	
}
table {
	width: 90%;
	margin: 0 auto;
}
tr {
}
th {
	text-align: center;
	font-family: robotolight;
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
	font-weight: normal;
    font-style: normal;	
    font-size: 1.25em;
    color: #343434;	 
    padding: 5px;
}
td {
	font-family: robotolight;
    font-weight: normal;
    font-style: normal;	
    font-size: .85em;
    color: #343434;	
	padding-bottom: 5px;
}
td.tdleft {
	text-align: left;
}

td.tdright {
	text-align: right;
}
.flex {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}
/*page styles*/
header {
	width:100%;
	height:40px;
	background-color: #555487;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -10;
}
.wrapper {
	margin: 0 auto;
	width: 320px;
	overflow: auto;
	background-color: #ebebeb;
}
.headcenter {
	margin: 0 auto;
	text-align: right;
	padding-top: 10px;
	height:40px;
	background-color: #555487;
	z-index: 10;
}
.headcenter p {
	display: inline-block;
	color: #a1a1bc;
	margin-right: 20px;
}
.headcenter img {
	vertical-align: middle;
}
.address {
	background-color: #fff;
	padding:20px;

}
.address img {
	display: block;
	margin: 0 auto 20px auto;

}
.address p {
	text-align: center;
}
.hero {
	background: url(../images/hero.jpg) no-repeat bottom right;
	background-size: cover;
	width: 320px;
	height: 250px;
	margin-bottom: 75px;
	position:relative;
}
.herotext {
	background-color: rgba(0,0,0,0.4);
	height: 40%;
	padding: 20px 20px;
	text-align:center;
	position: absolute;
	bottom: 0;
	left: 0;
}
.hero h1{
	color: #fff;
}
.hero p{
	color: #fff;

}
.arrow {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.value {
	padding: 20px;

}

.value h2 {
	border-bottom: 10px solid #555487;
	padding:15px 0px 25px 0px;
	margin-bottom: 30px;
}
.valuebox {
	display: inline-block;
	width: 100%;
	background-color: #fff;
	padding: 20px;
	/*height: 344px;*/
}
.valueborder {
	border: 1px dotted #343434;
	padding: 20px;
	height: 100%;

}
.valueone {
	margin-bottom: 20px;
}
.valueone img {
	width:100%;
	display: block;
}
.valuetwo {
	width: 100%;
	float: left;
	margin: 0 0px 20px 0;
}
.valuetwopic {
	background: url(../images/style2.jpg) center center;
	background-size: cover;
	width: 100%;
	height: 219px;
	display: block;
	overflow: auto;

}

.valuesmallone, .valuesmalltwo {
	display: none;
	height: 220px;
	overflow: auto;
	float:left;
	margin-bottom: 20px;
}

.valuesmallthree {
	background: url(../images/sunglasses.gif) no-repeat center center;
	background-size: cover;
	display: table;	
	width: 100%;	
	overflow: auto;
	float:left;
	margin-bottom: 75px;
}
.valuesmallone .center, .valuesmalltwo .center, .valuesmallthree .center{
    /*text-shadow: 1px 1px 5px #000;*/
    background: rgba(0,0,0,0.2);
}	
.valuesmallone h3, .valuesmalltwo h3, .valuesmallthree h3{
    text-shadow: 1px 1px 4px #343434;

}
.center {
	display: table-cell;
	text-align: center;
	width: 100%;
	vertical-align: middle;
	color: #fff;
	padding: 30px;
}
.info {
	display: block;
	width: 100%;
	background-color: #fff;
	padding: 20px;
	margin-bottom: 20px;
	float: left;
}
.service {
	background: url(../images/service.jpg) left center;
	background-size: cover;
}
.quality {
	background: url(../images/quality.jpg) right center;
	background-size: cover;
}
.care {
	background: url(../images/care.jpg) center center;
	background-size: cover;
}
.infoimg {
	display: block;
	margin: 0 auto;
	width: 100%;
	height:198px;
}
.infoborder {
	border: 1px dotted #343434;
	padding: 20px;
}
.infoborder h4 {
	margin-bottom: 20px;
}
.brands {
	display: block;
	width:100%;
	padding: 20px;
	background-color: #fff;
	margin-bottom: 75px;
}
.brandsborder {
	border: 1px dotted #343434;
	padding: 20px;
	height: 100%;
}
.brandsborder p {
	margin-bottom: 20px;
}
.brandsborder img.big {
	width: 50%;
	margin-bottom: 20px;
}
.brandsborder img.small {
	width: 50%;
	margin-bottom: 20px;
}
.detail {
	width: 294px;
	margin-left: 20px;
	margin-bottom: 20px;
	height: 300px;
	background-color: #fff;
	float:left;
	padding: 20px;
	text-align: center;
}
.detailborder {
	border: 1px dotted #343434;
	padding: 20px 0;
	height: 100%;
}
.detail img {
	display: block;
	margin: 0 auto 30px auto;
}
footer {
	background-color: #222222;
	padding-bottom: 20px;
	overflow: auto;
	z-index: -20;
	margin-top: -40px;
	text-align: left;
	width: 100%;
}
footer p {
	max-width: 300px;
	margin: 0 auto;
	font-size: .85em;
}
footer a {
	color: #696969;
}
.endbar {
	height: 40px;
	background-color: #555487;	
	margin-bottom: 40px;
	width: 100%;
}
.logo1 {
	width:266px;
}
.logo2 {
	width:110px;
}
.hide {
	visibility: hidden;
}
.switch2 {
	visibility: hidden;
}

.carousel {
  width: 100%;
  height: 240px;
  background-color: #fff;
  overflow: hidden;
  padding: 10px;
  margin: 0 auto 20px auto;
}
.carousel img {
  display: inline-block;
  width: 300px;
  height: 200px;
  margin: 10px;
}
.holder {
  width: 10000px;
  -webkit-animation: carousel 50s linear infinite;
          animation: carousel 50s linear infinite;
}


@-webkit-keyframes carousel {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -2620px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes carousel {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -2620px;
  }
  100% {
    margin-left: 0;
  }
}



@media screen and (min-width:480px){

table {
	width: 50%;
}
h1 {
	font-size: .85em;
}
header {
	width:100%;
	height:40px;
	background-color: #555487;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -10;
}
.wrapper {
	margin: 0 auto;
	width: 480px;
	overflow: auto;
	background-color: #ebebeb;
}
.headcenter {
	margin: 0 auto;
	text-align: right;
	padding-top: 10px;
	height:40px;
	background-color: #555487;
	z-index: 10;
}
.headcenter p {
	display: inline-block;
	color: #a1a1bc;
	margin-right: 20px;
}
.headcenter img {
	vertical-align: middle;
}
.address {
	background-color: #fff;
	padding:20px;
	position: relative;
}
.address p {

}
.address img {
	width: 40%;
}
.hero {
	background: url(../images/hero.jpg) no-repeat center right;
	background-size: cover;
	width: 480px;
	height: 250px;
	margin-bottom: 75px;
	position:relative;
}
.herotext {
	background-color: rgba(0,0,0,0);
	width:35%;
	text-align: left;
	position: absolute;
	bottom: 20px;
	left: 20px;
	padding: 0;
}

.hero h1{
	color: #fff;
}
.hero p{
	color: #fff;

}
.arrow {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.value {
	padding: 20px;
	overflow: auto;
}

.value h2 {
	border-bottom: 10px solid #555487;
	padding:20px 0px 30px 0px;
	margin-bottom: 30px;
}
.valuebox {
	display: inline-block;
	width: 100%;
	background-color: #fff;
	padding: 20px;
	height: auto;
}
.valueborder {
	border: 1px dotted #343434;
	padding: 20px;
	height: 100%;

}
.valueone {
	width:100%;
	float:left;
	background-color: #fff;	
}
.valueone img {
	width:100%;
}

.valuetwo {
	width: 100%;
	float: left;
	margin-bottom: 20px;
	background-color: #fff;	
}
.valuetwopic {
	width: 100%;
	height: 175px;
	float: left;
}
.valuesmallone, .valuesmalltwo {
	display: table;
	height: 175px;
	overflow: auto;
	margin-bottom: 20px;
	
}
	
.valuesmallone {
	background: url(../images/professional.jpg) no-repeat center center;
	background-size: cover;
	margin-right: 0px;
	width: 47%;
	float: left;
}
.valuesmalltwo {
	background: url(../images/casual.jpg) no-repeat center center;
	background-size: cover;
	width: 47%;
	float:right;
}
.valuesmallthree {
	background: url(../images/sunglasses.gif) no-repeat center center;
	background-size: cover;
	display: table;	
	width: 100%;	
	overflow: auto;
	float:left;
	margin-bottom: 75px;
	height: 175px;	
}

.info {
	display: block;
	width: 100%;
	background-color: #fff;
	padding: 20px;
	height: 238px;
	margin-bottom: 20px;
	float: left;
}
.infoimg {
	display: block;
	margin: 0 auto 20px auto;
	width: 40%;
	height:198px;
	float: left;
}
.infoborder {
	border: 1px dotted #343434;
	padding: 20px;
	height: 100%;
	width: 60%;
	float: right;
}
.infoborder h4 {
	margin-bottom: 20px;
}

.detail {
	width: 100%;
	margin: 0 auto 20px auto;
	height: 300px;
	background-color: #fff;
	float:left;
	padding: 20px;
	text-align: center;
}
.detailborder {
	border: 1px dotted #343434;
	padding: 20px 0;
	height: 100%;
}
.detail img {
	display: block;
	margin: 0 auto 30px auto;
}
footer {
	background-color: #222222;
	overflow: auto;
	z-index: -20;
	margin-top: -40px;
	width: 100%;
}
footer p {
	max-width: 440px;
	margin: 0 auto;
}
.endbar {
	height: 40px;
	background-color: #555487;	
	margin-bottom: 40px;
	width: 100%;
}	
.holder {
  width: 10000px;
  -webkit-animation: carousel 45s linear infinite;
          animation: carousel 45s linear infinite;
}

@-webkit-keyframes carousel {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -2450px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes carousel {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -2450px;
  }
  100% {
    margin-left: 0;
  }
}

}

@media screen and (min-width:960px){

h1 {
	font-size: 1.25em;
	text-transform: uppercase;
}
h2 {
	font-size: 1.75em;
	text-transform: uppercase;	
	text-align: center;
}
h3 {
	font-size: 1.5em;
	text-transform: uppercase;	
	text-align: center;	
}
h4 {
	font-size: 1.25em;
	text-transform: uppercase;	
	text-align: center;	
}

table {
	width: 80%;
}

header {
	width:100%;
	height:40px;
	background-color: #555487;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -10;
}
.wrapper {
	margin: 0 auto;
	width: 960px;
	overflow: auto;
	background-color: #ebebeb;
}
.headcenter {
	margin: 0 auto;
	text-align: right;
	padding-top: 10px;
	height:40px;
	background-color: #555487;
	z-index: 10;
}
.headcenter p {
	display: inline-block;
	color: #a1a1bc;
	margin-right: 20px;
}
.headcenter img {
	vertical-align: middle;
}
.address {
	background-color: #fff;
	padding:20px;
	position: relative;
	height: 200px;
	width:960px;
    /*border-bottom: 1px solid #343434;*/
    z-index: 200;
 	-webkit-transition: all 1s ease;
     transition: all 1s ease;
}
.mini {
	height: 100px;
	position: fixed;
	background-color: #555487;
	top: 0;
	padding:15px;
}
.address p {
	position:absolute;
	text-align: right;
	bottom:35px;
	right:25px;
	color: #343434;
}
.custom {

}
.white {
	color:#fff !important;
}
.address img {
	display: inline-block;
	margin: 0;
	height: 100%;
	width: auto;

}
.hero {
	background: url(../images/hero.jpg) no-repeat bottom right;
	background-size: cover;
	width: 960px;
	height: 600px;
	margin-bottom: 75px;
	position:relative;
}
.herotext {
	background-color: rgba(0,0,0,0);
	position: absolute;
	bottom: 60px;
	left:55px;
	width: 270px;
	height: auto;
	padding: 0;
	text-align:left;
}

.hero h1{
	color: #fff;
	padding-bottom: .5em;
}
.hero p{
	color: #fff;

}
.arrow {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.value {
	padding: 20px;

}
.value img {
	float:left;
	height:344px;	
	width: auto;
}
.value h2 {
	border-bottom: 10px solid #555487;
	padding:10px 0px 25px 0px;
	margin-bottom: 30px;
}
.valuebox {
	display: inline-block;
	width: 293px;
	background-color: #fff;
	padding: 20px;
	height: 344px;
}
.valueborder {
	border: 1px dotted #343434;
	padding: 20px;
	height: 100%;

}
.valueone {
	
}
.valuetwo {
	width: 293px;
	float: left;
	margin: 0 20px 20px 0;
}
.valuetwopic {
	width: 100%;
	height: 219px;
}
/*.valuetwopic:hover {
	background: url(../images/style3.jpg) center right;
	background-size: cover;
	width: 100%;
	height: 219px;
	display: block;
	overflow: auto;
}*/
.valuesmallone, .valuesmalltwo {
	display: table;
	height: 220px;
	overflow: auto;
	float:left;
	margin-bottom: 20px;
}
.valuesmallone .center, .valuesmalltwo .center{

}	
.valuesmallone {
	background: url(../images/professional.jpg) no-repeat center center;
	margin-right: 20px;
	width: 294px;	
}
.valuesmalltwo {
	background: url(../images/casual.jpg) no-repeat center center;
	width: 293px;	
}
.valuesmallthree {
	background: url(../images/sunglasses.gif) no-repeat center center;
	display: table;	
	width: 605px;	
	height: 324px;
	overflow: auto;
	float:left;
	margin-bottom: 75px;
}

.info {
	display: block;
	width: 33.333333%;
	background-color: #fff;
	padding: 20px;
	height: auto;
	margin-bottom: 20px;
	float: left;
	overflow: auto;
}
.infoimg {
	display: block;
	margin: 0 auto ;
	width: 100%;
	height:198px;
	float: none;
}
.infoborder {
	border: 1px dotted #343434;
	padding: 20px;
	float: none;
	width: 100%;
	height: 200px;
}
.infoborder h4 {
	margin-bottom: 20px;
}
.brands {
	display: block;
	width:100%;
	padding: 20px;
	background-color: #fff;
	margin-bottom: 75px;
}
.brandsborder {
	border: 1px dotted #343434;
	padding: 20px;
	height: 100%;
}
.brandsborder p {
	margin-bottom: 20px;
}
.brandsborder img.big {
	margin-right:19px;
	width: 280px;
	margin-bottom: 20px;
}
.brandsborder img.small {
	margin-right:19px;
	width: 200px;
}
.last {
	margin-right: 0px !important;
}
.detail {
	width: 294px;
	margin-left: 20px;
	margin-bottom: 75px;
	height: 300px;
	background-color: #fff;
	float:left;
	padding: 20px;
	text-align: center;
}
.detailborder {
	border: 1px dotted #343434;
	padding: 20px 0;
	height: 100%;
}
.detail img {
	display: block;
	margin: 0 auto 30px auto;
}
footer {
	background-color: #222222;
	overflow: auto;
	z-index: -20;
	margin-top: -40px;
	width: 100%;
}
footer p {
	max-width: 900px;
	margin: 0 auto;
}
.endbar {
	height: 40px;
	background-color: #555487;	
	margin-bottom: 40px;
	width: 100%;
}	
.switch {
	display:none;
}
.switch2 {
	visibility: visible;
}
.holder {
  width: 10000px;
  -webkit-animation: carousel 30s linear infinite;
          animation: carousel 30s linear infinite;
}
@-webkit-keyframes carousel {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -1980px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes carousel {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -1980px;
  }
  100% {
    margin-left: 0;
  }
}
}