/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* normalize it */
@import url("https://fonts.googleapis.com/css?family=Yantramanav:500");
@import url("https://fonts.googleapis.com/css?family=Rasa");
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

audio,
canvas,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

html,
button,
input,
select,
textarea {
  font-family: sans-serif; }

body {
  margin: 0; }

a {
  background: transparent; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h2 {
  font-size: 1.5em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.17em;
  margin: 1em 0; }

h4 {
  font-size: 1em;
  margin: 1.33em 0; }

h5 {
  font-size: 0.83em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.75em;
  margin: 2.33em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

q:before,
q:after {
  content: '';
  content: none; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0;
  white-space: normal; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline; }

button,
input {
  line-height: normal; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Slider */
.slick-slide .img--holder {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover; }

.arrow {
  cursor: pointer;
  position: absolute;
  top: 0px;
  z-index: 44;
  width: 150px;
  height: 100%;
  font-size: 150px;
  vertical-align: center; }
  .arrow .inner {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px; }

.prev {
  left: 0px; }

.next {
  right: 0px; }

.aleft {
  border-left: 5px solid #4b4b4b;
  border-top: 5px solid #4b4b4b;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Safari */
  transform: rotate(-45deg); }

.aright {
  border-right: 5px solid #4b4b4b;
  border-bottom: 5px solid #4b4b4b;
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Safari */
  transform: rotate(-45deg); }

/*
.prev:before {
	content: " ";
	position: absolute;
	z-index: -1;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	border-left: 20px solid black;
	border-top: 20px solid black;
}

.next:before {
	content: " ";
	position: absolute;
	z-index: -1;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	border-right: 20px solid black;
	border-bottom: 20px solid black;
	}*/
.content-embed {
  /*position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;/led-panels
	height: auto;*/
  width: 100%;
  height: 100%; }

iframe {
  height: 100%;
  width: 100%; }

.slick-slide {
  position: relative; }
  .slick-slide .videoThumb {
    z-index: 1;
    cursor: pointer; }
  .slick-slide .playIcon {
    width: 50px;
    height: 80px;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none; }
    .slick-slide .playIcon .triangle {
      width: 0px;
      height: 0px;
      border-style: solid;
      border-width: 50px 0 50px 50px;
      border-color: transparent transparent transparent #ffffff; }
  .slick-slide iframe {
    position: absolute;
    z-index: 3; }

/*#slider-loading-overlay{
position: absolute;
top: top;
width: 100%;
height: 100%;
z-index: 998;
background-color: #ff00ff;
opacity: 0;
transition: opacity $color-transition-time ease;
}*/
.slider {
  opacity: 1;
  overflow: hidden; }

.opacity {
  opacity: 0; }

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

/* base styles */
.safari {
  margin-left: 0; }

@font-face {
  font-family: uIcons;
  src: url("../fonts/u_icons-Regular.otf") format("opentype"); }

body, html {
  padding: 0;
  margin: 0;
  background-color: #4b4b4b;
  color: #4b4b4b;
  font-family: "Rasa", serif;
  font-size: 19px;
  font-size: calc(14px + 0.32vw);
  font-weight: 300;
  line-height: 21px;
  line-height: calc(16px + 0.32vw);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

h1 {
  font-family: "Yantramanav", sans-serif;
  font-size: 23px;
  font-size: calc(19px + 0.32vw);
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 0;
  letter-spacing: 1px; }

h2, h3, h4, h5 {
  font-family: "Yantramanav", sans-serif;
  font-size: 18px;
  font-size: calc(14px + 0.32vw);
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 0;
  letter-spacing: 1px; }

p {
  font-family: "Rasa", serif;
  font-size: 19px;
  font-size: calc(14px + 0.32vw);
  line-height: 21px;
  line-height: calc(16px + 0.32vw);
  margin: 0;
  padding: 0; }

a {
  text-decoration: none;
  outline: none;
  color: inherit; }

a:focus {
  text-decoration: none !important;
  outline: none !important;
  color: inherit !important; }

button:focus {
  outline: none; }

a:hover {
  text-decoration: none !important;
  outline: none !important;
  color: inherit !important; }

button::-moz-focus-inner {
  border: 0; }

ul li {
  list-style-type: none;
  margin: 0;
  padding: 0; }

i {
  margin-right: 5px; }

.serviceIcon {
  font-family: 'uIcons';
  font-size: 110px;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px; }

.no-wrap {
  white-space: nowrap; }

.distance-2 {
  width: 100%;
  height: 40px; }

.distance-1 {
  width: 100%;
  height: 10px; }

.container-fluid {
  margin: 0;
  padding: 0; }

.fixHeight-1 {
  height: 200px; }

.min-260 {
  min-width: 260px; }

.no-margin {
  margin: 0 !important;
  padding: 0 !important; }

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

.right40 {
  padding-right: 40px; }

.cap {
  text-transform: capitalize;
  margin-bottom: 4px; }

.textblock {
  overflow: hidden; }

.zipper {
  height: 100%; }

.zipper.ng-animate {
  transition: 1s linear all; }

.zipper.ng-enter {
  opacity: 0; }

.zipper.ng-enter.ng-enter-active {
  opacity: 1; }

.zipper.ng-leave {
  opacity: 1; }

.zipper.ng-leave.ng-leave-active {
  opacity: 0; }

#bottom_container {
  position: relative;
  overflow: hidden; }
  #bottom_container .googleMap {
    width: 100%;
    height: 100%; }

.loadingInfo {
  position: absolute;
  text-align: center;
  width: 100%;
  padding-top: 30px; }

#header-container {
  margin-top: 25px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px; }

header {
  z-index: 9999;
  background-color: #4b4b4b;
  color: #4b4b4b;
  margin: 0;
  padding: 0; }
  header a {
    text-decoration: none;
    outline: none; }
  header .row {
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px; }
  header .pageHeader .aboutText {
    padding-right: 40px; }
  header .pageHeader .listItems {
    padding: 0px;
    margin: 0px;
    margin-bottom: 25px;
    padding-right: 20px; }
    header .pageHeader .listItems h2 {
      margin-bottom: 5px; }
    header .pageHeader .listItems img {
      width: 100%;
      margin-bottom: 20px; }
  header .pageHeader .nobreak .listItem {
    float: left;
    margin-right: 6px; }
  header .pageHeader .nobreak .listItem::after {
    content: " |"; }
  header .project-text h2 {
    text-decoration: none;
    margin-bottom: 2px; }
  header .project-text .textblock {
    margin-bottom: 15px;
    padding-right: 40px; }
  header .memberImg {
    margin-top: -5px;
    float: left;
    margin-right: 15px; }
    header .memberImg img {
      width: 80px;
      image-rendering: -moz-crisp-edges;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-crisp-edges;
      image-rendering: -webkit-optimize-contrast;
      -ms-interpolation-mode: nearest-neighbor; }
  header .undef-logo-top {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px; }
    header .undef-logo-top .logo {
      display: none; }
    header .undef-logo-top .textblock {
      width: 100%; }
  header .project-filter .reset {
    font-weight: 400;
    padding-top: 5px; }
  header .project-filter ul {
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    text-transform: capitalize; }
    header .project-filter ul li {
      display: inline;
      margin: 0;
      padding: 0;
      margin-right: 5px; }
      header .project-filter ul li .active {
        font-family: "Yantramanav", sans-serif;
        font-size: 18px;
        font-size: calc(14px + 0.32vw);
        font-weight: 500; }
    header .project-filter ul li {
      display: inline; }
    header .project-filter ul li:after {
      content: ", "; }
    header .project-filter ul li:last-child:after {
      content: ""; }
  header .projects-grid .listItems {
    padding: 0;
    margin: 0;
    padding-right: 30px;
    padding-bottom: 30px; }
    header .projects-grid .listItems .thumb-container {
      width: 100%;
      height: 100%; }
      header .projects-grid .listItems .thumb-container .project-thumb {
        overflow: hidden; }
        header .projects-grid .listItems .thumb-container .project-thumb img {
          width: 100%; }
        header .projects-grid .listItems .thumb-container .project-thumb img:hover {
          opacity: 0; }
      header .projects-grid .listItems .thumb-container .project-title {
        margin-left: 10px;
        margin-top: 5px;
        padding-bottom: 5px;
        padding-right: 10px;
        overflow: hidden; }
  header .projects-list ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    header .projects-list ul li {
      margin-bottom: -3px;
      float: left;
      font-family: "Yantramanav", sans-serif;
      font-size: 23px;
      font-size: calc(19px + 0.32vw);
      font-weight: 500;
      line-height: normal;
      margin: 0;
      padding: 0;
      letter-spacing: 1px;
      margin-right: 15px; }
      header .projects-list ul li .active {
        border-bottom: 2px solid; }
    header .projects-list ul li {
      display: inline; }
    header .projects-list ul li:after {
      content: ", "; }
    header .projects-list ul li:last-child:after {
      content: ""; }
  header .project-title {
    font-size: 23px;
    font-size: calc(19px + 0.32vw);
    font-family: "Yantramanav", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: right; }
    header .project-title .active {
      margin: 0;
      display: inline-block;
      margin-left: -10px;
      padding: 5px;
      padding-left: 15px;
      padding-right: 15px;
      border: 3px solid #4b4b4b;
      margin-top: 6px;
      margin-bottom: 6px; }
  header .project-menu, header .main-menu {
    font-size: 23px;
    font-size: calc(19px + 0.32vw);
    font-family: "Yantramanav", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: normal; }
    header .project-menu ul, header .main-menu ul {
      margin: 0;
      padding: 0; }
      header .project-menu ul li, header .main-menu ul li {
        list-style-type: none;
        margin: 0;
        padding: 0;
        margin-bottom: -3px; }
  header #project-menu-list li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: -3px;
    font-family: "Rasa", serif;
    font-size: 19px;
    font-size: calc(14px + 0.32vw);
    font-weight: 300;
    line-height: 21px;
    line-height: calc(16px + 0.32vw);
    margin: 0;
    padding: 0;
    letter-spacing: 1px; }
  header #project-menu-list li:nth-child(1) a {
    display: none; }
  header #project-menu-list li:nth-child(3) a {
    display: none; }
  header #project-menu-list li:nth-child(1):hover a {
    display: inline; }
  header #project-menu-list li:nth-child(3):hover a {
    display: inline; }
  header #project-menu-list li:nth-child(1)::before {
    /*font-family: $font-family-serif;
			font-size: $font-size-serif-fix; font-size: $font-size-serif;
			font-weight: 300;
			line-height: $line-height-serif-fix; line-height: $line-height-serif;*/
    content: "Previous project"; }
  header #project-menu-list li:nth-child(1):hover::before {
    content: ""; }
  header #project-menu-list li:nth-child(3):hover::before {
    content: ""; }
  header #project-menu-list li:nth-child(2) {
    font-family: "Yantramanav", sans-serif;
    font-size: 23px;
    font-size: calc(19px + 0.32vw);
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px; }
  header #project-menu-list li:nth-child(3)::before {
    /*font-family: $font-family-serif;
			font-size: $font-size-serif-fix; font-size: $font-size-serif;
			font-weight: $font-weight-serif;
			line-height: $line-height-serif-fix; line-height: $line-height-serif;*/
    content: "Next project"; }
  header .project-menu-mobile {
    text-align: left; }
    header .project-menu-mobile #project-menu-list {
      margin-left: -45px; }
      header .project-menu-mobile #project-menu-list ul {
        margin-left: 0px; }
      header .project-menu-mobile #project-menu-list li:nth-child(1) {
        margin-left: -10px; }
      header .project-menu-mobile #project-menu-list li:nth-child(3)::before {
        margin-left: -10px; }
  header .main-menu li {
    font-weight: 500;
    text-align: left; }
  header .logotext p {
    font-family: "Rasa", serif;
    font-size: 19px;
    font-size: calc(14px + 0.32vw);
    font-weight: 300;
    line-height: 19px;
    line-height: calc(13px + 0.32vw); }
  header .undef-logo {
    float: right;
    margin-right: 30px;
    margin-bottom: 15px; }
    header .undef-logo .logo {
      height: 100px;
      width: 120px;
      color: #fff !important; }
    header .undef-logo .textblock {
      color: #fff !important;
      margin: 0;
      padding: 0;
      font-style: italic;
      letter-spacing: 1px; }
    header .undef-logo .logo-container-vertical {
      width: 280px;
      height: 170px;
      position: relative; }
      header .undef-logo .logo-container-vertical .logo {
        position: absolute;
        left: 0px;
        top: 10px;
        margin-bottom: 10px;
        margin-right: 20px; }
      header .undef-logo .logo-container-vertical .textblock {
        width: 200px;
        position: absolute;
        left: 130px;
        top: 0px; }
    header .undef-logo .logo-container-horizontal .logo {
      margin-bottom: 15px; }
  header .project-menu {
    overflow: hidden; }
    header .project-menu .active {
      margin: 0;
      display: inline-block;
      margin-left: -10px;
      padding: 5px;
      padding-left: 15px;
      padding-right: 15px;
      border: 3px solid #4b4b4b;
      margin-top: 6px;
      margin-bottom: 6px; }

.loader,
.loader:before,
.loader:after {
  border-radius: 50%; }

.loader:before,
.loader:after {
  position: absolute;
  content: ''; }

.loader:before {
  width: 5.2em;
  height: 10.2em;
  background: #4b4b4b;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.2em 5.1em;
  transform-origin: 5.2em 5.1em;
  -webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s; }

.loader {
  color: #fff;
  font-size: 11px;
  text-indent: -99999em;
  margin: 30px auto;
  position: relative;
  width: 10em;
  height: 10em;
  box-shadow: inset 0 0 0 6px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0); }

.loader:after {
  width: 5.2em;
  height: 10.2em;
  background: #4b4b4b;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 5.1em;
  -webkit-transform-origin: 0px 5.1em;
  transform-origin: 0px 5.1em;
  -webkit-animation: load2 2s infinite ease;
  animation: load2 2s infinite ease; }

@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.undef-logo a .logo {
  color: #fff !important; }

.undef-logo .textblock {
  color: #fff !important; }
