@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,500,700,300);
/*
  Fonts
*/
@font-face {
  font-family: 'font-awesome';
  src: url('fontawesome-webfont.eot'); /* IE9 Compat Modes */
  src: url('fontawesome.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
          url('fontawesome-webfont.woff2') format('woff2'), /* Super Modern Browsers */
          url('fontawesome-webfont.woff') format('woff'), /* Pretty Modern Browsers */
          url('fontawesome-webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
          url('fontawesome.svg#svgFontAwesome') format('svg'); /* Legacy iOS */
     }
/*
  Globals
*/
body {
  background: #162667;
  color: #353d46;
  font-family:  'Ubuntu', sans-serif;
  font-weight:  400;
}

h1, h2, h3 {
  color: #162667;
}

h1 span, h2 span, h3 span{
  color:#009bdb;
  font-weight: 300;
}

a{
  color:white;
  -webkit-transition:  all 0.3s ease;
  -o-transition:  all 0.3s ease;
  transition:  all 0.3s ease;
}

a:hover{
  text-decoration: none;
  color: rgba(2,33,105,0.7);
}

/*
  Globals
*/
header{
    position: relative;
    height: 120px;
    width: 100%;
    background-color: #fff;
    z-index: 1;

}

.logo{
  top:30px;
}

.logo img{
  height:60px;
}

nav.header{
  top:48px;
  right:0;
}

header nav.header ul{
  font-size: 0;
  margin: 0;
  padding: 0;
}

header nav.header ul li ul{
  display: none;
  position: absolute;
  top: 23px;
  left: 25px;
  padding-top: 5px;
  background-color: #FFF;
  -moz-box-shadow: 1px 1px 0px #162667;
  -webkit-box-shadow: 1px 1px 0px #162667;
  box-shadow: 1px 1px 0px #162667;
}
header nav.header ul li ul li{
  padding: 0px 5px 5px;
  display: block;
}

header nav.header ul li{
  display: inline-block;
  padding-left: 30px;
  font-size: 1rem;
  position: relative;
}

header nav.header ul li:hover ul{
  display: block;
}

header nav.header ul li a{
  position: relative;
  color: #162667;
  display: block;
  height: 24px;
}
header nav.header ul li a:after{
  top: -50px;
  left: 0;
  position: absolute;
  content: "";
  background-color: #009bdb;
  min-width: 0;
  height: 6px;
  -webkit-transition: 500ms ease-in-out;
  -o-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out;
}
header nav.header ul li a:hover{
  text-decoration: none;
}
header nav.header ul li a:hover:after{
top:-50px;
left: 0;
  position: absolute;
  content: "";
  background-color: #162667;
  min-width: 100%;
  height: 6px;
}
/*
  Menu
*/
nav.slide-menu {
  position: fixed;
  top: 0;
  left: -100px;
  bottom: 0;
  display: block;
  float: left;
  width: 100%;
  max-width: 260px;
  height: 100%;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
nav.slide-menu > ul {
  display: block;
  margin: 2.4em;
  padding: 0;
  list-style: none;
  opacity: 0.5;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
nav.slide-menu > ul li {
  color: #fff;
  padding: 6px 0;
  cursor: pointer;
}
nav.slide-menu > ul li:hover {
  color: #009bdb;
}
nav.slide-menu > ul li:before {
  font-family: "font-awesome";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  color: #009bdb;
  margin-right: 12px;
  text-align: center;
  font-variant: normal;
  font-size: 0.75em;
  text-transform: none;
  line-height: 1em;
}
nav.slide-menu > ul li.sep {
  margin-top: 7px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
nav.slide-menu > ul li.home:before {
  content: '\f015';
}
nav.slide-menu > ul li.about:before {
  content: '\f040';
}
nav.slide-menu > ul li.services:before {
  content: '\f013';
}
nav.slide-menu > ul li.news:before {
  content: '\f1ea';
}
nav.slide-menu > ul li.contacts:before {
  content: '\f041';
}
nav.slide-menu > ul li.links:before {
  content: '\f0c1';
}

nav.slide-menu > ul li a {
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

nav.slide-menu > ul li a:hover {
 color: rgba(255,255,255,0.5);
 text-decoration: none
}

body.menu-active nav.slide-menu {
  left: 0;
}

body.menu-active nav.slide-menu ul {
  left: 0;
  opacity: 1;
}

/*
  Content
*/
div.content {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: #fff;
  border-radius: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: -3px 0 6px #100C3B;
  -webkit-box-shadow: -3px 0 6px #100C3B;
  box-shadow: -3px 0 6px #100C3B;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
div.menu-trigger {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  color:#162667;
  cursor: pointer;
  border-radius: 50%;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  z-index: 1;
}
div.menu-trigger:before {
  content: '\f0c9';
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #333;
  font-family: "font-awesome";
  font-style: normal;
  font-size: 1.2em;
  font-weight: normal;
  font-variant: normal;
  text-align: center;
  text-transform: none;
  line-height: 40px;
}
div.menu-trigger:hover {
  background: #162667;
}
div.menu-trigger:hover:before {
  color: #f0f0f0;
}

body.menu-active{
overflow-x: hidden;
}

body.menu-active div.content {
  left: 260px;
  border-radius: 7px 0 0 0;
}

body.menu-active .menu-trigger {
  left: 270px;
}

/*
  Banner
*/
.banner {
    height:  580px;
    background-image:  url(../../../img/banner.jpg);
    background-size: cover;
    background-position:   center center;
    background-repeat:  no-repeat;
    text-align: right;
}

.banner:before{
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.logo-banner{
  display: inline-block;
  width: 50%;
  vertical-align: middle;
  margin-right:10%;
}

.logo-banner img{
    max-height: 94px;
    height: auto;
    float: right;
}

/*
  Parallax
*/

.parallax{
  height:400px;
  text-align: center;
}

.parallax.one{
  height: 400px;
  background-image:  url(../../../img/parallax-1.jpg);
  background-size: cover;
  background-position:   center center;
  background-repeat:  no-repeat;
  overflow:hidden;
  background-attachment: fixed;
}

.parallax:before{
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.parallax-content{
  display: inline-block;
  width: 80%;
  vertical-align: middle;
}
.parallax-content button{
  font-size:  2.25em;
  line-height: 1em;
  border-radius:  8px;
  padding: 0.6em 1em;
  border:  0;
  -webkit-transition:  background-color 0.3s ease;
  -o-transition:  background-color 0.3s ease;
  transition:  background-color 0.3s ease;
}

.parallax-content button:hover{
  background-color: rgba(0,0,0,0.3);
}

.one h1{
  color:#fff;
}

.one h1 span{
  color:#009bdb;
}

.one button{
  color:#fff;
  background-color: #009bdb;
}

button{
  outline: 0;
}

/*
News
*/

.news-1 a, .news-2 a, .news-3 a{
  text-decoration: none;
  -webkit-transition:  all 0.3s ease;
  -o-transition:  all 0.3s ease;
  transition:  all 0.3s ease;
}

.news-1 a:hover, .news-2 a:hover, .news-3 a:hover{
  text-decoration: none;
  color: rgba(0,0,0,0.5)
}

.news-1 p.small:before, .news-2 p.small:before, .news-3 p.small:before {
  content: "\f017";
  font-family: "font-awesome";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  color: #009bdb;
  margin-right: 8px;
  text-align: center;
  font-variant: normal;
  font-size: 1em;
  text-transform: none;
  line-height: 1em;
}

/* carousel */
#quote-carousel
{
  padding: 0;
}

/* Control buttons  */
#quote-carousel .carousel-control
{
  background: none;
  color: #222;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 30px;
}
/* Previous button  */
#quote-carousel .carousel-control.left
{
  left: -12px;
}
/* Next button  */
#quote-carousel .carousel-control.right
{
  right: -12px !important;
}
/* Changes the position of the indicators */
#quote-carousel .carousel-indicators
{
  right: 0;
  left: 0;
  top: 96%;
  bottom: 0px;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

/* Changes the width and height of the indicators */
.carousel-indicators li {
    display: inline-block;
    width: 21px;
    height: 3px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000\9;
    background-color: rgba(0,0,0,0);
    border: 0;
    border-radius: 0;
}

.carousel-indicators .active {
    width: 21px;
    height: 3px;
    margin: 1px;
    background-color: #fff;
}

/* Changes the color of the indicators */
#quote-carousel .carousel-indicators li
{
  background: #c0c0c0;
}
#quote-carousel .carousel-indicators .active
{
  background: #162667;
}
#quote-carousel img
{
  min-width: 250px;
}
/* End carousel */

.item blockquote {
    border-left: none;
    margin: 0;
}

.item blockquote img {
    margin-bottom: 10px;
}

.item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
}



/**
  MEDIA QUERIES
*/

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #quote-carousel
    {
      margin-bottom: 0;
      padding: 0;
    }

}

/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) {

    /* Make the indicators larger for easier clicking with fingers/thumb on mobile */

    #quote-carousel .carousel-indicators {
        bottom: -20px !important;
    }
    #quote-carousel .carousel-indicators li {
        display: inline-block;
        margin: 0px 5px;
        width: 15px;
        height: 15px;
    }
    #quote-carousel .carousel-indicators li.active {
        margin: 0px 5px;
        width: 20px;
        height: 20px;
    }
}

/**
Map
*/
.map{
  width: 100%;
  overflow: hidden;
}

.map iframe{
  width: 100%;
  height: 300px;
}

/**
Footer
*/

footer a{
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

footer a:hover{
  text-decoration: none;
  color: #009bdb;
}

footer input{
  width: 100%;
  padding:15px 20px;
}

footer button{
  top:  0;
  right:0;
  line-height: 56px;
  padding: 0;
  border: 0;
  background-color: transparent;
  width: 56px;
}

.marker:before{
  content: "\f041";
  font-family: "font-awesome";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  color: #009bdb;
  margin-right: 8px;
  text-align: center;
  font-variant: normal;
  font-size: 1em;
  text-transform: none;
  line-height: 1em;
}

.icon {
  font-family: "font-awesome";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  color: #009bdb;
  margin-right: 8px;
  text-align: center;
  font-variant: normal;
  font-size: 1em;
  text-transform: none;
  line-height: 1em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.icon:hover{
  color:#fff;
}

.send{
  color:#162667;
}
.send:hover{
  color:rgba(0,0,0,0.7);
}