/*@import url('https://fonts.googleapis.com/css?family=Orbitron');*/
@import url("https://fonts.googleapis.com/css?family=Montserrat");
/* CSS Document */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  padding-top: 70px;
  overflow-x: hidden;
  background-color: #232323;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFF;
}

a, a:active, a:link, a:visited, a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header.top_header {
  width: 100%;
  height: 70px;
  background-color: #CB292C;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 100;
  position: fixed;
  -webkit-box-shadow: 0 0 10px #000;
          box-shadow: 0 0 10px #000;
  -webkit-animation: fadein .5s;
          animation: fadein .5s;
}

header.top_header.closed .logo {
  top: -300px;
}

header.top_header.closed nav.top_nav ul {
  padding: 0;
}

header.top_header.closed nav.top_nav ul.left, header.top_header.closed nav.top_nav ul.right {
  padding: 0;
}

header.top_header .logo {
  width: 200px;
  height: 180px;
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 0 10px #000;
          box-shadow: 0 0 10px #000;
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  -webkit-animation: fadein 1s;
          animation: fadein 1s;
}

header.top_header .logo:before {
  display: block;
  content: "";
  width: 200px;
  height: 200px;
  background-color: #000;
  -webkit-transform: scaleY(0.35) scaleX(0.7) rotate(45deg);
          transform: scaleY(0.35) scaleX(0.7) rotate(45deg);
  position: absolute;
  top: 45%;
  -webkit-box-shadow: 5px 5px 0 0 #000;
          box-shadow: 5px 5px 0 0 #000;
}

header.top_header .logo img {
  position: absolute;
  -webkit-animation: fadein 2s;
          animation: fadein 2s;
}

header.top_header nav.top_nav {
  width: 100%;
  height: 70px;
}

header.top_header nav.top_nav ul {
  width: 50%;
  height: 70px;
  font-size: 14px;
  /*font-family: 'Montserrat', sans-serif;*/
  -webkit-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
}

header.top_header nav.top_nav ul:after {
  clear: both;
}

header.top_header nav.top_nav ul.left {
  padding-right: 110px;
  float: left;
  text-align: right;
}

header.top_header nav.top_nav ul.right {
  padding-left: 110px;
  float: right;
  text-align: left;
}

header.top_header nav.top_nav ul li {
  height: 70px;
  line-height: 70px;
  color: #FFF;
  padding: 0 11px;
  display: inline-block;
  cursor: pointer;
  list-style: none;
}

header.top_header nav.top_nav ul li:hover {
  background-color: #a12023;
}

header.top_header nav.top_nav ul li a {
  width: auto;
  height: 70px;
  line-height: 70px;
  text-decoration: none;
  color: #FFF;
  display: block;
}

figure.slider_top {
  width: 100%;
  height: 550px;
  background: url(../imgs/volante.jpg) no-repeat center center;
  background-size: cover;
}

figure.slider_top ul {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(104, 104, 104, 0.8);
  position: relative;
}

figure.slider_top ul.banner-slider .anim-dots {
  z-index: 10;
}

figure.slider_top ul.banner-slider .anim-dots span {
  width: 50px;
  border-radius: 7px;
}

figure.slider_top ul.banner-slider .anim-dots span.anim-dots-this:after {
  width: 47px;
  border-radius: 7px;
  background-color: #CB292C;
}

figure.slider_top ul li.anim_slide {
  width: 100%;
  height: 100%;
  list-style: none;
  position: absolute;
}

figure.slider_top ul li.anim-slide-this {
  z-index: 10;
}

.infoBox {
  width: 320px;
  min-height: 100px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background-color: #FFF;
  color: #000;
  padding: 10px;
  padding-bottom: 60px;
  font-size: 16px;
  font-family: 'Josefin Slab', serif;
  line-height: 30px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px #000;
          box-shadow: 0 0 15px #000;
}

/*PRODUCT AND SERVICES*/
.product-thumb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #AAA;
  display: inline-block;
  color: #FFF;
  text-align: center;
  position: relative;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  padding: 20px;
  font-size: 18px;
  padding-top: 50px;
}

.product-thumb:hover {
  border-radius: 10px;
  background-color: #CB292C;
}

.product-thumb:hover i {
  font-size: 36px;
  top: 30px;
}

.product-thumb:hover p {
  opacity: 1;
}

.product-thumb i {
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.product-thumb p {
  opacity: 0;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  line-height: 45px;
}

/*PRODUCT AND SERVICES*/
.gallery-wrapper {
  width: 100%;
  height: 450px;
  background: center center no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  cursor: pointer;
}

.gallery-wrapper:hover {
  background-size: cover;
}

.gallery-wrapper:hover .controll {
  display: block;
}

.gallery-wrapper:hover .controll.close {
  display: none;
}

.gallery-wrapper.maximized {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-size: contain;
}

.gallery-wrapper.maximized:hover .zoom {
  display: none;
}

.gallery-wrapper.maximized:hover .close-gallery {
  display: block;
}

.gallery-wrapper .controll {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all .5 ease-in-out;
  transition: all .5 ease-in-out;
  display: none;
  text-align: center;
  color: #FFF;
}

.gallery-wrapper .controll.right {
  right: 0;
}

.gallery-wrapper .controll.zoom {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery-wrapper .controll.close-gallery {
  right: 0;
  top: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  display: none;
}

.gallery-wrapper img {
  display: none;
}

.divider-content {
  width: 0;
  height: 0;
  border: solid #232323 100px;
  border-bottom: solid transparent 0px;
  content: "";
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.divider-content.primary {
  border: solid #CB292C 100px;
  border-bottom: none;
}

.divider-content.right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

footer.site_footer {
  background-color: #000;
  width: 100%;
  min-height: 150px;
  color: #AAA;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  header.top_header .mobile-logo {
    position: absolute;
    top: 17px;
  }
  header.top_header nav.top_nav {
    position: fixed;
    width: 70%;
    height: 100%;
    top: 0;
    left: -100%;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    background-color: #CB292C;
    -webkit-box-shadow: 0 0 10px #000;
            box-shadow: 0 0 10px #000;
  }
  header.top_header nav.top_nav.opened {
    left: 0;
  }
  header.top_header nav.top_nav ul.left, header.top_header nav.top_nav ul.right {
    padding: 0%;
    margin: 0%;
    width: 100%;
    height: auto;
    float: left;
  }
  header.top_header nav.top_nav ul li {
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: left;
  }
  header.top_header nav.top_nav ul li a {
    height: 35px;
  }
  header .menu-toggle {
    width: 70px;
    height: 70px;
    background: transparent;
    border: none;
    text-align: center;
    line-height: 70px;
    color: #FFF;
    font-size: 35px;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
  }
  header .menu-toggle.opened {
    margin-left: 70%;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  header.top_header .mobile-logo {
    position: absolute;
    top: 17px;
    right: 30px;
  }
  header.top_header nav.top_nav ul.left, header.top_header nav.top_nav ul.right {
    width: auto;
    padding: 0%;
    margin: 0%;
    float: left;
  }
  header.top_header nav.top_nav ul li {
    line-height: 35px;
    font-size: 10px;
    padding: 0 10px;
    float: left;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  header.top_header {
    display: block;
  }
}

/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */
/*COLORS*/
.bg-primary {
  background-color: #CB292C !important;
}
/*# sourceMappingURL=base_style.css.map */