/************ MEETING PAGE ***************/
	.team-complete {
	    width: 100vw;
	    height: 100vh;
	    float: left;
	    background: transparent url("http://res.cloudinary.com/govimg/image/upload/v1473529785/570d510203771d10344c1708/boston-skyline.jpg") no-repeat;
	    background-size: cover;
	    position: relative;
	}
	.team-complete .team-content {
	    width: 450px;
	    background: rgba(255, 255, 255, .9);
	    height: 100%;
	    position: absolute;
	    right: 100px;
	    top: 0;
	    overflow: hidden;
	    z-index: 99;
	}
	.team-complete .team-dial-box {
		padding-bottom:15px;
		width:100%;
		float:left;
	}
	.team-complete .team-dial-box i {
		font-size:40px;
		color:#666;
		float:left;
		padding-right:15px;
	}
	.team-complete .team-dial-box a {
		float:left;
		line-height:40px;
		color:#666;
		text-decoration:none;
	}
	.team-complete .team-dial-box a:hover {
		color:#e67e22;
	}
	.team-complete .team-dial-box:hover i {
		color:#e67e22;
	}
	.team-complete .team-launch-meeting {
		padding:25px 45px;
		position:relative;
		background-color:#fff;
	}
	.team-complete .video-wrap {
	    width: 450px;
	    height: 35vh;
	    position: relative;
	    top: -25px;
	    left: -45px;
	    pointer-events: none;
	    overflow: hidden;
	}
	.team-complete .video-wrap .video-content {
		width:450px;
	}
	.team-complete .team-info-wrapp {
		height:65vh;
	}
	.team-complete .team-launch-button {
	    width: 280px;
	    background-color: #e67e22;
	    padding: 15px 40px;
	    color: #fff;
	    text-decoration: none;
	    font-size: 22px;
	    position: relative;
	}
	.team-complete .team-launch-button i {
	    font-size: 80px;
	    color: #e67e22;
	    width: 100px;
	    height: 100px;
	    display: block;
	    border-radius: 50%;
	    border: 10px solid #fff;
	    float: left;
	    position: absolute;
	    right: -90px;
	    top: -20px;
	    border-radius: 50%;
	    background-color: #fff;
	}
	@media screen and (max-width: 640px) {
		.team-complete .team-content {
			width:100%;
			right:0;
		}
		.team-complete .video-wrap .video-content {
			width:100%;
		}
		.team-complete .video-wrap {
			width:100%;
			top:0;
			left:0;
		}
		.team-complete .team-launch-button {
			width:75%;
			font-size:16px;
		}
		.team-complete .team-launch-button i {
		    font-size: 70px;
		    color: #e67e22;
		    width: 90px;
		    height: 90px;
		    display: block;
		    border-radius: 50%;
		    border: 10px solid #fff;
		    float: left;
		    position: absolute;
		    right: -80px;
		    top: -20px;
		    border-radius: 50%;
		    background-color: #fff;
		}
	}
	@media screen and (max-width: 480px) {
		.team-complete .video-wrap {
			height: 25vh;
		}
	}


/**** MOMENTS PAGE ****/
.moments-wrapp { float:left; width:100%; background:#fff; }
.moments-wrapp .lg-title {
    text-align:center;
    font-size: 22px;
    line-height:150%;
    margin-top:30px;
}
.moments-wrapp .lg-subtitle {
    text-align:center;
    font-size: 18px;
    line-height:150%;
    color:#666;
    font-style:italic;
    margin-bottom:30px;
}
.moments-right-content, .moments-left-content {
    float:left;
    display:block;
    width:50%;
    padding:1% 2%;
}
.moments-left-content {
    border-right: 5px solid #808080;
    text-align:right;
}
.moments-left-content .moment {
    width:100%;
    margin: 30vh 0 0 200px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    opacity:1;
    width: 300px;
}
.moments-right-content .moment {
    width:100%;
    margin: 30vh 0 0 20px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    opacity:1;
    width: 300px;
}
.moments-left-content .more-padding {
    opacity:0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    margin: 30vh 0 0 -15vh;
}
.moments-right-content .more-padding {
    opacity:0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    margin: 30vh 0 0 15vh;
}
.moment-circle {
    width: 300px;
    height: 300px;
    display: block;
    border-radius: 50%;
    position: relative;
    border: 3px solid #e67e22;
}
.moment-circle i {
    color: #e67e22;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40px;
    margin: auto;
    text-align: center;
    font-size: 40px;  
}
.moment-date {
    text-align: left;
    font-size: 20px;
    line-height: 150%;
    color: #666;
}
.moment-title {
    text-align: left;
    font-size: 22px;
    line-height: 150%;
    color:#e67e22;
}
.moment-subtitle {
    text-align: left;
    font-size: 18px;
    line-height: 150%;
    color: #666;
    margin-bottom: 30px;
}

@media screen and (min-width: 767px) and (max-width: 1200px) {
  .moments-left-content .moment {
    margin: 30vh 0 0 110px !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .moments-left-content {
    border-left: 5px solid #808080;
    border-right: 0;
  }
  .moments-left-content .moment {
    margin: 30vh 0 0 0 !important;
    padding-top:100px;
  }
  .moments-right-content {
    margin-left: -340px;
  }
  .moments-right-content .moment {
    padding-top:100px;
  }
  .moments-map .moment-circle {
    top: -285px;
    width:250px;
    height:250px;
  }
  .moments-left-content .moment-date,.moments-left-content .moment-title,.moments-left-content .moment-subtitle {
    margin-left: 20px;
  }
  .moments-left-content .moment-circle {
    margin-left: 15px;
  }
}

/**** TEAM PAGE ****/
.team-wrapp { float:left; width:100%; background:#fff; }
.team-wrapp .hover-content { position:relative; background:#fff; }
.team-wrapp .lg-title {
    text-align:center;
    font-size: 22px;
    line-height:150%;
    margin-top:30px;
}
.team-wrapp .lg-subtitle {
    text-align:center;
    font-size: 18px;
    line-height:150%;
    color:#666;
    font-style:italic;
    margin-bottom:30px;
}
.team-wrapp .social-linkedin {
    width: 40px;
    height: 40px;
    color:#e67e22;
    font-size:40px;
    display: block;
    position: absolute;
    top: 5%;
    left: 5%;
    -ms-transform: translate3d(-25%, -25%, 0);
    -webkit-transform: translate3d(-25%, -25%, 0);
    transform: translate3d(-25%, -25%, 0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    opacity:0;
    z-index:99;
    text-decoration:none;
}
.team-wrapp .social-mail {
    width: 40px;
    height: 40px;
    color:#e67e22;
    font-size:40px;
    display: block;
    position: absolute;
    top: 5%;
    right: 5%;    
    -ms-transform: translate3d(25%, -25%, 0);
    -webkit-transform: translate3d(25%, -25%, 0);
    transform: translate3d(25%, -25%, 0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    opacity:0;
    z-index:99;
    text-decoration:none;
}
.team-wrapp .social-linkedin:hover {
    opacity:0.8;
    z-index:99;
    text-decoration:none;
}
.team-wrapp .social-mail:hover {
    opacity:0.8;
    z-index:99;
    text-decoration:none;
}
.team-wrapp .hover-content:hover .profile .social-linkedin {
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;  
    opacity:1; 
}
.team-wrapp .hover-content:hover .profile .social-mail {
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out; 
    opacity:1;   
}
.team-wrapp .profile {
    background-color:#efefef;
}
.team-wrapp .hover-content {
    /* border:1px solid #efefef; */
}
.team-wrapp .profile img { 
    width:100%; 
    height:100%; 
    padding: 25px;
    border-radius: 50%;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
.team-wrapp .hover-content:hover .profile img {
    transform: scale(0.60) translate3d(0, -82px, 0);
    -ms-transform: scale(0.60) translate3d(0, -82px, 0);
    -webkit-transform: scale(0.60) translate3d(0, -82px, 0);
    transform: scale(0.60) translate3d(0, -82px, 0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;  
}
.team-wrapp .person-detailed {
    position: absolute;
    top: 75px;
    padding: 0 5%;
    background-color:#fff;
    opacity:0;
    font-size:12px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;  
    color: #333;
    max-height:175px;
    overflow:hidden;
    padding: 0 10px;
}
.team-wrapp .person-detailed p {
    text-align:left;
}
.team-wrapp .person-info {     
    bottom: 0;
    width: 100%;
    height: 20%;
    color: #e67e22;
    background-color:#fff;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    padding:1% 0;
}
.team-wrapp .hover-content:hover .person-info {  
    -ms-transform: translate3d(0, -190%, 0);
    -webkit-transform: translate3d(0, -190%, 0);
    transform: translate3d(0, -190%, 0);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    padding:1% 0;
}
.team-wrapp .person-info h3 { 
    margin-top:10px; 
    margin-bottom:5px; 
    text-align:center;
}
.team-wrapp .hover-content:hover .person-info .person-detailed {
    opacity:1;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;      
    width:100%;
    min-height:100px;
}
.team-wrapp .person-info p { 
    text-align:center;
}
.team-wrapp .padding-10 { padding:10px !important;  }
.team-wrapp .profile-circle {
    border:1px solid #efefef;
    height:380px;
    overflow:hidden;
    background-color:#fff;
}
.team-wrapp .profile-circle.show-details .profile img {
    transform: scale(0.3);
    margin-left: -30%;
    margin-top: -30%;
}

/**** ABOUT TABS ****/
.about-wrapp {
  background-color:#efefef;
  width:100%;
  height:100px;
  float:left;
}
.about-wrapp ul li {
    list-style-type:none;
    float:left;
    width:33%;
    text-align:center;
    position:relative;
    line-height:100px; 
    font-size:18px;
}
.about-wrapp ul li a {
    color:#333;
    text-decoration:none;
}
.about-wrapp ul li a.active {
    color:#e67e22;   
}
.about-wrapp ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    width: 1px;
    height: 20px;
    background-color: #e67e22;  
}
.about-wrapp ul li:last-child:after {
    content: '';
    position: absolute;
    right: 0;
    top: 40px;
    width: 1px;
    height: 20px;
    background-color: #e67e22;     
}
@media screen and (max-width: 480px) {
    .team-wrapp .profile-circle {
        height: 115vw !important; 
    }
    .team-wrapp .item { 
        width:100% !important;
    }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
    .team-wrapp .profile-circle {
        height: 60vw !important; 
    }
}
@media screen and (min-width: 768px) and (max-width: 840px) {
    .team-wrapp .profile-circle {
        height: 45vw !important; 
    }
}
@media screen and (min-width: 840px) and (max-width: 992px) {
    .team-wrapp .profile-circle {
        height: 36vw !important; 
    }
}
	
	/******** ICONS *********/
	@font-face {
	  font-family: 'icomoon';
	  src:  url('fonts/icomoon.eot?97xovd');
	  src:  url('fonts/icomoon.eot?97xovd#iefix') format('embedded-opentype'),
	    url('fonts/icomoon.woff2?97xovd') format('woff2'),
	    url('fonts/icomoon.ttf?97xovd') format('truetype'),
	    url('fonts/icomoon.woff?97xovd') format('woff'),
	    url('fonts/icomoon.svg?97xovd#icomoon') format('svg');
	  font-weight: normal;
	  font-style: normal;
	}

	[class^="icon-"], [class*=" icon-"] {
	  /* use !important to prevent issues with browser extensions that change fonts */
	  font-family: 'icomoon' !important;
	  speak: none;
	  font-style: normal;
	  font-weight: normal;
	  font-variant: normal;
	  text-transform: none;
	  line-height: 1;

	  /* Better Font Rendering =========== */
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	}

	.icon-phone:before {
	  content: "\e904";
	}
	.icon-logo:before {
	  content: "\e903";
	}
	.icon-line:before {
	  content: "\e902";
	}
	.icon-linkedin:before {
	  content: "\e900";
	}
	.icon-mail:before {
	  content: "\e901";
	}
	.icon-rocket:before {
	  content: "\e905";
	}
	
.header .logo img {
    max-width:170px;
}