:root {
  --rmr-red-color: #e13a45; 
  --rmr-grey-color: #808084;
  --rmr-text-color: #333333;
  --rmr-paragraph-color: #444444;
}
body, html {
  background-color: var(--rmr-red-color);
  font-family: 'Nunito Sans', Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
  color: var(--rmr-text-color);
  padding: 0px;
  margin: 0px;
}
a {
  text-decoration: none;
  font-weight: bold;
  color: var(--rmr-text-color);
  transition: all .2s;
}
a:hover {
  color: var(--rmr-red-color);
}
a.selected {
  color: var(--rmr-red-color);
}
a.rmrLink {
  text-transform: uppercase;
  color: var(--rmr-red-color);
  font-size: 0.8em;
}
a.rmrLink::after {
  content: " \21E2";
}
p {
  color: var(--rmr-paragraph-color);
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
#rmrMain {
  background: #fff;
  overflow: auto;
  padding: 0px;
  width: 100%;
  height: 100%;
}
header {
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 1em;
  z-index: 10;
}
#rmrNavigation {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1400px;
}
#rmrNavLogo {
  max-width: 150px;
}
#rmrNavItems {
  float: right;
}
#rmrNavItems .menu {
  clear: both;
  margin-bottom: 0px;
  max-height: 0;
  transition: max-height .2s ease-out;
}
#rmrNavItems ul > li {
  clear: both;
  text-transform: uppercase;
  line-height: 2em;
  list-style-type: none;
  padding-right: 20px;
  font-size: 1.15em;
  float: right;
}
#rmrNavItems ul {
  padding: 0;
  list-style: none;
  overflow: hidden;
}
#rmrNavItems .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}
#rmrNavItems .menu-icon .navicon {
  background: var(--rmr-text-color);
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}
#rmrNavItems .menu-icon .navicon:before, #rmrNavItems .menu-icon .navicon:after {
  background: var(--rmr-text-color);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
#rmrNavItems .menu-icon .navicon:before {
  top: 5px;
}
#rmrNavItems .menu-icon .navicon:after {
  top: -5px;
}
#rmrNavItems .menu-btn {
  display: none;
}
#rmrNavItems .menu-btn:checked ~ .menu {
  max-height: 240px;
}
#rmrNavItems .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
#rmrNavItems .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
#rmrNavItems .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
#rmrNavItems .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, #rmrNavItems .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
#rmrMain > .rmrBigImage {
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#rmrSection.rmrHome h1 {
  font-size: 3.25em;
  line-height: 1.0em;
  color: #fff;
  margin: 0px;
  padding: 90px 0px 0px 0px;
  text-align: center;
  text-shadow: 0px 3px 15px rgba(20, 20, 20, 0.7);
  text-transform: uppercase;
}
p.rmrHomeNotices {
  background: rgba(255, 255, 255, 0.75);
  padding: 25px;
  margin: 80px auto 0px;
  font-size: 1.25em;
}
p.rmrHomeNotices span {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--rmr-red-color);
  font-size: 1em;
}
p.rmrHomeNotices a.rmrLink {
  font-size: 1em;
}
#rmrAppList {
  display: flex;
}
.rmrApp {
  width: 30%;
  padding-right: 5%;
}
.rmrAppImage img {
  border-radius: 50%;
  margin: 0px auto 20px;
  max-width: 85%;
}
.rmrAppName {
  font-size: 1.25em;
  font-weight: bold;
  color: var(--rmr-text-color);
}
#rmrContentSection {
  background: url('/img/icon-rmrdots.png') no-repeat 0px 0px;
  background-size: 100px 25px;
  margin: 0px auto;
  padding-top: 30px;
  width: 90%;
  max-width: 960px;
}
#rmrSection.rmrAbout .rmrBigImage {
  background-image: url('/img/big_people.jpg');
  background-attachment: fixed;
}
#rmrSection.rmrNews .rmrBigImage {
  background-image: url('/img/big_news.jpg');
  background-attachment: fixed;
}
#rmrSection.rmrContact .rmrBigImage {
  background-image: url('/img/big_contact.jpg');
  background-attachment: fixed;
}
#rmrSection.rmrWork .rmrBigImage {
  background-image: url('/img/big_rails.jpg');
  background-attachment: fixed;
}
#rmrSection.rmrPrivacy .rmrBigImage {
  background-image: url('/img/big_desert.jpg');
  background-attachment: fixed;
}
#rmrSection.rmrLab .rmrBigImage {
  background-image: url('/img/big_apps.jpg');
  background-attachment: fixed;
}
#rmrSection.rmr403 .rmrBigImage {
  background-image: url('/img/big_padlock.jpg');
  background-attachment: fixed;
}
#rmrSection.rmr404 .rmrBigImage {
  background-image: url('/img/big_moon.jpg');
  background-attachment: fixed;
}
.rmrFlex {
  display: flex;
}
.rmrRedColor {
  color: var(--rmr-red-color);
}
.rmrEmphasis {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em;
  color: var(--rmr-red-color);
}
.rmrCenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
#rmrSection.rmrClients {
  background-color: #000;
  margin: 30px 0px 20px 0px;
  padding: 10px 0px 0px 0px;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  height: 80px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  background: -webkit-gradient(linear, left top, right top, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  height: 80px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 70s linear infinite;
  animation: scroll 70s linear infinite;
  display: -webkit-box;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: auto;
  width: 200px;
}
.rmrBigImage {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: -65px;
}
.rmrBigImage > h1 {
  color: rgba(255, 255, 255, .9);
  font-size: 6em;
  line-height: 1em;
  margin: 0px auto;
  padding: 650px 0px 0px 0px;
  position: relative;
  bottom: -30px;
  text-align: right;
  width: 90%;
  max-width: 1400px;
}
.rmrBigImage > h1::before {
  content: "#rmr.";
  font-size: 0.6em;
}
p.rmrContactInfo {
  font-size: 1.25em;
  color: #000;
}
p.rmrContactInfo > span {
  text-transform: uppercase;
  color: var(--rmr-red-color);
  font-size: 1em;
  padding-right: 0.5em;
}
.rmrTeamPhoto img {
  border-radius: 50%;
  margin-bottom: 25px;
}
.rmrTeamName {
  padding-top: 8px;
  font-size: 1.5em;
  font-weight: bold;
}
.rmrTeamTitle {
  text-transform: uppercase;
  color: var(--rmr-red-color);
  font-weight: bold;
  line-height: 2em;
}
.rmrTeamBio {
  padding-top: 0px;
}
#rmrTeamMembers {
  display: flex;
}
.rmrTeamMember {
  width: 30%;
  padding: 10px 30px 20px 00px;
  margin-right: 20px;
}
.rmrContentBlock {
  padding: 0px 0px 30px 0px;
}
.rmrContact #rmrContentSection {
  justify-content: space-between;
}
.rmrContentBlock.left-column {
  width: 35%;
}
.rmrContentBlock.right-column {
  position: relative;
  width: 60%;
}
.tooltip {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  opacity: 0;
  font-size: .85em;
  padding: 10px 15px;
  position: absolute;
  text-align: center;
  transition: all 0.7s;
}
.tooltip span {
  font-size: 1.25em;
  font-weight: 700;
}
.tooltip.oc {
  left: -4%;
  top: 47%;
}
.tooltip.nc {
  right: -3%;
  top: 43%;
}
.tooltip::before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0.9);
  border-width: 10px;
  margin-left: -10px;
}
.tooltip::after {
  content: "";
  display: block;
  background: transparent;
  height: 35px;
  width: 100%;
  position: absolute;
  top: -35px;
  left: 0px;
}
.rmrContentBlock.right-column .tooltip:hover {
  opacity: 1;
}
.rmrContentBlock h2 {
  font-size: 2em;
  line-height: 1.15em;
  text-transform: uppercase;
}
.social a {
  display: inline-block;
  margin: 10px 10px 0px 0px;
  max-width: 28px;
}
footer {
  background-color: var(--rmr-grey-color);
  font-size: .85em;
  font-weight: 400;
  line-height: 1.75em;
  padding: 10px 0px;
  width: 100%;
}
#rmrFooter {
  text-align: center;
}
#rmrFooterLinks {
  margin-top: 10px;
}
#rmrFooterLinks a {
  display: inline-block;
  margin: 0px 5px;
  max-width: 28px;
}
#rmrFooterCopyright p, #rmrFooterCopyright a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  #rmrNavItems li {
    clear: none !important;
    float: left !important;
    padding-right: 0px !important;
    padding-left: 30px;
  }
  #rmrNavItems .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  #rmrNavItems .menu-icon {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #rmrSection .rmrBigImage {
    background-attachment: scroll !important;
  }
  .rmrBigImage > h1 {
    font-size: 4em;
    bottom: -20px;
    padding: 450px 0px 0px 0px;
  }
  #rmrContentSection, #rmrAppList, #rmrTeamMembers {
    flex-wrap: wrap;
  }
  .rmrContentBlock.left-column, .rmrContentBlock.right-column {
    width: 100%;
  }
  .rmrApp {
    width: 100%;
    padding-right: 0px;
  }
  .rmrTeamMember {
    width: 100%;
    padding-right: 0px;
  }
}
