



html, body

{

	max-height: 100%;

}



body

{

	margin: 0px;

	padding: 0px;

	background: #3D3D3D;

	font-family: 'Source Sans Pro', sans-serif;

	font-size: 11pt;

	font-weight: 300;

	color: #6c6c6c

}



h1, h2, h3

{

	margin: 0;

	padding: 0;

	font-weight: 600;

	color: #454445;

}



p, ol, ul

{

	margin-top: 0;

}



ol, ul

{

	padding: 0;

	list-style: none;

}



p

{

	line-height: 180%;

}



strong

{

}



a

{

	color: #2C383B;

	text-decoration: none;

}



a:hover

{

	text-decoration: none;

}






.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}



/****-----start-wrapper-demo----****/

dd

{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}	

	

.wrapper-demo

{

	width:400px;

	height:300px;

	margin: 0 auto;

	margin-top: 0;



}

/****-----start-wrapper-dropdown-2----****/

.wrapper-dropdown-2 {

    position: relative;

	padding: 17px 20px 17px 15px;

	background: #fff;

	cursor: pointer;

	outline: none;

	color: #5f5f5f;	

	font-size: 1.1em;

	border-radius:5px;

	-webkit-border-radius:5px;

	-moz-border-radius:5px;

	-o-border-radius:5px;

	text-transform: capitalize;

	font-weight: 600;

}

.dropdown:before {

	content: "";

	width: 0;

	height: 0;

	position: absolute;

	right: 20px;

	top: -3%;

	margin-top: -6px;

	border-width: 0px 12px 12px 12px;

	border-style: solid;

	border-color: #FFF rgba(0, 0, 0, 0);

}



.wrapper-dropdown-2 .dropdown {

  /* Size & position */

    position: absolute;

    top: 136%;

    left: 0px;

    right: 0px;

	border-radius:5px;

	-webkit-border-radius:5px;

	-moz-border-radius:5px;

	-o-border-radius:5px;

    /* Styles */

    background:#fff;

    -webkit-transition: all 0.3s ease-out;

    -moz-transition: all 0.3s ease-out;

    -ms-transition: all 0.3s ease-out;

    -o-transition: all 0.3s ease-out;

    transition: all 0.3s ease-out;

    list-style: none;

    z-index:1;



    /* Hiding */

    opacity: 0;

    pointer-events: none;

}

.wrapper-dropdown-2 .dropdown li:last-child{

	border-bottom:none;

}

.wrapper-dropdown-2 .dropdown li

{

	-webkit-transition: all 0.3s ease-out;

	-moz-transition: all 0.3s ease-out;

	-ms-transition: all 0.3s ease-out;

	-o-transition: all 0.3s ease-out;

	transition: all 0.3s ease-out;

}

.wrapper-dropdown-2 .dropdown li a {

    display: block;

	text-decoration: none;

	color: #5f5f5f;

	padding:15px;

	-webkit-transition: all 0.3s ease-out;

	-moz-transition: all 0.3s ease-out;

	-ms-transition: all 0.3s ease-out;

	-o-transition: all 0.3s ease-out;

	transition: all 0.3s ease-out;

	text-transform: capitalize;

	font-size: 0.99em;

	font-weight: 600;

	

}

.dropdown li a:hover{

	color:#FFF;

	

} 

.dropdown li a:hover .icon{

	background-position:0px 0px;

}

/* Hover state */

.wrapper-dropdown-2 .dropdown li:hover {

    background: #f9ada0;

    

}

.wrapper-dropdown-2 .dropdown  li:nth-child(1) {

	border-top-left-radius:5px;

	-webkit-border-top-left-radius:5px;

	-moz-border-top-left-radius:5px;

	-o-border-top-left-radius:5px;

	border-top-right-radius:5px;

	-webkit-border-top-right-radius:5px;

	-moz-border-top-right-radius:5px;

	-o-border-top-right-radius:5px;

}

.wrapper-dropdown-2 .dropdown  li:last-child{

	border-bottom-left-radius:5px;

	-webkit-border-bottom-left-radius:5px;

	-moz-border-bottom-left-radius:5px;

	-o-border-bottom-left-radius:5px;

	border-bottom-right-radius:5px;

	-webkit-border-bottom-right-radius:5px;

	-moz-border-bottom-right-radius:5px;

	-o-border-bottom-right-radius:5px;

}

.wrapper-dropdown-2 .dropdown  li:nth-child(2),.wrapper-dropdown-2 .dropdown  li:nth-child(3),.wrapper-dropdown-2 .dropdown  li:nth-child(4)

{

	border-radius: none;

}

/* Active state */

.wrapper-dropdown-2.active .dropdown {

    opacity: 1;

    pointer-events: auto;

}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-2 .dropdown,

.no-pointerevents .wrapper-dropdown-2 .dropdown {

    display: none;

    opacity: 1; /* If opacity support but no pointer-events support */

    pointer-events: auto; /* If pointer-events support but no pointer-events support */

}

.no-opacity       .wrapper-dropdown-2.active .dropdown,

.no-pointerevents .wrapper-dropdown-2.active .dropdown {

    display: block;

}

.wrapper-dropdown-2.active .dropdown {

	opacity: 1;

	pointer-events: auto;

}

/*****/

.wrapper-dropdown-2 span {

	float: right;

	vertical-align: middle;

}

.iconmeanu{

	background-image: url(images/spriteimg.png);

	width: 24px;

	height: 25px;

	display: inline-block;

}



.dropdown li a:hover span.iconmeanu{

	background: url(images/spriteimg.png) no-repeat -2px -27px;

}

.stat{

	background: url(images/spriteimg.png) no-repeat -26px 0px;

}

.dropdown li a:hover span.stat{

	background: url(images/spriteimg.png) no-repeat -26px -28px;

}

.msg{

	background: url(images/spriteimg.png) no-repeat -51px 0px;

}

.dropdown li a:hover span.msg{

	background: url(images/spriteimg.png) no-repeat -51px -27px;

}

.signout{

	background: url(images/spriteimg.png) no-repeat -74.5px 0px;

}

.dropdown li a:hover span.signout{

	background: url(images/spriteimg.png) no-repeat -74.5px -27px;

}

/****-----end-wrapper-dropdown-2----****/



/****----*media Queries----****/


@media only screen and (max-width: 480px) /* and (min-width:320px) */

{
	.wrapper-demo {

	width:90%;

	}
	
	.head-wrapper {
	width:90%;
	}
	
	.featured-wrapper{
	width:90%;
	}

}

@media only screen and (max-width: 320px) /* and (min-width:240px)  */

{

	.wrapper-demo {
	width:90%;

	}

		
	.header-wrapper {
	width:90%;
	}
	
	.featured-wrapper{
	width:90%;
	}
	
	.wrapper-dropdown-2 {

	font-size: 1em;

	}

}


/****------end-media Queries-----****/



/*********************************************************************************/

/* Image Style                                                                   */

/*********************************************************************************/



	.image

{

	display: inline-block;



}



video {
 display: block;
  width: 100%;
  max-height: 100%;
}

.embed-youtube {
    position: relative;
    padding-bottom: 56.25%; /* - 16:9 aspect ratio (most common) */
    /* padding-bottom: 62.5%; - 16:10 aspect ratio */
    /* padding-bottom: 75%; - 4:3 aspect ratio */
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.embed-youtube iframe,
.embed-youtube object,
.embed-youtube embed {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image img

{

	display: block;

	max-width: 100%;

}



.image-full

{

	display: block;

	max-width: 100%;

	margin: 0 0 2em 0;


	}



.image-left

{

	float: left;

	margin: 0 2em 2em 0;

}


.image-full-nobackground

{

	display: block;

	max-width: 100%;

	margin: 0 0 2em 0;


}


.image-centered

{

	display: block;

	margin-top: 0;

	margin-bottom: 2em;;

	padding-top: 10px;

	padding-right: 10px;

	padding-bottom: 10px;

	padding-left: 10px;

	max-width: 50%;

	float: none;

	margin-left: auto;

	margin-right: auto;

}



.image-tabled

{

	display: block;

	margin-top: 0;

	margin-bottom: 2em;

	height: 200px;

	float: none;

	margin-left: auto;

	margin-right: auto;



	background-color: #FFFFFF;

	-webkit-box-shadow: 1px 1px 15px #999999;

	box-shadow: 1px 1px 15px #999999;}

}




.image-centered img

{

	margin: 0 auto;

	max-width: 100%;

}



/*

a:hover .image-centered 

{

	

	transform:scale(1.8,1.8);

	transform-origin:1 1;

	}

	

	*/

/*********************************************************************************/

/* List Styles                                                                   */

/*********************************************************************************/



	ul.style1

{

	margin: 0;

	padding: 0em 0em 0em 0em;

	overflow: hidden;

	list-style: none;

	color: #6c6c6c

}



ul.style1 li

{

	overflow: hidden;

	display: block;

	padding: 2.80em 0em;

	border-top: 1px solid #D1CFCE;

}



ul.style1 li:first-child

{

	padding-top: 0;

	border-top: none;

}



ul.style1 .image-left

{

	margin-bottom: 0;

}



ul.style1 h3

{

	padding: 1.2em 0em 1em 0em;

	letter-spacing: 0.10em;

	text-transform: uppercase;

	font-size: 1.2em;

	font-weight: 600;

	color: #454445;

}



ul.style1 a

{

	text-decoration: none;

	color: #525252;

}



ul.style1 a:hover

{

	text-decoration: underline;

	color: #525252;

}



ul.style2

{

	margin: 0;

	padding-top: 1em;

	list-style: none;

}



ul.style2 li

{

	border-top: solid 1px #E5E5E5;

	padding: 0.80em 0 0.80em 0;

	font-family: 0.80em;

}



ul.style2 li:before

{

	display: inline-block;

	padding: 4px;

	background: #DB3256;

}



ul.style2 a

{

	display: inline-block;

	margin-left: 1em;

}



ul.style2 li:first-child

{

	border-top: 0;

	padding-top: 0;

}



ul.style2 .icon

{

	color: #FFF;

}



ul.style3

{

	margin: 0;

	padding-top: 1em;

	list-style: none;

}



ul.style3 li

{

	border-top: solid 1px rgba(255,255,255,.2);

	padding: 1em 0 1em 0;

	font-family: 0.80em;

}



ul.style3 li:before

{

	display: inline-block;

	padding: 4px;

	background: #FFF;

}



ul.style3 a

{

	display: inline-block;

	margin-left: 1em;

	font-size: 1em !important;

	color: #FFF;

}



ul.style3 li:first-child

{

	border-top: 0;

	padding-top: 0;

}



ul.style3 .icon

{

	color: #DB3256;

}



/*********************************************************************************/

/* Social Icon Styles                                                            */

/*********************************************************************************/



	ul.contact

{

	margin: 0;

	padding: 2em 0em 0em 0em;

	list-style: none;

}



ul.contact li

{

	display: inline-block;

	padding: 0em 0.30em;

	font-size: 1em;

}



ul.contact li span

{

	display: none;

	margin: 0;

	padding: 0;

}



ul.contact li a

{

	color: #FFF;

}



ul.contact li a:before

{

	display: inline-block;

	background: #3f3f3f;

	width: 40px;

	height: 40px;

	line-height: 40px;

	border-radius: 20px;

	text-align: center;

	color: #FFFFFF;

}



ul.contact li a.icon-twitter:before

{

	background: #2DAAE4;

}



ul.contact li a.icon-facebook:before

{

	background: #39599F;

}



ul.contact li a.icon-dribbble:before

{

	background: #C4376B;

}



ul.contact li a.icon-tumblr:before

{

	background: #31516A;

}



ul.contact li a.icon-rss:before

{

	background: #F2600B;

}





/*********************************************************************************/

/* Button Style                                                                  */

/*********************************************************************************/



	.button

{

	display: inline-block;

	padding: 1.3em 3em;

	background: #2E4052;

	-moz-transition: opacity 0.25s ease-in-out;

	-webkit-transition: opacity 0.25s ease-in-out;

	-o-transition: opacity 0.25s ease-in-out;

	-ms-transition: opacity 0.25s ease-in-out;

	transition: opacity 0.25s ease-in-out;

	letter-spacing: 0.20em;

	text-decoration: none;

	text-transform: uppercase;

	font-weight: 600;

	color: #FFF;

	border-top-left-radius: 15px;

	border-bottom-right-radius: 15px;

}



.button:hover

{

}



.button:active

{

}



.button-big

{

	padding: 1.6em 4em;

	font-size: 1.4em;

	font-weight: 900;

}



/*********************************************************************************/

/* Heading Titles                                                                */

/*********************************************************************************/



	.title

{

	margin-bottom: 3em;

}



.title h2

{

	font-weight: 400;

	font-size: 2.8em;

	color: #323232;

}

.title h3

{

	font-weight: 400;

	font-size: 2 em;

	color: #323232;

}



.title .byline

{

	letter-spacing: 0.15em;

	text-transform: uppercase;

	font-weight: 400;

	font-size: 1.1em;

	color: #6F6F6F;

}



/*********************************************************************************/

/* Header                                                                        */

/*********************************************************************************/



	#header-wrapper

	{

	overflow: hidden;

	padding: 0em 0em 0em 0em;

	background-repeat: repeat;

	/*background-image: url(images/overlay.png);*/

	background-color: #2E4052;

	}



	#header

	{

	}



#triangle-up {

	margin: 0 auto;

	width: 0;

	height: 0;

	border-left: 60px solid transparent;

	border-right: 60px solid transparent;

	border-bottom: 30px solid #3D3D3D;

}


.sketchy {
    padding: .5rem .5rem;
    display: inline-block;
    border: 2px solid #333333;
    border-radius: 2% 6% 5% 4% / 1% 1% 2% 4%;
    position: relative;
    
    &::before {
        content: '';
        border: 2px solid #353535;
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0) scale(1.015) rotate(0.5deg);
        border-radius: 1% 1% 2% 4% / 2% 6% 5% 4%;
    }
}

/*********************************************************************************/

/* Logo                                                                          */

/*********************************************************************************/



	#logo

	{

		padding: 5em 0em;

		text-align: center;

	}

	

	#logo h1

	{

		font-size: 3.5em;

	}

	

	#logo a

	{

		text-decoration: none;

		color: #FFF;

	}

	

	#logo span

	{

		letter-spacing: 0.10em;

		text-transform: uppercase;

		font-size: 0.90em;

		color: rgba(255,255,255,0.5);

	}



	#logo span a

	{

		color: rgba(255,255,255,0.8);

	}

	

	#logo .icon

	{

		font-size: 4em;

		color: rgba(255,255,255,1);

	}

	

	



/*********************************************************************************/

/* Menu                                                                          */

/*********************************************************************************/



	#menu-wrapper

	{

		background: #3D3D3D;

	}



	#menu

	{

		margin: 0px auto;

	}

	

	#menu ul

	{

	text-align: center;

	position: static;

	bottom: auto;

	margin-top: 0px;

	margin-right: 0px;

	margin-bottom: 0px;

	margin-left: 0px;

	}

	

	#menu li

	{

		display: inline-block;

	}

	

	#menu li a, #menu li span

	{

	display: block;

	margin-left: 0.50em;

	padding: 2em 1.5em 1em 1.5em;

	letter-spacing: 0.4em;

	text-decoration: none;

	font-size: 0.90em;

	font-weight: 600;

	text-transform: uppercase;

	outline: 0;

	color: #FFF;

	float: left;

	text-align: center;

	}

	

	#menu li:hover a, #menu li.active a, #menu li.active span

	{

	text-decoration: none;

	color: #7fbaf5;

	}

	

	#menu .current_page_item a

	{

		color: #7fbaf5;

	}



/*********************************************************************************/

/* Banner                                                                        */

/*********************************************************************************/

	

	#banner-wrapper

{

	overflow: hidden;

	padding: 3em 0em;

	background: #F87979;

}



#banner

{

	overflow: hidden;

	width: 1000px;

	padding: 0px 100px;

	text-align: center;

	color: rgba(255,255,255,.7);

}



#banner a

{

	color: rgba(255,255,255,.9);

}



#banner .box-left

{

	float: left;

}



#banner .box-right

{

	float: right;

}



#banner h2

{

	margin: 0em;

	padding: 0em;

	font-weight: 400;

	font-size: 3em;

	color: #555555;

}



#banner span

{

	display: block;

	padding-top: 0.20em;

	text-transform: uppercase;

	font-size: 1.2em;

	color: #A2A2A2;

	

}



/*********************************************************************************/

/* Page                                                                          */

/*********************************************************************************/



#wrapper

{

	background: #FFF;

}



#page

{

	overflow: hidden;

	padding: 6em 0em;

	border-bottom: 2px solid #E3E3E3;

	text-align: center;

}



#page .button

{

	margin-top: 2em;

}



/*********************************************************************************/

/* Content                                                                       */

/*********************************************************************************/



#content

{

	/*padding: 0em 10%;*/
	flex: 1 0 0%;


}



#content a:hover

{

	color: #2E4052;	

}



/*********************************************************************************/

/* Sidebar                                                                       */

/*********************************************************************************/



	#sidebar

{

	float: right;

	width: 450px;

}



#stwo-col

{

	margin-top: 2em;

}



#stwo-col h2

{

	display: block;

	padding-bottom: 1.5em;

	letter-spacing: 0.10em;

	text-transform: uppercase;

	font-size: 1.2em;

	font-weight: 600;

	color: #454445;

}



#stwo-col .sbox1

{

	float: left;

	width: 210px;

}



#stwo-col .sbox2

{

	float: right;

	width: 210px;

}



/*********************************************************************************/

/* Copyright                                                                     */

/*********************************************************************************/



#copyright

{

	overflow: hidden;

	padding: 5em 0em;

	border-top: 1px solid rgba(255,255,255,0.08);

}



#copyright p

{

	letter-spacing: 0.20em;

	text-align: center;

	text-transform: uppercase;

	font-size: 0.80em;

	color: rgba(255,255,255,0.3);

}



#copyright a

{

	text-decoration: none;

	color: rgba(255,255,255,0.6);

}



#stamp .hexagon

{

	background: #3D3D3D;

}



#stamp .hexagon:before {

	border-left: 60px solid transparent;

	border-right: 60px solid transparent;

	border-bottom: 30px solid #3D3D3D;

}

#stamp .hexagon:after {

	border-color: #3D3D3D;

}





/*********************************************************************************/

/* Featured                                                                      */

/*********************************************************************************/





#featured-wrapper-demo

{

	overflow: hidden;

	padding: 5em 0em;
	background-position:center;

	background-image: url(images/leave.png);


	background-size:contain;
   	background-repeat: no-repeat;
}









#featured-wrapper

{

	overflow: hidden;

	padding: 5em 0em;

	background: #FFF;

	text-align: center;

}



#featured

{

	overflow: hidden;

}



#featured .major

{

	overflow: hidden;

	margin-bottom: 3em;

	padding-bottom: 2em;

	border-bottom: 1px solid #E8E8E8;

}



#featured .major h2

{

	font-size: 3em;

}



#featured .major .byline

{

	font-size: 1.3em;

}



#featured .title

{

	margin-bottom: 1.5em;

	padding-bottom: 1.5em;

	border-bottom: 1px solid #E3E3E3;

}



#featured .title h2

{

	font-size: 1.2em;

}



#featured h2

{

	text-align: center;

}



#featured .icon

{

	position: relative;

	display: inline-block;

	width: 150px;

	height: 150px;

	background: #2C383B;

	margin: 0px auto 20px auto;

	line-height:  150px;

	font-size: 5em;

	text-align: center;

	color: #FFF;

}



.column1,  .column2,  .column3,  .column4

{

	width: 282px;

}



.column1,  .column2

{

	float: left;

	margin-right: 24px;

}



.column3

{

	float: left;

}



.column4

{

	float: right;

}





	#header-featured

	{

		height: 10em;

		background-image: url(images/banner.jpg);

		background-position: center;

		background-size: cover;

	}





#slider-wrapper

{

	padding: 6em 0em;

	background-color: #DB3232;

}



#slider

{

	margin: 0em auto 0em auto;

	width: 1200px;

	position: relative;

}



#slider .button

{

}



#slider .button:hover

{

}



#slider .viewer

{

	width: 1000px;

	height: 375px;

	margin: 0 auto;

	overflow: hidden;

}



#slider .viewer .reel

{

	display: none;

	height: 375px;

}



#slider .viewer .reel .slide

{

	position: relative;

	width: 1000px;

	height: 375px;

}



#slider .viewer .reel h2

{

	position: absolute;

	top: 130px;

	left: 0;

	width: 1200px;

	height: 80px;

	line-height: 80px;

	background: #111111;

	text-align: center;

	opacity: 0.85;

	font-weight: normal;

	color: #ffffff;

	font-size: 2.25em;

}



#slider .viewer .reel p

{

	position: absolute;

	top: 210px;

	left: 0;

	width: 1200px;

	height: 40px;

	line-height: 40px;

	background: #0074C6;

	text-align: center;

	opacity: 0.85;

	font-weight: normal;

	color: #ffffff;

	font-size: 1.1em;

}



#slider .icon

{

	font-size: 4em;

	color: #FFF;

}



#slider .previous-button

{

	position: absolute;

	top: 150px;

	left: 0;

}



#slider .next-button

{

	position: absolute;

	top: 150px;

	right: 0;

}



#slider .indicator

{

	margin: 30px auto 0 auto;

}



#slider .indicator ul

{

	list-style: none;

	padding: 0;

	margin: 0;

	text-align: center;

}



#slider .indicator ul li

{

	display: inline-block;

	width: 12px;

	height: 12px;

	text-indent: -9999em;

	background: #c8c8c8;

	margin: 0 2px 0 2px;

	border-radius: 8px;

	border-bottom: solid 1px #ffffff;

	border-top: solid 1px #909090;

}



#slider .indicator ul li.active

{

	background: #505050;

	border-top: solid 1px #505050;

}



/*********************************************************************************/

/* Footer                                                                        */

/*********************************************************************************/



#footer-wrapper

{

	overflow: hidden;

	padding: 7em 0em;

	color: rgba(255,255,255,0.5);

}





#footer .title h2

{

	font-size: 2em;

	font-weight: 300;

	color: #FFF;

}



#footer .title .byline

{

	display: block;

	padding-top: 1em;

	text-transform: uppercase;

	font-size: 0.80em;

	color: rgba(255,255,255,0.5);

}



#footer .column1,

#footer .column2

{

	width: 560px;

}



#footer .column1

{

	float: left;

}



#footer .column2

{

	float: right;

}



#footer .button

{

	margin-top: 2em;

}



.extra2

{



}



.extra2 .icon

{

	font-size: 1.5em;

}



.margin-btm

{

	overflow: hidden;

	margin-bottom: 5em;

	padding-bottom: 5em;

	border-bottom: 1px solid rgba(0,0,0,.1);

}



.extra2 .button

{

	margin-top: 2em;

}



.extra2 .title h2

{

	font-size: 2em;

}



.extra2 .title .byline

{

	font-size: 0.80em;

}



.extra2 .ebox1,

.extra2 .ebox2,

.extra2 .ebox3,

.extra2 .ebox4

{
	padding: 2% 10%;
	/*padding: 2em 10em;*/

}



.extra2  .ebox1

{

}



.extra2 .ebox2

{

	margin-top: 10%;

}



.extra2 .ebox3

{

	margin-top: 10%;

}



.extra2 .ebox4

{

	margin-top: 10%;

}



.hexagon {

	margin: 0 auto 2em auto;

	width: 120px;

	height: 80px;

	line-height: 80px;

	background-color: #2E4052;

	position: relative;

	text-align: center;

	color: #FFF;

	font-size: 2em;

}

.hexagon:before {

	content: "";

	position: absolute;

	top: -30px;

	left: 0;

	width: 0;

	height: 0;

	border-left: 60px solid transparent;

	border-right: 60px solid transparent;

	border-bottom: 30px solid #2E4052;

}

.hexagon:after {

	content: "";

	position: absolute;

	bottom: -30px;

	left: 0;

	width: 0;

	height: 0;

	border-left: 60px solid transparent;

	border-right: 60px solid transparent;

	border-top: 30px solid #2E4052;

}



#portfolio

{

	text-align: center;

}



#portfolio .title

{

	margin-bottom: 1.5em;

	padding-bottom: 1.5em;

	border-bottom: 1px solid #E3E3E3;

}



#portfolio .title h2

{

	font-size: 1.2em;

}



#portfolio h2

{

	text-align: center;

}
