body{
	overflow-x:hidden; /*right gutter fix*/
	font-family: sans-serif;
  color: black;

 
}
/*Menu and Logo styling..*/
* {
  box-sizing: border-box;
  z-index: 1;
  
}
.Logo {
  background-color:transparent;
  position: absolute;
  top: 3%;
  left: 3%;
  
}
.Logo img{
	padding-top: 0px;
	padding-bottom: 10px;
	height:10rem;
}
.Logo img:hover {
  color:orangered;
  height: 13rem;
}

/* The Vertical Menu*/
*{padding:0;margin:0;}
body{font:16px/1 sans-serif}


/*VERTICAL MENU*/
nav.vertical{
  position:absolute;
  top: 3%;
  right: 3%;
  width:200px;
  z-index: 1000;
}

/* ALL UL */
nav.vertical ul{
  list-style: none;
}
/* ALL LI */
nav.vertical li{
  position:relative;
}
/* ALL A */
nav.vertical a{
  display:block;
  color:#eee;
  text-decoration:none;
  padding:10px 15px;
  background:transparent;
  transition:0.2s;
  text-align: right;
  font-family: 'Futura Std Condensed';font-weight:bold;
  font-size: 20px;
}
/* ALL A HOVER */
nav.vertical li:hover > a{
  background:#778;
}

/* INNER UL HIDE */
nav.vertical ul ul{
  position:absolute;  
  left:0%;
  top:0;
  width:100%;
  visibility:hidden;
  opacity:0;
  transition: transform 0.2s;
  transform: translateX(50px);
}
/* INNER UL SHOW */
nav.vertical li:hover > ul{
  left:-100%;
  visibility:visible;
  opacity:1;
  transform: translateX(0px);
  z-index: 1000;
}

/* The Vertical Menu*/

@media only screen and (max-width:620px) {
  /* For mobile phones: */
  .Logo {
    width:40%;
  }
  .menu {
    width:40%;
    height: 40%;    
    margin-right: 1%;
    margin-top: 12%;
  }
}

/*Get in touch button */
.inTouch-bar {
  position: fixed;
  right: 00%;
  left: 99.2%;
  padding-bottom: 2%;
  width: 130px;
  height: 30px;
  padding-top: 0px;  
  background-color: red;
  top: 50%;
  text-align: center;
  transform:  translateX(-50%) translateY(-50%) rotate(-90deg);
}
.inTouch-bar a{
  color: white;
  display: block;
  text-align: center;
  padding-top: 10px;
  font-weight: bold;
  font-size: 15px;
  font-family: 'Futura Std Condensed';font-weight:bold;
  list-style: none;
  text-decoration: none;
}
.inTouch-bar :hover{
  background-color: white;
  color: maroon;
  font-size: 120%;
  width: 150px;
  font-family: 'Futura Std Condensed';font-weight:bold;
  list-style: none;
  text-decoration: none;  
}
.inTouch-bar a:hover{
  background-color: white;
  font-family: 'Futura Std Condensed';font-weight:bold;
  font-size: 120%;
  width: 150;
  color:blue;
  list-style: none;
  text-decoration: none;
}

/*Get in touch button */

/* Menu and Logo styling..*/





/*Homepage  Slideshow */


/*Homepage  Slideshow */





/*Social Media Icons */
.icon-bar {
  position: absolute;
  top: 60%;
  margin-left: 3%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  
}

.icon-bar a:hover {
  color: red;
  font-size: 300%;
}

.facebook {
  background:transparent;
  color: maroon;
}

.twitter {
  background: transparent;
  color: maroon;
}

.instagram {
  background: transparent;
  color: maroon;
}

.linkedin {
  background: transparent;
  color: maroon;
}

.youtube {
  background: transparent;
  color: maroon;
}

.content {
  margin-left: 75px;
  font-size: 30px;
}
/*Social Media Icons */

/*Contact Form*/

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
  background-color: red;
  color: white;  
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 2px;
  right: 2px;
  width: 150px;
  height: 40px;
  padding-bottom: 20px;
  padding-top: 10px;
  transform:  translateX(-50%) translateY(-50%) rotate(-90deg);
  font-family: 'Futura Std Condensed';font-weight:bold;
  position: fixed;
  right: 00%;
  left: 99.2%;
  top: 50%;
}

/* The popup form - hidden by default */
.form-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  position: fixed;
  right: 10%;
  top: 2%;
  width: 60%;
  height: 100%;
  right: 20%;
  padding-bottom: 5%;
  padding: 10px;  
  color: white;
  background-color: maroon;
}



/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
  color: white;
  position: absolute;
  bottom: 5%;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}







/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid white;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  background-color: maroon;
}

input[type=submit] {
  
  left: 5%;
  bottom: 8%;
  background-color: white;
  color: black;
  font-weight: bold;
  font-family: 'Futura Std Condensed';font-weight:bold;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: red;
}

/* Style the container/contact section */
.container {
  border-radius: 5px;
  background-color: maroon;
  padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 40px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 50%;
   
  }
}


/*Contact Form*/

/*About Us*/

.AboutContainer{
  position: absolute;
  margin-top:198px;
  margin-right: 100px;
  margin-left: 1px;
  padding:1px 15px 25px;
  padding-bottom: 50%;
  height: 100%;
  width:  100%;
  font-family: 'Futura Std Condensed';font-weight:lighter;
  background-color: gray;  
  z-index: 1000;
  
}
.txtContainer{
  position: relative;
  top:10%;
  padding:15px 15px 25px;
  padding-bottom: 10%;
  left: 15%;
  width: 70%;
  height: 80%;
  font-family: 'Futura Std Condensed';font-weight:lighter;
  font-size: 16px;
  color: white;
  background-color: gray;  
}
h1.about{
  font-family: 'Futura Std Condensed';font-weight:1000;
  font-size: 80px;
}
h2.ceo{
  font-family: 'Futura Std Condensed';font-weight:500;
  font-size: 25px;
}
hr.new1 {
  border-top: 2px solid white;
}
strong {
  font-weight: 1000;
}
ul.a {
  list-style-type: circle;
  padding: 5px;
  margin-left: 35px;
}
/*About Us*/

/*Clientelle Page*/

/*Clientelle Page*/

/* Nvbar */
#navbar {
  overflow: hidden;
  background-color: gray;
  padding: 90px 10px;
  transition: 0.4s;
  position: fixed;
  width: 100%;
  height: 30%;
  top: 0;
  z-index: 99;
}

/* Navbar  */









