@charset "UTF-8";
/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */
/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */
body {
  font: 13px/1.231 sans-serif;
  *font-size: small;
}

/* Hack retained to preserve specificity */
select, input, textarea, button {
  font: 99% sans-serif;
}

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/**
 * Minimal base styles.
 */
/* Always force a scrollbar in non-IE */
html {
  overflow-y: scroll;
}

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: none;
}

ul, ol {
  margin-left: 2em;
}

ol {
  list-style-type: decimal;
}

/* Remove margins for navigation lists */
nav ul, nav li {
  margin: 0;
  list-style: none;
  list-style-image: none;
}

small {
  font-size: 85%;
}

strong, th {
  font-weight: bold;
}

td {
  vertical-align: top;
}

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 15px;
}

textarea {
  overflow: auto;
}

/* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend {
  margin-left: -7px;
}

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* Colors for form validity */
input:invalid, textarea:invalid {
  border-radius: 1px;
  box-shadow: 0px 0px 5px red;
}

.no-boxshadow input:invalid, .no-boxshadow textarea:invalid {
  background-color: #f0dddd;
}

/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection {
  background: #FF5E99;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #FF5E99;
  color: #fff;
  text-shadow: none;
}

/* j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #FF5E99;
}

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
  width: auto;
  overflow: visible;
}

/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/**
 * You might tweak these..
 */
body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* Set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a, a:active, a:visited {
  color: #607890;
}

a:hover {
  color: #036;
}

/**
 * Primary styles
 *
 * Author: 
 */
/**
 * Non-semantic helper classes: please define your styles before this section.
 */
/* For image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
  display: none;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
  zoom: 1;
}

/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */
@media all and (orientation: portrait) {
  /* Style adjustments for portrait mode goes here */
}
@media all and (orientation: landscape) {
  /* Style adjustments for landscape mode goes here */
}
/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}
/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img {
    page-break-inside: avoid;
  }

  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}
#wrapper {
  width: 100%;
  max-width: 960px;
  max-height: 550px;
  margin-top: 10px;
  float: left;
  position: relative;
  /* On older OS versions "position" and "z-index" must be defined, */
  z-index: 1;
  /* it seems that recent webkit is less picky and works anyway. */
  overflow: hidden;
  border: 0px solid;
  border-color: yellow;
}

#scroller {
  width: 21120px;
  max-height: 500px;
  float: left;
  margin: 0px;
  padding: 0;
  z-index: 1;
  border: 0px solid;
  border-color: red;
}

#scroller ul {
  list-style: none;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
  text-align: left;
  border: 0px solid;
  border-color: red;
}

#scroller li {
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  float: left;
  width: 950px;
  height: 100%;
  max-height: 500px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 2;
  border: 0px solid;
  border-color: rgba(231, 231, 231, 0.8);
}

#scroller li .imgContainer {
  width: 588px;
  padding-right: 1px;
  border: 0px solid;
  border-color: pink;
  float: right;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

#scroller li img {
  width: 100%;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

#scroll-nav {
  position: relative;
  margin-top: -40px;
  margin-right: 8%;
  width: 440px;
  height: 25px;
  float: right;
  color: rgba(51, 51, 51, 0.9);
  z-index: 10;
  font-size: 1.15em;
  padding-top: 10px;
  border: 0px solid;
  border-color: green;
}

#arrow-next {
  background: url(../img/slider_arrow_next.png) no-repeat center top transparent;
  margin-left: 97.5%;
  height: 270px;
  width: 40px;
  position: absolute;
  top: 43%;
  border: 0px solid;
  z-index: 1202;
  khtml-opacity: .50;
  -moz-opacity: .50;
  -ms-filter: "alpha(opacity=50)";
  filter: alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
  opacity: .50;
}

#arrow-prev {
  background: url(../img/slider_arrow_prev.png) no-repeat center top transparent;
  margin-left: -8%;
  height: 270px;
  width: 40px;
  position: absolute;
  top: 43%;
  border: 0px solid;
  z-index: 1203;
  -khtml-opacity: .50;
  -moz-opacity: .50;
  -ms-filter: "alpha(opacity=50)";
  filter: alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
  opacity: .50;
}

#prev, #next {
  float: left;
  font-weight: bold;
  font-size: 1.8em;
  color: rgba(220, 90, 17, 0.9);
  width: 30px;
  height: 100%;
  border: 0px solid;
  border-color: pink;
  margin-top: -3px;
  padding: 2px;
}

#prev {
  padding-left: 4px;
}

#next {
  float: right;
  text-align: right;
  padding-right: 4px;
}

#indicator, #indicator > li {
  display: block;
  float: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

#indicator {
  padding: 0px 0 0 0px;
  border: 0px solid;
  border-color: blue;
}

#indicator > li {
  text-indent: -9999em;
  width: 13px;
  height: 13px;
  border-radius: 6px;
  background: #888;
  overflow: hidden;
  margin-right: 7px;
}

#indicator > li.active {
  background: #cc6633;
}

#indicator > li:last-child {
  margin: 0;
}

/*  ************************************************************ */
/*  Media Queries 
/*  ************************************************************ */
@media only screen and (max-width: 1023px) {
  #wrapper {
    width: 475px;
    max-width: 475px;
    min-height: 800px;
  }

  #scroller li {
    width: 475px;
    height: 100%;
    max-width: 475px;
    height: 100%;
    border: 0px solid;
    border-color: pink;
  }

  #scroller li .imgContainer {
    width: 300px;
    border: 0px solid;
    border-color: pink;
    float: left;
  }

  #arrow-next {
    border: 0px solid;
  }

  #scroll-nav {
    float: left;
    margin-top: 40%;
  }
}
/* iPad [landscape]*/
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  #arrow-next {
    margin-left: 90%;
    top: 80%;
  }

  #arrow-prev {
    margin-left: 0%;
    top: 80%;
  }
}
/* iPad [portrait]*/
@media only screen and (max-width: 1024px) and (orientation: portrait) {
  #arrow-prev {
    margin-left: -16%;
  }
}
/* Small */
@media only screen and (max-width: 767px) and (orientation: portrait) {
  #wrapper {
    margin-top: -15px;
  }

  #scroller li .imgContainer {
    width: 300px;
    border: 0px solid;
    border-color: pink;
    float: left;
  }

  #arrow-next {
    margin-right: 25px;
    right: 2%;
    top: 14%;
    width: 22px;
  }

  #arrow-prev {
    margin-left: -3%;
    top: 14%;
    width: 22px;
  }

  #indicator > li {
    text-indent: -9999em;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #888;
    overflow: hidden;
    margin-right: 5px;
  }
}





















/*************************************************
 * Site-Specifc CSS (after imports)
*************************************************/
/*************************************************
 * MixIns
*************************************************/
/********************************************************/
html, body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Rokkitt";
  background: #fff;
}

a {
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  width: 0%;
  color: #fff;
  height: 50px;
  z-index: 40000;
  /* Adds shadow to the bottom of the bar */
  box-shadow: 0px 0px 0px #777 ;
  /* Adds the transparent background */
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(51, 51, 51, 0.6)), to(rgba(150, 150, 150, 0.4)));
}
header #logo {
  display: inline;
  font-size: 2em;
  color: #555;
  padding-top: 9px;
  padding-left: 25px;
  float: left;
  width: 30%;
  min-width: 320px;
  border-style: solid;
  border-width: 0px;
}
header #logoDesc {
  display: inline;
  color: #777;
  margin-left: .2em;
  letter-spacing: .02em;
  font-size: .8em;
  border-style: solid;
  border-width: 0px;
}

#navigation {
  text-align: center;
  padding-top: 12px;
  z-index: 50000;
}
#navigation a {
  font-size: 1.5em;
  padding-left: 1.2em;
  padding-right: 1.2em;
  line-height: 1.5em;
  color: #fff;
  text-decoration: none;
}
#navigation a:hover {
  color: #ff9966;
}
#navigation .active {
  color: #ff9966;
}
#navigation ul {
  float: right;
  padding-top: .25em;
  padding-right: 5%;
}
#navigation li {
  float: left;
}

/* ---------------For Mobile -----------*/

#navigation_m {
  display: none;
  text-align: center;
  padding-top: 0em;
  padding-left: 3em;
  z-index: 50000;
}
#navigation_m a {
  font-size: 1.5em;
  padding-left: .1em;
  padding-right: .5em;
  line-height: 1.2em;
  color: #fff;
  text-decoration: none;
}
#navigation_m a:hover {
  color: #ff9966;
}
#navigation_m .active {
  color: #ff9966;
}
#navigation_m ul {
  float: left;
}
#navigation_m li {
    float: left;
    line-height: .5em;
    font-size: 1.3em;
}




article {
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) ;
  background-color: rgba(241, 241, 241, 0.5);
  margin-top: 8%;
  padding: 2.3em 2.3em;
  z-index: 1500;
}
article h2 {
  font-size: 2.4em;
  line-height: .5em;
  color: #999;
}
article p {
  font-size: 1.2em;
  line-height: 1.1em;
  margin-top: 1em;
  color: #585858;
}
article a {
  color: #ff9966;
}
article a:visited {
  color: #ff9966;
}

/*use min-width for iPad*/
.sectionContent {
  height: 1500px;
  width: 100%;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
}

/* About */
#about article {
  width: 60%;
  margin-left: 30%;
  margin-top: 10%;
}

#about .screenshot {
  background: url() no-repeat transparent;
  margin-left: 12%;
  margin-top: 300px;
  width: 300px;
  height: 1000px;
  position: absolute;
  top: 0px;
  border: 0px solid;
  border-color: pink;
}

/* Client Work */
#work article {
  width: 950px;
  height: 590px;
  margin-left: 6%;
  margin-top: 6%;
  position: absolute;
  font-size: 1em;
  border-style: solid;
  border-width: 0px;
}

#work li .workContent {
  width: 345px;
  max-height: 590px;
  float: left;
  font-size: 1em;
  color: #585858;
  text-decoration: none;
  border: 0px solid;
  border-color: green;
}

#work li .workTitle {
  margin-top: 12px;
  font-size: 1.4em;
  line-height: 1.6em;
  background: #585858;
  color: white;
  font-weight: bold;
  padding: 6px 4px 3px 3px;
  padding-top: 10px;
  border-radius: 2px;
}

/* Services */
#services article {
  z-index: 22;
  margin-left: 4%;
  width: 40%;
  height: 290px;
  position: absolute;
    border: 0px solid;
  border-color: green;
}

#services ul  {
  width: 100%;
}

#services li  {
  width: 345px;
  max-height: 590px;
  float: left;
  font-size: 1.3em;
  color: #585858;
  text-decoration: none;
  border: 0px solid;
  border-color: green;
}

#services .screenshot {
  background: url() no-repeat transparent;
  margin-left: 50%;
  width: 600px;
  height: 1000px;
  position: absolute;
  top: 0px;
  border: 0px solid;
  border-color: pink;
}

/* Groovable */
#contact .screenshot {
  background: url() no-repeat transparent;
  margin-left: 8%;
  width: 500px;
  height: 1000px;
  position: absolute;
  top: 0px;
  border: 0px solid;
  border-color: pink;
}

#contact article {
  margin: 200px 0 0 50%;
  position: absolute;
  top: 0;
  width: 40%;
  margin-left: 40%;
}

/* OOTO */
#ooto article {
  z-index: 22;
  margin-left: 5%;
  top: 5%;
  width: 40%;
  position: absolute;
}

#ooto .screenshot {
  background: url() no-repeat transparent;
  margin-left: 55%;
  width: 600px;
  height: 1000px;
  position: absolute;
  top: 0px;
  border: 0px solid;
  border-color: pink;
}




























/*  ************************************************************ */
/*  Media Queries 
/*  ************************************************************ */
/*  ************************************************************ */
/*  ************************************************************ */
/* iPad */
/*  ************************************************************ */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header {
    height: 70px;
  }

  #navigation_m{
    display: none;
  } 

  #navigation a {
    font-size: 1.3em;
  }

  #navigation ul {
    margin-top: -.5em;
    margin-right: -3em;
  }

  #about {
    background: url(../img/slide1x2_m.jpg) 50% 0/no-repeat fixed;
  }

  #work {
    background: url(../img/slide2x2_m.jpg) 50% 0/no-repeat fixed;
  }

  #services {
    background: url(../img/slide3x2_m.jpg) 50% 0/no-repeat fixed;
  }

  #groovable {
    background: url(../img/slide4x2_m.jpg) 50% 50%/no-repeat fixed;
  }

  #ooto {
    background: url(../img/slide1x2.jpg);
  }

  .sectionContent {
  height: 1500px;
  width: 100%;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
}
}
/* iPad [landscape]*/
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  
    #navigation_m{
    display: none;
  } 


  .sectionContent {
    width: 100%;
    min-width: 1024px;
  }

  #about article {
    margin-top: 8%;
  }


  #about .screenshot {
    visibility: hidden;
    margin-top: 7000px;
  }


  #work article {
    height: 550px;
    margin-left: .5%;
    margin-top: 8%;
  }

  .sectionContent {
  height: 1500px;
  width: 100%;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
}
}
/* iPad [portrait]*/
@media only screen and (max-width: 768px) and (orientation: portrait) {


    #navigation_m{
    display: none;
  } 

  .sectionContent {
    width: 100%;
    min-width: 768px;
  }

  #about article, #services article, #contact article, #ooto article {
    margin-top: 70px;
  }

  #about .screenshot {
    visibility: hidden;
    margin-top: 7000px;
  }

  #work article {
    margin-top: 70px;
    margin-left: 10%;
    max-height: 900px;
    min-height: 800px;
    width: 480px;
    }

    .sectionContent {
  border-width: 1px;
  border-color: #fff;
  }
}
/*  ************************************************************ */
/*This helps cover small on desktop - need to clean-up */
@media only screen and (max-width: 767px) {
  
  header {
    height: 95px;
  }



header #logo {
  font-size: 2.1em;
  color: #555;
  padding-top: 15px;
  padding-left: 1.2em;
  width: 100%;
  min-width: 320px;
  border-style: solid;
  border-width: 0px;
}
header #logoDesc {
  display: inline;
  color: #ccc;
  margin-left: .05em;
  letter-spacing: .03em;
  font-size: .8em;
}




  article {
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.0) ;
  background-color: rgba(231, 231, 231, 0.0);
  padding: 2.5em;
  z-index: 1500;

}

  article h2 {
    display: none;
  }

  article p {
    width: 90%;
    padding: 0;
  }

  #navigation {
    display: none;
  }

  #navigation_m{
    display: block;

  } 

  .sectionContent {
    width: 100%;
    min-width: 768px;
    position: relative;
    border-style: solid;
    border-width: 0px;
    border-color: #555;
    font-size: 1.35em;
     margin-top: 15px;
  }

  #about article, #services article, #contact article, #ooto article {
    margin-left: -1.5%;
    width: 40%;
    min-width: 305px;
  }

  #work article {
    margin-top: 90px;
    margin-left: -1.5%;
    max-height: 2000px;
    width: 50%;
    min-width: 315px;
  }

  #indicator{
    display: none
  }

  #about .screenshot, #services .screenshot, #ooto .screenshot {
    display: none;
  }

  #work li .workContent {
    float: left;
    width: 50%;
    min-width: 305px;
    min-height: 800px;
    font-size: .8em;
  }

  #arrow-next{
     margin-right: -25px;
      right: 25%;
  }


  #arrow-prev{

      left: 6%;
  }

 

   #work article h2 {
    display: none;
  }

  #services  article{
    top: -200px;
    max-width: 760px;
    min-height: 800px;
    border-style: solid;
    border-width: 0px;
    border-color: red;
  }


}


