/*CSS for a really simple responsive grid*/
body{font-family:Open Sans; color:#555555;}
h1{font-size:24px; font-weight:normal; margin:0.4em 0;}

.container { width: 100%; margin: 0 auto; }
.container .row { float: left; clear: both; width: 100%; }
.container .col { float: left; margin: 0 0 1.2em; padding-right: 1.2em; padding-left: 1.2em; }
.container .col.one, .container .col.two, .container .col.three, .container .col.four, .container .col.five, .container .col.six, .container .col.seven, .container .col.eight, .container .col.nine, .container .col.ten, .container .col.eleven, .container .col.twelve { width: 100%; }

#sidebar
{
	position:fixed;
}
#register
{
	padding-left:30px;
}

.content2
{
	padding-left:10px;
}
ul.nav1
{
	display:none;
}
@media screen and (min-width: 767px) {
  .container{width: 100%; margin: 0 auto;}
  .container .row{width:100%; float:left; clear:both;}
  .container .col{float: left; margin: 0 0 1em; padding-right: .5em; padding-left: .5em;}
  .container .col.one { width: 8.33%; }
  .container .col.two { width: 16.66%; }
  .container .col.three { width: 24.99%; }
  .container .col.four { width: 50%; }
  .container .col.five { width: 41.65%; }
  .container .col.six { width: 49.98%; }
  .container .col.seven { width: 58.31%; }
  .container .col.eight { width: 66.64%; }
  .container .col.nine { width: 74.97%; }
  .container .col.ten { width: 83.3%; }
  .container .col.eleven { width: 91.65%; }
  .container .col.tweleve { width: 100%; }
  .content2
  {
	padding-left:230px;
  }
  ul.nav1
  {
	display:block;
  }
}

/*All the button styles*/

* {-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;}
a{text-decoration:none;}

/********************
GENERIC BUTTON STYLES
********************/
.btn {font-size: 18px; white-space:nowrap; width:100%; padding:.8em 1.5em; font-family: Open Sans, Helvetica,Arial,sans-serif; line-height:18px; display: inline-block;zoom: 1; color: #fff; text-align: center; position:relative; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear;}

/*RED/ROUGE BUTTON STYLES*/		
.btn.btn-rouge{background-color: #c0392b; border-color: #c0392b; -webkit-box-shadow: 0 3px 0 #8f2a1f; box-shadow: 0 3px 0 #8f2a1f;}
.btn.btn-rouge:hover{background-color:#ac3420;}
.btn.btn-rouge:active{top: 3px; outline: none; -webkit-box-shadow: none; box-shadow: none;}

/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "Droid Serif", serif;
  color: #7f8c97;
  background-color: #e9f0f5;
}

a {
  color: #acb7c0;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

img {
  max-width: 100%;
}

h1, h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #D53211;
padding-top:0.2em;
}
thead {
font-weight: bold;
background-color: #d53211;
color: #fff;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
header {
  height: 200px;
  line-height: 200px;
  text-align: center;
  background: #303e49;
}
header h1 {
  color: white;
  font-size: 18px;
  font-size: 1.125rem;

}
@media only screen and (min-width: 1170px) {
  header {
    height: 300px;
    line-height: 300px;
  }
  header h1 {
    font-size: 24px;
    font-size: 1.5rem;
    
  }
}

#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #d7e4ed;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
  
 
}

.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    margin: 4em 0;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  
}
.cd-timeline-img img {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
}
.cd-timeline-img.cd-picture {
  background: #ffffff;
}
.cd-timeline-img.cd-movie {
  background: #ffffff;
}
.cd-timeline-img.cd-location {
  background: #ffffff;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 60px;
    height: 60px;
    left: 50%;
    margin-left: -30px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }

  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 0.25em;
  padding: 1em;
  box-shadow: 0 3px 0 #d7e4ed;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content h2 {
  color: #303e49;
}
.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
  
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 0.2em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;
}
.cd-timeline-content .cd-date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}
.cd-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid white;
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
    
  }
  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 1.6em;
    width: 45%;
  }
  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: white;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}




/*
Author: arindam's
Author URL: http://arindambhowmik.com
*/



/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #D53211;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  color: white;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #333;
  border:2px solid #D53211;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
  color: white;
}
.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


.rollovericons a{
  margin: 10px;
  }


a.btn-left {
  padding: 0.45em;
  display:inline-block;
  margin-top: 2em;
  width: 18%;
  color: #fff;
  text-transform: capitalize;
  font-size: 1em;
  text-decoration: none;
  border:2px solid #D53211;
   -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  text-align:center;  
  margin-right: 1em;
}
a.btn-right {
padding: 1em;
  display: inline-block;
  margin-top: 2em;
  width: 25%;
  color: #fff;
  text-transform: capitalize;
  font-size: 1.1em;
  text-decoration: none;
  background: #D53211;
   -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  text-align:center;  
}







h4, h5, h6,
h1, h2, h3 {margin: 0;}
ul, ol {margin: 0; padding:0;}
p {margin: 0;}
html, body{
	font-family: Helvetica, Arial,'OpenSans-Regular';
	font-size: 100%;
	background: #ffffff;
}
@font-face {
   font-family: 'OpenSans-Regular';
   src: url(../fonts/OpenSans-Regular.ttf)format('truetype');
}
@font-face {
   font-family: 'Play-Bold';
   src: url(../fonts/Play-Bold.ttf) format('truetype');
}
@font-face {
   font-family: 'HelveticaNeueLTPro';
   src: url(../fonts/HelveticaNeueLTPro-BdCn.otf) format('opentype');
}
@font-face {
   font-family: 'Play-Regular';
   src: url(../fonts/Play-Regular.ttf) format('truetype');
}
h1.b1,h2.b2,h3.b3 {
  margin-bottom:25px;
  display: block;
}
body a{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	text-decoration:none;
}
.row{
	margin:0;
}	
a#toTop{
  margin-top: 0;
}
.breadcrumb{
	margin:2em 0;
	text-align:left;
}
/*-- header_top --*/
.banner{
	background:url(../img/2017-Users-Conference-Theme.png) no-repeat center top;
	background-size:100% 100%;
	min-height:540px;
	//    padding-left: 4em;
	position:relative;
}
.banner-info {
	position:relative;
	//    left: 25%;
    top: 25%;
    text-align: center;
   // width: 54%;
}
.banner-info h2{
	color:#fff;
	font-size:2em;
	font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
}
.banner-info h4{
	color:#fff;
	font-size:1.6em;
	font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
}

.banner-info p{
	color:#fff;
font-size:1.3em;
line-height:1.7em;
width:90%;
margin:0.8em auto;
}
.logo a {
    background: #d53211;
    padding: 1.4em 0.4em;
    display: inline-block;
	color: #fff;
     font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
    text-decoration: none;
	font-size:1em;
}
.top-menu ul li{
	display:block;
	
}
.top-menu ul li a{
	color:#fff;
	display:block;
	padding:1.4em 1.3em;
	font-size:1em;
	text-decoration:none;
	background:#d53211;
	 font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
}
.top-menu ul li a:hover{
	background:#fff;
	color:#d53211;
}
span.menu {
	display: block;
	padding:1.15em 0;
	cursor: pointer;
	color: #E74C3C;
	font-weight: 700;
	position: relative;
}
.top-menu {
	width: 100%;
	display:inline-block;
	text-align:center;
}
.top-menu ul li {
  float: none;
}
ul.nav1 {
	// display: none;
}
.top-menu ul {
	padding: 0;
	margin: 0;
	z-index: 9999;
	position: absolute;
	width: 100%;
	left:0px;
}
.top-menu ul.nav1 li {
	 display: block;
	 text-align: center;
	 background:#333;	 
	 margin: 0;
	 width: 100%;
}
.top-menu ul li a {
	 padding: 1.5em 0;
	 display: block;
	 float: none;
}	
.top-menu ul li a i {
	margin-top: .5em;
}
.top-menu ul li a {
	padding: 1em 0;
}

.top-menu ul li a:hover {
	background-color: #f05f42;
	color:#fff;
}

.side-menu{
	position:fixed;
	//top:25%;
	z-index: 1;
	width:220px;
}
.copy-rights{
	float:right;
	margin-top:2em;
	margin-right: 50px;
}
.copy-rights ul li{
  padding: 0em;
  list-style:none;
  display:inline-block;
}
.copy-rights ul li a{
 display:inline-block;
 margin: 0em 0.4em 0.5em 0em;
}
.copy-rights ul li a span.fa {
  background-position: -3px 0px;
}
.copy-rights ul li a span.tw {
  background-position: -43px 0px;
}
.copy-rights ul li a span.g {
  background-position:-89px -1px;
}
.copy-rights ul li span.in {
  background-position: -132px -1px;
}
.copy-rights ul li a  span.pin {
  background-position:-178px -2px;
}
.copy-rights ul li a  span.fa:hover {
  background-position:-2px -43px;
}
.copy-rights ul li a span.tw:hover {
  background-position: -42px -43px;
}
.copy-rights ul li a span.g:hover {
  background-position:-88px -45px;
}
.copy-rights ul li a span.in:hover {
  background-position: -131px -45px;
}
.copy-rights ul li a span.pin:hover {
  background-position:-176px -46px;
}
.copy-rights ul li span{
  background:url(../images/ftr-icons.png)no-repeat;
  width:34px;
  height:36px;
  display:block;
}
/*--about--*/
.about{
//	padding:4em 0;
}
.gallery-top
{
    margin-top: 3em;
}
.about-top,.service-top,.raftrips-top,.gallery-top,.contact-top{
	text-align:center;
}
.about-top h3,.service-top h3,.raftrips-top h3,.gallery-top h3,.contact-top h3{
	color:#d53211;
	font-size:2.5em;
	font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
}
i.strp{
	display:block;
	background:#C9C9C9;
	margin:1em auto 1em auto;
	width:9%;
	height:1px;
}
.productNames {
	color:#303e49;
}
.abt-info {
	padding-top:0em;
}
.abt-info h4{
	color: #D53211;
    font-size: 1.3em;
    font-weight: 600;
	font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
}
.abt-info p{
	//color:#999;
	color:#707070;
	line-height:1.7em;
	font-size:0.9em;
	margin:0.7em 0;
     
}
/*--services--*/
.services{
	padding-bottom:4em;	
}
.strt-line{
	background:#eee;
	display:block;
	    width: 2px;
    height:49px;
    position: absolute;
    left: 50%;
}
.service-grids{
	width:80%;
	margin:0 auto;	
}
.ser1 {
    width: 25%;
    float: left;
	text-align:center;
	position:relative;
}
.line{
	background:#eee;
	display:block;
	width:75%;
	margin:6em auto 3em auto;
	height:2px;
}
.icon{
	padding:1.5em;
	border:1px solid #DBD9D9;
	border-radius:3px;
}
.glyphicon-flag:before,.glyphicon-user:before,.glyphicon-plus-sign:before,.glyphicon-bullhorn:before {
    color:#c9c9c9;
	font-size:3em;
}
i.line1{
	background:#eee;
	display:inline-block;
	    height: 40px;
    width: 2px;
    position: absolute;
    top: -48px;
    left: 50%;
}
i.line2{
	background:#eee;
	display:inline-block;
	    height: 40px;
    width: 2px;
    position: absolute;
    top: -48px;
    left: 46%;
}
i.line3{
	background:#eee;
	display:inline-block;
	    height: 40px;
    width: 2px;
    position: absolute;
    top: -48px;
    left: 46%;
}
i.line4{
	background:#eee;
	display:inline-block;
	    height: 41px;
    width: 2px;
    position: absolute;
    top: -49.5px;
    left: 50%;
}
.service-grids-info{
	margin-top:3em;
}
ul.project_box li.mini-post-meta1 {
  display: block;
  float: left;
  width: 35px;
  background: #c9c9c9;
  text-align: center;
  margin: 0px 5% 0 0;
  height: 35px;
  color: #fff;
  font-size: 1.1em;
  border-radius:50%;
  padding:5px 0px;
}
ul.project_box {
  padding: 0;
  list-style: none;
  margin-bottom: 3em;
}
ul.project_box li.desc {
  overflow: hidden;
}
ul.project_box li.desc h4 a {
      color: #DBC505;
    font-size: 1.1em;
    font-weight: 600;
    font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
}
.span_2_of_about h3 a, ul.project_box li.desc h5 a:hover{
  color: #F54785;
}
ul.project_box li.desc p{
  color: #999;
  font-size: 0.9em;
  line-height: 1.8em;
  margin-top:8px;
}
/*--Raftrips--*/
.raftrips{
	padding-bottom:4em;
}
.rft-grid{
	margin-top:2em;
}
.rft-pic-info h4{
    color: #D53211;
    font-size: 1.1em;
    font-weight: 600;
    font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
}
.rft-pic-info p {
    color: #999;
    font-size: 0.9em;
    line-height: 1.8em;
    margin-top: 8px;
}
.rft-pic-info{
	padding-top:0em;
}
/*--gallery--*/
.gallery{
	padding-bottom:4em;
}
.gallery-bottom{
	margin-top:2em;
	text-align: center;
}
.gallery-left img{
	width:100%;
}
.gallery-left:hover img {
  -webkit-filter: grayscale(100%);
  opacity:8;
  transition: all 300ms!important;
  -webkit-transition: all 300ms!important;
  -moz-transition: all 300ms!important;
}
.gallery-left{
	position: relative;
}
.gallery-grid img{
	width:100%;
}
.gallery-grid:hover img {
  -webkit-filter: grayscale(100%);
  opacity:8;
  transition: all 300ms!important;
  -webkit-transition: all 300ms!important;
  -moz-transition: all 300ms!important;
}
.gallery-grid{
	position: relative;
}
.gallery-1{
	margin-top:25px;
}
.gallery-1:nth-child(1){
	margin-top:0;
}
/*----subscribe---*/
.subscribe{
	background:url(../images/news.jpg) no-repeat 0px 0px;
	background-size:cover;
	text-align:center;
	padding-top:5em;
	min-height:350px;
}
.subscribe h3{
	color:#fff;
	margin:0;
	font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
	font-size: 2.2em;
}
.subscribe p{
	font-size:0.9em;
	color:#fff;
	line-height:1.7em;
	margin:1em auto;
	width:70%;
	
}
.subscribe form{
	width:50%;
	margin:2em auto 0 auto;
}
.subscribe form input[type="text"]{
	border:0;
	outline:0;
	width:74%;
	font-size:1em;
	padding:0.6em 1em;
	color:#7D7D7D;
}
.subscribe form input[type="submit"]{
	outline:none;
	border:1px solid #fff;
	width:20%;
	padding:0.55em;
	background:none;
	margin-left:1em;
	color:#fff;
}
.subscribe form input[type="submit"]:hover{
	color:#333;
	border:1px solid #fff;
	background:#fff;
	transition:0.5s all;
		-webkit-transition:0.5s all;
		-moz-transition:0.5s all;
		-o-transition:0.5s all;
		-ms-transition:0.5s all;
}
/*----/subscribe---*/
.contact{
//	padding:4em 0;
}
.contact-left{
padding-left:0;
}
.contact form{
	margin-top:2em;
}
.contact-head{
padding:0em 0 2em 0;
}
.contact form input[type="text"],.contact-right textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid #87655B;
font-size: 1em;
margin-bottom: 1.5em;
color: #87655B;
outline: none;
font-weight: 400;
transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.contact-right textarea{
resize:none;
height: 181px;
}
.contact form input[type="text"]:hover,.contact-right textarea:hover{
border:1px solid #f43c60;
}
.contact form input[type="submit"] {
	font-size:0.8em;
	display:inline-block;
	background:#DBC505;
	padding:0.6em 2em;
	 border:2px solid #DBC505;
	color:#fff;
	text-decoration:none;
	font-weight:500;
	transition: 0.5s all ease;
-webkit-transition: 0.5s all ease;
-moz-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
-ms-transition: 0.5s all ease;
}
.contact form input[type="submit"]:hover{
  background:transparent;
  color:#DBC505;
  border:2px solid #DBC505;
}
.address{
padding:2em 0 0 0;
border-top:1px solid #eee;
margin-top:2em;
}
.address h3{
	font-family: 'HelveticaNeueLTPro',Helvetica, Arial;
  font-size: 1.8em;
  color: #d53211;
  margin-bottom: 0.7em;
  text-align:center;
}
.locations{
padding-left:0;
margin-top:3em;
}
.locations ul{
display:inline-block;
width:48%;
}
.locations ul li{
display:inline-block;
}
.locations ul li span {
background: url(../images/find.png) no-repeat 0px 0px;
vertical-align: super;
width: 38px;
height: 38px;
display: inline-block;
margin:0 0.5em 5.5em 0;
}
.address-info  p{
color: #999;
font-size: 0.9em;
text-decoration: none;
padding-bottom:3px;
display: block;
font-weight: 400;
}
.address-info p a{
color: #999;
}
.address-info p a:hover{
	color: #026466;
}
.address-info h4 {
color:#000000;
margin-bottom:8px;
font-size:1em;
    font-weight: 600;
}
.contact-map{
	margin-top:2em;
}
.contact-map iframe {
  min-height: 310px;
  width: 100%;
  border: none;
}
.footer{
	background:#eee;
	padding:1.5em;
}
.copywrite{
	text-align: left;
	padding-top: 6px;
}
.copywrite p, .copywrite p a {
  color: #999;
  font-size:0.9em;
}

#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 14px;
	right: 3%;
	overflow: hidden;
	width: 40px;
	height: 40px;
	border: none;
	text-indent: 100%;
	background: url("../images/to-top1.png") no-repeat 0px 0px;
}
#toTopHover {
	width: 40px;
	height: 40px;
	display: block;
	overflow: hidden;
	float: right;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
}

/*--responsive--*/
@media (max-width: 1440px){
.banner-info {
//    left: 22%;
 //   width: 58%;
}
}
@media (max-width: 1366px){
.banner-info {
    left: 20%;
    width: 66%;
}
}
@media (max-width: 1280px){
}
@media (max-width: 980px){
.banner {
    min-height: 525px;
    padding-left: 2em;
}
.banner-info h2 {
    font-size: 4em;
}
.logo a {
    font-size: 0.85em;
}
.side-menu {
    top: 9%;
}
.about-top h3, .service-top h3, .raftrips-top h3, .gallery-top h3, .contact-top h3 {
    font-size: 2em;
}
}
@media (max-width: 991px){
.banner-info h2 {
    font-size: 3.5em;
}
.abt-pic {
    width: 40%;
    float: left;
	padding:0;
}
.abt-info {
    padding-top: 0em;
    float: left;
    width: 60%;
}
.abt-info p {
    font-size: 0.8em;
}
.grid1 {
    margin-bottom: 2em;
}
.banner-info {
    left: 17%;
}
.service-grids {
    width: 100%;
    margin: 0 auto;
}
.rft-pic {
    float: left;
    width: 40%;
}
.rft-pic-info {
    padding-top: 0.5em;
    float: left;
    width: 60%;
}
.rft-pic-info p,ul.project_box li.desc p,.subscribe p,.address-info p{
    font-size: 0.8em;
}
.gallery-grid {
    width: 33.3%;
    float: left;
}
.subscribe p {
    width: 81%;
}
.subscribe form input[type="text"] {
    width: 61%;
}
.subscribe form input[type="submit"] {
    width: 33%;
}
.contact-right,.contact-left {
    padding: 0;
}
.banner-info p{
	font-size:0.9em;
}
}
@media (max-width: 768px){
.banner {
    min-height: 450px;
    padding-left: 0em;
}
.banner-info h2 {
    font-size: 3em;
}
.footer {
    background: #eee;
    padding: 1.5em 0;
}
.side-menu {
    top: 6%;
    left: 20px;
}
.banner-info{
	top:40%;
}
.banner-info p {
    font-size: 0.85em;
    width: 100%;
}
}
@media(max-width:640px){
.banner-info h2 {
    font-size: 2.5em;
}
.banner-info p {
    font-size: 0.8em;
}
.logo a {
    font-size: 0.7em;
}
.top-menu ul li a {
    padding: 0.7em 0;
    font-size: 0.85em;
}
.banner {
    min-height: 400px;
}
.banner-info{
	top:45%;
}
.about {
    padding: 2em 0;
}
.abt-info h4 {
    font-size: 1.2em;
}
ul.project_box li.desc h4 a {
    font-size: 1em;
}
.about-top h3, .service-top h3, .raftrips-top h3, .gallery-top h3, .contact-top h3 {
    font-size: 1.6em;
}
.subscribe h3 {
    font-size:1.7em;
}
.subscribe p {
    width: 100%;
}
.subscribe {
    padding-top: 3em;
    min-height: 270px;
}
.subscribe form {
    width: 90%;
}
.address h3 {
    font-size: 1.5em;
}
}
@media(max-width:480px){
.copy-rights ul li a {
    margin: 0em 0.2em 0em 0em;
}
span.menu {
    padding: 0.7em 0;
}
.banner-info h2 {
    font-size: 2em;
}
.side-menu {
    top: 5%;
    left: 13px;
}
.banner-info {
    left: 10%;
    width: 80%;
}
.banner-info p {
    font-size: 0.7em;
}
.logo a {
    font-size: 0.6em;
}
.banner {
    min-height: 346px;
    background: url(../img/2017-Users-Conference-Theme.png) no-repeat ;
	background-size:cover;
}
.abt-pic {
    width: 100%;
}
.abt-info {
    padding: 0em;
    width: 100%;
	    margin-top: 1em;
}
i.strp {
    margin: 1em auto 2em auto;
}
.abt-info h4 {
    font-size: 1em;
}
.abt-info p {
    font-size: 0.75em;
}
.icon {
    padding: 1em;
}
.glyphicon-flag:before, .glyphicon-user:before, .glyphicon-plus-sign:before, .glyphicon-bullhorn:before {
    font-size: 2em;
}
ul.project_box li.desc h4 a {
    font-size: 0.9em;
}
.about {
    padding: 2em 0 0em 0;
}
.line {
    margin: 5em auto 3em auto;
}
ul.project_box {
    margin-bottom: 2em;
}
ul.project_box li.mini-post-meta1 {
    width: 25px;
    margin: 0px 4% 0 0;
    height: 25px;
    font-size: 0.9em;
    padding: 3px 0px;
}
.services {
    padding-bottom: 1em;
}
.rft-pic {
    width: 100%;
    padding: 0;
}
.rft-pic-info {
    width: 100%;
    padding: 19px 0;
}
.rft-grid {
    margin-top: 1em;
}
.rft-pic-info h4 {
    font-size: 1em;
}
.rft-pic-info p, ul.project_box li.desc p, .subscribe p, .address-info p {
    font-size: 0.75em;
}
.gallery-1 {
    margin-top: 11px;
}
.gallery-grid {
    padding: 0 5px;
}
.contact-map iframe {
    min-height: 235px;
    width: 100%;
}
.contact form input[type="text"], .contact-right textarea {
    padding: 8px 10px;
    font-size: 0.85em;
}
.contact {
    padding: 2em 0;
}
.locations ul {
    width: 100%;
	    margin-bottom: 1em;
}
.locations ul li span {
    margin: 0 0.5em 4.5em 0;
}
.copywrite p, .copywrite p a {
    font-size: 0.8em;
}
}
@media(max-width:320px){
.copy-rights ul li span {
    width: 30px;
    height: 30px;
    background-size: 182px;
}
.copy-rights ul li a {
    margin: 0;
}
.copy-rights ul li a span.tw {
    background-position: -37px 0px;
}
.copy-rights ul li a span.g {
    background-position: -74px -1px;
}
.copy-rights ul li span.in {
    background-position: -111px -1px;
}
.copy-rights ul li a span.pin {
    background-position: -149px -2px;
}
.copy-rights ul li a span.fa:hover {
    background-position: -2px -37px;
}
.copy-rights ul li a span.tw:hover {
  background-position: -37px -36px;
}
.copy-rights ul li a span.g:hover {
  background-position:-73px -38px;
}
.copy-rights ul li a span.in:hover {
  background-position: -111px -37px;
}
.copy-rights ul li a span.pin:hover {
  background-position:-149px -40px;
}
.logo a {
    font-size: 0.5em;
}
.banner-info h2 {
    font-size: 1.4em;
}
.banner {
    min-height: 309px;
    background: url(../img/2017-Users-Conference-Theme.png) no-repeat ;
    background-size: cover;
}
.grid1 {
    margin-bottom: 0em;
}
.services {
    padding: 2em 0 0;
}
.about-top h3, .service-top h3, .raftrips-top h3, .gallery-top h3, .contact-top h3 {
    font-size: 1.4em;
}
.icon {
    padding: 0.5em;
}
.glyphicon-flag:before, .glyphicon-user:before, .glyphicon-plus-sign:before, .glyphicon-bullhorn:before {
    font-size: 1.5em;
}
.service-grids-info {
    margin-top: 2em;
}
.service-grid {
    padding: 0;
}
.raftrips {
    padding-bottom: 0em;
}
.subscribe h3 {
    font-size: 1.4em;
}
.subscribe {
    padding-top: 2em;
    min-height: 300px;
}
.subscribe form input[type="text"] {
    width: 100%;
    font-size: 0.8em;
	margin-bottom:1em;
}
.subscribe form input[type="submit"] {
    width: 47%;
    font-size: 0.85em;
}
.contact-map iframe {
    min-height: 165px;
}
.address h3 {
    font-size: 1.3em;
}
.address-info h4 {
    font-size: 0.9em;
}
.locations {
    padding: 0;
    margin-top: 1.5em;
}
.contact-right textarea {
    height: 140px;
}
.line {
    margin: 4em auto 3em auto;
}
.strt-line {
    background: #eee;
    display: block;
    width: 2px;
    height: 33px;
}
}
