@charset "UTF-8";
@import url("../fonts/stylesheet.css");
/*@import url("css/reset.css");*/
/* CSS Document */
html {
  font-size: 100%;
}
body {
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
}
body.lock{
  overflow: hidden;
  position: fixed;
}
* {
  box-sizing: border-box;
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.navbar-brand {
  z-index: 99;
  position: relative;
}
a,
a:hover {
  color: inherit;
  text-decoration: none;
}
/*video{background-size:cover; }*/
.wh {
  color: #fff;
}
.red {
  color: #db1921;
}
/* Untility */
.blacklink {
  color: #000;
}
.subfont{
  font-size: 1.8vw;
}
@media (min-width: 320px) and (max-width: 991px) {
  .subfont{
    font-size: 2vh;
  }
}
.readmore-bk {
  width: 100%;
  background: url(../img/icon-readmore-bk.svg) no-repeat 0 0;
  /*	background-size: 20px 17px;*/
  font-size: 0.8rem;
  padding-left: 25px;
  color: #000;
}
.readmore-wh {
  width: 100%;
  background: url(../img/icon-readmore-wh.svg) no-repeat 0 0;
  /*	background-size: 20px 17px;*/
  font-size: 0.8rem;
  padding-left: 25px;
  color: #fff;
}
.readmore-blue {
  width: 100%;
  background: url(../img/icon-readmore-blue.svg) no-repeat 0 0;
  /*	background-size: 20px 17px;*/
  font-size: 0.8rem;
  padding-left: 25px;
  color: #fff;
}

.readmore-vdo-bk {
  width: 100%;
  background: url(../img/icon-vdo-bk.svg) no-repeat 0 0;
  /*	background-size: 10% 100%;*/
  font-size: 0.8rem;
  padding-left: 45px;
  color: #000;
}
.readmore-vdo-wh {
  width: 100%;
  background: url(../img/icon-vdo-wh.svg) no-repeat 0 0;
  /*	background-size: 10% 100%;*/
  font-size: 0.8rem;
  padding-left: 45px;
  color: #fff;
}

.readmore-vdo-blue {
  width: 100%;
  background: url(../img/icon-vdo-blue.svg) no-repeat 0 0;
  /*	background-size: 10% 100%;*/
  font-size: 0.8rem;
  padding-left: 45px;
  color: #2d3a52;
}

.titleFont {
  font-family: "Glegoo", serif;
}
/* HEADER*/
header {
  width: 100%;
  background: #fff;
  padding: 1rem 0 1rem;
}
#navbar {
  font-family: "Glegoo", serif;
  padding-top: 5rem;
  justify-content: flex-end;
}
header h6 {
  font-size: 0.7rem;
  margin-bottom: 2px;
}
/*figure{position: relative;}*/
.home {
  height: 100%;
  position: relative;
}
.banner {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.grid-container {
  height: 100%;
  min-height: 100%;
  position: relative;
}
.hero-holder {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-inner {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  width: 100%;
}
.hero-text {
  width: 48%;
  color: #fff;
  font-weight: 800;
}
/* BANNER */
.fade-in {
  -webkit-animation: fade-in 0.1s ease;
  -moz-animation: fade-in ease-in-out 0.1s both;
  -ms-animation: fade-in ease-in-out 0.1s both;
  -o-animation: fade-in ease-in-out 0.1s both;
  animation: fade-in 0.1s ease;
  visibility: visible;
  -webkit-backface-visibility: hidden;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* portfolio */
.portfolio [class*="col-"] {
  border: #fff solid 7px;
  position: relative;
  overflow: hidden;
}
.portfolio .details h2 {
  font-family: "Glegoo", serif;
  font-weight: 800;
  line-height: 1.4;
}
.portfolio .details h6 {
  font-size: 1rem;
  line-height: 1.5;
}
.portfolio a {
  width: 100%;
  height: 100%;
}
.portfolio a img {
  transition: all 0.5s;
}
.portfolio a .caption {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  -o-transition: all 0.45s ease-in-out;
  -ms-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}
.portfolio a:hover img {
  transform: scale(1.15, 1.15);
}
.portfolio a:hover .caption {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
}
.caption-text {
  width: 100%;
  z-index: 10;
  color: #fff;
  text-align: left;
}
/* About */
.work h5,
.about h6 {
  line-height: 1.4;
}
.work h5 {
  font-size: 1.2rem !important;
}
.work .title,
.about .title,
.work .titlebig,
.about .titlebig {
  width: 100%;
  font-weight: 800;
  text-transform: uppercase;
}
.about .paralex {
  position: relative;
}
.about .paralex div {
  width: 50%;
  font-weight: 800;
  position: absolute;
  z-index: 1;
  top: 25%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/* Client */
.client ul {
  list-style: none;
  margin: 0;
  padding: 7px 7px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: #f4f4f4;
}
.client ul li {
  height: auto;
  margin: 0;
  padding: 7px 7px;
}
/* menu */

.nav-menu ul {
  flex-direction: row;
  /* right: -100%; */
  top: -4px;
  right: -2px;
  position: relative;
  -webkit-transition: left 0.2s ease-in-out;
  transition: left 0.2s ease-in-out;
}
.nav-menu li {
  display: block;
  float: left;
}
.nav-menu li a {
  font-family: "Glegoo", serif;
  color: #020304;
  display: block;
  font-size: 14px;
  line-height: 60px;
  height: 50px;
  margin-top: 1px;
  padding: 0 20px;
  text-align: center;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: #d2232a;
}
.nav-menu li a:hover span {
  opacity: 1;
  visibility: visible;
}
.nav-menu li a i {
  font-size: 36px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.nav-menu li a span {
  position: absolute;
  top: 0%;
  right: 100%;
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 55px;
  opacity: 0;
  padding: 0 20px;
  text-align: left;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

.nav-menu li a .svg {
  width: auto;
  height: 30px;
}

.nav-menu li a:hover .svg .st0 {
  fill: #d2232a;
}

/* This is the site logo */
/* This is the trigger button */

.nav-trigger {
  cursor: pointer;
  font-size: 30px;
  float: right;
  padding: 8px 5px;
}
.nav-trigger i {
  color: #d2232a;
  padding: 5px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
.nav-menu .nav-trigger .fa-hamburger:before {
  content: "\f0c9";
}
input[type="checkbox"]:checked + .nav-menu .nav-trigger .fa-hamburger:before {
  content: "\f00d";
}
.loadMore {
  text-align: center;
}
.content-container {
  width: 100%;
  background: #ffffff;
  text-align: center;
}
.maps iframe {
  pointer-events: none;
}
.bgContact {
  background: url(../img/label-viva.jpg) no-repeat;
  background-size: cover;
  display: table-cell;
  min-height: 330px;
}

.bgCareers {
  background: url(../img/careers-banner-01.jpg) no-repeat;
  background-size: cover;
  display: table-cell;
  min-height: 330px;
}

#careersaccount a.seemore{
  font-family: "Glegoo", serif;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  color: #ea2127 !important;
  cursor: pointer;
  margin-top: 1.5rem;
  display: block;
}
#careersaccount a.seemore:hover{
  color: #000 !important;
  text-decoration: none;
}

#careersaccount .btn-applythisjob{
  width: 200px;  
  margin: 0 auto;
  text-align: center;
  border: 1px solid #ea2127;
  color: #ea2127;
  padding: 5px 15px;
  cursor: pointer;
  font-size: 1rem;
}

#careersaccount .btn-applythisjob:hover, #careersaccount .btn-applythisjob:focus{
  border: 1px solid #ea2127;
  background: #ea2127;
  color: #fff;
}

#careersaccount .card{
  padding-left: 3%;
  padding-right: 3%;
  border: none;
  background: transparent;
}
#careersaccount li, #careersaccount h6{
  font-size: 15px;
}
#careersaccount .description{
  min-height: 90px;
}

/******************************************

					Media

******************************************/
@media (min-width: 320px) and (max-width: 991px) {
  .nav-logo {
    position: fixed;
    top: 10px;
    left: 0%;
    z-index: 99;
  }
  header {
    position: fixed;
    padding: 5px 0;
    background: #fff;
    z-index: 99;
  }
  header input ~ nav {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    top: 5px;
    right: 0;
    width: 100%;
    z-index: 1;
    overflow: hidden;
  }
  header input ~ nav > ul > li {
    opacity: 0;
    transition: 0.2s;
    transition-delay: 0s;
  }
  header input ~ nav > ul > li > a {
    text-decoration: none;
    text-transform: uppercase;
    color: #020304;
    display: block;
    padding: 30px;
  }
  header input ~ nav > ul > li > a:hover {
    color: #d2232a;
  }
  header input:checked ~ nav {
    height: 100%;
    transition-delay: 0s;
  }
  header input:checked ~ nav ul {
    width: 100%;
    top: 10%;
    flex-direction: column;
    right: 0;
    align-content: center;
  }
  header input:checked ~ nav > ul > li {
    opacity: 1;
    transition-delay: 0.2s;
  }
  header input[type="checkbox"] {
    opacity: 0;
  }
  .nav-menu ul {
    right: -100%;
  }
  .nav-menu li a{
      font-size: 18px;      
  }
  .portfolio .details {
    padding: 3.5rem;
  }
  .client ul li {
    width: 25%;
  }
  .hero-text {
    width: 100%;
    font-size: 18px;
  }
  .main {
    padding-top: 4rem;
  }
  .work h5,
  .about h6 {
    font-size: small;
  }
  .work h5 {
    font-size: 0.85rem !important;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  header input ~ nav {
    position: fixed;
    top: 0px;
    bottom:90%;
  }
  .portfolio [class*="col-"] {
    border-top: #fff solid 3px;
    border-bottom: #fff solid 3px;
    border-left: #fff solid 6px;
    border-right: #fff solid 6px;
  }
  .portfolio .details {
    padding: 1.5rem;
  }
  #banner-load {
    padding: 0;
  }
  header h6 {
    font-size: 0.6rem;
  }
  .client ul li {
    width: 50%;
  }
  .bgContact {
    display: block;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .main {
    padding-top: 4rem;
  }
  .bgContact {
    display: block;
  }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .hero-text {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .nav-menu {
    position: absolute;
    top: 11px;
    right: 0%;
    z-index: 10;
  }
  .nav-logo {
    top: 25px;
    left: 0%;
    z-index: 99;
    -webkit-transition: 0.3s opacity ease;
    transition: 0.3s opacity ease;
  }
  .nav-logo a {
    color: #fefefe;
  }
  header.onTop {
    position: fixed;
    z-index: 999;
  }
  header input ~ nav,
  header.onTop input ~ nav {
    position: fixed;
    overflow: hidden;
  }
  input[type="checkbox"]:checked + .nav-menu .nav-trigger i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  input[type="checkbox"]:checked + .nav-menu .nav-logo {
    opacity: 1;
  }
  input[type="checkbox"]:checked + .nav-menu ul {
    top: -4px;
    right: 0%;
    opacity: 1;
    transition: opacity 0.25s ease-in;
  }
  input[type="checkbox"] {
    position: absolute;
    top: -99px;
  }
  .main {
    padding-top: 0rem;
  }
  .portfolio .details {
    padding: 2rem;
  }
  .portfolio a .caption {
    padding: 1rem;
  }
  /*
.client ul {
	padding: 0;
}
*/
  .client ul li {
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .nav-menu {
    position: absolute;
    top: 15px;
    right: 1%;
    z-index: 10;
  }
  .nav-logo {
    padding-left: 1%;
  }
  .portfolio .details {
    padding: 3rem;
  }
  .portfolio a .caption {
    padding: 1.2rem;
  }
  /*
.client ul {
	padding: 0;
}
*/
  .client ul li {
    width: 25%;
  }
  .about h2 {
    font-size: 3vw;
  }
  .readmore-wh,
  .readmore-bk {
    padding-left: 20px;
  }
  .readmore-vdo-wh,
  .readmore-vdo-bk {
    padding-left: 45px;
  }
}

@media (min-width: 1440px) and (max-width: 1920px) {
  .readmore-wh,
  .readmore-bk {
    padding-left: 24px;
  }
}

@media screen and (orientation: portrait) {
  .landscape {
    display: none;
  }
  .portrait {
    display: block;
  }
  .hero-inner {
    position: absolute;
    width: 100%;
    bottom: 15%;
  }
  .hero-inner.top {
    top: 17%;
  }
  .hero-inner.bottom {
    bottom: 17%;
  }
}

@media screen and (orientation: landscape) {
  .portrait {
    display: none;
  }
  .landscape {
    display: block;
  }
}
