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

  Template Name: Archiko. 
  Description: Archiko. - Architecture HTML Template
  Author: Murren
  Author URI: http://themeforest.net/user/paul_tf
  Version: 1.0
  
  1.  Global

      1.1 General
      1.2 Typography
      1.3 Fields
      1.4 Buttons
      1.5 Icons
      1.6 Loader
      1.7 Content styles

  2.  Header 

      2.1 Navbar
      2.2 Nav Desctop
      2.3 Nav Mobile
      2.4 Navbar Affix
      

  3.  Main

      3.1 Slider

  4.  Portfolio

      5.1 Magnific popup
      5.2 Portfolio Details
      
  5.  Team
  6.  Clients
  7.  News
  8.  Banner
  9.  Footer
  10.  Modal
  11. Responsive styles

      11.1 Min width: 768px
      11.2 Min width 992px
      11.3 Min width 1200px 

    
    
/*-------------------------------------------------------------------------------
 1. Global
-------------------------------------------------------------------------------*/



/* 1.1 General */

/*
@font-face {
   font-family: 'Gtek Technology';
    src: url('../fonts/GtekTechnology.eot');
    src: url('../fonts/GtekTechnology.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GtekTechnology.woff2') format('woff2'),
        url('../fonts/GtekTechnology.woff') format('woff'),
        url('../fonts/GtekTechnology.ttf') format('truetype'),
        url('../fonts/GtekTechnology.svg#GtekTechnology') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/





@import url('bootstrap.min.css');
@import url('font-awesome.min.css');
@import url('ionicons.min.css');
@import url('linearicons.css');
@import url('magnific-popup.css');
@import url('owl.carousel.css');
@import url('owl.transitions.css');
@import url("slick.css");
@import url('settings.css');
@import url('layers.css');
@import url('navigation.css');





/*

Animacion

*/


.background-one {
  background-color: #151515;
}

.background-two {
  background-color: #151515;
}

.background-three {
  background-color: #151515;
}

.link-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 0;
}



.link-one {
  color: #53d9d1;
  transition: color 1s cubic-bezier(0.32, 0, 0.67, 0);
  line-height: 1em;
}

.link-one:hover {
  color: #111;
  transition: color 1s cubic-bezier(0.33, 1, 0.68, 1);

  /* Thanks Chris Coyier, you got my back always. https://css-tricks.com/different-transitions-for-hover-on-hover-off/ */
}

.link-one::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #53d9d1;

  clip-path: circle(0% at 50% calc(50%));
  transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.link-one:hover::before {
  clip-path: circle(100% at 50% 50%);
}

.link-one::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #151515;

  clip-path: polygon(
    40% 0%,
    60% 0%,
    60% 0%,
    40% 0%,
    40% 100%,
    60% 100%,
    60% 100%,
    40% 100%
  );

  /*
  Didn't look consistently awesome enough
  across different viewing widths.
  clip-path: polygon(
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%,
    50% 50%
  );
  */
  transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.link-one:hover::after {
  /*
  clip-path: polygon(
    20% 45%,
    10% 40%,
    30% 30%,
    40% 35%,
    60% 35%,
    70% 30%,
    90% 40%,
    80% 45%,
    60% 35%,
    40% 35%,
    20% 45%,
    20% 55%,
    10% 60%,
    30% 70%,
    40% 65%,
    60% 65%,
    70% 70%,
    90% 60%,
    80% 55%,
    60% 65%,
    40% 65%,
    20% 55%
  );
  */
  clip-path: polygon(
    40% 10%,
    60% 10%,
    60% 35%,
    40% 35%,
    40% 90%,
    60% 90%,
    60% 65%,
    40% 65%
  );
}

.link-two {
  color: #f27b9b;
  transition: color 1s cubic-bezier(0.32, 0, 0.67, 0);
}

.link-two:hover {
  color: #111;
  transition: color 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.link-two::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  clip-path: polygon(
    0% -20%,
    100% -30%,
    100% -10%,
    0% 0%,
    0% 130%,
    100% 120%,
    100% 100%,
    0% 110%
  );
  background-color: #f27b9b;

  transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.link-two:hover::before {
  clip-path: polygon(
    0% 10%,
    100% 0%,
    100% 20%,
    0% 30%,
    0% 100%,
    100% 90%,
    100% 70%,
    0% 80%
  );
}

.link-two::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 5ch;
  height: 5ch;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%) rotate(0deg) scale(0);
  transition: transform 1s ease;

  background-color: #f27b9b;
}

.link-two:hover::after {
  transform: translate(50%, -50%) rotate(135deg) scale(1);
}

.link-three {
  color: #eb7132;
}

.link-three::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 50%;
  height: 100%;
  top: 0%;
  left: 0%;
  transform: translate(0, -50%) scaleY(0);
  transition: transform 1s ease;
  mix-blend-mode: difference;

  clip-path: polygon(
    20% 60%,
    100% 60%,
    100% 40%,
    20% 40%,
    20% 0%,
    60% 0%,
    60% 20%,
    20% 20%
  );

  background-color: #eb7132;
}

.link-three:hover::after {
  transform: translate(0, 0%) scaleY(1);
}

.link-three::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 50%;
  height: 100%;
  bottom: 0%;
  right: 0%;
  transform: translate(0, 50%) scaleY(0);
  transition: transform 1s ease;
  mix-blend-mode: difference;

  clip-path: polygon(
    80% 40%,
    0% 40%,
    0% 60%,
    80% 60%,
    80% 100%,
    40% 100%,
    40% 80%,
    80% 80%
  );

  background-color: #eb7132;
}

.link-three:hover::before {
  transform: translate(0%, 0%) scaleY(1);
}





















/*

Menu

*/



nav  ul{

  min-height: 30px;
  /*
  display: flex;
  width: 100%;
  height: 80vh;
  margin: auto;
  max-width: 1000px;
  justify-content: space-between;
  text-align: center;
  */
}


nav  li {
  /*padding: 1rem 2rem 1.15rem;*/
  text-transform: uppercase;
  cursor: pointer;
  /*color: #ebebeb;*/
 /* min-width: 80px;
  margin: auto;*/
}

nav  li:hover {
  /*background-image: url('https://scottyzen.sirv.com/Images/v/button.png');*/
  color: #3abff0 !important;
  background-size: 100% 100%;
  /*color: #3abff0;*/
  -webkit-animation: spring 900ms ease-out;
          animation: spring 900ms ease-out;
  text-shadow: 0 -1px 0 #ef816c;
  font-weight: bold;
}


nav li a:hover {

  color: #ffffff !important;
  text-decoration: none !important;
    text-shadow: none !important;

}

nav  li:active {
  transform: translateY(4px);
}

@-webkit-keyframes spring {
  15% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1.2, 1.1);
  }
  40% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(0.95, 0.95);
  }
  75% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1.05, 1);
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1, 1);
  }
}

@keyframes spring {
  15% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1.2, 1.1);
  }
  40% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(0.95, 0.95);
  }
  75% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1.05, 1);
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: scale(1, 1);
  }
}

.shameless-plug{
  position: absolute;
  bottom: 10px;
  right: 0;
  padding: 8px 20px;
 /* color: #3abff0;*/
  text-decoration: none;
}

/*

Menu

*/










html{
  font-size: 80%;
  -webkit-font-smoothing: antialiased;
}

body{
  font-family: 'Nasalization Rg', serif;
  font-size: 1em;
  line-height: 1.875;
  color: #9a9a9a;
  /*background-color: #1f1f1f;*/
  overflow-x:hidden;
  position: relative;
  background-color: #000000;
  box-sizing: border-box;
 
}

::-webkit-scrollbar{
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #313131;
}


::selection{
  background-color:#6534ff;
  color:#fff;
}

-webkit-::selection{
    background-color:#6534ff;
    color:#fff;
}

::-moz-selection{
    background-color:#6534ff;
    color:#fff;
}



/* 1.2 Typography */


h1,
.h1{ 
  font-family: 'Nasalization Rg', sans-serif;
  font-weight: 700;
  font-size: 4.3em;
  line-height: 1.2;
  color: #fff;
  margin:0;
}

h1 i,
.h1 i{
  display: inline-block;
  font-family: 'Nasalization Rg', serif;
}

h2,
.h2{ 
  font-family: 'Nasalization Rg', sans-serif;
  font-weight: 700;
  font-size: 2.1em;
  color: #fff;
  margin:0.5em 0;
  text-align: center;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

p.elegantshadow {
  color: #ffffff;
  
  letter-spacing: 0.15em;
  text-shadow: 1px -1px 0 #767676, -1px 2px 1px #737272, -2px 4px 1px #767474, -3px 6px 1px #787777, -4px 8px 1px #7b7a7a, -5px 10px 1px #7f7d7d, -6px 12px 1px #828181, -7px 14px 1px #868585, -8px 16px 1px #8b8a89, -9px 18px 1px #8f8e8d, -10px 20px 1px #949392, -11px 22px 1px #999897, -12px 24px 1px #9e9c9c, -13px 26px 1px #a3a1a1, -14px 28px 1px #a8a6a6, -15px 30px 1px #adabab, -16px 32px 1px #b2b1b0, -17px 34px 1px #b7b6b5, -18px 36px 1px #bcbbba, -19px 38px 1px #c1bfbf, -20px 40px 1px #c6c4c4, -21px 42px 1px #cbc9c8, -22px 44px 1px #cfcdcd, -23px 46px 1px #d4d2d1, -24px 48px 1px #d8d6d5, -25px 50px 1px #dbdad9, -26px 52px 1px #dfdddc, -27px 54px 1px #e2e0df, -28px 56px 1px #e4e3e2;
}

.deepshadow {
  color: #ffffff;
  
  letter-spacing: 0.1em;
  text-shadow : 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 1px 0 #2c2c2c, 0 2px 0 #2a2a2a, 0 2px 0 #282828, 0 3px 0 #262626, 0 3px 0 #242424, 0 4px 0 #222, 0 4px 0 #202020, 0 5px 0 #1e1e1e, 0 5px 0 #1c1c1c, 0 6px 0 #1a1a1a, 0 6px 0 #181818, 0 7px 0 #161616, 0 7px 0 #141414, 0 8px 0 #121212, 0 8px 10px rgba(0, 0, 0, 0.9) !important;
}

h2.elegantshadow {
  color: #ffffff;
  
  letter-spacing: 0.15em;
  text-shadow: 1px -1px 0 #767676, -1px 2px 1px #737272, -2px 4px 1px #767474, -3px 6px 1px #787777, -4px 8px 1px #7b7a7a, -5px 10px 1px #7f7d7d, -6px 12px 1px #828181, -7px 14px 1px #868585, -8px 16px 1px #8b8a89, -9px 18px 1px #8f8e8d, -10px 20px 1px #949392, -11px 22px 1px #999897, -12px 24px 1px #9e9c9c, -13px 26px 1px #a3a1a1, -14px 28px 1px #a8a6a6, -15px 30px 1px #adabab, -16px 32px 1px #b2b1b0, -17px 34px 1px #b7b6b5, -18px 36px 1px #bcbbba, -19px 38px 1px #c1bfbf, -20px 40px 1px #c6c4c4, -21px 42px 1px #cbc9c8, -22px 44px 1px #cfcdcd, -23px 46px 1px #d4d2d1, -24px 48px 1px #d8d6d5, -25px 50px 1px #dbdad9, -26px 52px 1px #dfdddc, -27px 54px 1px #e2e0df, -28px 56px 1px #e4e3e2;
}
h2.deepshadow {
  color: #ffffff;
  
  letter-spacing: 0.1em;
  text-shadow : 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 1px 0 #2c2c2c, 0 2px 0 #2a2a2a, 0 2px 0 #282828, 0 3px 0 #262626, 0 3px 0 #242424, 0 4px 0 #222, 0 4px 0 #202020, 0 5px 0 #1e1e1e, 0 5px 0 #1c1c1c, 0 6px 0 #1a1a1a, 0 6px 0 #181818, 0 7px 0 #161616, 0 7px 0 #141414, 0 8px 0 #121212, 0 8px 10px rgba(0, 0, 0, 0.9) !important;
}
h2.insetshadow {
  color: #ffffff;
  
  letter-spacing: 0.1em;
  text-shadow: -1px -1px 1px #111, 2px 2px 1px #363636;
}
h2.retroshadow {
  color: #ffffff;
  
  letter-spacing: 0.05em;
  text-shadow: 4px 4px 0px #d5d5d5, 7px 7px 0px rgba(0, 0, 0, 0.2);
}

h3,
.h3{
  font-family: 'Nasalization Rg', sans-serif;
  font-size: 1.875em;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

h4,
.h4{
  font-family: 'Nasalization Rg', sans-serif;
  font-size: 1.25em;
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin:1.3em 0;
}

h5,
.h5{
  font-family: 'Nasalization Rg', sans-serif;
  font-size: 0.875em;
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin:1.4em 0;
}

h6,
.h6{
  font-family: 'Nasalization Rg', sans-serif;
  font-size: 0.75em;
  line-height: 1.35;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin:1.4em 0;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a{
  color:inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover{
  text-decoration: none;
}

p{
  margin-bottom: 2em;
}

ul{
  list-style: none;
  padding-left: 0;
}

a {
  color:#fff;
  -webkit-transition: color .3s ease-out;
       -o-transition: color .3s ease-out;
          transition: color .3s ease-out;
}

a:hover,
a:focus {
  color:#fff;
  outline: none;
}


a:focus{
  text-decoration: none;
}


/* 1.3 Fields */



input[type='text'],
input[type='address'],
input[type='url'],
input[type='password'],
input[type='email'],
input[type="search"],
input[type="tel"],
textarea{
  display: inline-block;
  width:100%;
  font-size: 1.125em;
  border-radius: 0.75em;
  color: #fff;
  background-color:transparent;
  border:0;
  border-bottom: 1px solid rgba(255,255,255,0.17);
  border-radius: 0;
  padding:0em 0 0.3em 0;
  height:2.5em;
  -webkit-box-shadow:none;
          box-shadow:none;
      -webkit-appearance: none;
  -webkit-transition: all .15s;
       -o-transition: all .15s;
          transition: all .15s;
}

textarea{
  resize:none;
  -webkit-transition: all .3s;
       -o-transition: all .3s;
          transition: all .3s;
}

input[type='text']:focus,
input[type='address']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
textarea:focus{
  border-color: #fff;
  border-right-width: 0;
  outline: 0;
}

textarea:focus{
  height:7em;
}

input::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #a7a7a7;
}

input::-webkit-input-placeholder {
  color: #a7a7a7;
}

textarea::-moz-placeholder{
  color: #a7a7a7;
  opacity: 1;
}

textarea:-ms-input-placeholder {
  color: #a7a7a7;
}

textarea::-webkit-input-placeholder {
  color: #a7a7a7;
}


input.input-round{
  border-radius: 30px;
  background-color: #fff;
  padding:0.3em 1.5em 0.2em 1.5em;
  height: 3.2em;
  border:1px solid transparent;
}

input.input-round:focus{
  border-color: #6534ff;
}

textarea.input-round{
  height: 7.9em;
  padding-top:1.1em;
  resize:none;
}

.input-group-btn{
  font-size:inherit;
}

.input-group-btn .btn{
  height: 3.9em;
}

.input-group .btn{
  position: relative;
  width:3.75em;
  height:3.9em;
  border-radius: 0 30px 30px 0;
  padding: 0;
  -webkit-box-shadow:none;
  box-shadow:none;
}

.input-group .btn .arrow-right{
  top:50%;
  left: 0;
  margin: 0 0 0 1.1em;
  -webkit-transform: translateY(-50%)
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-group .btn .arrow-right:before{
  width: 1.28125em;
  height: 0.75em;
  opacity: 1;
  margin:0;
}

.form-group{
  margin-bottom: 2.5em;
}

.mc-label .fa{
  font-size: 1.2em;
  margin-right: 0.2em;
  color:#5e31e9;
}

input.error{
  border-color: #fff;
}

.mc-label,
label.error{
  font-size: 0.8em;
  font-weight: 400;
  margin: 0.5em 0 0 0;
  font-style: italic;
  color: #fff;
}


.wobble-error{
  -webkit-animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
           animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
}



/* 1.4 Buttons */



.btn{
  font-family: 'Nasalization Rg', sans-serif;
  font-weight: 700;
  color:#fff;
  letter-spacing: 0.28em;
  font-size: 0.93em;
  position: relative;
  display: inline-block;
  border:0;
  border-radius: 30px;
  padding: 1.2em 2.6em 1.2em;
  height: 3.8em;
  font-size: 0.9375em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:0 10px 20px rgba(101,52,255,0.3);
  background-color:#6534ff;
  -webkit-transition: all .3s ease-out!important;
          transition: all .3s ease-out!important;
}

.btn:hover,
.btn:focus{
  background-color:#7549ff;
  color: #fff;
  -webkit-box-shadow:none;
  box-shadow: none;
  outline: none!important;
}


.btn-dark{
  background-color:#292929;
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.btn-dark:hover,
.btn-dark:focus{
  background-color:#161616;
}



/* 1.5 Icons */



i.icon{
  line-height: inherit;
  width:auto;
  height:auto;
}

.icon{
  display: inline-block;
  font-size: 3.5em;
}



/* 1.6 Loader */



.loader{
  position: fixed;
  overflow: hidden;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1f1f1f;
  color:#4b4b4b;
  text-align: center;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #444444;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}



/* 1.7 Content styles */


.row-base{
  margin-top: -3em;
}

.col-base{
  margin-top: 3em;
}

.section{
  position: relative;
  padding-top: 9.1em;
  padding-bottom: 2.1em;
      overflow-x: hidden !important;
}

.section-sm{
  position: relative;
  padding-top:4em;
  padding-bottom: 4em;
}

.section-title{
  position: relative;
  margin-top: 0;
  font-size: 4.8em;
}

.section-title-2{
  margin:0 0 1.3em 0;
}

.section-title-3{
  margin:0 0 0.75em 0;
}

.lead{
  font-size: 1.375em;
}

.lead-2{
  font-size:1.43em;
}

.lead-hr{
  display: inline-block;
  width: 48px;
  height: 4px;
  background-color: #6534ff;
  margin:2.2em 0;
}

.section-lead{
  font-size: 1.25em;
  margin:0;
}

.section-content{
  margin-top: 6.8em;
  margin-bottom: 20px;
}

.section-content-2{
  margin-top: 4.2em;
}



/* 1.7 Helpers */



.text-primary{
  color:#6534ff;
}

.text-white{
  color:#fff;
}

.text-dark{
  color:#030203;
}

.text-muted{
  color: #9a9a9a;
}

.text-gray{
  color: #4b4b4b;
}

.bg-dark{
  /*background-color:#222222;*/
  color:#9a9a9a;
  /*background-color: #36363a;*/

  background-color: #000000;
}

.bg-black{
  background-color: #1c1c1c;
}

.bg-brown{
  background-color: #c5a47e;
}

.bg-light{
  background-color: #f7f7f7;
}

.bg-violet{
  background-color: #a515cc;
}

.bg-dark-blue{
  background-color: #6534ff;
}

.bg-yellow{
  background-color: #fede5c;
}

.bg-primary{
  background-color: #6534ff;
}

.pt-0{
  padding-top: 0;
}

.pb-0{
  padding-bottom:0;
}

.pb-base{
  padding-bottom: 7.1em;
}

.pt-base{
  padding-top: 7.1em;
}



/*-------------------------------------------------------------------------------
  2. Header
-------------------------------------------------------------------------------*/



/* 2.1 Navbar */



.navbar{ 
  position: absolute;
  z-index: 2;
  left:0;
  top:0;
  width:100%;
  padding: 1.3em 15px 1.1em;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.brand{
  font-family: 'Nasalization Rg', sans-serif;
  font-size:1.875em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.brand:hover,
.brand:focus{
  color: #fff;
  text-decoration: none;
}

.navbar .brand{
  float: left;
  margin-left: 15px;
}

.navbar-responsive{
  padding-top: 3em;
  border-bottom: 0;
}

.navbar-responsive .navbar-toggle{
  display: block;
  margin-right: 0;
}



.navbar-responsive .brand{
  margin-left: 0;
}




.navbar .social-list{
  text-align:center;
}

.social-list{
  margin-top: 0;
  margin-bottom: 0;
}

.social-list li{
  display: inline-block;
  margin:0  1.1em;
}

.social-list li:first-child{
  margin-left:0;
}

.social-list li:last-child{
  margin-right:0;
}

.social-list li a{
  font-size: 1em;
  color:#fff;
}

.social-list li a:hover{
  text-decoration: none;
  color:#6534ff;
}



/* 2.2 Nav Desctop */



.nav-desctop-list{
    font-family: 'Nasalization Rg', sans-serif;
    text-transform: uppercase;
    font-size: 0.767em;
    text-align: right;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.nav-desctop-list li{
  position: relative;
  text-align: left;
  -webkit-perspective: 2000px;
  perspective: 2000px;

}

.nav-desctop-list li a {
  display: block;
  text-decoration: none;
  color: #fff;
  margin-bottom: 0!important;
  color:#fff!important;
}

.nav-desctop-list  > li{
  display: inline-block;
  margin-left: 3em;
}

.nav-desctop-list > li > a{
  color: #fff;
  margin-bottom: 1.8em;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;

}

.nav-desctop-list > li > a:hover,
.nav-desctop-list > .active > a{
  opacity:0.5;
}

.nav-desctop-list li ul{
  position: absolute;
  z-index: 10;
  left: 0;
  top:60%;
  visibility: hidden;
  min-width: 16em;
  padding:0.6em 0;
  opacity: 0;
  white-space: nowrap;
  background:rgba(23, 23, 23, 0.95);
  letter-spacing: 0.2em;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.nav-desctop-list > li > ul{
  left: -3em;
  margin-top: 0;
}

.nav-desctop-list li:hover > ul{
  top:0;
  visibility: visible;
  opacity: 1;
}

.nav-desctop-list > li:hover > ul{
  top:100%;
}

.nav-desctop-list li li{
  position: relative;
  padding: 0.8em 3.2em 1em;
}

.nav-desctop-list li li a{
  position: relative;
  color: #616060;
  font-weight: 700;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-desctop-list li li a:hover,
.nav-desctop-list li .active > a{
  color: #fff;
}

.nav-desctop-list > li > ul > li >  a:after,
.nav-desctop-list > li > ul > .active > a:after{
  content:'';
  position: absolute;
  opacity: 0;
  right:100%;
  top:50%;
  content:'';
  width:3em;
  height:2px;
  margin-right: 10px;
  background-color: #6534ff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}


.nav-desctop-list > li > ul > li:hover > a:after,
.nav-desctop-list > li > ul > .active >  a:after{
  opacity: 1;
  margin-right:-10px;
}

.nav-desctop-list > li > ul > li:hover >  a,
.nav-desctop-list > li > ul >  .active >  a{
  padding-left:20px;
  color: #fff;
}

.nav-desctop-list li li ul{
  left:100%;
}

.nav-desctop-list li li:hover > ul{
  top:-0.6em;
}


/* 2.3 Nav Mobile */



.nav-mobile{
  clear:both;
  font-size: 1em;
}

.nav-mobile .brand{
  display: none;
  margin-left: 15px;
  font-size: 1.6em;
}

.navbar-collapse{
  border:0;
  -webkit-box-shadow:none;
  box-shadow:none;
}

.collapse{
  max-height: 90vh;
  overflow-y:auto;
}

.navbar-toggle{
  padding: 0;
  margin-top:0.3em;
  margin-bottom: 0;
  border-radius: 0;
  border:0;
}

.navbar-toggle .icon-bar{
  background-color:#fff;
  height: 2px;
  width: 30px; 
}

.navbar-toggle .icon-bar + .icon-bar{
  margin-top:5px;
}

.navbar-toggle.collapsed .icon-bar{
  background-color: #fff;
}

.nav-mobile-list{
  font-family: 'Nasalization Rg', sans-serif;
  font-weight: 300;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top:1.8em;
  margin-bottom: 0;
}

.nav-mobile-list li{
  position: relative;
  border-top:1px solid rgba(0,0,0,0.07);
}

.nav-mobile-list li a{
  display: block;
  padding: 1em 1em;
  color: #fff;
  text-decoration: none;
  color:#3d3d3d;
}

.nav-mobile-list li a .fa-angle-down{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2em;
}

.nav-mobile-list li a:hover,
.nav-mobile-list li .active > a,
.nav-mobile-list .current > a{
  color: #6534ff;
}

.nav-mobile-list  .current > a .fa-angle-down{
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav-mobile-list > .active > a,
.nav-mobile-list > .active > a:hover{
  background-color: #6534ff;
  color: #fff;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.nav-mobile-list ul{
  display: none;
}

.nav-mobile-list ul li a{
  color: #959595;
}



/* 2.4 Navbar Affix */



.navbar.affix{
  position: fixed;
  z-index: 5;
  top:0;
  background-color:#131722;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
}

.navbar.affix{
  border-bottom: 0;
}

.navbar-responsive.affix{
  padding-top: 1.1em;
}

.navbar.affix .brand{
  color: #fff;  
}

.navbar.affix .nav-desctop-list > li > a{
  color:#3d3d3d;
}

.navbar.affix:not(.navbar-dark) .social-list li a{
  color:#3d3d3d;
}

.navbar.navbar-fixed{
  box-shadow: none;
}

.navbar.navbar-fixed .social-list li a{
  color:#3d3d3d;
}

.nav-desctop-list > li:first-child{
  margin-left: 0;
}

.navbar.affix .social-list li a:hover{
  text-decoration: none;
  color:#6534ff;
}

.navbar.affix .navbar-toggle .icon-bar{
   background-color: #fff;
}

.navbar.affix .nav-mobile-list li{
  border-top: 1px solid rgba(255,255,255,0.04);
}

.navbar.affix .nav-mobile-list li a:hover, 
.navbar.affix .nav-mobile-list li .active > a, 
.navbar.affix .nav-mobile-list > .current > a{
  color: #fff;
}

.navbar-dark.affix .nav-mobile-list > .active > a,
.navbar-dark.affix .nav-mobile-list > .active > a:hover{
  background-color: #202020;
  color:#fff;
}


.navbar.affix .nav-mobile-list li a{
  color:#858585;
}


.navbar.affix .nav-mobile-list > .active > a,
.navbar.affix .nav-mobile-list > .active > a:hover{
  background-color: #202020;
  color:#fff;
}

.navbar.affix .nav-mobile-list .active > a:hover,
.navbar.affix .nav-mobile-list .current > a{
  color:#fff;
}



/*-------------------------------------------------------------------------------
  3. Main
-------------------------------------------------------------------------------*/



.main{
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: #fff;
  background-color: #222222;
}

.main h1{
  color: #fff;
}

.mouse-helper{
  z-index: 1;
  text-align: center;
}

.mouse-helper .ion-mouse{
  background:url(../img/mouse.png);
  background-size:cover;
  width: 0.6635em;
  height: 0.9695em;
  margin-top: 0.7em;
}

.mouse-helper .ion-mouse:before{
  display: none;
}

.mouse-helper span{
  display: block;
  font-family: 'Nasalization Rg', sans-serif;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.mouse-helper{
  color: #fff;
  position: absolute;
  left:50%;
  bottom:3em;
  font-size: 0.7em;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}



/* 3.1 Slider */



.rev_slider{
  color: #fff;
  min-height: 320px;
}

.rev_slider .btn{
  -webkit-transition: background-color .3s ease-out!important;
          transition: background-color .3s ease-out!important;
}

.tp-caption{
  padding: 0 20px;
  text-align: center;
}

.slider-title{
  font-weight: 700;
}

.slider-text{
  text-align: center;
}

.arrow-left,
.arrow-right{
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.arrow-left{
  left: 3em;
}

.arrow-right{
  right:  3em;
}

.arrow-left:before,
.arrow-right:before{
  content:'';
  display: inline-block;
  vertical-align: middle;
  background-color: transparent;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
}

.arrow-left:before,
.arrow-right:before{
  content:'';
  display: inline-block;
  vertical-align: middle;
  width:2.5625em;
  height: 1.5em;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.arrow-left:before{
  background: url(../img/img-icon/prev.png) 0 0 no-repeat;
  background-size: cover;
  margin-right: 0.82em;
}

.arrow-right:before{
  background: url(../img/img-icon/next.png) 0 0 no-repeat;
  background-size: cover;
  margin-left: 0.72em;
}

.text-parallax-content{
  overflow: hidden;
  color: #000;
  mix-blend-mode:lighten;
  -ms-mix-blend-mode:lighten;
}

.tp-shape-mask{
  -webkit-transform: none!important;
  -ms-transform: none!important;
  -o-transform: none!important;
  transform: none!important;
}

.object-meta{
  font-family: 'Nasalization Rg', sans-serif;
  letter-spacing: 0.4em!important;
  text-transform: uppercase;
}

.object-meta i{
  font-size: 1.5em;
  vertical-align: middle;
  color:#c5a47e;
  margin-right: 0.5em;
}

.object-meta i.text-white{
  color: #fff;
}



/*-------------------------------------------------------------------------------
  4. Portfolio
-------------------------------------------------------------------------------*/



.isotope .isotope-item{
  width: 100%;
}

.isotope-padding{
  padding-bottom: 15px;
}

.isotope-padding .isotope-item{
  padding:15px;
}

.isotope-space .isotope-item{
  padding:4em 2em 0;
}

.showcase-item{
  position: relative;
  color: #fff;
}

.showcase-item-thumbnail img{
  display: block;
  width: 100%;
}

.showcase-item-hover{
  position: absolute;
  overflow: hidden;
  z-index: 1;
  top: 0;
  bottom:0;
  left: 0;
  right:0;
  opacity: 0;
  color: #fff;
  background-color: rgba(101,52,255,0.9);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.showcase-item-hover.dark{
  background-color: rgba(14,14, 14,0.9);
}

.showcase-item-info{
  position: absolute;
  top:50%;
  left: 20px;
  opacity: 0;
  width: 100%;
  padding: 0 2em;
  text-align:center;
  -webkit-transform:translateY(-50%));
  -ms-transform:translateY(-50%);
  transform:translateY(-50%);
  -webkit-transition: all  0.3s ease-in;
  -ms-transition:  all  0.3s ease-in;
  transition:  all  0.3s ease-in;
}

.showcase-item-category{
  font-family:'Nasalization Rg', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size:1.7em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.showcase-item-title{
  font-size: 1.2em;
}

.showcase-item:hover .showcase-item-hover {
  opacity: 1;
}

.showcase-item:hover .showcase-item-info{
  opacity: 1;
  left:0;
}

.showcase-item-hover.hover-blue,
.showcase-item-hover.hover-dark{
  background-color: rgba(19,19, 19,0.9);
}

.showcase-item-hover.hover-blue .showcase-item-info,
.showcase-item-hover.hover-dark .showcase-item-info{
  top:0;
  text-align:center;
  height: 100%;
  padding: 2em;
  -webkit-transform: translateY(0));
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.showcase-item-hover.hover-blue .showcase-item-category,
.showcase-item-hover.hover-dark .showcase-item-category{
  position: absolute;
  left: 0;
  width: 100%;
  top: 2.5em;
  padding:0 2em;
  font-size: 1.375em;
  letter-spacing: 0;
  text-transform: none;
}

.showcase-item-hover.hover-blue .showcase-item-title,
.showcase-item-hover.hover-dark .showcase-item-title{
  position: absolute;
  left:0;
  width:100%;
  bottom:2.5em;
  padding:0 2em;
  text-transform: uppercase;
  letter-spacing: 0.7em;
  font-size: 1em;
}

.showcase-item-hover.hover-blue .ion-ios-plus-empty,
.showcase-item-hover.hover-dark .ion-ios-plus-empty{
  font-size: 4em;
  line-height:1;
  width:1em;
  height: 1em;
  position: absolute;
  left:50%;
  top:50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
}

.view-projects{
  text-align: center;
}



/* 4.1 Magnific popup */



.mfp-zoom-out-cur{
  padding-right: 0;
}

.mfp-figure{
  box-shadow: none;
}

.mfp-iframe-scaler{
  overflow: visible;
}

.mfp-image-holder .mfp-close, 
.mfp-iframe-holder .mfp-close{
  padding: 0;
  margin-top: -10px;
  font-family: inherit;
  font-size: 40px;
  font-weight: 300;
  line-height: 0;
}

img.mfp-img{
  min-height: 250px;
}

.mfp-bottom-bar{
  margin-top: -30px;
  letter-spacing: 0.1em;
  font-family: 'Nasalization Rg', sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mfp-title{
  padding-right:5em;
}

.mfp-bg{
  background-color: #141414;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b{
  display: none;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b{
  display: none;
}

.mfp-wrap .mfp-content {
  -webkit-perspective: 1300px;
          perspective: 1300px
  
}

.mfp-wrap .mfp-figure,
.mfp-wrap .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform:scale(0) rotateY(60deg);
  -o-transform:scale(0) rotateY(60deg);
  transform:scale(0) rotateY(60deg);
}

.mfp-bg {
  opacity: 0;
  -webkit-transition: .5s;
       -o-transition: .5s;
          transition: .5s;
}

.mfp-wrap .mfp-figure,
.mfp-wrap .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
       -o-transition: .3s ease-in-out;
          transition: .3s ease-in-out;
  -webkit-transform: rotateY(-60deg);
      -ms-transform: rotateY(-60deg);
       -o-transform: rotateY(-60deg);
          transform: rotateY(-60deg);
}

.mfp-bg {
  opacity: 0;
  -webkit-transition: .5s;
       -o-transition: .5s;
          transition: .5s;
}

.mfp-wrap.mfp-ready .mfp-figure,
.mfp-wrap.mfp-ready .mfp-iframe-scaler {
  opacity: 1;
  -webkit-transform:rotateX(0);
      -ms-transform:rotateX(0);
       -o-transform:rotateX(0);
          transform:rotateX(0);
}

.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-wrap.mfp-removing .mfp-figure ,
.mfp-wrap.mfp-removing .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transform: rotateX(-60deg);
      -ms-transform: rotateX(-60deg);
       -o-transform: rotateX(-60deg);
          transform: rotateX(-60deg);
  
}

.mfp-zoom-out-cur, 
.mfp-zoom-out-cur 
.mfp-image-holder .mfp-close{
 /* cursor:url(../img/zoom-out.cur), zoom-out;*/
}

.mfp-removing.mfp-bg {
  opacity: 0;
}



/* 5.2 Portfolio Details */



.project-details-info{
  padding:7.1em 0 5em;
}

.portfolio-meta{
  margin-top: 3em;
  text-align: center;
}

.portfolio-meta .icon{
  line-height: 1;
}



/*-------------------------------------------------------------------------------
  5. Team
-------------------------------------------------------------------------------*/
.col-team2{
    padding-left: 15px;
    padding-right: 15px;
}


.col-team{
  padding: 8px;
}

.col-team3{
  padding: 0px;
}
.team-profile{
  position: relative;
  color: #fff;
  text-align: center;
}

.team-profile img{
  display:block;
  width:100%;
}

.team-caption2{
  opacity: 1;
  position: absolute;
/*
  left:1.875em;
  right:1.875em;
  top:-3.75em;
  bottom: 13.6em;
*/

    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
  overflow: hidden;

}



.team-caption{
  /*
  opacity: 0;
  -webkit-transform:scale(0);
  -ms-transform:scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  */
  position: absolute;
/*
  left:1.875em;
  right:1.875em;
  top:-3.75em;
  bottom: 13.6em;
*/

    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
  overflow: hidden;
  background-color: rgba(101,52,255,0.9);
  /*
   -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  */
  visibility: hidden;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .team-caption{
    /*bottom: 3.75em;*/
  }
}

.team-caption.brown{
  background-color: rgba(197,164,126,0.9);
}

.team-caption.white{
  /*background-color: rgba(255,255,255,0.9);*/
  /*background-color: #621919c7;*/
  background-color: #64575ae3;
}

.team-caption.white{
  color: #3d3d3d;
}

.team-caption.white .social-list li a{
  color: #3d3d3d;
}

.team-caption.white .social-list li a:hover{
  color: #c5a47e;;
}




.team-meta2{
  opacity: 1;
  left:0;
  position:absolute;
  top:8%;
  width:100%;
  -webkit-transform:translateY(-50%);
  -o-transform:translateY(-50%);
  transform:translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 25px;
}


.team-meta{
  opacity: 0;
  position:absolute;
  top:50%;
  width:100%;
  left:5%;
  -webkit-transform:translateY(-50%);
  -o-transform:translateY(-50%);
  transform:translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 25px;
}

.team-name{
  font-size: 0.75em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Nasalization Rg', sans-serif;
  color: white !important;
}

.team-spec{
  display: block;
  margin-top:1.1em;
      color: white;
    margin-left: 1px;
    margin-right: 1px;
    font-size: 0.8em;
}

.team-social{
  position: absolute;
  left:0;
  width: 100%;
  bottom:0.7em;
  text-align: center;
}

.team-social li a:hover{
  color:#fff;
}

.team-profile:hover .team-caption{
  /*
  opacity: 1;
  -webkit-transform:scale(1);
   -ms-transform:scale(1);
   -o-transform: scale(1);
   transform: scale(1);
   */
   visibility: visible;
}

.col-team:hover .team-meta{
  opacity: 1;
  left:0;
}

/* ------------------------------------------------------------------------------- */
/*  888. David Custom
/* ------------------------------------------------------------------------------- */

.deck  {
  color:white !important;
  text-decoration: underline;
}

.deck:hover {

  color:#10bbf3 !important;
}

.no-underline {
  text-decoration: none !important;
}

.no-underline.hover {
  text-decoration: none !important;
}
/* ------------------------------------------------------------------------------- */
/*  6. Clients
/* ------------------------------------------------------------------------------- */



.clients{
  overflow: hidden;
}
.clients-wrapper{
  /*margin:-5em -3.75em 0;*/
}

.client{
  /*
  position: relative;
  float: left;
  padding: 6.2em 4.75em 0 3em;
*/  margin-left: 25px;
    margin-right: 25px;
    position: relative;
    float: left;
    /* padding: 6.2em 4.75em 0 3em; */
    padding-top: 9.2em;
    padding-right: 0.2em;
    padding-bottom: 0;
    padding-left: 0.2em;
    cursor: pointer;
}

.client-text{
  font-size: 1.125em;
}

.client .quote{
  position: absolute;
  top:0;
  left: 0;
  font-size: 10em;
  line-height: 1;
  color:#fff;
}

.owl-pagination{
  text-align: center;
  margin-top: 3.75em;
}

.owl-page{
  display: inline-block;
  height: 5px;
  background-color: #ad5252;
  width: 25px;
  border-radius: 5px;
  margin:0 12px;
}

.owl-page.active{
  background-color: #fff;
  box-shadow: 0 0 13px rgba(255,255,255,0.8);
}

.partner{
  text-align:center;
  padding: 1em; opacity: 0.3;
}




/* ------------------------------------------------------------------------------- */
/*  7. News
/* ------------------------------------------------------------------------------- */



.row-news{
  margin:-2em -2em 0;
}

.col-news{
  padding:0 2em 2em 2em;
}


.col-news img{
  width: 100%;
}

.col-news-wrapper{
  position: relative;
}

.col-news-content{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1c1c1cf0;
  padding:2em;
  opacity: 0;
  transition:all 0.3s;
}

.col-news-date{
  font-family: 'Nasalization Rg', sans-serif;
  font-size: 0.9em;
}

.col-news-title{
  text-transform: none;
  letter-spacing: 0;
  margin:1em 0 ;
}

.col-news-content a{
  font-family: 'Nasalization Rg', sans-serif;
  font-size: 0.9em;
}

.col-news-wrapper:hover .col-news-content{
  opacity: 1;
}



/* ------------------------------------------------------------------------------- */
/*  8. Banner
/* ------------------------------------------------------------------------------- */



.section-banner{
  margin-bottom: 14em;
}

.promo{
  text-align: center;
  padding-top:0;
}

.promo-title{
  font-size:1.875em;
  line-height: 1.4;
  margin:0 0 1.3em;
  color:#fff;
}

.promo-title.text-gray{
  color:#4b4b4b;
}

.banner{
  position: relative;
  text-align:center;
  background:url(../img/bg/promo.jpg) 50% 0 no-repeat;
  background-size: cover;
}

.banner-in-section{
  margin-top:4em;
  margin-bottom: -20em;
}

.banner:before{
  content:'';
  position: absolute;
  width:100%;
  height: 100%;
  left:0;
  top:0;
  opacity: 0.9;
}

.banner-blue:before{
  background-color: #59d5f0;
}

.banner-dark-blue:before{
  background-color: #6534ff;
}

.banner-title{
  font-size:2.815em;
  color:#fff;
  margin-bottom: 1em;
}

.banner-content{
  position: relative;
  padding:7em 5em;
}



/* ------------------------------------------------------------------------------- */
/*  9. Footer
/* ------------------------------------------------------------------------------- */



.footer{
  color: #fff;
  overflow: hidden;
  padding-top:4em;
}

.footer-2,
.footer-2 .brand,
.footer-2 .nav-bottom li a,
.footer-2 .col-contacts a{
  color: #4b4b4b;
}

.footer-2 .footer-bottom{
  background-color: #f2f2f2;
}

.footer-2 .social-list a{
  color:#4b4b4b;
}

.footer .brand-info .brand{
  display: inline-block;
  font-size: 2em;
  margin-bottom: 20px;
}

.footer p{
  margin-bottom: 0;
}

.footer .social-list{
  float:left;
}

.footer .social-list li a{
  font-size: 1.2em;
}

.nav-bottom{
  font-family: 'Nasalization Rg', sans-serif;
  font-size:0.8125em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-bottom li{
  margin-bottom: 0.4em;
}
.nav-bottom li a{
  color: #fff;
}

.nav-bottom li a:hover{
  color:#6534ff;
  text-decoration:none;
}

.col-contacts{
  color: #fff;
  font-family: 'Nasalization Rg', sans-serif;
  letter-spacing: 0.08em;
}

.col-contacts a{
  display: inline-block;
  color: #fff;
  margin-bottom:0.7em;
  
}

.col-contacts a:hover{
  color:#6534ff;
  text-decoration: none;
}

.subscribe-title{
  font-size: 1.25em;
  line-height: 1.2;
  margin-bottom: 1.1em;
}

.phone{
  letter-spacing: 0.08em;
}

.subscribe-form{
  max-width: 300px;
}

.footer-bottom{
  font-family: 'Nasalization Rg', sans-serif;
  color:#525252;
  font-weight: 400;
  margin-top:4.5em;
  padding: 1.7em 0;
  background-color: #1c1c1c;
  font-size:0.75em;
}

.copyrights{
  float:right;
}



/* ------------------------------------------------------------------------------- */
/*  10. Modals
/* ------------------------------------------------------------------------------- */



.modal{
  text-align: center;
}

.modal-content{
  border-radius: 20px;
  background: #1f1f1f;
}

.modal-content p{
  margin-bottom: 0;
}

.modal-dialog{
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 90%;
  margin:25px auto;
  border-radius: 0;
}


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


@media (min-width: 768px){
  .modal-dialog {
    width: 29em;
  }
}

.modal-content{
  border:0;
  color: #3d3d3d;
  -webkit-box-shadow: none;
   box-shadow:  none;
}

.modal-header{
  padding: 3em 1.2em;
  text-align: center;
  border-bottom: 0;
}

.modal-header .close{
  position: absolute;
  right:0.9em;
  top:0.9em;
}

.modal-title{
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size:1.8em;
  color:#fff;
}

.modal-info{
  color:#b0b0b0;
  font-size: 1.12em;
  margin:0.5em 0 0;
  line-height: 1.6;
}

.modal-body{
  font-size: 1em;
  padding: 0 4.2em 3em;
}

.modal-footer{
  text-align: center;
  padding: 0;
  border:0;
  margin-top:2em;
}


/* ------------------------------------------------------------------------------- */
/*  11. Responsive styles
/* ------------------------------------------------------------------------------- */



/* 11.1 Min width 768px */

@media (max-width: 991px)  {

  #lang {
    display: none !important;
  }


}

@media (min-width: 768px){

  html{
    font-size: 90%;
  }

  .container-fluid{
    padding:0 2em;
  }


  
  /* Portfolio */



  .isotope .isotope-item{
    width: 50%;
  }

  .isotope .isotope-item.w66{
    width: 100%;
  }

  .isotope .isotope-item.w100{
    width: 100%;
  }

}




/* 11.2 Min width 992px */



@media (min-width: 992px){

  html{
    font-size: 100%;
  }

  .container-fluid{
    padding:0 4em;
  }

  .text-left-md{
    text-align: left;
  }

  .text-right-md{
    text-align:right;
  }



  /* Navbar */



  .navbar{
    padding-bottom: 0;
    padding-left: 4.7em;
    padding-right: 4.7em;
  }

  .navbar-responsive{
    padding-bottom: 1em;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar .social-list{
    float: right;

  }

  .navbar .brand{
    margin-left: 0;
  }


  /* Portfolio */



  .isotope .isotope-item{
    width: 33.33333333%;
  }

  .isotope .isotope-item.w66{
    width:66.66666%;
  }

  .isotope .isotope-item.w50,
  .isotope-2 .isotope-item,
  .isotope-3 .isotope-item{
    width: 50%;
  }

  .isotope-space .isotope-item:nth-child(2){
    padding-top:10em;
  }

}


/* 11.3 Min width 1200px */




@media (min-width: 1200px){

  .container-fluid{
    padding:0 6em;
  }

  /* Portfolio */



  .isotope-2 .isotope-item{
    width:  33.33333333%;
  }

}





/*


Experimentos


*/

.formulario {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  height: 100vh;
  overflow: hidden;
  --orange: #ff7b0a;
  --pink: #fe3a7d;
  --gray: #ccc;
}
.formulario #wrap {
  position: relative;
  display: inline-block;
  height: 70px;
  font-family: "Nasalization Rg";
  width: calc(100% - 400px);
  max-width: 750px;
  min-width: 350px;
}
.formulario #wrap:after {
  content: "";
  position: absolute;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/383755/running.png");
  background-position: 0px 50%;
  -webkit-animation: runner 0.5s steps(32, end) infinite;
          animation: runner 0.5s steps(32, end) infinite;
  opacity: 0;
}
.formulario #wrap.plunge {
  pointer-events: none;
}
.formulario #wrap.plunge input[type=email] {
  color: transparent;
}
.formulario #wrap.plunge .btnwrap .spark {
  -webkit-animation: spark 0.3s ease-in-out 1 forwards;
          animation: spark 0.3s ease-in-out 1 forwards;
}
@-webkit-keyframes spark {
  0% {
    transform: rotate(45deg) scale(0);
  }
  50% {
    transform: rotate(135deg) scale(1);
  }
  100% {
    transform: rotate(45deg) scale(0);
  }
}
@keyframes spark {
  0% {
    transform: rotate(45deg) scale(0);
  }
  50% {
    transform: rotate(135deg) scale(1);
  }
  100% {
    transform: rotate(45deg) scale(0);
  }
}
.formulario #wrap.plunge .btnwrap .spark:nth-of-type(1) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.formulario #wrap.plunge .btnwrap .spark:nth-of-type(2) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.formulario #wrap.plunge .btnwrap .spark:nth-of-type(3) {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
.formulario #wrap.plunge .btnwrap .spark:nth-of-type(4) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.formulario #wrap.plunge .btnwrap .spark:nth-of-type(5) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.formulario #wrap.plunge .btnwrap .spark:nth-of-type(6) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.formulario #wrap.plunge .btnwrap .blob {
  left: 20px;
  -webkit-animation: puff 0.5s ease-in-out 1 forwards;
          animation: puff 0.5s ease-in-out 1 forwards;
  -webkit-animation-delay: 1.65s;
          animation-delay: 1.65s;
  transform-origin: right;
}
@-webkit-keyframes puff {
  0% {
    left: 20px;
    transform: scale(1);
  }
  50% {
    left: calc(100% - 50px);
    transform: scale(1.15);
  }
  100% {
    left: calc(100% - 50px);
    transform: scale(0);
  }
}
@keyframes puff {
  0% {
    left: 20px;
    transform: scale(1);
  }
  50% {
    left: calc(100% - 50px);
    transform: scale(1.15);
  }
  100% {
    left: calc(100% - 50px);
    transform: scale(0);
  }
}
.formulario #wrap.plunge .btnwrap b:after {
  -webkit-animation: openclose 2.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1 forwards;
          animation: openclose 2.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1 forwards;
}
@-webkit-keyframes openclose {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(120deg);
  }
  75% {
    transform: rotate(120deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: rotate(0deg);
  }
  100% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: rotate(0deg);
  }
}
@keyframes openclose {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(120deg);
  }
  75% {
    transform: rotate(120deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: rotate(0deg);
  }
  100% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    transform: rotate(0deg);
  }
}
.formulario #wrap.plunge .field {
  overflow: hidden;
  z-index: 999;
}
.formulario #wrap.plunge .field p .word .char {
  z-index: 2;
  -webkit-animation: run 2s ease-in 1 forwards;
          animation: run 2s ease-in 1 forwards;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  will-change: transform;
}
@-webkit-keyframes run {
  to {
    transform: translateX(2000px);
  }
}
@keyframes run {
  to {
    transform: translateX(2000px);
  }
}
.formulario #wrap.plunge .field p .word .char:nth-of-type(2n) {
  -webkit-animation-duration: 2.25s;
          animation-duration: 2.25s;
}
.formulario #wrap.plunge .field p .word .char:nth-of-type(3n) {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}
.formulario #wrap.plunge .field p .word .char:nth-of-type(4n) {
  -webkit-animation-duration: 2.15s;
          animation-duration: 2.15s;
}
.formulario #wrap.plunge .field p .word .char:nth-of-type(5n) {
  -webkit-animation-duration: 1.9s;
          animation-duration: 1.9s;
}
.formulario #wrap.plunge .field p .word .char:after {
  transition: 0.2s ease-in-out;
  transform: scale(0.75);
  z-index: -1;
}
.formulario #wrap .field {
  position: absolute;
  height: 70px;
  width: calc(100% - 180px);
  top: 0px;
  left: 50px;
  z-index: 9;
  pointer-events: none;
  font-size: 20px;
  font-family: "Nasalization Rg";
  line-height: 1.5;
}
.formulario #wrap .field p {
  font-family: "Nasalization Rg";
  position: relative;
  display: inline-block;
}
.formulario #wrap .field p .word .char {
  display: inline-block;
  z-index: 2;
  position: relative;
  font-family: "Nasalization Rg";
  color: transparent;
  font-weight: 900;
}
.formulario #wrap .field p .word .char:nth-of-type(2n):after, .formulario #wrap .field p .word .char:nth-of-type(2n):before {
  -webkit-animation-delay: -0.35s;
          animation-delay: -0.35s;
}
.formulario #wrap .field p .word .char:nth-of-type(2n):after, .formulario #wrap .field p .word .char:nth-of-type(2n):before {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}
.formulario #wrap .field p .word .char:nth-of-type(3n):after, .formulario #wrap .field p .word .char:nth-of-type(3n):before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.formulario #wrap .field p .word .char:nth-of-type(4n) {
  -webkit-animation-duration: 1.75s;
          animation-duration: 1.75s;
}
.formulario #wrap .field p .word .char:nth-of-type(4n):after, .formulario #wrap .field p .word .char:nth-of-type(4n):before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.formulario #wrap .field p .word .char:nth-of-type(1) {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
.formulario #wrap .field p .word .char:nth-of-type(1):after, .formulario #wrap .field p .word .char:nth-of-type(1):before {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}
.formulario #wrap .field p .word .char:before {
  content: attr(data-char);
  color: #000;
  display: inline-block;
  font-weight: 900;
  position: absolute;
  z-index: 2;
  -webkit-animation: bounce 0.25s ease-in-out infinite alternate;
          animation: bounce 0.25s ease-in-out infinite alternate;
  transform-origin: bottom;
}
@-webkit-keyframes bounce {
  from {
    transform: rotate(-13deg) skewX(-10deg);
  }
  to {
    transform: rotate(5deg) skewX(-15deg);
  }
}
@keyframes bounce {
  from {
    transform: rotate(-13deg) skewX(-10deg);
  }
  to {
    transform: rotate(5deg) skewX(-15deg);
  }
}
.formulario #wrap .field p .word .char:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 40px;
  bottom: -13px;
  left: calc(50% - 20px);
  transform-origin: top;
  width: 40px;
  height: 26px;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/383755/running.png");
  background-position: 0px 50%;
  -webkit-animation: runner 0.75s steps(32, end) infinite;
          animation: runner 0.75s steps(32, end) infinite;
  transform: scale(0);
  transition: 0.5s ease-in-out;
}
@-webkit-keyframes runner {
  from {
    background-position: 0px 50%;
  }
  to {
    background-position: -1280px 50%;
  }
}
@keyframes runner {
  from {
    background-position: 0px 50%;
  }
  to {
    background-position: -1280px 50%;
  }
}
.formulario #wrap form {
  position: relative;
  height: 70px;
  width: 100%;
  display: inline-block;
  z-index: 2;
}
.formulario #wrap form input[type=email] {
  
    color: black;

  background-color: white;
  max-height: 70px;
  height: 70px;
  width: calc(100% - 50px);
  padding: 0 0 0 50px;
  border-radius: 80px 0 0 80px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: "Nasalization Rg";
  font-size: 20px;
  font-weight: 900;
}
.formulario #wrap form input[type=email]::-moz-placeholder {
  color: #ccc;
  font-weight: 100;
}
.formulario #wrap form input[type=email]:-ms-input-placeholder {
  color: #ccc;
  font-weight: 100;
}
.formulario #wrap form input[type=email]::placeholder {
  color: #ccc;
  font-weight: 100;
}
.formulario #wrap form .btnwrap {
  display: inline-block;
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.formulario #wrap form .btnwrap .spark {
  position: absolute;
  width: 15px;
  height: 3px;
  background: linear-gradient(to right, var(--pink), var(--orange), var(--pink));
  top: -25px;
  border-radius: 100px;
  right: 10px;
  transform: rotate(45deg) scale(0);
}
.formulario #wrap form .btnwrap .spark:nth-of-type(4) {
  right: -50px;
  top: 0;
}
.formulario #wrap form .btnwrap .spark:nth-of-type(3) {
  right: -50px;
  top: 30px;
}
.formulario #wrap form .btnwrap .spark:nth-of-type(2) {
  right: -10px;
  top: 105px;
}
.formulario #wrap form .btnwrap .spark:nth-of-type(5) {
  right: 20px;
  top: 120px;
}
.formulario #wrap form .btnwrap .spark:nth-of-type(6) {
  right: -20px;
  top: -15px;
}
.formulario #wrap form .btnwrap .spark:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 15px;
  background: linear-gradient(to bottom, var(--pink), var(--orange), var(--pink));
  top: calc(50% - 7.5px);
  left: calc(50% - 1.5px);
  border-radius: inherit;
}
.formulario #wrap form .btnwrap .blob {
  position: absolute;
  height: 70px;
  width: 70px;
  background: linear-gradient(to bottom, var(--orange), var(--orange) 30%, var(--pink) 70%);
  z-index: -1;
  border-radius: 100%;
  left: 20px;
  transform: scale(1);
}
.formulario #wrap form .btnwrap b {
  position: absolute;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Nasalization Rg";
  letter-spacing: 1px;
  z-index: 2;
  font-size: 20px;
  pointer-events: none;
}
.formulario #wrap form .btnwrap b:before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 100%;
  background: linear-gradient(to bottom, var(--orange), var(--pink));
  z-index: -1;
  left: 0;
  border-radius: 0 80px 80px 0;
}
.formulario #wrap form .btnwrap b:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  left: -20px;
  background: linear-gradient(to bottom, var(--orange), var(--pink));
  border-radius: 0px 0 0 0px;
  transform-origin: 100% 0%;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 1s;
  top: 0;
}
.formulario #wrap form input[type=submit] {
  height: 70px;
  border-radius: 80px;
  padding: 0 30px;
  border: none;
  opacity: 0;
}







/* nuevo */

/* Sliders */
.default-slider, .home-fullslide{position:relative;height:768px;overflow:hidden;}
.default-slider .container{padding-top:60px;}
.default-slider.slick-dotted.slick-slider, .blog-grid-slider.slick-dotted.slick-slider{margin-bottom:0;}
.home-slider{height:100vh;padding:0;}
.home-slider .default-slider, .home-slider .slick-list, .home-slider .slide-img, .home-slider .hero-text-wrap{height:100vh;width:100%;}
.default-slider .slide{position:relative;height:768px;}
.default-slider .slick-dots, .service-slider-2 .slick-dots{bottom:40px;}
.default-slider .slick-dots li button, .portfolio-slider .slick-dots li button{font-size:0;width:40px;height:3px;padding:0px;cursor:pointer;border:0;outline:none;background:rgba(195, 195, 195, 0.5);}
section.dark-block .default-slider .slick-dots li button{background:rgba(33, 33, 33, 0.5);}
.slide-img, .parallax-img{position:absolute;top:0;left:0;width:100%;height:100%;}
.full-screen-bg{height:100vh;min-height:100vh;}
.hero-text-wrap{display:table;table-layout:fixed;height:100%;width:100%;position:relative;z-index:200;background-color:rgba(0, 0, 0, 0.45);}
.light-slider .hero-text-wrap{background-color:rgba(0, 0, 0, 0);}
.shape-bg{position:relative;}
.shape-bg:after{position:absolute;top:0;left:0;content:'';background:url(../images/slide-shape.png) no-repeat;width:590px;height:590px;z-index:-1;transform:translate(-5%, -18%);-webkit-transform:translate(-5%, -18%);-moz-transform:translate(-5%, -18%);-o-transform:translate(-5%, -18%);}
.inline-btn p{display:inline-block;text-transform:uppercase;font-size:12px;letter-spacing:0.1em;margin:0 10px;font-family:'Montserrat', sans-serif;font-weight:500;vertical-align:middle;}
.inline-btn i{font-size:20px;}
.video-box{position:relative;overflow:hidden;border-radius:10px;}
.video-box_overlay{position:absolute;left:0;top:0;width:100%;height:100%;}
.play-button{width:100px;height:100px;margin-left:auto;margin-right:auto;background-color:#fff;border-radius:100px;-webkit-transition:all .3s ease;transition:all .3s ease;position:absolute;line-height:100px;top:50%;left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);}
.play-button:hover{-webkit-transform:translateX(-50%) translateY(-50%)scale(1.1);transform:translateX(-50%) translateY(-50%)scale(1.1);}
.play-button:before{content:'';border:1px solid;border-color:#fff;width:100px;height:100px;border-radius:50%;position:absolute;left:0;top:0;opacity:1;-webkit-animation:1s it-zoom linear infinite;animation:1s it-zoom linear infinite;}
.play-button:after{content:'';border:1px solid;border-color:#fff;width:100px;height:100px;border-radius:50%;position:absolute;left:0;top:0;opacity:1;-webkit-animation:1s it-zoom linear infinite;animation:1s it-zoom linear infinite;}
.play-button:before{-webkit-animation-delay:.5s;animation-delay:.5s;}
.play-button i{line-height:inherit;display:block;text-align:center;color:#1d2124;font-size:60px;}

.dark.play-button{background-color:#1d2124;}
.dark.play-button:before{border-color:#1d2124;}
.dark.play-button:after{border-color:#1d2124;}
.dark.play-button i{color:#fff;}


.hero-video{position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;}
.hero-video video{position:absolute;max-width:none;}
.bg-flex.bg-flex-left{left:0;}
.bg-flex.bg-flex-right{right:0;}
.bg-flex{padding:0;position:absolute!important;top:0px;height:100%;overflow:hidden;z-index:100;}
.bg-flex-holder{position:absolute;top:0;width:100%;height:100%;}
.bg-flex-cover{background-size:cover;background-position:center center;background-repeat:no-repeat;}
.bg-flex-right{position:absolute;padding:0;right:0;top:0;bottom:0;overflow:hidden;}
.col-about-right{padding-left:60px;}
.col-about-left{padding-right:60px;}
.row-flex{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;}
.row-flex:before{content:none;}
.row-flex > [class*="col-"]{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-moz-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;}
@media only screen and (max-width:767px){.row-flex > [class*="col-"]:not([class*="col-xs"]){width:100%;}
}
.row-flex > [class*="col-"] .col-inner{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-left:-15px;margin-right:-15px;}
.col-inner.spacer{padding:100px 50px;}
.col-inner.spacer-md{padding:90px 50px;}
.col-inner.spacer-sm{padding:80px 50px;}
.col-inner.spacer-xs{padding:60px 50px;}
.row-flex.flex-center > [class*="col-"]{-webkit-box-align:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;}
@media only screen and (min-width:768px){.row-flex.full-width-flex > [class*="col-"]{padding-left:6.5%;padding-right:6.5%;}
}
.row-flex.padding-row > [class*="col-"]{padding:7.5% 6.5%;}
.row-flex.flex-horizontal > [class*="col-"]:last-child{-webkit-box-pack:end;-moz-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;}
.row-flex.flex-spacing .column-inner{margin-left:0;margin-right:0;}
.social-networks{padding:0;list-style:none;}
.social-networks > li{display:inline-block;margin-right:12px;}
.social-networks > li > a{display:block;width:50px;height:50px;line-height:47px;text-align:center;font-size:16px;border:1px solid #e8e8e8;color:#1d2124;border-radius:100%;}
.social-networks > li > a:hover{color:#fff;}
.social-networks > li.social-icon-fb > a:hover{background-color:#3b5998;border-color:#3b5998;}
.social-networks > li.social-icon-tw > a:hover{background-color:#55acee;border-color:#55acee;}
.social-networks > li.social-icon-lk > a:hover{background-color:#0077b5;border-color:#0077b5;}
.social-networks > li.social-icon-be > a:hover{background-color:#053eff;border-color:#053eff;}
.social-networks > li.social-icon-de > a:hover{background-color:#ea4c89;border-color:#ea4c89;}
.social-networks > li.social-icon-sk > a:hover{background-color:#00aff0;border-color:#00aff0;}
.social-networks > li > a i{font-size:20px;}

/* Testimonials Style 01 */

.testimonial-item:focus {outline: none;}
.testimonial-item .testimonial-content {background-color: rgba(0,0,0,0.5);padding: 40px;margin: 50px auto;border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;-ms-border-radius: 4px;}
.testimonial-item .testimonial-content img{width: 270px;margin-left: auto;margin-right: auto;}
.testimonial .slick-prev{left: -80px;}
.testimonial .slick-next{right: -80px;}

.testimonial-transparent .testimonial-item .testimonial-content{background-color: transparent;}

/* Testimonials Style 02 */

.testimonial-style-2 .testimonial-item .testimonial-content {background-color: transparent;box-shadow: none;margin: 0 auto;}
.testimonial-style-2 .testimonial-item .testimonial-content img{width: 120px;margin-left: auto;margin-right: auto;}

/* Arrows */

.slick-prev, .slick-next{font-size: 0;line-height: 0;position: absolute;top: 50%;display: block;width: 20px;height: 20px;padding: 0;-webkit-transform: translate(0, -50%);-ms-transform: translate(0, -50%);transform: translate(0, -50%);cursor: pointer;
color: transparent;border: none;outline: none;background: transparent;z-index:10;}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{color: #fff;outline: none;background: transparent;}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before{opacity: 1;}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before{opacity: .25;}
.testimonial .slick-prev:before, .testimonial .slick-next:before{font-family:"Ionicons";font-size: 35px;line-height: 1;opacity: 0.5;color: #1d2124;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}
.testimonial .slick-prev:hover:before, .testimonial .slick-prev:focus:before, .testimonial .slick-next:hover:before, .testimonial .slick-next:focus:before{opacity: 1;}
.slick-prev{left:25px;}
.testimonial .slick-prev:before{content:'\f2ca';}
.slick-next{right:25px;}
.testimonial .slick-next:before{content:'\f30f';}

/* Dots */

.slick-dotted.slick-slider{margin-bottom: 30px;}
.slick-dots{position: absolute; bottom: 45px;display: block;width: 100%;padding: 0;margin: 0;list-style: none;text-align: center;}
.slick-dots li {display: inline-block;margin: 0 4px;}
.slick-slide:focus{outline: none;}
.testimonial .slick-dots li button, .blog-slider .slick-dots li button, .testimonial-style-2 .slick-dots li button, .text-content-slider .slick-dots li button {font-size: 0;width: 10px;height: 10px;padding: 0px;cursor: pointer;border: 0;outline: none;
background: rgba(255, 255, 255, 0.5);border-radius: 100px;-webkit-border-radius: 100px;-moz-border-radius: 100px;}
.text-content-slider .slick-dots li.slick-active button{background-color: #fff;}
.testimonial .slick-dots li.slick-active button{width:10px;border-radius:100px;-webkit-border-radius:100px;-moz-border-radius:100px;height:10px;background:#fff;}
.testimonial.gradient-bullet-two .slick-dots li.slick-active button{background:rgba(236,119,171);background:-moz-linear-gradient(45deg, rgba(236,119,171) 0%, rgba(120,115,245) 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, rgba(236,119,171)), color-stop(100%, rgba(115,75,109,1)));background:-webkit-linear-gradient(45deg, rgba(236,119,171) 0%, rgba(120,115,245) 100%);background:-o-linear-gradient(45deg, rgba(236,119,171) 0%, rgba(120,115,245) 100%);background:-ms-linear-gradient(45deg, rgba(236,119,171) 0%, rgba(120,115,245) 100%);background:linear-gradient(45deg, rgba(236,119,171) 0%, rgba(120,115,245) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec77ab', endColorstr='#734b6d', GradientType=1 );}
.testimonial.gradient-bullet-three .slick-dots li.slick-active button{background:rgba(202,73,118,1);background:-moz-linear-gradient(45deg, rgba(202,73,118,1) 0%, rgba(255,84,84,1) 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, rgba(202,73,118,1)), color-stop(100%, rgba(255,84,84,1)));background:-webkit-linear-gradient(45deg, rgba(202,73,118,1) 0%, rgba(255,84,84,1) 100%);background:-o-linear-gradient(45deg, rgba(202,73,118,1) 0%, rgba(255,84,84,1) 100%);background:-ms-linear-gradient(45deg, rgba(202,73,118,1) 0%, rgba(255,84,84,1) 100%);background:linear-gradient(45deg, rgba(202,73,118,1) 0%, rgba(255,84,84,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ca4976', endColorstr='#ff5454', GradientType=1 );}
.testimonial.gradient-bullet-four .slick-dots li.slick-active button{background:#9357cc;background:-webkit-linear-gradient(left, #9357cc 0%,#2989d8 50%,#2cc99d 100%);background:-moz-linear-gradient(left, #9357cc 0%,#2989d8 50%,#2cc99d 100%);background:-o-linear-gradient(left, #9357cc 0%,#2989d8 50%,#2cc99d 100%);background:-ms-linear-gradient(left, #9357cc 0%,#2989d8 50%,#2cc99d 100%);background:linear-gradient(left, #9357cc 0%,#2989d8 50%,#2cc99d 100%);}
.testimonial.gradient-bullet-five .slick-dots li.slick-active button{background:rgba(246,211,101,1);background:-moz-linear-gradient(45deg, rgba(246,211,101,1) 0%, rgba(253,160,133,1) 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, rgba(246,211,101,1)), color-stop(100%, rgba(253,160,133,1)));background:-webkit-linear-gradient(45deg, rgba(246,211,101,1) 0%, rgba(253,160,133,1) 100%);background:-o-linear-gradient(45deg, rgba(79,172,254,1) 0%, rgba(253,242,254,1) 100%);background:-ms-linear-gradient(45deg, rgba(246,211,101,1) 0%, rgba(253,160,133,1) 100%);background:linear-gradient(45deg, rgba(246,211,101,1) 0%, rgba(253,160,133,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6d365', endColorstr='#fda085', GradientType=1 );}
.testimonial.gradient-bullet-six .slick-dots li.slick-active button{background: rgba(247,157,0,1);background: -moz-linear-gradient(45deg, rgba(247,157,0,1) 0%, rgba(10,243,140,1) 100%);
background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(247,157,0,1)), color-stop(100%, rgba(10,243,140,1)));
background: -webkit-linear-gradient(45deg, rgba(247,157,0,1) 0%, rgba(0,243,140,1) 100%);background: -o-linear-gradient(45deg, rgba(247,157,0,1) 0%, rgba(0,243,140,1) 100%);background: -ms-linear-gradient(45deg, rgba(247,157,0,1) 0%, rgba(0,243,140,1) 100%);
background: linear-gradient(45deg, rgba(247,157,0,1) 0%, rgba(0,243,140,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f79d00', endColorstr='#64f38c', GradientType=1 );}
.testimonial-style-2 .slick-dots li.slick-active button, .app-gallery-slider .slick-dots li.slick-active button{background-color: #fff;}
.service-slider-2 .slick-prev:before, .blog-grid-slider .slick-prev:before, .default-slider .slick-prev:before {content: '\ea5c';}
.service-slider-2 .slick-next:before, .blog-grid-slider .slick-next:before, .default-slider .slick-next:before {content: '\ea5d';}
.service-slider-2 .slick-prev:before, .service-slider-2 .slick-next:before, .blog-grid-slider .slick-prev:before, .blog-grid-slider .slick-next:before, #product-slider .slick-prev:before, #product-slider .slick-next:before, section.parallax-bg .testimonial-style-2 .slick-prev:before, section.parallax-bg .testimonial-style-2 .slick-next:before,
 section.dark-block .default-slider .slick-prev:before, section.dark-block .default-slider .slick-next:before {font-family: 'icofont';font-size: 25px;
line-height: 1;opacity: 1;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}
.service-slider-2 .slick-prev, .service-slider-2 .slick-next, .blog-grid-slider .slick-prev, .blog-grid-slider .slick-next {width: 50px;height: 50px;color:#fff;border-radius: 100px;}
.blog-grid-slider .slick-prev, .blog-grid-slider .slick-next {border-radius: 0px;}
.service-slider-2 .slide{position: relative;}
.service-slider-2, .service-slider-2 .slick-list{width: 100%;}
.no-direction .slick-prev, .no-direction .slick-next{display: none!important;}
.service-slider-2 .slick-prev:hover, .service-slider-2 .slick-next:hover, .blog-grid-slider .slick-prev:hover, .blog-grid-slider .slick-next:hover{color: #1d2124;background: #fff;}
.service-slider-2 .slick-prev:focus, .default-slider .slick-next:focus  {outline: none;}
.default-slider .slick-dots li.slick-active button {background-color: #fff;}
section.dark-block .default-slider .slick-dots li.slick-active button, .portfolio-slider .slick-dots li.slick-active button {background-color:#1d2124;}
section.dark-block .default-slider .slick-prev, section.dark-block .default-slider .slick-next {border: 1px solid rgba(33,33,33,0.7);color:#1d2124;width: 50px;height: 50px;border-radius: 100px;}
section.dark-block .default-slider .slick-prev:hover, section.dark-block .default-slider .slick-next:hover {color:#fff;background: #1d2124;}

/*  Simple Slider   */
.simple-content-slider{width: 100%; height: 100%; position: absolute; right: 0; left: 0;}
.simple-content-slider-text{display: table; height: 100%; width: 100%;}
.simple-content-text-inner{display: table-cell; vertical-align: middle;}


.service-slider-2 .slick-prev:before, .service-slider-2 .slick-next:before, .blog-grid-slider .slick-prev:before, .blog-grid-slider .slick-next:before, #product-slider .slick-prev:before, #product-slider .slick-next:before, section.parallax-bg .testimonial-style-2 .slick-prev:before, section.parallax-bg .testimonial-style-2 .slick-next:before,
 section.dark-block .default-slider .slick-prev:before, section.dark-block .default-slider .slick-next:before {font-family: 'icofont';font-size: 25px;
line-height: 1;opacity: 1;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}

.default-slider .slide:focus, .testimonial-item:focus, .quote-item:focus, .client-logo:focus, .zoom-text:focus, .portfolio-slider .item:focus, .blog-grid-slider .item:focus, .member:focus, .blog-slider .post:focus, #product-slide .small-thumb:focus, #product-slider .big-thumb:focus, .model-slider .item-model:focus {outline: none;}