
/*  Fonts  */
@font-face {
    font-family: 'raleway-regular';
    src: url('../fonts/raleway-regular.eot');
    src: url('../fonts/raleway-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/raleway-regular.woff') format('woff'),
         url('../fonts/raleway-regular.ttf') format('truetype'),
         url('../fonts/raleway-regular.svg#raleway-regular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'raleway-semibold';
    src: url('../fonts/raleway-semibold.eot');
    src: url('../fonts/raleway-semibold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/raleway-semibold.woff') format('woff'),
         url('../fonts/raleway-semibold.ttf') format('truetype'),
         url('../fonts/raleway-semibold.svg#raleway-semibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'raleway-bold';
    src: url('../fonts/raleway-bold.eot');
    src: url('../fonts/raleway-bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/raleway-bold.woff') format('woff'),
         url('../fonts/raleway-bold.ttf') format('truetype'),
         url('../fonts/raleway-bold.svg#raleway-bold') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*  General CSS*/
body{
    background: #fff;
}

.wrapper{
    width: 100%;
    margin: 0 auto;
}

h1, h2, h3, h4, h5 ,h6{
    color: #626262;
    font-family: "raleway-regular", arial;
    letter-spacing: 1px;
}

h1              { font-size: 2em; margin: .67em 0 }
h2              { font-size: 1.5em; margin: .75em 0 }
h3              { font-size: 1.17em; margin: .83em 0 }
h5              { font-size: .83em; margin: 1.5em 0 }
h6              { font-size: .75em; margin: 1.67em 0 }
h1, h2, h3, h4,
h5, h6          { font-weight: bolder }

.title{
    text-align: center;
    overflow: hidden;
}

.title h2{
    color: #616161;
    font-family: "raleway-bold";
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.title h3{
    color: #9b9b9b;
    font-family: "raleway-regular";
    font-size: 14px;
    margin: 0 0 20px 0;
    font-weight: normal!important;
}

.title hr.separator{
    display: block;
    width: 40px;
    height: 1px;
    background-color: #ebebeb;
    margin: 0 auto;
    padding: 0;
    border: 0!important;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

#contents {
    margin-left: 50px;
    margin-bottom: 50px;
}

ul {
    margin-left: 20px;
}

.header-img {
    margin-bottom: 20px;
}

.container {
    width: 95%
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}


/*    Billboard    */
.billboard{
    width: 100%;
    height: 100px;
    position: relative;
    background-color: black;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.billboard .shadow{
    position: absolute;
    width: 100%;
    height: 120px;
    bottom: 0;
    left: 0;
    margin-bottom: -1px;
    background: url('../img/shadow.png') repeat-x;
}

.billboard .caption{
    margin-top: 130px;
    text-align: center;
}


.billboard .caption.light{
    color: #fff;
}

.billboard .caption.dark{
    color: #5d5d5d;
}

.billboard .title{
    color: #fff;
    font-family: "raleway-bold";
    position:absolute;
    top: 20px;
    left: 30px;
}

.billboard .title h1{
    color: #FFF;
}

.billboard a:link {
    color: #fff;
}

.billboard .a {
    color: #fff;
}

.nav-title {
    color: #5d5d5d;
    font-family: "raleway-bold";
    position:absolute;
    top: 30px;
    left: 30px;
}

.nav-title a:link {
    color: #5d5d5d;
}

.billboard .caption h1{
    font-family: "raleway-bold";
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 30px;
}

.billboard .caption.light h1{
    color: #fff;
}

.billboard .caption.dark h1{
    color: #5d5d5d;
}

.billboard .caption p{
    font-family: "raleway-regular";
    font-size: 18px;
    margin-bottom: 30px;
}

.billboard .caption.light p{
    color: #fff;
}

.billboard .caption.dark p{
    color: #5d5d5d;
}

.billboard .caption hr{
    display: inline-block;
    height: 1px;
    width: 30px;
    border: 0!important;
    margin: 0;
    padding: 0;
}

.billboard .caption.light hr{
    background: #fff;
}

.billboard .caption.dark hr{
    background: #5d5d5d;
}

/*    header    */
header{
    width: 100%;
    height: 125px;
}

header .logo{
    float: left;
    margin-top: 50px;
    margin-left: 50px;
}

header nav{
    float: right;
    margin-top: 30px;
    margin-right: 0px;
    background-color: black;
}

header nav ul li{
    list-style: none;
    display: block;
    float: left;
    margin-left: 0px;
}

header nav ul li a{
    text-decoration: none;
    font-family: "raleway-regular";
    font-size: 18videopx;

    transition:all .2s linear;
    -webkit-transition:all .2s linear;
    -moz-transition:all .2s linear;
    -o-transition:all .2s linear;
}

header.light nav ul li a{
    color: #ffffff;
}

header.light nav ul li a:hover{
    color: #B9B9B9;
}

header.dark nav ul li a{
    color: #5d5d5d;
}

header.dark nav ul li a:hover{
    color: #919191;
}

header.light .navbar-toggle{
    border-color: white;
    color: white;
}

header.dark .navbar-toggle{
    border-color: black;
    color: black;
}

/*    Services    */
.services ul{
    margin-top: 50px;
    display:table;
    table-layout: fixed;
    width:100%;
    vertical-align: middle;
    border-collapse: separate;
    border-spacing: 30px 0;
}

.services ul li{
    display:table-cell;
    text-align: center;
}

.services ul li:first-child{
    margin-left: 0;
}

.services ul li .separator{
    display: block;
    width: 1px;
    height: 10px;
    background: #f6f6f6;
    margin: 10px auto;
}

.services ul li h2{
    color: #616161;
    font-family: "raleway-bold";
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.services ul li p{
   color: #838181;
    font-family: "raleway-regular";
    font-size: 14px;
    line-height: 28px;
    margin-top: 20px;
    letter-spacing: .5px;
}

.company-gallery {
    margin-bottom: 30px;
}

/*    Video    */
.video{
    display: block;
    width: 100%;
    height: 350px;
    text-align: center;
    margin-top: 50px;
    background: url('../img/vector_map_logo_shadow.png') no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.video .video_logo{
    margin-top: 85px;
}

.video h1{
    color: #FFFFFF;
    font-family: "raleway-regular";
    font-size: 40px;
    font-weight: normal!important;
    padding-top: 60px
}

.video h3{
    color: #fff;
    font-family: "raleway-regular";
    font-size: 20px;
    font-weight: normal!important;
    margin: 20px 0 0 0;
}

.video #play_btn{
    display: inline-block;
    width: 71px;
    height: 71px;
    background: url('../img/play_btn.png') no-repeat;
    margin-top: 40px;
}

/* Company */
.company{
    margin-top: 100px;
    width: 100%;
}

.company ul{
    margin-top: 70px;
    display:table;
    table-layout: fixed;
    width:100%;
    border-collapse: separate;
    border-spacing: 20px 0;
}

.company ul li{
    display:table-cell;
    vertical-align: middle;
    text-align: center;
}

.company ul li:first-child{
    margin-left: 0;
}

.company ul li p{
    color: #838181;
    font-family: "raleway-regular";
    font-size: 16px;
    line-height: 28px;
    letter-spacing: .5px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ecebeb;
    position: relative;
}

/*    blog posts    */
.blog_posts{
    margin-top: 100px;
    padding: 100px 0;
    background: #fafafa;
}

.blog_posts ul{
    list-style: none;
    margin-top: 70px;
}

.blog_posts ul li{
    display: block;
    width: 1000px;
    margin-left: 60px;
    float: left;
}

.blog_posts ul li:first-child{
    margin-left: 0;
}

.blog_posts ul li .media .date{
    position: absolute;
    top: 0;
    left: 30px;
    width: 40px;
    padding: 10px 0;
    background: rgba(62, 62, 62, .7);
    text-align: center;
}

.blog_posts ul li .media .date span{
    display: block;
}

.blog_posts ul li .media .date .day{
    color: #fff;
    font-family: "raleway-bold";
    font-size: 18px;
    font-weight: bold;

}

.blog_posts ul li .media .date .month{
    color: #fff;
    font-family: "raleway-regular";
    font-size: 12px;
}

.blog_posts ul li .media{
    width: 230px;
    height: 230px;
    position: relative;
}

.blog_posts ul li h1{
    color: #616161;
    font-family: "raleway-regular";
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
    margin: 20px 0 0 0;
}

textarea {
    width:100%;
}

.square_btn {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #67c5ff;
    transition: .4s;
    width:50%;
    font-size: 30px;
    margin: 20px 0 0 0;

  }

.square_btn:hover {
    color: #FFF;
    background: #2E9AFE;
}

.ribbon_box {
    display: block;
    position: relative;
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 30px;
    padding: 30px 0;
    text-align: center;
    width: 80%;
    background: #f1f1f1;
  }
.ribbon17 {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
    box-sizing: border-box;
    padding: 0 12px;
    margin: 0;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: white;
    background: #70c7ff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
}
.ribbon17:before {
    position: absolute;
    content: '';
    top: 0;
    left: -7px;
    border: none;
    height: 38px;
    width: 7px;
    background: #70c7ff;
    border-radius: 5px 0 0 5px;
}
.ribbon17:after {
    position: absolute;
    content: '';
    bottom: -7px;
    left: -5px;
    border: none;
    height: 7px;
    width: 5px;
    background: #4d99ca;
    border-radius: 5px 0 0 5px;
}

/* LIST */
map ul {
    border: solid 2px #00a3e0;
    padding: 0.5em;
    position: relative;
    margin-top: 2em;
}
map ul li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    border-bottom: dashed 1px silver;
    list-style-type: none!important;
}
map ul li:last-of-type{
    border-bottom: none;
}
map ul li:before {
    font-family: "FontAwesome";
  	content: "\f138";
  	position: absolute;
  	left : 0.5em;
  	color: #00a3e0;
}
map ul li:after {
  	background: #00a3e0;
  	color: #fff;
  	font-weight: bold;
  	position: absolute;
  	left: -2px;
  	bottom: 100%;
  	padding: 1px 7px;
  	content: "FILES";
  	letter-spacing: 0.05em;
  }

/* BUTTON */
.try_it_btn{
  color: #FFF;
  border-radius: 7px;
  display: inline-block;
  height: 50px;
  width: 190px;
  text-align: center;
  font-size: 25px;
  line-height: 50px;
  vertical-align: middle;
  background: #1da1f3;
  overflow: hidden;/
  text-decoration:none;
}

.try_it_btn .fa-edit {
    text-shadow: 2px 2px 0px #4287d6;
    font-size: 30px;
}

.try_it_btn span {
  display:inline-block;
  transition: .5s}

.try_it_btn:hover span{
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}