@charset 'utf-8';

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}


/*
reset
---------------------------------------------*/
* {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "ＭＳ Ｐゴシック", sans-serif;
    margin: 0px;
    padding: 0px;
}
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    background-color: #eee;
    color: #333;
    -webkit-tap-highlight-color: #222;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.71429;
    overflow-x: hidden;
    word-wrap: break-word;
}
ul, li {
    list-style: none;
}
dt, dd {
    font-weight: normal;
}
a {
    color: #324F85;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
a:hover, a:active, a:focus {
    color: #324F85;
    outline: none;
}


/*
parts
---------------------------------------------*/
.mt30 {
    margin-top: 30px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb70 {
    margin-bottom: 70px;
}
.pb30 {
    padding-bottom: 30px;
}
.pb50 {
    padding-bottom: 50px;
}
@media screen and (min-width: 769px) {
    .pc_mt30 {
        margin-top: 30px;
    }
    .pc_mt60 {
        margin-top: 60px;
    }
    .n {
        margin-top: 70px;
    }
    .pc_pt40 {
        padding-top: 40px;
    }
    .pc_pb50 {
        padding-bottom: 50px;
    }
    .pc_plr10 {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width: 768px) {
    .sp_mt30 {
      margin-top: 30px !important;
    }
    .sp_mt100 {
        margin-top: 100px !important;
    }
    .sp_pb0 {
        padding-bottom: 0 !important;
    }
    .sp_color_blk {
        color: #444 !important;
    }
    .m_none {
        display: none;
    }
}
hr {
        border-top: 1px solid #aaa;
}




/*
contents
---------------------------------------------*/
.navbar-fixed-top .navbar-brand img {
    width: 100px;
}
#header .navbar-brand {
    float: left;
    padding-left: 0;
/*
    display: block;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
*/
}
@media screen and (min-width: 769px) {
    #header .navbar-brand {
        float: left;
        display: none;
        height: auto;
        padding: 10px 0;
    }
    #header.navbar-fixed-top .navbar-brand {
        display: block;
    }
    .navbar-nav > li > a {
        margin-top: 16px;
    }
    #home {
        background: #fff;
        padding-top: 98px;
    }
}

#header {
  position: absolute;
  z-index: 99;
  width: 100%;
  opacity: 1;
  top: 0;
    /*margin-top: 20px;*/
}
@media screen and (max-width: 768px) {
  #header {
    margin-top: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  }
    #header .navbar-brand {
        padding: 10px 0;
    }
    #header .navbar-brand img {
        width: 64px;
    }
  #header #navbar li a {
    color: rgba(0, 0, 0, 0.5) !important;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  #header #navbar li a:hover {
    color: #1d2088 !important;
  }
  #header #navbar li a span:before {
    background: transparent !important;
  }
  #header #navbar li.active a {
    background: transparent;
    background: none;
    color: #1d2088 !important;
  }
  #header #navbar li.active a span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
#header .navbar {
  padding-bottom: 0;
  margin-bottom: 0;
}
#header #navbar li a {
    color: #333;
    position: relative;
}
#header #navbar li a span {
  position: relative;
  display: block;
  padding-bottom: 2px;
}
#header #navbar li a span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #1d2088;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#header #navbar li a:hover {
  color: #1d2088;
}
#header #navbar li a:hover span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
#header #navbar li.active a {
  background: transparent;
  background: none;
  color: #1d2088;
}
#header #navbar li.active a span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

#header .navbar-brand span {
  color: #1d2088;
}
#header.navbar-fixed-top {
  position: fixed !important;
  background: #fff;
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
  top: 0;
}
#header.navbar-fixed-top .navbar-brand {
  color: #1d2088;
}
#header.navbar-fixed-top #navbar li a {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#header.navbar-fixed-top #navbar li a:hover {
  color: #1d2088;
}
#header.navbar-fixed-top #navbar li.active a {
  background: transparent;
  background: none;
  color: #1d2088;
}
#header.navbar-fixed-top #navbar li.active a span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
#header .navbar-default {
  border: transparent;
  background: transparent;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
@media screen and (max-width: 768px) {
  #header .navbar-default {
    margin-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
  }
}
#header .navbar-default .brand-slogan {
  margin: 28px 0 0 15px;
  float: left;
  letter-spacing: 2px;
  color: #adadad;
}
#header .navbar-default .brand-slogan em {
  color: #1d2088;
  font-style: normal;
}
#header a {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

.contents_logo {
    position: relative;
}
.contents_logo img {
    position: absolute;
    top: -92px;
    left: 0;
    width: 220px;
}
.section-heading h2.name {
    font-size: 28px;
    font-size: 2.8rem;
}


.contents {
    /*background: rgba(255, 255, 255, 0.9);*/
    /*background: rgba(254, 250, 181, 0.9);*/
    /*border: 2px solid #666;*/
    margin: 100px auto;
}
@media screen and (max-width: 768px) {
    .contents {
        margin: 0 auto 0;
    }
}

#services, #price, #works, #company, #access {
    background: rgba(254, 250, 181, 0.9);
}

.bg_black {
    background: rgba(0, 0, 0, 0.8);
}
.bg_black .section-heading h2 {
    color: #fff;
}
.bg_black .section-heading h3 {
    color: #ccc;
}
.bg_blue {
    background: rgba(8, 10, 80, 0.9);
}
.bg_blue .section-heading h2 {
    color: #fff;
}
.bg_blue .section-heading h3 {
    color: #ccc;
}

.bg_yellow {
    background: rgba(254, 250, 181, 0.9);
}
.bg_yellow .section-heading h2 {
    color: #333;
}
.bg_yellow .section-heading h3 {
    color: #ccc;
}

.access .section-heading h2 {
    /*color: #fff;*/
}


#price .price-box {
    background: #fff;
    border: 2px solid #080a53;
    text-align: center;
    padding: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 40px;
    position: relative;
}
#price .price-box.popular {
    border: 2px solid #e6b72e;
}
#price .price-box.popular .popular-text {
    top: 0;
    left: 50%;
    margin-left: -63px;
    margin-top: -2em;
    position: absolute;
    padding: 4px 20px;
    background: #a07700;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}
#price .price-box.popular .popular-text:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-top: 10px solid black;
    border-top-color: #a07700;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
#price .pricing-info li {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}


/* price table */
.price_table01 table, .price_table02 table {
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    box-shadow: 0 1px 1px #333;
    width: 100%;
    border-spacing: 0;
    margin: 0 auto;
}
.price_table01 th {
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    text-align: center;
    padding: 5px;
}
.price_table01 th:not(:first-child) {
    border-left: 1px solid #333;
}
.price_table01 td, .price_table02 td {
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    text-align: center;
    padding: 5px;
}
.price_table01 th {
    background: #666;
    color: #fff;
    font-weight: normal;
}
.price_table01 td:nth-of-type(1), .price_table02 td:nth-of-type(1) {
    background: #eee;
    color: #333;
}

.price_table01 td, .price_table02 td {
    background: #fff;
    color: #333;
}

@media screen and (max-width: 768px) {
    .price_table01 table { width: 100%; border:none; padding: 10px;}
    .price_table01 thead { display: none;}
    .price_table01 tr {
        border-top: 1px solid #333;
        display: block;
    }
    .price_table01 td {
        border-right: 1px solid #333;
        border-bottom: none;
        display: block;
        padding: 5px 10px;
    }
    /* tdのデザイン */
    .price_table01 td:nth-of-type(1) {
        background-color: #666;
        color: #fff;
        font-weight: normal;
    }
    .price_table01 td:last-child { border-bottom: 1px solid #333;}
         
    /*td:beforeのデザイン*/
    .price_table01 td:before {
        background-color: #eee;
        color: #333;
        display: block;
    }
     
    /* contentでタイトルを追加 */
    .price_table01 td:nth-of-type(2):before { content: '平日10:00-23:00' ;}
    .price_table01 td:nth-of-type(3):before { content: '平日23:00-10:00' ;}
    .price_table01 td:nth-of-type(4):before { content: '土・日・祝10:00-23:00' ;}
    .price_table01 td:nth-of-type(5):before { content: '土・日・祝23:00-10:00' ;}

    .price_table02 table { width: 100%; border:none; padding: 10px;}
    .price_table02 thead { display: none;}
    .price_table02 tr {
        border-top: 1px solid #333;
        display: block;
    }
    .price_table02 td {
        border-right: 1px solid #333;
        border-bottom: none;
        display: block;
        padding: 5px 10px;
    }
    /* tdのデザイン */
    .price_table02 td:nth-of-type(1) {
        background-color: #666;
        color: #fff;
        font-weight: normal;
    }
    .price_table02 td:last-child { border-bottom: 1px solid #333;}
         
    /*td:beforeのデザイン*/
    .price_table02 td:before {
        background-color: #eee;
        color: #333;
        display: block;
    }

}
.attention01 {
    color: #666;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-left: 1em;
    text-align: left;
    text-indent: -1em;
}



/* company table */
.company_table01 table {
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    box-shadow: 0 1px 1px #333;
    width: 100%;
    border-spacing: 0;
    margin: 0 auto;
}
.company_table01 td {
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    text-align: left;
    padding: 5px 20px;
}
.company_table01 td:nth-of-type(1) {
    background: #eee;
    color: #333;
}

.company_table01 td {
    background: #fff;
    color: #333;
}

@media screen and (max-width: 768px) {
    .company_table01 table { width: 100%; border:none; padding: 10px;}
    .company_table01 thead { display: none;}
    .company_table01 tr:first-child {
        border-top: 1px solid #333;
    }
    .company_table01 tr {
        display: block;
    }
    .company_table01 td {
        border-right: 1px solid #333;
        border-bottom: none;
        display: block;
        padding: 5px 10px;
    }
    /* tdのデザイン */
    .company_table01 td:nth-of-type(1) {
        background-color: #eee;
        color: #333;
        font-weight: normal;
    }
    .company_table01 td:last-child { border-bottom: 1px solid #333;}

    /*td:beforeのデザイン*/
    .company_table01 td:before {
        background-color: #eee;
        color: #333;
        display: block;
    }

}

#footer {
    background: #fff;
    padding: 10px 0;
}
#footer p {
    font-size: 12px;
    font-size: 1.2rem;
}


.owl-carousel-main .owl-stage-outer {
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .owl-carousel-main .item {
    padding-top: 120px !important;
  }
}

.section-heading {
  float: left;
    /*height: 204px;*/
  width: 100%;
    /*margin-bottom: 50px;*/
  clear: both;
}
.section-heading h2 {
  font-size: 40px;
  font-weight: 300;
  color: #1d2088;
  text-transform: uppercase;
  position: relative;
  display: block;
  padding-bottom: 0px;
  line-height: 1.5;
  font-family: "Montserrat", Arial, sans-serif;
}
.section-heading h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background: #1d2088;
  left: 50%;
  margin-left: -40px;
  bottom: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .section-heading h2 {
    font-size: 30px;
  }
}
.section-heading h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #999;
    margin: 0;
}
@media screen and (max-width: 768px) {
  .section-heading h3 {
    font-size: 24px !important;
    line-height: 34px;
  }
}

.btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#about-us,
#features,
#testimonials,
#pricing,
#press,
#product-screenshots,
#tour {
  padding: 7em 0;
}
@media screen and (max-width: 480px) {
  #about-us,
  #features,
  #testimonials,
  #pricing,
  #press,
  #product-screenshots,
  #tour {
    padding: 5em 0;
  }
}

#tour h3 {
  font-size: 30px;
}
#tour .img-feature-1 {
  -webkit-box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
  -ms-box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
  -o-box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
  box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
}

#testimonials {
  background: #1d2088;
  background: #ba78ff;
}
#testimonials .section-heading h2 {
  color: white;
}
#testimonials .section-heading h2:after {
  background: rgba(255, 255, 255, 0.2);
}
#testimonials .section-heading .subtext h3 {
  color: rgba(255, 255, 255, 0.5);
}
#testimonials .box-testimony {
  margin-bottom: 2em;
  float: left;
}
#testimonials .box-testimony a {
  color: rgba(255, 255, 255, 0.5);
}
#testimonials .box-testimony a:hover, #testimonials .box-testimony a:focus, #testimonials .box-testimony a:active {
  color: white;
  text-decoration: none;
}
#testimonials .box-testimony blockquote {
  padding-left: 0;
  border-left: none;
  padding: 40px;
  background: #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
#testimonials .box-testimony blockquote:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 40px;
  border-top: 15px solid black;
  border-top-color: #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
#testimonials .box-testimony blockquote .quote {
  position: absolute;
  top: 0;
  left: 10px;
  text-align: center;
  font-size: 30px;
  line-height: 0;
  display: table;
  color: #fff;
  width: 56px;
  height: 56px;
  margin-top: -30px;
  background: #1d2088;
  background: #ba78ff;
  display: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#testimonials .box-testimony blockquote .quote > span {
  display: table-cell;
  vertical-align: middle;
}
#testimonials .box-testimony blockquote p {
  font-style: italic;
}
#testimonials .box-testimony .author {
  line-height: 20px;
  color: white;
  font-size: 18px;
  margin-left: 20px;
}
#testimonials .box-testimony .author .subtext {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}



#pricing .price {
  font-size: 50px;
  color: #000;
}
#pricing .price .currency {
  font-size: 20px;
  top: -1.2em;
}
#pricing .price small {
  font-size: 16px;
}
#pricing .pricing-info {
  padding: 0;
  margin: 0 0 30px 0;
}


.cta {
  padding: 7em 0;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
.cta .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #000;
  opacity: .3;
}
.cta .container {
  position: relative;
  z-index: 2;
}
.cta .container h3 {
  margin-bottom: 40px;
  margin-top: 0;
  line-height: 1.5;
}
.cta .container h3, .cta .container p {
  color: #fff;
}
.cta .container p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 3em 0;
  }
}


#services .box h3 {
    border-left: 3px solid #999;
    line-height: 1.2;
    margin: 0 0 20px 0;
    padding: 2px 0 0 10px;
    font-size: 20px;
    font-size: 2rem;
    color: #444;
    vertical-align: middle;
}
#services .box p {
    padding-right: 10px;
    padding-left: 10px;
}
#features {
  background: #fafafa;
  padding: 7em 0;
}
@media screen and (max-width: 768px) {
    #services .box h3 {
        margin-top:20px;
    }
    #features {
        padding: 4em 0;
        }
}
#features .service {
  margin-bottom: 30px;
  float: left;
}
#features .service .icon {
  float: left;
  width: 20%;
}
#features .service .icon i {
  font-size: 40px;
  color: #1d2088;
}
#features .service .desc {
  width: 80%;
  float: right;
}
#features .service .desc h3 {
  margin-top: 0;
  font-size: 18px;
}

.first-section {
  padding-top: 15em !important;
}
@media screen and (max-width: 768px) {
  .first-section {
    padding-top: 3em;
  }
}

#press .press-item {
  background: #fff;
  float: left;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  #press .press-item {
    display: block !important;
  }
}
#press .press-item .press-text,
#press .press-item .press-img {
  width: 50%;
}
@media screen and (max-width: 480px) {
  #press .press-item .press-text,
  #press .press-item .press-img {
    height: inherit;
    float: none !important;
    width: 100%;
    display: block !important;
  }
}
#press .press-item .press-text {
  float: left;
  padding: 20px;
}
#press .press-item .press-text .press-title {
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  font-weight: 400;
  font-size: 20px;
  color: #444;
  position: relative;
}
#press .press-item .press-text .press-title .border {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 30px;
  background: #1d2088;
}
#press .press-item .press-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  #press .press-item .press-img {
    height: 200px;
    left: 0;
    top: 0;
    position: relative;
    width: 100%;
  }
}

.nav-toggle {
  width: 25px;
  height: 25px;
  cursor: pointer;
  text-decoration: none;
}
.nav-toggle.active i::before, .nav-toggle.active i::after {
  background: #1d2088;
}
.nav-toggle:hover, .nav-toggle:focus, .nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}
.nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 25px;
  height: 3px;
  color: #1d2088;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #1d2088;
  transition: all .2s ease-out;
}
.nav-toggle i::before, .nav-toggle i::after {
  content: '';
  width: 25px;
  height: 3px;
  background: #1d2088;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.nav-toggle i::before {
  top: -7px;
}

.nav-toggle i::after {
  bottom: -7px;
}

.nav-toggle:hover i::before {
  top: -10px;
}

.nav-toggle:hover i::after {
  bottom: -10px;
}

.nav-toggle.active i {
  background: transparent;
}

.nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.nav-toggle {
  position: absolute;
  top: 12px;
  right: 0px;
  z-index: 21;
  padding: 6px 0 0 0;
  display: block;
  margin: 0 auto;
  display: none;
  height: 44px;
  width: 44px;
  border-bottom: none !important;
}
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

.person {
  text-align: center;
  margin-bottom: 40px;
  float: left;
  width: 100%;
}
.person img {
  display: block;
  margin: 0 auto;
  height: 150px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.person .name {
  font-size: 24px;
}
.person .position {
  text-transform: uppercase;
  color: #c3c3c3;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

#footer {
  /*padding: 50px 0;*/
  color: #7f7f7f;
}
#footer .copyright {
  margin-bottom: 0px;
  padding-bottom: 0;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
.btn.btn-primary {
  background: #1d2088;
  color: #fff;
  border: none !important;
  border: 2px solid transparent !important;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus {
  box-shadow: none;
  background: #1d2088;
}
.btn:hover, .btn:active, .btn:focus {
  background: #393e46 !important;
  color: #fff;
  outline: none !important;
}
.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active {
  border-color: transparent;
}

.social {
  padding: 0;
  margin: 0;
  display: inline-block;
  position: relative;
  width: 100%;
}
.social li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.social li a {
  font-size: 16px;
  display: table;
  width: 40px;
  height: 40px;
  margin: 0 4px;
}
.social li a i {
  display: table-cell;
  vertical-align: middle;
}
.social li a:hover, .social li a:active, .social li a:focus {
  text-decoration: none;
  border-bottom: none;
}
.social li a.social-box {
  background: #1d2088;
  color: #fff;
}
.social li a.social-circle {
  background: #1d2088;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.social li a:hover {
  background: #393e46 !important;
}
.social.social-box a {
  background: #1d2088;
  color: #fff;
}
.social.social-circle a {
  background: #1d2088;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.owl-carousel .owl-controls .owl-nav {
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.owl-carousel:focus .owl-controls .owl-nav, .owl-carousel:hover .owl-controls .owl-nav, .owl-carousel:active .owl-controls .owl-nav {
  opacity: 1;
}
.owl-carousel .btn-primary:hover, .owl-carousel .btn-primary:focus, .owl-carousel .btn-primary:active {
  background: transparent !important;
  border: 2px solid #1d2088 !important;
}

.owl-carousel .owl-controls,
.owl-carousel-posts .owl-controls {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .owl-carousel .owl-controls .owl-nav {
    display: none;
  }
}

.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-nav .owl-prev {
  top: 50%;
  margin-top: -29px;
  z-index: 9999;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.owl-carousel .owl-controls .owl-nav .owl-next i:before,
.owl-carousel .owl-controls .owl-nav .owl-prev i:before {
  color: rgba(255, 255, 255, 0.5);
}

.owl-carousel-posts .owl-controls .owl-nav .owl-next,
.owl-carousel-posts .owl-controls .owl-nav .owl-prev {
  top: 24%;
}

.owl-carousel .owl-controls .owl-nav .owl-next {
  right: 0;
}
.owl-carousel .owl-controls .owl-nav .owl-next:hover {
  right: 10px;
}
.owl-carousel .owl-controls .owl-nav .owl-next:hover i:before {
  color: white;
}

.owl-carousel .owl-controls .owl-nav .owl-prev {
  left: 0;
}
.owl-carousel .owl-controls .owl-nav .owl-prev:hover {
  left: 10px;
}
.owl-carousel .owl-controls .owl-nav .owl-prev:hover i:before {
  color: white;
}

.owl-carousel-posts .owl-controls .owl-nav .owl-next i,
.owl-carousel-posts .owl-controls .owl-nav .owl-prev i {
  color: #444;
}
.owl-carousel-posts .owl-controls .owl-nav .owl-next:hover i,
.owl-carousel-posts .owl-controls .owl-nav .owl-prev:hover i {
  color: #000;
}

.owl-carousel-fullwidth.light-arrow .owl-controls .owl-nav .owl-next i,
.owl-carousel-fullwidth.light-arrow .owl-controls .owl-nav .owl-prev i {
  color: #ff0000;
}
.owl-carousel-fullwidth.light-arrow .owl-controls .owl-nav .owl-next:hover i,
.owl-carousel-fullwidth.light-arrow .owl-controls .owl-nav .owl-prev:hover i {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .owl-theme .owl-controls .owl-nav {
    display: none;
  }
}

.owl-theme .owl-controls .owl-nav [class*="owl-"] {
  background: none !important;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"] i {
  font-size: 30px;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"] i:hover, .owl-theme .owl-controls .owl-nav [class*="owl-"] i:focus {
  background: none !important;
}
.owl-theme .owl-controls .owl-nav [class*="owl-"]:hover, .owl-theme .owl-controls .owl-nav [class*="owl-"]:focus {
  background: none !important;
}

.owl-theme .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.owl-carousel-fullwidth.owl-theme .owl-dots {
  bottom: 0;
  margin-bottom: 2.5em;
}

.owl-carousel-main.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2) !important;
  border: 2px solid transparent !important;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.owl-carousel-main.owl-theme .owl-dots .owl-dot span:hover {
  background: none;
  background: black !important;
}
.owl-carousel-main.owl-theme .owl-dots .owl-dot.active span, .owl-carousel-main.owl-theme .owl-dots .owl-dot:hover span {
  background: black !important;
  background: transparent !important;
  border: 2px solid #000 !important;
}
.owl-carousel-main.owl-direction:before {
  color: #000 !important;
}

.owl-carousel-fullwidth .item, .owl-carousel-fullwidth .owl-text-wrap {
  height: 860px;
  display: table;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .owl-carousel-fullwidth .item, .owl-carousel-fullwidth .owl-text-wrap {
    height: inherit;
    padding: 5em 0;
    padding: 0;
    text-align: center;
  }
}
.owl-carousel-fullwidth .owl-text-wrap {
  position: relative;
}
.owl-carousel-fullwidth .item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  position: relative;
}
.owl-carousel-fullwidth .item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8;
}
.owl-carousel-fullwidth .item img {
  max-width: 100%;
}
.owl-carousel-fullwidth .item .mobile-image {
  position: relative;
  z-index: 99999999;
}
.owl-carousel-fullwidth .item .mobile-image .mobile {
  float: right;
  text-align: right;
  position: relative;
  bottom: -12em;
}
@media screen and (max-width: 768px) {
  .owl-carousel-fullwidth .item .mobile-image .mobile {
    bottom: 0em;
    text-align: center;
    float: none !important;
    margin: 0 auto;
    display: block;
  }
}
.owl-carousel-fullwidth .item .mobile-image .mobile img {
  max-width: 100%;
}
.owl-carousel-fullwidth .item .owl-text {
  display: table-cell;
  vertical-align: middle;
  z-index: 10;
  position: relative;
}
.owl-carousel-fullwidth .item .owl-text a {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.owl-carousel-fullwidth .item .owl-text a:hover {
  text-decoration: none;
  color: white;
  border-bottom: 1px solid white;
}
.owl-carousel-fullwidth .item .owl-text .lead, .owl-carousel-fullwidth .item .owl-text .lead-2, .owl-carousel-fullwidth .item .owl-text .sub-lead {
  color: #fff;
  margin: 0;
  padding: 0;
}
.owl-carousel-fullwidth .item .owl-text .lead {
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
  color: #fff;
  font-size: 50px;
  line-height: 50px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .owl-carousel-fullwidth .item .owl-text .lead {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 30px;
  }
}
.owl-carousel-fullwidth .item .owl-text .sub-lead {
  font-size: 30px;
  line-height: 30px;
  line-height: 42px;
  font-weight: 100;
  margin-bottom: 30px;
  color: white;
}
@media screen and (max-width: 768px) {
  .owl-carousel-fullwidth .item .owl-text .sub-lead {
    font-size: 24px;
    line-height: 34px;
  }
}

#product-screenshots {
  background: #303841;
}
#product-screenshots .section-heading h2 {
  color: #fff;
}

.owl-carousel-center .owl-stage-outer {
  overflow: visible;
}
.owl-carousel-center .owl-item {
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
  transform: scale(0.85);
  z-index: 18;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: -1px -1px 38px -13px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: -1px -1px 38px -13px rgba(0, 0, 0, 0.9);
  -ms-box-shadow: -1px -1px 38px -13px rgba(0, 0, 0, 0.9);
  -o-box-shadow: -1px -1px 38px -13px rgba(0, 0, 0, 0.9);
  box-shadow: -1px -1px 38px -13px rgba(0, 0, 0, 0.9);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.owl-carousel-center .owl-item img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.owl-carousel-center .owl-item.center {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  z-index: 999;
  -webkit-box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
  -ms-box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
  -o-box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
  box-shadow: -1px -1px 58px -13px rgba(0, 0, 0, 0.9);
}
.owl-carousel-center .owl-dots {
  bottom: -80px;
}
@media screen and (max-width: 480px) {
  .owl-carousel-center .owl-dots {
    bottom: -60px;
  }
}
.owl-carousel-center.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border: 2px solid transparent;
}
.owl-carousel-center.owl-theme .owl-dots .owl-dot span:hover {
  background: none;
  background: white;
}
.owl-carousel-center.owl-theme .owl-dots .owl-dot.active span, .owl-carousel-center.owl-theme .owl-dots .owl-dot:hover span {
  background: white;
  background: transparent;
  border: 2px solid #fff;
}

.js .to-animate,
.js .to-animate-2,
.js .single-animate {
  opacity: 0;
}

.js .animate-box {
  opacity: 0;
}

@media screen and (max-width: 480px) {
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}

.row-bottom-padded-lg {
  /*padding-bottom: 7em;*/
  padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-lg {
    padding-bottom: 2em;
  }
}

.row-bottom-padded-md {
  padding-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-md {
    padding-bottom: 2em;
  }
}

.row-bottom-padded-sm {
  padding-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-sm {
    padding-bottom: 1em;
  }
}

.animated {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.service_list li {
    border-top: 1px dotted #999;
    padding: 5px 10px;
}
.service_list li:last-child {
    border-bottom: 1px dotted #999;
}
@media screen and (max-width: 768px) {
    .access .section-heading h2 {
        color: #1d2088;
    }
}

.map_image img {
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    border-left: 1px solid #333;
    box-shadow: 0 2px 2px #333;
    width: 100%;
    margin: 0 auto;
}

#map_canvas {
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    border-left: 1px solid #333;
    box-shadow: 0 2px 2px #333;
}