@charset "UTF-8";
/* CSS Document */

@font-face {
font-family: "benton-modern-display", serif;
font-weight: 400;
font-style: normal;
}

body::before {
    content: '';
    position: fixed; /* Use fixed so it covers the whole screen, even on scroll */
    top: -100px; /* Expand the element greatly to ensure the blur covers the whole screen */
    left: -100px;
    right: -100px;
    bottom: -100px;
    
    /* Use the conic gradient */
    background-image: conic-gradient(
      from var(--angle),
      #ffe354,  /* Yellow */
      #07afe5,  /* Blue */
      #fe9a32,  /* Orange */
      #ffe354   /* Yellow (to complete the loop) */
    );
    
    /* Apply the blur for the "glow" look */
    filter: blur(150px); 
    
    /* Set a low opacity so the glow is subtle */
    opacity: 1; 
    
    /* Start the spinning animation */
    animation: 4s spin linear infinite; /* Use a slower speed for a background effect */

    z-index: -1; /* Send it far behind all your content */
    
    /* Ensure the transition is smooth if you ever change opacity/filter */
    transition: opacity 1s ease;
}
.video-background {
  mask-image: radial-gradient(64% 36% at center, white 50%, transparent 200%);
    /* Required for positioning the video */
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Ensure video edges are clipped */
}

/* 2. Target the video element */
.video-background video {
    /* Make it slightly larger than its container to allow panning */
    width: 110%; 
    height: 110%;
    /* Position the center of the video to the center of the container */
    position: absolute;
    top: 0;
    left: 0;
    /* Add a smooth transition for the movement */
    transition: transform 0.1s ease-out; 
    /* Set the origin of the transform to the center of the video */
    transform-origin: center center; 
}

#projects {
  background: url("../images/bg-pattern-dark.png");
  padding: 48px 24px;
}

  @property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.filter-btn {
  display: inline-block;
  position: relative; 
  text-transform: capitalize;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 99px;
  padding: 10px 40px;
  margin: 0 5px;
  border: 3px solid #fff; 
  background: #ffffff;
  background-image:
    linear-gradient(to bottom, #ffffff, #ffffff), /* Inner content background */
    conic-gradient( /* The spinning border background */
      from var(--angle),
      #ffe354,
      #a8c740,
      #07afe5,
      #fe9a32,
      #ffe354
    );
    background-origin: border-box; 
  background-clip: padding-box, border-box;
  z-index: 1; 
  animation: 4s spin linear infinite;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, animation 0.3s linear;
  box-shadow: 0 6px 12px rgba(0,0,0,0.4); 
}

/* --- THE GLOW ELEMENT (::before) --- */
.filter-btn::before {
  content: "";
  position: absolute;
  top: -4px; 
  left: -4px;
  right: -4px;
  bottom: -4px;
  background-image: conic-gradient(
    from var(--angle),
    #ffe354,
    #a8c740,
    #07afe5,
    #fe9a32,
    #ffe354
  );
  border-radius: 100px; 
  
  z-index: 0; /* Place it behind the main button text/background (z-index: 1) */
  opacity: 0; /* Start invisible */
  transition: opacity 0.3s ease, filter 0.3s ease, animation 0.3s linear;
}


.filter-btn:hover {
  border: 3px solid transparent; 
  transform: translateY(-2px);
  /* Speed up animation */
  animation: 2s spin linear infinite;
  /* Slightly darker box shadow */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2); 
  /* Note: You no longer need to explicitly set 'border: 3px solid #ffff00;' */
}

.filter-btn:hover::before {
  opacity: 0.2; /* Fade in the glow */
  filter: blur(5px); /* Apply a softer blur, since the button is smaller */
  animation: 2s spin linear infinite;
}
.filter-controls {
	margin-top: -76px;
    text-align: center;
    margin-bottom: 30px;
}

/* Initially hide the dropdown on ALL screens */
.filter-dropdown-container {
    display: none; 
}

/* Style the dropdown element */
#filter-select {
	text-align: center;
	-webkit-appearance: none; /* For Chrome, Safari, newer Edge */
    -moz-appearance: none;    /* For Firefox */
    appearance: none;         /* Standard property */
    outline: none;
  display: inline-block;
  position: relative; 
  text-transform: capitalize;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 99px;
  padding: 10px 40px;
  margin: 0 5px;
  border: 3px solid #fff; 
  background: #ffffff;
  background-image:
    linear-gradient(to bottom, #ffffff, #ffffff), /* Inner content background */
    conic-gradient( /* The spinning border background */
      from var(--angle),
      #ffe354,
      #a8c740,
      #07afe5,
      #fe9a32,
      #ffe354
    );
    background-origin: border-box; 
  background-clip: padding-box, border-box;
  z-index: 1; 
  animation: 4s spin linear infinite;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, animation 0.3s linear;
  box-shadow: 0 6px 12px rgba(0,0,0,0.4); 
}

#filter-select::before {
  content: "";
  position: absolute;
  top: -4px; 
  left: -4px;
  right: -4px;
  bottom: -4px;
  background-image: conic-gradient(
    from var(--angle),
    #ffe354,
    #a8c740,
    #07afe5,
    #fe9a32,
    #ffe354
  );
  border-radius: 100px; 
  
  z-index: 0; /* Place it behind the main button text/background (z-index: 1) */
  opacity: 0; /* Start invisible */
  transition: opacity 0.3s ease, filter 0.3s ease, animation 0.3s linear;
}
#filter-select::-ms-expand {
    display: none;
}
.filter-btn.active {
    /* 1. Remove old active style */
    /* background-color: #007bff; */ 
    /* color: white; */ 
    /* border-color: #007bff; */ 
    
    /* 2. Inherit the hover transform (lift) */
    transform: translateY(-2px); 
    
    /* 3. Inherit the faster spin animation */
    animation: 2s spin linear infinite; 
    
    /* 4. Inherit the hover shadow */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  border: 3px solid transparent; 
    
    /* Note: The 'color: #333;' and 'background: #ffffff;' from the base .filter-btn 
             will apply, keeping the text readable against the white background. */
}

/* --- NEW: Activate the GLOW (::before) for the active button --- */
.filter-btn.active::before {
    /* Inherit the glow activation from :hover::before */
    opacity: 0.12; 
    filter: blur(5px);
    animation: 2s spin linear infinite;
  border: 3px solid transparent; 
}
.filter-btn:focus {
    outline: none;
}

/* IMPORTANT: Project Visibility & Transition */
.image-button-grid .img-btn {
    /* Ensures the show/hide animation works smoothly */
    transition: all 0.3s ease-in-out; 
}

/* Class added by JS to hide elements */
.image-button-grid .img-btn.hidden {
    opacity: 0;
    /* Collapse the element for a clean layout */
    width: 0 !important; 
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    /* Prevents clicks while hidden */
    pointer-events: none; 
}
.img-btn {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px; 
  text-decoration: none;
  border: 0px solid transparent;
  background-image: 
    linear-gradient(to bottom, #ffffff, #ffffff),
    conic-gradient(
      from var(--angle),
    #ffe354,
    #a8c740,
    #07afe5,
    #fe9a32,
    #ffe354
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  z-index: 1; 
  animation: 4s spin linear infinite;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease, animation 0.3s linear;
}

.img-btn img{
  border-radius: 28px; 
}

.img-btn img:hover {
	opacity: 1;
  mask-image: radial-gradient(circle, white 50%, transparent 120%);
  transition: transform 0.3s ease;
}

.img-btn:hover {
  transform: translateY(-6px);
  border: 4px solid transparent;
  animation: 2s spin linear infinite;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.img-btn::before {
  content: "";
  position: absolute;
  top: -5px; /* Slightly expand the background */
  left: -5px; /* Slightly expand the background */
  right: -5px; /* Slightly expand the background */
  bottom: -5px; /* Slightly expand the background */
  /* Re-use the conic gradient for the glow background */
  background-image: conic-gradient(
    from var(--angle),
    #ffe354,
    #a8c740,
    #07afe5,
    #fe9a32,
    #ffe354
  );
  border-radius: 29px; /* Slightly larger than button radius (24px + 5px padding) */
  z-index: 0; /* Place it behind the main button (which has z-index: 1) */
  opacity: 0; /* Start invisible */
  transition: opacity 0.3s ease, filter 0.3s ease; /* Smooth transition */
}

.img-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  /* Ensure image is above the ::before glow but below the border effect if possible */
  z-index: 1; 
}
/* The rest of the .img-btn related styles that don't need changes */
.image-button-grid {
  display: grid;
  gap: 24px; 
  grid-template-columns: 1fr;
  padding: 24px;
  margin: 0 auto;
}

.img-btn:hover::before {
  opacity: 0.75; /* Fade in the glow */
  filter: blur(6px); /* Apply the blur for the glow effect */
  animation: 3s spin linear infinite;
}

.img-btn:hover img {
  transform: scale(1);
  border-radius: 24px;
}
.btn-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  /* Ensure the label is on top of everything */
  z-index: 3; 
}
@media (min-width: 768px) {
  .image-button-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .image-button-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2em;
  }
}
/* --------------------------------------------------------------- */


@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

nav {
	height: 70px;
	position: fixed;
	width: 100%;
	z-index: 100;
}
#game-iframe {
	background: #000;
	padding: 0 !important;
	margin-bottom: -6px !important;
	border: none !important;
	box-shadow: none !important;
}
i.icon {
    content: '';
	color: #333;
    display: inline-block;
    height: 12px;  /*height of icon */
    width: 18px;  /*width of icon */
      /*where to replace the icon */
      /*background */
    background: url(../images/stopwatch.svg) no-repeat 0px 0px;
}
h4 {
	font-weight: 400;
}

        #game-iframe {
            width: 100%;
            height: 600px;
            border: 2px solid #fff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }
.hero-1:before {
  content:'DESIGN';
  font-size: 11vw;
  display: table-cell;
  font-weight: 700;
  width: 100%;
  height: 100vh;
  color: #212121;
  margin: 0 auto;
  left: 100%;
  text-align: center;
  vertical-align: middle;
  animation-name: design;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.hero-2:before {
  content:'DESIGN';
  font-size: 11vw;
  display: table-cell;
  font-weight: 700;
  width: 100%;
  height: 100vh;
  color: #FFFF00;
  margin: 0 auto;
  left: 100%;
  text-align: center;
  vertical-align: middle;
  animation-name: design;
  animation-duration: 6s;
  animation-delay: 0.0375s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.hero-3:before {
  content:'What do you need?';
  font-size: 5vw;
  display: table-cell;
  font-weight: 700;
  width: 100%;
  height: 70vh;
  color: #FFFF00;
  margin: -200px auto 0;
  left: 100%;
  text-align: center;
  vertical-align: middle;
}
.hero-4:before {
  content:'What do you need?';
  font-size: 5vw;
  display: table-cell;
  font-weight: 700;
  width: 100%;
  height: 70vh;
  color: #212121;
  margin: -200px auto 0;
  left: 100%;
  text-align: center;
  vertical-align: middle;
}
@keyframes design {
  10% {content: 'DESIGN';}
  11% {content: 'DESIOG'}
  12% {content: 'DESNBX'}
  13% {content: 'DEXAPD'}
  14% {content: 'DBXPAI'}
  15% {content: 'UALNBS'}
  16% {content: 'UILAIB'}
  17% {content: 'UI/JDW'}
  18% {content: 'UI/UBA'}
  19% {content: 'UI/UXA'}
  20% {content: 'UI/UX '}
  46% {content: 'UI/UX '}
  47% {content: 'UI/UBA'}
  48% {content: 'UI/JDW'}
  49% {content: 'UILAIB'}
  50% {content: 'MTODHA'}
  51% {content: 'MOGHOW'}
  52% {content: 'MOTHWA'}
  53% {content: 'MOTIAX'}
  54% {content: 'MOTIOP'}
  55% {content: 'MOTION'}
  80% {content: 'MOTION'}
  81% {content: 'MOTIAX'}
  82% {content: 'MOTHWA'}
  83% {content: 'MOGHOW'}
  84% {content: 'MTODHA'}
  85% {content: 'DBXPAI'}
  86% {content: 'DEXAPD'}
  87% {content: 'DESNBX'}
  88% {content: 'DESIOG'}
  89% {content: 'DESIGX'}
  90% {content: 'DESIGN'}
}
.col-md-4-0 {
  position: relative;
  max-width: 30%;
  min-height: 1px;
  float: left;
  padding: 0 !important;
}
@media (max-width: 767px) {
#ux-design {
	background: #fff;
	display: block !important;
	column-count: 1 !important;
	overflow: hidden !important;
	padding: 40px !important;
}
.wrapper {
	display: block !important;
	column-gap: 0;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.hero-1:before {
  font-size: 15vw;
}
.hero-2:before {
  font-size: 15vw;
}
.hero-3:before {
  font-size: 6vw;
  height: 77vh;
}
.hero-4:before {
  font-size: 6vw;
  height: 77vh;
}
.phone {
	top: 80px !important;
}
.persona {
	background: url(../images/michelle-small.jpg) !important; 
	background-size: cover !important; 
	background-position: center; 
	height: 75vh;
}
.reach-hero {
	min-height: auto; 
	max-width: auto; 
	height: auto !important; 
	width: 100% !important; 
	margin: -100px auto 0 !important;
}
.hd-hero {
	display: table-cell;
	vertical-align: middle;
	min-height: auto; 
	max-width: auto; 
	height: auto !important; 
	width: 80% !important; 
	margin: -100px auto 0 !important;
}
.hero {
	min-height: auto; 
	max-width: auto; 
	height: auto !important; 
	width: 100% !important; 
	margin: 100px auto 0 !important;
}
#menu li {
  text-align: right !important;
  padding: 10px 0;
  font-size: 32px !important;
	-webkit-transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -ms-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
}
.layer img{
	width: 100%;
	padding: 140px 20px 20px 20px;
}
.row .wrapper .col-md-4 {
	max-width: 100% !important;
}
.card-info {
	height: 350px;
	width: 100%;
	background: #fff;
	padding: 20px;
	margin: 0 auto 0;
}
.case-study{
	display: block;
	position: fixed;
	background: #FFFF00 !important;
	color: #333 !important;
	width: 100%;
	z-index: 1;
}
.card-info > span{
	border-radius: 24px !important;
	position: absolute;
	text-align: center;
	height: 350px;
	width: 100%;
	color: #fff !important;
	background: url(../images/bg-pattern-dark.png) !important;
	opacity: 0;
	padding-top: 150px;
	margin: -20px;
	-webkit-transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -ms-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
}
.card-info:hover > span{
	opacity: 1;
}
.card-info > span h3{
	font-weight: 400;
	color: #fff !important;
}
.card-info > span h4{
	color: #ababab !important;
	font-style: italic !important;
}
.card-bottom {
	font-size: 16px;
	text-align: center;
	width: 280px;
	background: #fff;
	padding: 40px;
	margin: 0 auto 40px;
	border-radius: 0 0 4px 4px;
}
.dropshadow:after{
	content: '';
	position:absolute;
	z-index:-1;
	bottom: -4px;
	width: 50%;
	left:50%;
	margin-left: -24%;
	padding: 20px;
	height:30px;
	border-radius: 0 0 40px 40px;
	box-shadow: 0 16px 30px -5px rgba(0, 0, 0, 0.5);
	-webkit-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-moz-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-ms-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-o-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	transform: perspective(800px) rotateY(0deg) rotateX(45deg);
}
.case-study-zoom:hover {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
}

@media (min-width: 768px) {
.hero-1:before {
  font-size: 13vw;
}
.hero-2:before {
  font-size: 13vw;
}
.hero-3:before {
  font-size: 6vw;
  height: 75vh;
}
.hero-4:before {
  font-size: 6vw;
  height: 75vh;
}
.phone {
	top: 40px !important;
}
.persona {
	background: url(../images/michelle.jpg) !important; 
	background-size: cover !important; 
	background-position: center; 
	height: 75vh;
}
#menu li {
  text-align: right !important;
  font-size: 48px;
	-webkit-transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -ms-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
}
.layer img{
	width: 90%;
	padding: 20px;
}
.row .wrapper .col-md-4 {
	max-width: 100% !important;
}
.card-info {
	border-radius: 24px !important;
	height: 350px;
	width: 100%;
	background: #fff;
	padding: 20px;
	margin: 0 auto 0;
}
.case-study{
	display: block;
	position: absolute;
	background: #FFFF00 !important;
	color: #333 !important;
	width: 100%;
	height: 28px;
	margin-left: 0;
	margin-top: 302px;
	padding: 4px;
	z-index: 1000;
}
.card-info > span{
	border-radius: 24px !important;
	position: absolute;
	text-align: center;
	height: 350px;
	width: 100%;
	color: #fff !important;
	background: url(../images/bg-pattern-dark.png) !important;
	opacity: 0;
	padding-top: 150px;
	margin: -20px;
	-webkit-transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -ms-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
}
.card-info:hover > span{
	opacity: 1;
}
.card-info > span h3{
	font-weight: 400;
	color: #fff !important;
}
.card-info > span h4{
	color: #ababab !important;
	font-style: italic !important;
}
.card-bottom {
	font-size: 16px;
	text-align: center;
	width: 280px;
	background: #fff;
	padding: 40px;
	margin: 0 auto 40px;
	border-radius: 0 0 4px 4px;
}
.dropshadow:after{
	content: '';
	position:absolute;
	z-index:-1;
	bottom: -4px;
	width: 260px;
	left:50%;
	margin-left:-18%;
	padding: 20px;
	height:30px;
	border-radius: 0 0 40px 40px;
	box-shadow: 0 16px 30px -5px rgba(0, 0, 0, 0.5);
	-webkit-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-moz-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-ms-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-o-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	transform: perspective(800px) rotateY(0deg) rotateX(45deg);
}
.case-study-zoom:hover {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
}
@media (max-width: 991px) {
.filter-buttons-container {
        display: none;
    }
    /* 2. Show the dropdown menu */
    .filter-dropdown-container {
        display: inline-block; /* Center the dropdown */
    }
}
#ux-design {
	background: #fff;
	display: block !important;
	column-count: 2 !important;
	overflow: hidden !important;
	padding: 40px !important;
}
.wrapper {
	display: block !important;
	column-gap: 20px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
}
@media (min-width: 992px) {
.hero-1:before {
  font-size: 12vw;
}
.hero-2:before {
  font-size: 12vw;
}
.hero-3:before {
  font-size: 5vw;
  height: 70vh;
}
.hero-4:before {
  font-size: 5vw;
  height: 70vh;
}
.phone {
	top: inherit; !important;
}
.persona {
	background: url(../images/michelle.jpg) !important; 
	background-size: cover !important; 
	background-position: center; 
	height: 75vh;
}
#menu li {
  text-align: right !important;
  font-size: 72px;
	-webkit-transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -ms-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
}
.layer img{
	width: 80%;
	padding: 20px;
}
.row .wrapper .col-md-4 {
	max-width: 33.33% !important;
}
.card-info {
	height: 300px;
	width: 100%;
}
.case-study{
	display: block;
	position: absolute;
	background: #FFFF00 !important;
	color: #333 !important;
	width: 100%;
	height: 28px;
	margin-left: 0;
	margin-top: 302px;
	padding: 4px;
	z-index: 1000;
}
.card-info > span{
	position: absolute;
	text-align: center;
	height: 350px;
	width: 100%;
	color: #fff !important;
	background: url(../images/bg-pattern-dark.png) !important;
	opacity: 0;
	padding-top: 150px;
	margin: -20px;
	-webkit-transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -ms-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
}
.card-info:hover > span{
	opacity: 1;
}
.card-info > span h3{
	font-weight: 400;
	color: #fff !important;
}
.card-info > span h4{
	color: #ababab !important;
	font-style: italic !important;
}
.card-bottom {
	width: 280px;
}
.dropshadow:after{
	content: '';
	position:absolute;
	z-index:-1;
	bottom: 34px;
	width: 260px;
	left:50%;
	margin-left:-42%;
	padding: 20px;
	height:30px;
	border-radius: 0 0 40px 40px;
	box-shadow: 0 16px 30px -5px rgba(0, 0, 0, 0.5);
	-webkit-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-moz-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-ms-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-o-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	transform: perspective(800px) rotateY(0deg) rotateX(45deg);
}
.case-study-zoom:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
}
@media (min-width: 1200px) {
.hero-1:before {
  font-size: 11vw !important;
}
.hero-2:before {
  font-size: 11vw !important;
}
.hero-3:before {
  font-size: 5vw;
  height: 70vh;
}
.hero-4:before {
  font-size: 5vw;
  height: 70vh;
}
.phone {
	top: inherit; !important;
}
.persona {
	background: url(../images/michelle.jpg) !important; 
	background-size: cover !important; 
	background-position: center; 
	height: 75vh;
}
.persona-mike {
	background: url(../images/roottabag-mike-jones.jpg) !important; 
	background-size: cover !important; 
	background-position: center; 
	height: 75vh;
}
#menu li {
  text-align: right !important;
  font-size: 72px;
	-webkit-transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -ms-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
}
.layer img{
	width: 75%;
	padding: 20px;
}
.hero-container {
	max-width: 100% !important;
	overflow: hidden !important;
}
.row .wrapper .col-md-4 {
	max-width: 33.33% !important;
}
.card-info {
	height: 350px;
	width: 100%;
	overflow: hidden !important;
}
.case-study{
	display: block;
	position: absolute;
	background: #FFFF00 !important;
	color: #333 !important;
	width: 176px;
	height: 28px;
	margin-left: 0;
	margin-top: 302px;
	padding: 4px;
	z-index: 1000;
}
.card-info > span{
	position: absolute;
	text-align: center;
	height: 350px;
	width: 100%;
	color: #fff !important;
	background: url(../images/bg-pattern-dark.png) !important;
	opacity: 0;
	padding-top: 150px;
	margin: -20px;
	-webkit-transition: all 0.3s ease 0s !important;
    -moz-transition: all 0.3s ease 0s !important;
    -o-transition: all 0.3s ease 0s !important;
    -ms-transition: all 0.3s ease 0s !important;
    transition: all 0.3s ease 0s !important;
}
.card-info:hover > span{
	opacity: 1;
}
.card-info > span h3{
	font-weight: 400;
	color: #fff !important;
}
.card-info > span h4{
	color: #ababab !important;
	font-style: italic !important;
}
.card-bottom {
	width: 340px;
}
.dropshadow:after{
	content: '';
	position:absolute;
	z-index:-1;
	bottom: 35px;
	width: 310px;
	left:50%;
	margin-left:-42%;
	padding: 20px;
	height:30px;
	border-radius: 0 0 40px 40px;
	box-shadow: 0 16px 30px -5px rgba(0, 0, 0, 0.5);
	-webkit-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-moz-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-ms-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	-o-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
	transform: perspective(800px) rotateY(0deg) rotateX(45deg);
}
.case-study-zoom:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
}
ol li {
	margin-top: 16px;
}
ul li {
	margin-top: 16px;
}
.wrapper {
	display: flex;
	column-gap: 20px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.top-buffer-lrg {
	display: block;
	height: 72px;
}
.top-buffer-med {
	display: block;
	height: 56px;
}
.top-buffer-sm {
	display: block;
	height: 32px;
}
.portfolio-title {
	text-align: center !important;
	width: 100%;
	margin: 0 auto;
	font-weight: 700;
}
.title-break {
	border: solid 1px #323232;
	width: 5%;
	margin: 40px auto 0;
}
.video-background {
		background: #fff;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		width: 100vw;
		height: 100vh;
	}

	.video-background video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
a.resume-btn {
	font-size: 21px;
	color: #323232;
	text-decoration: none;
	margin: 40px auto;
	padding: 16px 72px;
	border-radius: 100px;
	border: solid 2px #FFFF00;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a.resume-btn:hover {
	text-decoration: none;
	border: solid 2px #FFFF00;
	background: #FFFF00;
	color: #fff;
}
a.card-btn {
	color: #323232 !important;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 100px;
	border: solid 2px #FFFF00;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a.card-btn:hover {
	text-decoration: none;
	border: solid 2px #FFFF00;
	background: #FFFF00;
	color: #333 !important;
}
.disabled-btn {
	color: #ababab;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 100px;
	border: solid 2px #989898;
}
.p-card {
	color: #7b7b7b;
	font-weight: 300;
	margin-top: 1.25em;
	margin-bottom: 40px;
}
.header-cta {
	text-align: center;
	color: #fff !important;
	background: #4FBE97;
	padding: 10px;
	border-radius: 10000px;
	width: 30%;
	margin: -54px auto 0;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Footer */

footer {
	background: #212121;
	text-align: center;
	color: #fff;
	width: 100%;
	height: auto;
	padding: 56px 10px;
}
footer a i {
	font-size: 0;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
footer a i:hover {
	color: #FFFF00;
	text-decoration: none;
}
nav a i {
	font-size: 0;
	color: #333;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
nav a i:hover {
	color: #FFFF00;
	text-decoration: none;
}
a i {
	font-size: 0;
	color: #323232;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a i:hover {
	color: #FFFF00;
	text-decoration: none;
}
a i span{
	font-family: 'Work Sans', Helvetica, Arial, sans-serif !important;
	font-size: 14px !important;
	letter-spacing: 0px !important;
	color: #323232;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a i span:hover {
	color: #FFFF00;
	text-decoration: none;
}
footer i {
	font-size: 0;
	margin: 16px 8px;
}

/* Get in Touch */

#get-in-touch {
	padding-top: 100px;
	padding-bottom: 100px;
	font-weight: 300 !important;
	background: #fff;
}

.get-in-touch {
	font-weight: 300 !important;
}

#intro {
	background: #fff;
	margin-top: -28px;
	padding: 100px 48px;
	font-weight: 300 !important;
}

#ux-design {
	background: #fff;
	display: grid;
	column-count: 3;
	row-gap: 20px;
	overflow: hidden !important;
	padding: 48px 80px 48px 48px;
}

.intro {
	text-align: left;
	line-height: 1.5em !important;
	font-weight: 300 !important;
}
h3.intro {
	text-align: left;
	font-weight: 500 !important;
}
h2.intro {
	text-align: left;
	line-height: 1.25em !important;
	font-weight: 500 !important;
	margin-bottom: 16px;
}
.profile {
	background: url(../images/profile.jpg);
	background-position: center;
	background-size: cover;
	width: 160px;
	height: 160px;
	border-radius: 80px;
	margin-bottom: 16px;
}

/* Card ID */

#Rocketguard {
	background: url("../images/thumb-rocketguard.png");
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#Rocketguard:hover {
	background-size: 115%;
}
#Talentto {
	background: url(../images/thumb-talentto.png);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#Talentto:hover {
	background-size: 115%;
}
#HERChoice {
	background: url(../images/thumb-her-choice.png);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#HERChoice:hover {
	background-size: 115%;
}
#Jyseleca {
	background: url(../images/thumb-jyseleca.gif);
	background-position: center;
	background-size: 150%;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#Jyseleca:hover {
	background-size: 165%;
}
#Systane {
	background: url(../images/thumb-systane.png);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#Systane:hover {
	background-size: 115%;
}
#Keytruda {
	background: url(../images/thumb-keytruda.png);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#Keytruda:hover {
	background-size: 115%;
}
#reach-app {
	background: url(../images/thumb-reach-app-2.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#reach-app:hover {
	background-size: 115%;
}
#reach-website {
	background: url(../images/thumb-reach-website.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#reach-website:hover {
	background-size: 115%;
}
#ciarlo {
	background: url(../images/thumb-ciarlo.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#ciarlo:hover {
	background-size: 115%;
}
#cfl-kit {
	background: url(../images/thumb-cfl-kit.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#cfl-kit:hover {
	background-size: 115%;
}
#pc350 {
	background: url(../images/thumb-pc350.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#casa-carbone:hover {
	background-size: 115%;
}
#casa-carbone {
	background: url(../images/thumb-casa-carbone.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#pc350:hover {
	background-size: 115%;
}
#litemode-website {
	background: url(../images/thumb-litemode-website.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#litemode-website:hover {
	background-size: 115%;
}
#echo-app {
	background: url(../images/thumb-echo-app-2.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#echo-app:hover {
	background-size: 115%;
}
#roottabag-app {
	background: url(../images/thumb-roottabag-app-2.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#roottabag-app:hover {
	background-size: 115%;
}
#mbenz-wic {
	background: url(../images/thumb-mbenz-wic.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#mbenz-wic:hover {
	background-size: 115%;
}
#stylu {
	background: url(../images/thumb-stylu.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#stylu:hover {
	background-size: 115%;
}
#alectra {
	background: url(../images/thumb-alectra.jpg);
	background-position: center;
	background-size: 100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#alectra:hover {
	background-size: 115%;
}
#EuroLife {
	background: url(../images/thumb-ELB.gif);
	background-position: center;
	background-size: cover;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#GrowMore {
	background: url(../images/thumb-cannvas-grow.gif);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	background-color: #F3F3F3; 
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#EGamerLive {
	background: url(../images/thumb-EGL.png);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	background-color: #2C2C2C; 
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#Cannvas {
	background: url(../images/thumb-cannvas.jpg);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#Cannvas:hover {
	background-size: 115%;
}
#GrandeCheese {
	background: url(../images/thumb-grande-cheese.gif);
	background-position: center;
	background-size: contain;
	background-color: #ffffff;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
/* Parallax */

.scene {
	width: 100%;
	height: 100vh;
}
.layer {
	width: 100%;

	bottom: 0;
}
.header-container {
	padding-top: 0 !important;
	margin-top: 30px;
	position:relative;
    height:100vh;
}

/* Navbar */


#menuToggle
{
  display: block;
  position: relative;
  top: 0px;
  right: 20px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: 18px;
  right: -8px;
  
  float: right;

  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  top: -44px;
  margin-bottom: 5px;
  position: relative;

  background: #323232;
  border-radius: 2px;

  float: right;
  clear: both;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle input:hover ~ span
{
    background: #FFFF00 !important;
}
#menuToggle input ~ span
{
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#menuToggle span:nth-last-child(3)
{
  width: 24px;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#menuToggle input:hover ~ span:nth-last-child(3)
{
  width: 33px;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  width: 33px;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #333;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 100%;
  height: 107vh;
  margin: -63px 0 200px 20px;
  padding: 50px;
  padding-top: 125px;
  
  background: #FFFF00ee;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(0%, -100%);
  
  transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
  overflow: hidden !important;
}
#menu a {
  color: #333 !important;
  font-weight: 800;
}
#menu li:hover {
  opacity: 0.8 !important;
  padding-right: 25px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}
a#down {
	position: absolute; 
	bottom: 20px; 
	right: 20px;
	color: #FFFF00 !important;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a#down:hover {
	bottom: 28px;
}
.reach-hero {
	min-height: auto; 
	max-width: 100%; 
	height: 100vh; 
	width: auto !important; 
	margin: 0 auto;
}
.hero {
	min-height: auto; 
	max-width: 100%; 
	height: 100vh; 
	width: auto !important; 
	margin: -30px auto 0;
}
.case-study-zoom {
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a {
	color: #FFFF00 !important;
	text-decoration: none !important;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
footer a {
	text-decoration: none !important;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
footer a img {
	width: 240px;
	margin: 0 auto;
	opacity: 1;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
footer a img:hover {
	width: 248px;
	text-decoration: none !important;
}
.project-info {
	background: #111;
	position: absolute;
	bottom: 20px;
	left: 20px;
	padding: 12px 12px 4px 12px;
}
.project-info h6{
	color: #fff;
}
.navbar-brand {
  background:#fff;
  float: left;
  height: 70px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  border-bottom-right-radius: 12px;
}
.navbar-brand > img {
	width: 40px !important;
}
a span.nav-logo {
	display: block; 
	width: 40px; 
	height: 40px; 
	background: url('../images/logo-icon-dark.svg');
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a span.nav-logo-white {
	display: block; 
	width: 40px; 
	height: 40px; 
	background: url('../images/logo-icon-ko.svg');
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a span.nav-logo:hover {
	background: url('../images/logo-icon.svg') !important;
	margin-top: 4px !important;
}
a span.nav-logo-white:hover {
	background: url('../images/logo-icon.svg') !important;
	margin-top: 4px !important;
}
a span.footer-logo {
	display: block; 
	width: 40px; 
	height: 40px;
	margin: 0 auto !important;
	background: url('../images/logo-icon-ko.svg');
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a span.footer-logo:hover {
	width: 44px; 
	height: 44px;
	background: url('../images/logo-icon.svg') !important;
}