@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */



/* Add a black background color to the top navigation */

@font-face {
  font-family: "Montserrat";
  src: url(https://fonts.googleapis.com/css?family=Montserrat);
}

/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800 */

@font-face {
  font-family:"Open Sans", sans-serif;
  font-weight:300;
  font-style:normal;
}

h1 {
   color:#fff;
   font-family:"Montserrat","Trebuchet MS", Arial, Helvetica, sans-serif;
   font-size:30px;
}


h4 {
	color:#ecae27;
	font-size:135%;
	}

h5 {
	color:#373737;
	font-size:135%;
	}


h3 {
	font-size:14px;
	font-style:italic;
	line-height:150%;
	}

.yellow1 {
	color:#ecae27;
	font-size:110%;
}
.grey1 {
	color:#373737;
	font-size:100%;
}

.purple1 {
	color:#913aad;
	font-size:120%;
}
.copyrightline {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #BAB1AE;
	text-align:justify;
}
.Connect {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 9px;
	color: #BAB1AE;
	text-align:left;
}	

.right {
	text-align:right;
}

.p {
	font-family:"Open Sans", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	color:#C2C2C2;
}



.topnav {
	display:none;
}

.topnav a {
	display:none;
}

.dropdown {
	width:100%;
	height:55px;
    background-color:#5B5B5B;
    position: relative;
    display:block;
}

.Logo2 {
    position:relative;
	display:block;
    width:80px;
    height:35px;
	margin-top:-15px;
	margin-left:100px;
    padding-right: 60px;
	z-index:200;

}

.logo {
    display: inline-block;
    vertical-align:middle;
    width: 80px;
    height: 35px;
	margin-top:-5px;
	margin-left:10px;
    padding-right:20px;
       /* if you want it vertically middle of the navbar. */
}


/* Menu toggle */

#menuToggle
{
  display: block;
  position: relative;
  top: 15px;
  left: 15px;
  
  z-index: 10;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 20; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 15;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #cdcdcd;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 180px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 120px;
  
  background:#5b5b5b;
  list-style-type: none;
  text-decoration:none;

  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  color:#CCC;
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size:16px;
  text-decoration:none;
}

#menu li:hover {
    color: #edae27;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: 1;
}

/* Add a color to the active/current link */
.menu a.active {
    background-color:rgba(102,51,51,.7);
    color:#FFF;
}

a:link, a:visited {
	color:#BAB1AE;
    text-decoration: none;
    cursor: auto;
}

a:link:active, a:visited:active {
   color:#FFF;
   text-decoration: none;
}

/* End of Menu toggle */


h1 {
   font-size:24px;
}
	
.OrangeOne {
  position:relative;  
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-attachment:scroll;
  background-image:url(../_img/OrangePhonePortrait.jpg);
  background-repeat:no-repeat;
  overflow: hidden;
}


.Title {
  height:100px;
  width:90%;
  padding-left:5%;
  position: absolute;
  top:60%;
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
  text-align:center;
  color:#FFF; }


.Content {
	width:80%;
	margin-left:50%;
	padding: 10px 40px;
	font-size:12px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align:justify;
	color:#BAB1AE;
	background-color:#5d5d5d;
	padding-bottom: 50px;
	position:relative;
}

.Functions {
    list-style-type: none;
    margin: 0;
    padding-left: 5px;
	line-height:120%;
}

.FirstContainer {
	padding-top: 60px;
	padding-left:50px;
	padding-right:50px;
	font-family:"Open Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:justify;
	color:#BAB1AE;
	background-color:#ff9633;
	padding-bottom: 80px;
	position:relative;
}

.BlackLogo {
	width:100%;
	height:40px;
	display:block;
	position: relative;
	background-image:url(../_img/LinkLogoBlack.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	z-index:30;
}

.Situation {
	position:relative;
	width:80%;
	font-size:14px;
	text-align:justify;
	padding: 60px 10% 60px 10%;
	line-height:180%;
	display:block;
	float: none;
	background-color:#e18037;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	Color:#dddddd;
}



.BluePoster {
	width:100%;
	background-image:url(../_img/BluePhonePoster2.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	height: 500px;
	background-position: center center;
	background-attachment:scroll;

}

.CIBlock {
	position:relative;
	width:80%;
	font-size:14px;
	text-align:justify;
	padding: 60px 10% 60px 10%;
	line-height:180%;
	min-height:400px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#BAB1AE;
	background-color:#3548d8;	
}
.OrangeLogo {
	width:100%;
	height:40px;
	display:block;
	position: relative;
	background-image:url(../_img/LinkLogoOrange.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	z-index:30;
}


.YellowLogo {
	width:100%;
	height:40px;
	display:block;
	position: relative;
	background-image:url(../_img/LinkLogoYellow.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	z-index:30;
}


.PurpleLogo {
	width:100%;
	height:40px;
	display:block;
	position: relative;
	background-image:url(../_img/LinkLogoPurple.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	z-index:30;
}

.PurplePoster {
	position:relative;
	min-height:500px;
	width:100%;
	background-image:url(../_img/PurplePhonePoster.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position: center center;
	background-attachment:scroll;
}

.CIBlock2 {
	width:80%;
	font-size:14px;
	text-align:justify;
	padding: 60px 10% 60px 10%;
	line-height:180%;
	height:auto;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#BAB1AE;
	background-color:#913aad;
	position:relative;
}

.CIBlock3 {
	height:auto;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	width:80%;
	font-size:14px;
	text-align:justify;
	padding: 60px 10% 60px 10%;
	line-height:180%;
	color:#444444;
	background-color:#ffd400;
}


.PackagePoster {
	height: 500px;
	background-position: center center;
	background-attachment:scroll;
	min-height:500px;
	width:100%;
	background-image:url(../_img/PackagePoster.jpg);
	background-repeat:no-repeat;
	background-size:cover;
}

.Triangles {
	width:100%;
	Margin-left:0%;
}


#Footer3 {
	margin-left:0;
	margin-bottom:0;
	padding-bottom:20px;
	width: 100%;
	display:flex;
	flex-direction:row;
	justify-content: center top;
	background-color:#5b5b5b;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height:2;
	color: #C2C2C2;
}
#Info2 {
	margin-left:7.5%;
	padding-top:20px;
	padding-bottom:20px;
	width:47.5%;
	display:block;
	font-size:12px;
	text-decoration:none;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height:1.5;
	background-color:#5b5b5b;
	color: #c2c2c2;
}


#Info2 a {
	color: #C2C2C2;
	text-decoration:none;
	cursor:pointer;
}

#Info2 a:link, a:visited {
    text-decoration: none;
    cursor: pointer;
}

#Icons2 {
	margin-left:22.5%;
	margin-top:20px;
	width: 22.5%;
	margin-right:0%;
	display: flex;
	flex-direction: column;
  	justify-content:top;
	padding-top:20px;
	background-color:#5b5b5b;
	color: #C2C2C2;
}

.Social {
	width: 25%;
	height:40px;
	display: inline-block;
}

.Social img {
	width: 25px;
	height:25px;
	display: inline-block;
	opacity:.5;	
}

.Social img:hover {
	opacity:1;	
	cursor:pointer;
}


.copyright {
	position:relative;
	margin-left:0%;
	margin-right:0%;
	margin-bottom:0;
	padding-top:10px;
	padding-bottom:0px;
	padding-right:10%;
	padding-left:10%;
	width:80%;
	min-height:40px;
	display: block;
	text-align:center;
	font-family:Verdana, Geneva, sans-serif;
	background-color:#5b5b5b;
	color: #C2C2C2;
	font-size:10px;

}


@media only screen and (min-width: 769px) {

.dropbtn {
    display:none;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    display:none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    display: none;
}
.dropdown {
	display:none;
}

.dropdown-content {
    top:-400px;
	z-index: -100;
}

.topnav {
   	display:block;
    background-color:#5B5B5B;
    overflow:hidden;
	width:86%;
	padding-left:7%;
	padding-right:7%;
	z-index:200;
	position:relative;
}

.logo {
    display: inline-block;
    vertical-align:middle;
    width: 80px;
    height: 35px;
	margin-top:-5px;
	margin-left:24px;
    padding-right:20px;
       /* if you want it vertically middle of the navbar. */
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: inline-block;
	position:relative;
	height:35px;
    color: #f2f2f2;
    text-align: center;
	vertical-align:-20px;
	padding-top: 20px;
	badding-bottom:12px;
	padding-left:16px;
	padding-right:16px;
    text-decoration: none;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: rgba(0,0,0,.3);
    color: white;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color:rgba(0,0,0,.4);
    color: white;
}

a:link, a:visited {
	color:#BAB1AE;
    text-decoration: none;
    cursor:auto;
}

a:link:active, a:visited:active {
   color:#BAB1AE;
}


	
.gridContainer {
	width: 100%;
	max-width: 1232px;
	padding-left: 0%;
	padding-right: 0%;
	margin: auto;
}

.OrangeOne {
  position: relative;
  height: 700px;
  background-size: cover;
  background-position: top center;
  background-image:url(../_img/OrangePhonePoster.jpg);
  background-attachment: fixed;
  background-repeat:no-repeat;
  overflow: hidden; 
}  

.Title {
  height: 100px;
  width: 100%;
  position: absolute;
  top: 70%;
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
  text-align:center;
  color:#FFF; 
}


.Content {
	width:70%;
	margin-left:10%;
	padding: 20px 50px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	color:#BAB1AE;
	background-color:#5d5d5d;
	padding-bottom: 50px;
	position:relative;
}

.Functions {
    list-style-type: none;
    margin: 0;
    padding-left: 5px;
	line-height:150%;
}

.FirstContainer {
	padding-top: 60px;
	padding-left:50px;
	padding-right:50px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	color:#BAB1AE;
	background-color:#ff9633;
	padding-bottom: 80px;
	position:relative;
}

.BlackLogo {
	width:100%;
	height:80px;
	display:block;
	position: relative;
	background-image:url(../_img/LinkLogoBlack.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	z-index:30;
}

.Situation {
	position:relative;
	width:70%;
	display:block;
	float: none;
	background-color:#e18037;
	font-family:"Open Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	padding: 80px 15% 80px 15%;
	Color:#dddddd;
	line-height:200%;
}

.BluePoster {
	min-height:700px;
	width:100%;
	background-image:url(../_img/BluePhonePoster2.jpg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}


.CIBlock {
	width:70%;
	height:auto;
	padding: 80px 15% 80px 15%;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	color:#BAB1AE;
	background-color:#3548d8;
	line-height:200%;
	position:relative;
}

.OrangeLogo {
	width:100%;
	height:80px;
	float:none;
	display:block;
	position: relative;
	background-image:url(../_img/LinkLogoOrange.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	z-index:30;
}

.YellowLogo {
	width:100%;
	height:80px;
	display:block;
	position: relative;
	background-image:url(../_img/LinkLogoYellow.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	z-index:30;
}


.PurpleLogo {
	width:100%;
	height:80px;
	display:block;
	position: relative;
	background-image:url(../_img/LinkLogoPurple.png);
	background-repeat:no-repeat;
	background-position:top right;
	background-size:contain;
	z-index:30;
}

.PurplePoster {
	min-height:700px;
	width:100%;
	background-image:url(../_img/PurplePhonePoster.jpg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
}

.CIBlock2 {
	width:70%;
	height:auto;
	padding: 80px 15% 80px 15%;
	font-family:"Open Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	color:#BAB1AE;
	background-color:#913aad;
	line-height:200%;
	position:relative;
}

.CIBlock3 {
	width:70%;
	height:auto;
	padding: 80px 15% 80px 15%;
	font-family:"Open Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	color:#444444;
	background-color:#ffd400;
	line-height:200%;
	position:relative;
}


.PackagePoster {
	min-height:700px;
	width:100%;
	background-image:url(../_img/PackagePoster.jpg);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
}

.Triangles {
	width:90%;
	Margin-left:5%;
}



.SecondContainer {
	padding-top: 30px;
	padding-left:50px;
	padding-right:50px;
	min-height: 760px;
	clear:right;
	font-family:"Open Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	color:#BAB1AE;
	background-color:#ff9633;
	padding-bottom: 80px;
	position:relative;
}



.ThirdContainer {
	padding-top: 60px;
	padding-left:50px;
	padding-right:50px;
	min-height: 760px;
	clear:left;
	font-family:"Open Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	text-align:justify;
	color:#BAB1AE;
	background-color:#ff9633;
	padding-bottom: 80px;
	position:relative;
}



.subsection {
	margin:80px 0;	
}



#Footer3 {
	position:relative;
	margin-top:0px;
	margin-left:0;
	height:120px;
	width: 100%;
	display:block;
	background-color:#5b5b5b;
	font-family:"Open Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
	line-height:2;
	color: #C2C2C2;
	text-align:left;
}

#Info2 {
	clear: none;
	float: left;
	margin-left: 5%;
	padding-top:40px;
	padding-bottom:10px;
	width: 40%;
	display: block;
	font-family:"Open Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:1.5;
	background-color:#5b5b5b;
	color: #C2C2C2;
}

#Info2 a {
	color: #C2C2C2;
	text-decoration:none;
	cursor:pointer;
}
	
#Icons2 {
	clear: none;
	float: right;
	margin-left:5%;
	margin-top:20px;
	width: 40%;
	min-height:40px;
	display: flex;
	flex-direction: row;
  	justify-content: center center;
	padding-top:20px;
	background-color:#5b5b5b;
	color: #C2C2C2;
}

.Social {
	width: 20%;
	height:20px;
	display: inline-block;
	}

.Social img {
	width: 25px;
	height:25px;
	display: inline-block;
	opacity:.5;	
}

.Social img:hover {
	opacity:1;	
	cursor:pointer;
}

.copyright {
	position:relative;
	padding-left:10%;
	padding-right:10%;
	margin:0;
	padding-top:10px;
	padding-bottom:0px;
	width:80%;
	font-size:9px;
	min-height:40px;
	display: block;
	text-align:center;
	font-family:Verdana, Geneva, sans-serif;
	color:#C2C2C2;
	background-color:#5b5b5b;
}


}


#myBtn {
    display: none; 
    position: fixed; 
    bottom: 40px; 
    right: 30px;
    z-index: 99; 
    border: none;
    outline: none;
    background-color: #ffc033;
    color: white; 
    cursor: pointer;
    padding: 15px; 
    border-radius: 10px;
	box-shadow: 5px 5px 10px rgba(51,51,51,.4);
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}


