@charset "UTF-8";

*{
	margin: 0;
	padding: 0;
}

body {
	
	background: lightgray;	
}

/* CSS Document */

.container {
    background-color: #FFFFFF;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container header {
    height: auto;
    background-color: #D1222D;
    text-align: center;
}

.container main {
    height: auto;
    padding-top: 15px;
    padding-left: 0px;
    padding-bottom: 15px;
    background-color: #FFFFFF;
    text-align: center;
    color: #3C84B8;
    font-size: 18px;
}

.container purpose {
    height: auto;
    padding-top: 8px;
    padding-left: 0px;
    padding-bottom: 8px;
    background-color: #FAF5E4;
    text-align: center;
    color: red;
    font-size: 18px;
}

.container nav { 
   max-height: auto;
}
.container nav ul {
  list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.container nav a {
    display: block;
    color: white;
	padding: 15px;
    text-transform: none;
	font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    font-variant: normal;
    text-decoration: none;
}
.container nav {  
  vertical-align:  
  display: inline-block;
  border-radius:2px;
}

.container nav ul li {
	border: 1px solid #C6C4BE;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 0;
}
.container nav ul li a {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	text-align: center;
	padding: 10px;	
}
.container nav li {
  position: relative;
  background-color: #000000;
	float: left; 
  margin-right: 1px; 
}

.container nav > li > a {
    margin-bottom: 0px;
    font-style: normal;
} 
.container nav > li:hover > a {
	border-bottom-color: #D1222D;
	font-style: normal;
	color: #069;
}
.container nav li:hover > a {
	color: #A2A1A0;
	font-style: normal;
}
.container nav > li:first-child { 
  border-radius: 4px 0 0 4px;
} 
.container nav > li:first-child > a { 
  border-radius: 4px 0 0 0;
}
.container nav > li:last-child { 
  border-radius: 0 0 4px 0; 
  margin-right: 0;
} 
.container nav > li:last-child > a { 
  border-radius: 0 4px 0 0;
}
.container nav li li a { 
  margin-top: 0px;
}
.container nav li a:first-child:nth-last-child(2):before { 
  content: ""; 
  position: absolute; 
  height: 0; 
  width: 0; 
  border: 5px solid transparent; 
  top: 50% ;
  right:5px;  
 }

 /* submenu positioning*/
.nav ul {
	position: absolute;
	white-space: nowrap;
	z-index: 1;
	left: -99999em;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #F00;
}
.nav > li:hover > ul {
  left: auto;
  margin-top: 0px;
  min-width: 100%;
}
.nav > li li:hover > ul { 
  left: 100%;
  margin-left: 1px;
  top: -1px;
}

/*ends navigation code*/

.container .main-photo {
    height: auto;
}
.responsive {
    height: auto;
    width: 100%;
}
.container .product-section {
    background-color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    max-width: auto;
    justify-content: center;
}
.container .product-section .article1 {
    width: 300px;
}
.container .product-section .article2 {
    width: 300px;
}
.container .product-section .article3 {
    width: 300px;
}
.container footer {
    background-color: #D1222D;
    height: auto;
    clear: both;
    text-align: center;
    padding-top: 15px;
	padding-bottom: 15px;
    font-size: 12px;
}
