/* =========================================
    Default Theme
    ----------------------------------------
    Fonts: Raleway & Open Sans
    ----------------------------------------
    Colors:
        Tomato:              #FF5353
        Ebony:               #2F3238
        Steel Grey:          #7F8289
		Steel Grey:          #3C3F45
		Steel Grey:          #212226
		Black Russian:       #23262C
        White:               #fff
        Black:               #000   
============================================ */


/* =========================================
                Html, Body
============================================ */

html,
body {
  height: 100%;
}

body {
  color: #212226;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

p {
  font-family: "Open Sans", sans-serif;
  color: #7F8289;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;

}

section {
  background: #2F3238;
  overflow: hidden;
}

/* ==================================================
   Preloader
================================================== */

#jpreOverlay,
#jSplash {
  background-color: #2F3238;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 700;
}

#jpreSlide {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
}

#jpreLoader {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
}

#jprePercentage {
  width: 50px;
  height: 50px !important;
  line-height: 50px;
  position: absolute !important;
  text-align: center;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
  z-index: 800;

  font-size: 24px;
  color: #FFFFFF;

  -webkit-animation: circle 1s infinite forwards;
  -moz-animation: circle 1s infinite forwards;
  -ms-animation: circle 1s infinite forwards;
  -o-animation: circle 1s infinite forwards;
  animation: circle 1s infinite forwards;
}

#circle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  background: #FF5353;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  opacity: 0;
  filter: alpha(opacity=0);

  -webkit-animation: circle 1s infinite forwards;
  -moz-animation: circle 1s infinite forwards;
  -ms-animation: circle 1s infinite forwards;
  animation: circle 1s infinite forwards;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
  }

  50% {
    -webkit-transform: rotateY(180deg);
    -webkit-animation-timing-function: ease-out;
  }

  100% {
    -webkit-transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
  }
}

@-moz-keyframes circle {
  0% {
    -moz-transform: rotateY(0deg);
  }

  50% {
    -moz-transform: rotateY(180deg);
    -moz-animation-timing-function: ease-out;
  }

  100% {
    -moz-transform: rotateY(0deg);
    -moz-animation-timing-function: ease-in;
  }
}

@-ms-keyframes circle {
  0% {
    -ms-transform: rotateY(0deg);
    -ms-animation-timing-function: ease-in;
  }

  50% {
    -ms-transform: rotateY(180deg);
    -ms-animation-timing-function: ease-out;
  }

  100% {
    -ms-transform: rotateY(0deg);
    -ms-animation-timing-function: ease-in;
  }
}

@-o-keyframes circle {
  0% {
    -o-transform: rotateY(0deg);
    -o-animation-timing-function: ease-in;
  }

  50% {
    -o-transform: rotateY(180deg);
    -o-animation-timing-function: ease-out;
  }

  100% {
    -o-transform: rotateY(0deg);
    -o-animation-timing-function: ease-in;
  }
}

@keyframes circle {
  0% {
    transform: rotateY(0deg);
    animation-timing-function: ease-in;
  }

  50% {
    transform: rotateY(180deg);
    animation-timing-function: ease-out;
  }

  100% {
    transform: rotateY(0deg);
    animation-timing-function: ease-in;
  }
}




/* =========================================
                Home
============================================ */

#home {
  background: none;
  height: 100%;
}

#home-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

#home-content {
  width: 100%;
  height: 80%;
  display: table;
}

#home-content-inner {
  display: table-cell;
  vertical-align: middle;
}

#home-heading h1 {
  color: #fff;
  font-size: 65px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  display: inline-block;
}

#home-heading h1 span {
  color: #FF5353;
  font-weight: 500;
}

#home-text p {
  color: #FF5353;
  font-size: 17px;
  font-weight: 100;
  margin: 8px 0 30px 0;
}


/* =========================================
                Buttons
============================================ */

.btn-general {
  font-family: 'Raleway', sans-serif;

  font-size: 13px;
  text-transform: uppercase;
  padding: 12px 46px 12px 46px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-home {
  color: #fff;
  border: 1px solid #fff;
}

.btn-home:hover,
.btn-home:focus {
  color: #fff;

}

.btn-home:hover {

  background-color: #FF5353;
  border: 1px solid #FF5353;
}

.btn-yellow {

  border: 1px solid #3C3F45;
  background-color: #3C3F45;
}


.btn-yellow:focus {
  background-color: #FF5353;
  border: 1px solid #FF5353;

  -webkit-transition: background 0.1s linear 0s;
  -moz-transition: background 0.1s linear 0s;
  -o-transition: background 0.1s linear 0s;
  transition: background 0.1s linear 0s;
}

.btn-white {
  color: #212226;
  border: 1px solid #fff;
  background-color: #fff;
}

.btn-white:hover,
.btn-white:focus {
  color: #fff;
  background-color: #212226;
  border: 1px solid #212226;
}






.btn-submit,
.btn-submit:focus {
  color: #000;
  border: 1px solid #3C3F45;
  background-color: #3C3F45;
}


.btn-submit:hover {
  color: #fff;
  background-color: #FF5353;
  border: 1px solid #FF5353;

  -webkit-transition: background 0.1s linear 0s;
  -moz-transition: background 0.1s linear 0s;
  -o-transition: background 0.1s linear 0s;
  transition: background 0.1s linear 0s;
}

.btn-white {
  color: #212226;
  border: 1px solid #fff;
  background-color: #fff;
}

.btn-white:hover,
.btn-white:focus {
  color: #fff;
  background-color: #212226;
  border: 1px solid #212226;
}


/* ==================================================
   Back to Top
================================================== */

#back-to-top {
  display: none;


  margin: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 99;

  -webkit-transition: background 0.1s linear 0s;
  -moz-transition: background 0.1s linear 0s;
  -o-transition: background 0.1s linear 0s;
  transition: background 0.1s linear 0s;
}

#back-to-top i {
  font-size: 18px;
  color: #FFFFFF;
  position: absolute;
  left: 40%;
  top: 50%;
  margin-top: -11px;
  line-height: 1em;
}





/* =========================================
                Arrow Down
============================================ */

#arrow-down {
  position: absolute;
  left: 50%;
  bottom: 5px;
  color: #fff;
  font-size: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-left: -16px;
  z-index: 12;
}

#arrow-down:hover,
#arrow-down:focus {
  color: #FF5353;
}


/* =========================================
                Content Boxes
============================================ */

.content-box-lg {
  padding: 70px 0;
}

.content-box-md {
  padding: 100px 0;
}

.content-box-sm {
  padding: 90px 0;
}


/* =========================================
        Vertical/Horizontal Headings
============================================ */

.vertical-heading h5 {
  color: #FF5353;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  word-spacing: 9px;
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: relative;
  top: 60px;
  left: -50px;
}

.vertical-heading h2 {
  margin: 0 0 0 35px;
}

.horizontal-heading h2,
.vertical-heading h2 {
  font-size: 42px;
  font-weight: 100;
  line-height: 45px;
  color: #fff;
}

.horizontal-heading {
  margin-bottom: 80px;
}

.horizontal-heading h5 {
  font-size: 16px;
  color: #FF5353;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.horizontal-heading h2 {
  margin: 0;
  color: #fff;
}


/* =========================================
                About 01
============================================ */

#about-right p:first-child {
  margin-bottom: 30px;
  color: #7F8289;
}

#about-right p {
  color: #7F8289;
}

#about-bottom {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

#about-bottom img {
  margin: 0 auto;
}

/* =========================================
                b&w 01
============================================ */

#b&w-right p:first-child {
  margin-bottom: 30px;
  color: #7F8289;
}

#b&w-right p {
  color: #7F8289;
}

#b&w-bottom {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

#b&w-bottom img {
  margin: 0 auto;
}


/* =========================================
                lab 01
============================================ */

#lab-right p:first-child {
  margin-bottom: 30px;
  color: #7F8289;
}

#lab-right p {
  color: #7F8289;
}

#lab-bottom {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

#lab-bottom img {
  margin: 0 auto;
}

/* =========================================
                books 01
============================================ */

#books-right p:first-child {
  margin-bottom: 30px;
  color: #7F8289;
}

#books-right p {
  color: #7F8289;
}

#books-bottom {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

#books-bottom img {
  margin: 0 auto;
}

/* =========================================
                About 02
============================================ */
.popular-books {
  padding-top: 60px;
}

#about-02 {
  padding-top: 50px;
  padding-bottom: 130px;
}

.about-item {
  background-color: #23262C;
  padding: 80px 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.about-item i {
  font-size: 42px;
  margin: 0;
  color: #fff;
}

.about-item img {
  width: 50%;
  margin: -70px auto 0;

}

.about-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff
}

.about-item hr {
  width: 45px;
  height: 3px;
  background-color: #FF5353;
  margin: 0 auto;
  border: none;
}

.about-item p {
  color: #7F8289;
  margin-top: 20px;
}


/* Hover state */

.about-item:hover {
  background-color: #3C3F45;
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p {
  color: #fff;
}

.about-item:hover hr {
  background-color: #fff;
}

.about-item:hover i {
  transform: translateY(-20px);
}

.about-item:hover img {
  transform: translateY(-20px);
}


/* Smooth transition */


.about-item img {
  -webkit-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.about-item,
.about-item i,
.about-item hr {
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.about-item h3,
.about-item p {
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

/* =========================================
                Team
============================================ */

#parallax-slider {
  position: relative;
  overflow: hidden;
  height: 70%;
}

#parallax-slider .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #26292E;
  opacity: 0.55;
  filter: alpha(opacity=65);
  z-index: 0;
}

#parallax-slider .slider-text {
  position: absolute;
  left: 53%;
  top: 50%;
  margin: -150px 0 0 -585px;
  width: 1170px;
  height: 250px;
  text-align: center;
  z-index: 2;
}

/*Pagina 4*/
#parallax-slider .sliderText {
    position: absolute;
    left: 53%;
    top: 50%;
    margin: -150px 0 0 -585px;
    width: 1170px;
    height: 250px;
    text-align: center;
    z-index: 2;
}

#parallax-slider #slidecaption {
  width: 100%;
  line-height: 250px;
  margin: 0;
  text-align: center;
  text-shadow: none;
}

#parallax-slider .slide-content {
  position: absolute;
  left: 12.5%;
  top: 40%;
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  color: #FFF;
  line-height: 45px;
}

#parallax-slider .slide-content p {
  font-size: 14px;
  color: #FF5353;
  font-family: "Raleway", sans-serif;
  margin-top: 8px;
}

#parallax-slider .control-nav {
  position: absolute;
  width: 100%;
  background: #2F3238;
  height: 50px;
  bottom: 0;
  z-index: 2;
}

#parallax-slider #nextslide3,
#parallax-slider #prevslide3 {
  background-image: none;
  background-color: #26292E;
  display: inline-block;
  margin: 0;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  opacity: 1;
  filter: alpha(opacity=100);

  -webkit-transition: background 0.1s linear 0s;
  -moz-transition: background 0.1s linear 0s;
  -o-transition: background 0.1s linear 0s;
  transition: background 0.1s linear 0s;
}

#parallax-slider #nextslide3 {
  margin-left: -3px;
}

#parallax-slider #nextsection {
  float: right;
}

#parallax-slider #nextslide3:hover,
#parallax-slider #prevslide3:hover {
  background-color: #FF5353;
}

#parallax-slider #nextslide3 i,
#parallax-slider #prevslide3 i {
  font-size: 16px;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -7px;
  line-height: 1em;
}

#parallax-slider #nextslide3 i {
  margin-left: -8px;
}

#parallax-slider #prevslide3 i {
  margin-left: -9px;
}

#parallax-slider ul#slide-list3 {
  top: 50%;
  padding: 0;
  margin: -6px 0 0 0;
}

#parallax-slider ul#slide-list3 li {
  margin-right: 12px;
}

#parallax-slider ul#slide-list3 li:last-child {
  margin-right: 0;
}

#parallax-slider ul#slide-list3 li a {
  background-color: #6E7074;
  background-image: none;
  width: 12px;
  height: 12px;

  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;

  -webkit-transition: background 0.1s linear 0s;
  -moz-transition: background 0.1s linear 0s;
  -o-transition: background 0.1s linear 0s;
  transition: background 0.1s linear 0s;
}

#parallax-slider ul#slide-list3 li a:hover {
  background-color: #FFFFFF;
}

#parallax-slider ul#slide-list3 li.current-slide a,
#parallax-slider ul#slide-list3 li.current-slide a:hover {
  background-color: #FF5353;
}

#parallax-slider #nextsection3 i {
  font-size: 16px;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -7px;
  line-height: 1em;
}

#parallax-slider #nextsection3 i {
  margin-left: -7px;
}



/* =========================================
                Team
============================================ */
#team-members2 {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

#team-left .vertical-heading {
  min-height: 160px;
}

#team-left .vertical-heading p {
  padding-bottom: 160px;

}

.team-member {
  margin: 3px;
  position: relative;
}

.team-member-overlay {
  background-color: rgba(33, 34, 38, .9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.team-member-info {
  width: 100%;
  height: 100%;
  padding: 80px 0;
}

.team-member-info h6 {
  color: #FF5353;
  font-size: 16px;
  margin: 0;
}

.team-member-info p {
  color: #fff;
}

. -member:hover .team-member-overlay {
  opacity: 1;
}

#progress-elements {
  padding-top: 50px;
  padding-bottom: 20px;
}

#team-members {
  padding-top: 50px;
}

/* =========================================
                Social Icons
============================================ */

ul.social-list {
  padding: 0;
  margin-top: 20px;
}

ul.social-list li {
  display: inline-block;
  padding: 0;
}

ul.social-list li a {
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

ul.social-list li:nth-child(1) a:hover {
  background: #3b5998;
  border-color: transparent;
}

ul.social-list li:nth-child(2) a:hover {
  background: #00aced;
  border-color: transparent;
}

ul.social-list li:nth-child(3) a:hover {
  background: #dd4b39;
  border-color: transparent;
}


/* =========================================
                Slider Buttons
============================================ */

.owl-theme .owl-nav [class*=owl-] {
  color: #000;
  font-size: 40px;
  background: none;
  margin: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: none;
  color: #FF5353;
}


/* =========================================
                Skills
============================================ */

.skill {
  margin-bottom: 20px;
}

.skill h4 {
  color: #000;
  line-height: 62px;
  margin: 0;
  font-weight: normal;
}

.progress {
  height: 25px;
  border-radius: 0;
  background: #efefef;
  overflow: visible;
}

.progress-bar {
  background: #FF5353;
  position: relative;
}

.progress-bar span {
  font-size: 11px;
  font-weight: 100;
  font-family: "Open Sans", sans-serif;
  background: #212226;
  padding: 3px;
  position: absolute;
  left: 97%;
  top: -47px;
}

.progress-bar span:before {
  content: "";
  border-top: 8px solid #212226;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  bottom: -8px;
  left: 23%;
}


/* =========================================
                Statement
============================================ */

#statement {
  background: url("../img/tech/Pablo Paez Plotter x Corte.jpg") no-repeat fixed center;
  background-size: cover;
}

#statement .content-box-lg {
  background: rgba(0, 0, 0, 0.45);
  /* padding: 300px */
}

#tech-statement h3 {
  color: #fff;
  font-size: 28px;
  line-height: 45px;
}

#tech-statement p {
  font-size: 14px;
  color: #FF5353;
  font-family: "Raleway", sans-serif;
  margin-top: 8px;
}


/* =========================================
                Services 01
============================================ */

#services-01 img {
  margin: 10px 0;
}

.service {
  margin: 35px 0;
}

.service .icon {
  color: #fff;
  font-size: 42px;
  margin: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.service:hover .icon {
  color: #FF5353;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.service h5 {
  font-size: 12px;
  text-transform: uppercase;
  color: #FF5353;
  margin: 0 0 6px 0;
}

.service:hover h5 {
  color: #212226;
}

.service h4 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 8px 0;
}

.service p {
  line-height: normal;
}


/* =========================================
    Services 02 (Responsive Tabs)
============================================ */

#services-02 {
  background: #23262C;
}

#services-tabs ul {
  margin-bottom: 40px;
}

#services-tabs ul li {
  padding: 5px 30px;
}

#services-tabs ul li a {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0;
  text-decoration: none;
}


/* Tab active state */

#services-tabs ul li.r-tabs-state-active a {
  color: #FF5353;
  font-weight: 500;
  padding-bottom: 5px;
  -webkit-transition: border-color 300ms linear;
  transition: border-color 300ms linear;
}

.service-tab .col-md-6 {
  padding: 0;
}

.service-tab img {
  width: 100%;
  margin: 0 auto;
}

.service-tab .tab-bg {
  background: #2F3238;
  padding: 59px 30px;
  min-height: 481px;
}

.service-tab h2 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 100;
}

.service-tab h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
}

.service-tab p {
  color: #7F8289;
  line-height: 24px;
  margin-bottom: 30px;
}


/* =========================================
                Portfolio
============================================ */

#portfolio {
  background: #23262C;
}

#portfolio .vertical-heading {
  margin-bottom: 50px;
}

#portfolio-wrapper {
  background: #23262C
}

.row.no-gutters [class*=col-] {
  padding: 0;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
}

/* =========================================
                Portfolio 2
============================================ */

#portfolio2 {
  padding: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  background: #23262C;
}

#portfolio2-wrapper {
  padding-bottom: 0px;
  margin-bottom: 0px;
  background: #23262C;
}

#portfolio2 .vertical-heading {
  margin-bottom: 50px;
}

.row.no-gutters [class*=col-] {
  padding: 0;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
}

.row2 {
  display: flex;
  flex-wrap: wrap;
  padding: 0 px;
  /*margin-bottom: 80px;*/
}

.row3{
  margin-bottom: 20px; 
}

.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 5px;
  margin-bottom: 80px;
}

.column img {
  overflow: hidden;
  margin-top: 10px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 992px) {

  .column {
    flex: 50%;
    max-width: 50%;
  }

}

@media screen and (max-width: 554px) {

  .column {
    flex: 100%;
    max-width: 100%;
  }

}



.row.no-gutters [class*=col-] {
  padding: 0;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
}

/* Filters CSS */

#isotope-container {
  background: #23262C;
}

/*Nuevos estilos Portfolio Items Wrapper*/
.filters {
  margin-bottom: 10px;
  padding: 20px 25px 20px 0;

}

.filters button {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 35px;
  outline: 0;
  display: inline-block;
  margin-bottom: 10px;
  padding: 0px 25px 3px 0;
}

.filters .btn-dange {


  border: none;
  background-color: #23262C;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: tr
}


.btn-dange:hover,
.open > .dropdown-toggle.btn-dange:hover {
  color: #7F8289;
  background-color: transparent;
  border-color: transparent;
}

.btn-dange.active {
  color: #FF5353;
  background-color: #23262C;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  border: none;
  outline: 0;
}


.btn-dange.active:hover {
  color: #FF5353;
  background-color: transparent;
  border-color: transparent;
}


/*-----------------------*/

#isotope-filters {
  margin-bottom: 10px;
  padding: 20px 25px 20px 0;
}

#isotope-filters button {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 35px;
  outline: 0;
}

#isotope-filters button span {
  display: block;
  padding-bottom: 5px;
  -webkit-transition: border-color .4s ease-in-out;
  transition: border-color .4s ease-in-out;
}

#isotope-filters button.active span {
  color: #FF5353;
}

#isotope-filters button: hover {
  color: #7F8289;
}

#isotope-filters2 {
  padding: 20px 25px 0px 0;
}

#isotope-filters2 button {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 35px;
  outline: 0;
}

#isotope-filters2 button span {
  display: block;
  padding-bottom: 5px;
  -webkit-transition: border-color .4s ease-in-out;
  transition: border-color .4s ease-in-out;
}

#isotope-filters2 button.active span {
  color: #FF5353;
}

/* Zoom Effect */

.portfolio-item img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 1.2s ease;
  transition: -webkit-transform 1.2s ease;
  transition: transform 1.2s ease;
  transition: transform 1.2s ease, -webkit-transform 1.2s ease;
}

.portfolio-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


/* Overlay Effect */

.portfolio-item-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 83, 83, 0.8);
  cursor: -webkit-zoom-in;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
  -moz-transform: rotateY(180deg) scale(0.5, 0.5);
  -ms-transform: rotateY(180deg) scale(0.5, 0.5);
  -o-transform: rotateY(180deg) scale(0.5, 0.5);
  transform: rotateY(180deg) scale(0.5, 0.5);
  -webkit-transition: all 450ms ease-out 0s;
  -moz-transition: all 450ms ease-out 0s;
  -o-transition: all 450ms ease-out 0s;
  transition: all 450ms ease-out 0s;
}


/* Item Details Effect */

.portfolio-item-details {
  width: 100%;
  position: absolute;
  top: 35%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: scale(.9);
  transform: scale(.9);
}

.portfolio-item-details h3 {
  color: #fff;
  font-size: 30px;
  margin: 0;
  padding: 0;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}

.portfolio-item-details span {
  display: inline-block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  height: 6px;
  width: 30px;
  margin: 11px auto 5px auto;
}

.portfolio-item-details p {
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform: scale(.1);
  transform: scale(.1);

  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}


/* Show Overlay on mouse over */

.portfolio-item:hover .portfolio-item-details h3 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.portfolio-item:hover .portfolio-item-details p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.portfolio-item:hover .portfolio-item-overlay {
  -webkit-transform: scale(.9);
  transform: scale(.9);
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
  opacity: 1;
}


/* =========================================
                Testimonials
============================================ */

#testimonials {
  background: #23262C;
  padding-top: 220px;
  padding-bottom: 0px;
  overflow: visible;
}

#testimonials .vertical-heading {
  padding: 80px 0;
  margin-bottom: 50px;
}

#testimonial-slider {
  background: #3C3F45;
  top: -120px;
}

.testimonial .row {
  margin-bottom: 25px;
}

.testimonial {
  padding: 20px 45px 0 45px;
  color: #fff;
}

.testimonial h3 {
  font-size: 32px;
  line-height: 35px;
}

.testimonial .stars {
  font-size: 13px;
  margin: 0px 0px 10px 0px;
}

.testimonial p {
  color: #fff;
  line-height: normal;
  margin: 0;
  margin-top: 5px;
  margin-bottom: 20px;
}

.author .author-name-des {
  width: 106px;
  margin-top: 25px;
  text-align: left;
}

.author .author-name-des p {
  margin: 0;
}


/* =========================================
                Pricing
============================================ */

#pricing {
  background-color: #212226;
}

.pricing-table {
  background-color: #000;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 32px 21px;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.pricing-table:hover {
  background: #3C3F45;
}

.pricing-table .type h4 {
  color: #FF5353;
  font-size: 24px;
  margin-bottom: 25px;
}

.pricing-table .price {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 0;
}

.pricing-table .price h2 {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 42px;
  font-weight: 100;
  margin: 0 0 0 24px;
  position: relative;
}

.pricing-table .price h2 span {
  font-family: "Raleway", sans-serif;
}

.pricing-table .price h2 span.dollar {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  left: -20px;
  top: 5px;
}

.pricing-table .price h2 span.month {
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  left: 5px;
  bottom: -12px;
}

.pricing-table .price p {
  line-height: normal;
  font-weight: 200;
  color: #fff;
  margin: 0;
  padding: 0;
}

.pricing-table ul.package {
  list-style: none;
  padding: 20px 0;
}

.pricing-table ul.package li {
  font-family: "Open Sans", sans-serif;
  color: #FF5353;
  font-size: 13px;
  font-weight: 400;
  line-height: 40px;
}

.pricing-table ul.package li i {
  width: 24px;
}

.pricing-table .btn-yellow,
.pricing-table.black .btn-white {
  width: 100%;
}

.pricing-table:hover h4,
.pricing-table:hover h2,
.pricing-table:hover p,
.pricing-table:hover ul.package li {
  color: #fff;
}

.pricing-table:hover .btn-yellow {
  background: #fff;
  color: #212226;
  border: 1px solid #fff;
}

.pricing-table .btn-yellow:hover,
.pricing-table .btn-yellow:focus {
  background: #FF5353;
  color: #fff;
  border: 1px solid #FF5353;
}


/* Black Pricing Table */

.pricing-table.black {
  background: #3C3F45;
  color: #fff;
}

.pricing-table.black .type h4 {
  color: #fff;
}

.pricing-table.black:hover {
  background: #7F8289;
}


/* =========================================
                Stats
============================================ */

#stats {
  background: url("../images/parallax/bamba-pablo-paez-riva-2000.jpg") no-repeat fixed center;
  background-size: cover;
}

#stats .content-box-md {
  background: rgba(0, 0, 0, 0.45);
  /* padding: 300px */
}

#stats .vertical-heading {
  margin-bottom: 50px;
}

#stats .vertical-heading h2 {
  color: #fff;
}

.stats-item {
  background: rgba(61, 68, 68, 0.6);
  border-radius: 4px;
  min-height: 170px;
  padding: 25px 50px;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.stats-item i {
  font-size: 42px;
  color: #FF5353;
  margin: 0 0 6px 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.stats-item h3 {
  font-size: 32px;
  color: #fff;
  margin: 10px 0 5px 0;
}

.stats-item p {
  color: #fff;
  margin: 0;
}

.stats-item:hover {
  background: #FF5353;
}

.stats-item:hover i {
  color: #212226;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.stats-item img {
  width: 60%;
  margin: -10px auto 0;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.stats-item:hover img {

  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.spacer {
  margin-bottom: 10px;
}

/* =========================================
                stats2
============================================ */

#stats2 {
  background: url("../images/parallax/pablo-paez-riva-maternity-camping-tent-2009.jpg") no-repeat fixed center;
  background-size: cover;
}

#stats2 .content-box-md {
  background: rgba(0, 0, 0, 0.35);
  /* padding: 300px */
}

#stats2 .vertical-heading {
  margin-bottom: 50px;
}

#stats2 .vertical-heading h2 {
  color: #fff;
}



/* =========================================
                Clients
============================================ */

#clients .horizontal-heading {
  margin-bottom: 30px;
}

#clients-list {
  padding: 45px 0 0 0;
}

.client {
  padding: 0 10px;
  max-width: 150px;
  margin: 0 auto;
  line-height: 100px;
}

.client img {
  display: inline-block !important;
}


/* =========================================
                Blog
============================================ */



#blog-left p {
  margin: 25px 0;
}

#blog-btn a {
  margin: 0;
}

.blog-post {
  background: #23262C;
  padding: 20px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.blog-post h4 {
  color: #fff;
  line-height: 40px;
  margin: 0;
}

.blog-post > p {
  line-height: 24px;
  margin: 0;
  font-weight: 300;
}

.blog-post a {
  display: inline-block;
  margin-top: 25px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  color: #FF5353;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.blog-post a:hover {
  color: #fff;
}

.blog-post .post-meta {
  border-top: 1px solid #e0e0e0;
  margin-top: 30px;
  padding-top: 10px;
}

.blog-post .post-meta p {
  font-size: 11px;
  font-family: "Raleway", sans-serif;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
}


/* =========================================
                Contact
============================================ */
#contact {
  padding: 0px;
}

/* Contact Left */

#contact-left p {
  margin: 25px 0 20px 0;
}

ul.office-details {
  list-style: none;
  padding: 0;
}

ul.office-details li {
  font-family: "Open Sans", sans-serif;
  color: #7F8289;
  margin-top: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

ul.office-details li i {
  font-size: 20px;
  width: 45px;
}

#contact-left ul.social-list li a {
  color: #7F8289;
  border: 1px solid #212226;
  text-align: center;
}

#contact-left ul.social-list li a:hover {
  color: #fff;
  border-color: transparent;
}

#contact-left h4 {
  color: #fff;
}


/* Contact Right */

#contact-right {
  padding: 0px 0px;
}

#contact-right h4 {
  color: #fff;
  font-size: 24px;
}

#contact-right p {
  margin-bottom: 25px;
}

#contact-right form .form-control {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background-color: #26292E;
  padding: 10px 15px;
  font-size: 12px;
  line-height: 24px;
  border: 0px;
}

#contact-right form textarea.form-control {
  background-color: #26292E;
  min-height: 164px;
}

.form-control {
  color: #fff;
}

#notif .success-block {
    background-color: #26292E;
    color: #fff !important;
    font-size: 18px;
}
#notif .alert-success {
    background-color: #26292E;
}

#notif .danger-block {
    background-color: #FF5353;
    color: #fff !important;
    font-size: 18px;
}
#notif .alert-danger {
    background-color: #FF5353;
}
#notif .alert {
   border: 0px;
}

#notif .alert .ico close {
  color: #fff;
}

/* =========================================
                Google Map
============================================ */




/* ==================================================
   Social Area
================================================== */

#social-area {
  width: 100%;
  text-align: center;
  margin-bottom: 0px;
  color: #55606a;
  padding-bottom: 55px;
}

#social-area #social ul {
  margin-bottom: 0;
  padding: 0;
  background: #2F3238;

}

#social-area #social ul li {
  display: inline-block;
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 40px;
  list-style: none;
  cursor: pointer;
}

#social-area #social ul li:first-child {
  margin: center;
}

#social ul li a {
  display: block;
  width: 70px;
  height: 70px;

  background: #26292E;

  -webkit-transition: all 400ms ease-out 0s;
  -moz-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;

  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

#social ul li a span {
  display: inline-block;
  margin: 0;
  color: #7F8289;
  font-size: 32px;
  line-height: 70px;

  opacity: 0.3;
  filter: alpha(opacity=30);

  -webkit-transition: all 400ms ease-out 0s;
  -moz-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;

  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

#social ul li:hover a,
#social ul li.active a {
  background-color: #FF5353;

  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

#social ul li:hover a span,
#social ul li.active a span {
  color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100);

  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}


.page {
  background: #2F3238;
  padding: 100px 20;
  position: relative;
  z-index: 11;
}

/* ==================================================
   Footer
================================================== */

footer {
  background: #212226;
  padding: 30px;
}

footer p {
  color: #fff;
  line-height: 20px;
  margin: 0;
}

footer p span {
  color: #FF5353;
}


/* =========================================
                Navigation
============================================ */


/* Scroll spy active state */

.navbar-nav > li.active > a {
  color: #FF5353;
  font-weight: 600;
}


/* =========================================
                Animation
============================================ */

#home-heading-1,
#home-heading-2,
#home-text,
#home-btn,
#arrow-down i {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

#home-heading-1 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

#home-heading-2 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

#home-text {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

#home-btn {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

#arrow-down i {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}


/* CARDS */


.book-card {
  position: relative;
  max-width: 420px;
  overflow: hidden;
  transition: all 1.4s;
  border: none
}

.card-footer {
  color: #fff;
  font-size: 14px;

}

.card-header h4 {
  color: #fff;
  font-size: 16px;

}

.card-body {
  padding: 0px;

}

/*.rotate {
  perspective: 0rem;
}*/

.back {
  position: absolute;
  top: -100%;
  background: #FF5353;
  height: 100%;
  width: 100%;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transform: rotateY(180deg);
  transition: top 1.2s, opacity 1.5s;
}

.back-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.back-content h1 {
  color: #fff;
}

.back-content h3 {
  color: #fff;
}

.back-content a {
  color: #fff;
}

.back-content p {
  color: #000;
}

}

.btn-outline-danger-px-4 {

  color: #fff;
}

.rotate:hover .book-card {
  transform: rotateY(180deg);
}

.rotate:hover .back {
  opacity: 1;
  top: 0;
  user-select: auto;
  pointer-events: auto;
}

/* end of CARDS */

/* ==================================================
   Section Portfolio
================================================== */
#work {
  background: #23262C;
}

#portfolio3 {
  background: #23262C;
}

#projects {
  background-color: #23262C;
}


.type-work {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1em;
  text-transform: uppercase;
}

.work-nav #filters {
  background-color: #23262C;
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  padding-bottom: 25px;
  -webkit-transition: border-color .4s ease-in-out;
  transition: border-color .4s ease-in-out;
}

.work-nav #filters li {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0px 0px 3px 0;

}

.work-nav #filters li a {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  background: transparent;
  -webkit-box-shadow: none;

  padding-right: 35px;
  outline: 0;
}

.work-nav #filters li a:hover {
  color: #7F8289;
  text-decoration: none
}

.work-nav #filters li a.selected {
  color: #FF5353;
  text-decoration: none
}

#thumbs {
  margin: 0;
  padding: 0;
}


#thumbs li {
  list-style-type: none;
}

.item-thumbs {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
}

.item-thumbs a + img {
  width: 100%;
}

.item-thumbs .hover-wrap {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;

  opacity: 0;
  filter: alpha(opacity=0);

  -webkit-transition: all 450ms ease-out 0s;
  -moz-transition: all 450ms ease-out 0s;
  -o-transition: all 450ms ease-out 0s;
  transition: all 450ms ease-out 0s;

  -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
  -moz-transform: rotateY(180deg) scale(0.5, 0.5);
  -ms-transform: rotateY(180deg) scale(0.5, 0.5);
  -o-transform: rotateY(180deg) scale(0.5, 0.5);
  transform: rotateY(180deg) scale(0.5, 0.5);
}

.item-thumbs:hover .hover-wrap,
.item-thumbs.active .hover-wrap {
  opacity: 1;
  filter: alpha(opacity=100);

  -webkit-transform: rotateY(0deg) scale(1, 1);
  -moz-transform: rotateY(0deg) scale(1, 1);
  -ms-transform: rotateY(0deg) scale(1, 1);
  -o-transform: rotateY(0deg) scale(1, 1);
  transform: rotateY(0deg) scale(1, 1);
}

.item-thumbs .hover-wrap .overlay-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FF5353;

  opacity: 0.80;
  filter: alpha(opacity=80);
}

.item-thumbs .hover-wrap .overlay-img-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  color: #FFFFFF;
  font-size: 32px;
  line-height: 1em;

  opacity: 1;
  filter: alpha(opacity=100);
}

/* Zoom Effect

.item-thumbs:hover img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 1.2s ease;
  transition: -webkit-transform 1.2s ease;
  transition: transform 1.2s ease;
  transition: transform 1.2s ease, -webkit-transform 1.2s ease;
}

.item-thumbs:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
 */