/**
* @subsection   Camera.css
*
* @description   a jQuery slideshow with many effects, transitions, easy to customize, using canvas and mobile ready, *based on jQuery 1.4+
*
* @author       Manuel Masia
* @link         www.pixedelic.com
* @license      MIT license - http://www.opensource.org/licenses/mit-license.php
**/
/*========================================================
                        Camera
=========================================================*/
/*
*  @section  Variables
*/
.camera_container {
  position: relative;
  padding-bottom: 28.75%;
}

@media (max-width: 1217.3913px) {
  .camera_container {
    padding-bottom: 350px;
  }
}
@media (min-width: 768px) {

    .camera_container img.imgLoaded {
      margin-top: 0px !important;
    }
    
    .camera_container,
    .cameraContent .camera_caption,
    .camera_container .camaraappended,
    .camera_container .camera_target div,
    .camara_container .camerastarted,
    .camera_container .camera_wrap, 
    .camera_container .camerarelative,
    .camera_container img.imgLoaded  {
      /*height: 458.53px !important;*/
        height: 100% !important;
    } 
}
.camera_wrap {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  margin-bottom: 0 !important;
  height: 100%;
  background: #fff;
  z-index: 0;
}

.camera_wrap img {
  max-width: none !important;
}

.camera_fakehover {
  height: 100%;
  min-height: 60px;
  position: relative;
  width: 100%;
}

.camera_src {
  display: none;
}

.cameraCont, .cameraContents {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
  /*background: rgba(32, 38, 96, .7);*/
}

.cameraCont{
  background: rgba(32, 38, 96, .7);
}

.cameraSlide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.cameraContent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}

.camera_target {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  text-align: left;
  z-index: 0;
}

.camera_overlayer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.camera_target_content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2;
}

.camera_loader {
  background: #fff url(../images/camera-loader.html) no-repeat center;
  border: 1px solid #ffffff;
  border-radius: 18px;
  height: 36px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  margin: -18px 0 0 -18px;
  top: 50%;
  width: 36px;
  z-index: 3;
}

.camera_nav_cont {
  height: 65px;
  overflow: hidden;
  position: absolute;
  right: 9px;
  top: 15px;
  width: 120px;
  z-index: 4;
}

.camerarelative {
  overflow: hidden;
  position: relative;
}

.imgFake {
  cursor: pointer;
}

.camera_command_wrap .hideNav {
  display: none;
}

.camera_command_wrap {
  left: 0;
  position: relative;
  right: 0;
  z-index: 4;
}

.showIt {
  display: none;
}

.camera_clear {
  clear: both;
  display: block;
  height: 1px;
  margin: -1px 0 25px;
  position: relative;
}

.camera_caption {
  display: none;
  text-transform: uppercase;
  color: #fff;
}

.cameraContent .camera_caption {
    display: block;
    position: relative;
}

/*================   Custom Layout&Styles   =====================*/
.camera_caption {
  position: absolute;
  top: 60%;
  left: 0;
  -moz-transform: translateY(-48%);
  -ms-transform: translateY(-48%);
  -o-transform: translateY(-48%);
  -webkit-transform: translateY(-48%);
  transform: translateY(-48%);
  text-align: center;
}
@media (max-width: 480px) {
    .camera_caption {
        top: 23%;
    }
}
@media (min-width: 480px) {
  .camera_caption {
    left: 20px;
    right: 20px;
  }
}
@media (min-width: 1600px) {
  .camera_caption {
    text-align: left;
  }
}
.camera_caption > div {
  height: 100%;
}

.camera_pag_ul {
  text-align: center;
}
.camera_pag_ul li {
  display: inline-block;
  width: 8px;
  height: 8px;
  line-height: 8px;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #888;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.camera_pag_ul li.cameracurrent, .camera_pag_ul li:hover {
  background: #333;
}
.camera_pag_ul li + li {
  margin-left: 4px;
}
.camera_pag_ul li > span {
  display: none;
}

.camera_next, .camera_prev {
  width: 60px;
  text-align: center;
  position: absolute;
  z-index: 10;
  top: 44%;
  -moz-transform: translateX(-44%);
  -ms-transform: translateX(-44%);
  -o-transform: translateX(-44%);
  -webkit-transform: translateX(-44%);
  transform: translateX(-44%);
  font: 400 45px "FontAwesome";
  line-height: 60px;
  color: #5e6b77;
  cursor: pointer;
  background: #FFF;
  transition: .3s color ease;
}

.camera_next:hover, .camera_prev:hover {
  color: #008cbd;
}

.camera_next {
  right: -27px;
}
.camera_next:before {
  content: '';
}
@media (min-width: 768px) {
  .camera_next:before {
    content: "\f105";
  }
}

.camera_prev {
  left: 25px;
}
.camera_prev:before {
  content: '';
}
@media (min-width: 768px) {
  .camera_prev:before {
    content: "\f104";
  }
}


.camera_container .btn {
    border-radius: 0;
    border: 1px solid #CCC;
    padding: 15px 25px;
    margin-top: 20px;
    background-color: #11324e !important;
}

.cameraContent .camera_caption {
      margin-top: -55px;
}

.slider-content {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    ::i-block-chrome,.slider-content {
        top: 70% !important;
    }
}

.slider-content small {
    font-size: 20px;
    line-height: 50px;
    text-transform: none;
}

.slider-content .em {
    font-style: italic;
    font-size: 30px;
    font-weight: 400;
}

@media screen and (min-width: 1900px) {
    .slider-content {
        width: 100%;
        font-size: 40px;
        padding-top: 15px;
        float: left;
        margin-left: 10%;
        position: absolute;
        bottom: 45%;
    }

    .slider-content.banner-first {
        bottom: 35%;
    }
}
@media screen and (min-width: 1400px) and (max-width: 1900px) {
    .slider-content {
        width: 100%;
        font-size: 40px;
        padding-top: 15px;
        float: left;
        margin-left: 10%;
        position: absolute;
        bottom: 35%;
    }

    .slider-content.banner-first {
        bottom: 25%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1400px) {
    .slider-content {
        width: 100%;
        font-size: 30px;
        padding-top: 15px;
        float: left;
        margin-left: 10%;
        position: absolute;
        bottom: 25%;
    }
    .slider-content.banner-first {
        bottom: 20%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .slider-content {
        width: 100%;
        font-size: 30px;
        padding-top: 15px;
        float: left;
        margin-left: 5%;
        position: absolute;
        bottom: 20%;
    }
    .slider-content.banner-first {
        bottom: 20%;
    }
}
@media screen and (max-width: 1035px) {
    .logo {
        /*display: none;*/
    }
}

@media (max-width: 768px) {
    .camera_caption {
        /*top: 0px !important;*/
    }
    .cameraContent .camera_caption {
        top: 85px;
        left: 0px;
    }

    .slider-content:first-child {
        padding-top: 25px;
    }
    .slider-content {
        width: 100%;
        font-size: 30px;
        background-color: rgba(227, 48, 10, 0.65);
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        margin-top: -6%;
        position: absolute;
        top: 0px;
        left: 0px;
    }
    .cameraSlide  img {
        margin-left: -500.493px !important;
    }
}

@media (max-width: 420px) {
    .slider-content {
        margin-top: -30px;
    }
}