@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:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	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. */



body{
    overflow-x: hidden;
}

/*Scrollers*/
	
body::-webkit-scrollbar-track, div::-webkit-scrollbar-track, form::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0);
	background-color: #fff;
	border-radius: 3px;
}

body::-webkit-scrollbar, div::-webkit-scrollbar, form::-webkit-scrollbar
{
	width: 3px;
	background-color: #fff;
}

body::-webkit-scrollbar-thumb, div::-webkit-scrollbar-thumb, form::-webkit-scrollbar-thumb
{
		background-color: #606060;

		border-radius: 3px;
}
/*Scrollers*/


/*Fonts*/


@font-face {
    font-family: "bahnschrift";
    src:url("../fonts/bahnschrift.ttf");
}


@font-face {
    font-family: "GeneralSans-Regular";
    src:url("../fonts/GeneralSans-Regular.otf");
}


@font-face {
    font-family: "GeneralSans-Medium";
    src:url("../fonts/GeneralSans-Medium.otf");
}


@font-face {
    font-family: "Recline-SemiBold";
    src:url("../fonts/Recline-SemiBold.otf");
}



/*Fonts End*/



    .mobishow{
        display: block;
    }


    .desktoponly{
        display: none;
    }



     .greencolor{
        color: #21B19C;
    }
    
    
    .darkgraycolor{
        color: #3E4347;
    }
    
    .mediumgraycolor{
        color: #737373;
    }
    
    .lightgraycolor{
        color: #C6C6C6;
    }
    
    .orangecolor{
        color: #F69038;
    }
    
    .whitecolor{
        color: #fff;
    }
    
    

    h1{
        font-size: 4em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        text-transform: uppercase;
    }
    
    
    h2{
        font-size: 2.6em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        letter-spacing: -.7px;
    }
    
    
    h3{
        font-size: 1.8em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .25em auto;
        letter-spacing: -1px;
    }
    
    
    h4{
        font-size: 1.5em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        font-weight:normal;
        letter-spacing: -.5px;
    }
    
    
    h5{
        font-size: 1.25em;
        font-family: "bahnschrift";
        line-height: 1.1em;
        margin: .3em auto;
    }
    
    h6{
        font-size: 1em;
       font-family: "GeneralSans-Regular";
        line-height: 1em;
        margin: .3em auto;
        font-weight: bold;
        letter-spacing: 2px;
    }
    
    
    p{
        font-family: "GeneralSans-Regular";
        text-justify: auto;
        clear: both;
        letter-spacing: .5px;
        font-size: .9em;
    }
    
    
    



/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
	
	
	.mobishow{
    display: none;
    }

    .desktoponly{
        display: block;
    }

	
     .greencolor{
        color: #21B19C;
    }
    
    
    .darkgraycolor{
        color: #3E4347;
    }
    
    .mediumgraycolor{
        color: #737373;
    }
    
    .lightgraycolor{
        color: #C6C6C6;
    }
    
    .orangecolor{
        color: #F69038;
    }
    
    .whitecolor{
        color: #fff;
    }
    
    

    h1{
        font-size: 5em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        text-transform: uppercase;
    }
    
    
    h2{
        font-size: 2.7em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        letter-spacing: -.7px;
    }
    
    
    h3{
        font-size: 2.8em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .25em auto;
        letter-spacing: -1px;
    }
    
    
    h4{
        font-size: 1.8em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        font-weight: normal;
        letter-spacing: -.5px;
    }
    
    
    h5{
        font-size: 1.2em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
    }
    
    h6{
        font-size: 1em;
       font-family: "GeneralSans-Regular";
        line-height: 1em;
        margin: .3em auto;
        font-weight: bold;
        letter-spacing: 2px;
    }
    
    
    p{
        font-family: "GeneralSans-Regular";
        text-justify: auto;
        clear: both;
        letter-spacing: .5px;
        font-size: .9em;
    }
    
    
    
	

	
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
    
    .mobishow{
    display: none;
    }

    .desktoponly{
        display: block;
    }

   
     .greencolor{
        color: #21B19C;
    }
    
    
    .darkgraycolor{
        color: #3E4347;
    }
    
    .mediumgraycolor{
        color: #737373;
    }
    
    .lightgraycolor{
        color: #C6C6C6;
    }
    
    .orangecolor{
        color: #F69038;
    }
    
    .whitecolor{
        color: #fff;
    }
    
    

    h1{
        font-size: 6em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        text-transform: uppercase;
    }
    
    
    h2{
        font-size: 4em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        letter-spacing: -.7px;
    }
    
    
    h3{
        font-size: 3em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .25em auto;
        letter-spacing: -1px;
    }
    
    
    h4{
        font-size: 1.8em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        font-weight:normal;
        letter-spacing: -.5px;
    }
    
    
    h5{
        font-size: 1.2em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
    }
    
    h6{
        font-size: 1em;
       font-family: "GeneralSans-Regular";
        line-height: 1em;
        margin: .3em auto;
        font-weight: bold;
        letter-spacing: 2px;
    }
    
    
    p{
        font-family: "GeneralSans-Regular";
        text-justify: auto;
        clear: both;
        letter-spacing: .5px;
        font-size: .9em;
    }
    
    
    

    
    
}
    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
    
    .greencolor{
        color: #21B19C;
    }
    
    
    .darkgraycolor{
        color: #3E4347;
    }
    
    .mediumgraycolor{
        color: #737373;
    }
    
    .lightgraycolor{
        color: #C6C6C6;
    }
    
    .orangecolor{
        color: #F69038;
    }
    
    .whitecolor{
        color: #fff;
    }
    
    
    
    
    
    h1{
        font-size: 6em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        text-transform: uppercase;
    }
    
    
    h2{
        font-size: 3.7em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        letter-spacing: -.7px;
    }
    
    
    h3{
        font-size: 2.75em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .25em auto;
        letter-spacing: -1px;
    }
    
    
    h4{
        font-size: 1.7em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        font-weight: normal;
        letter-spacing: -.5px;
    }
    
    
    h5{
        font-size: 1.1em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
    }
    
    h6{
        font-size: 1em;
       font-family: "GeneralSans-Regular";
        line-height: 1em;
        margin: .3em auto;
        font-weight: bold;
        letter-spacing: 2px;
    }
    
    
    p{
        font-family: "GeneralSans-Regular";
        text-justify: auto;
        clear: both;
        letter-spacing: .5px;
        font-size: .95em;
    }
    

}
    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

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

    
    .greencolor{
        color: #21B19C;
    }
    
    
    .darkgraycolor{
        color: #3E4347;
    }
    
    .mediumgraycolor{
        color: #737373;
    }
    
    .lightgraycolor{
        color: #C6C6C6;
    }
    
    .orangecolor{
        color: #F69038;
    }
    
    .whitecolor{
        color: #fff;
    }
    
    
    
    
    
    h1{
        font-size: 8.5em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        text-transform: uppercase;
    }
    
    
    h2{
        font-size: 4.5em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        letter-spacing: -.7px;
    }
    
    
    h3{
        font-size: 3.25em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .25em auto;
        letter-spacing: -1px;
    }
    
    
    h4{
        font-size: 2.2em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
        font-weight: normal;
        letter-spacing: -.5px;
    }
    
    
    h5{
        font-size: 1.4em;
        font-family: "bahnschrift";
        line-height: 1em;
        margin: .3em auto;
    }
    
    h6{
        font-size: 1.1em;
       font-family: "GeneralSans-Regular";
        line-height: 1em;
        margin: .3em auto;
        font-weight: bold;
        letter-spacing: 2px;
    }
    
    
    p{
        font-family: "GeneralSans-Regular";
        text-justify: auto;
        clear: both;
        letter-spacing: .5px;
        
    }
    

    
    
    
    
    
    
    
    
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

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

    
		
}