/* Flexbox Grid */

.container {
  margin-right: auto;
  margin-left: auto;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: right;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 48rem) {
  .container {
    width: 46rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }

  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 62rem) {
  .container {
    width: 61rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }

  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 75rem) {
  .container {
    width: 71rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
  }

  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: right;
  }

  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

/*********NORMALIZE*******/

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

figcaption,
figure,
main { 
  display: block;
}
figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box; 
  height: 0; 
  overflow: visible; 
}

pre {
  font-family: monospace, monospace; 
  font-size: 1rem; 
}

a {
  background-color: transparent; 
  -webkit-text-decoration-skip: objects; 
}

abbr[title] {
  border-bottom: none; 
  text-decoration: underline; 
  text-decoration: underline dotted; 
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; 
  font-size: 1rem; 
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25rem;
}

sup {
  top: -0.5rem;
}

audio,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

/* Forms */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; 
  font-size: 100%; 
  line-height: 1.15; 
  margin: 0; 
  border: none;
}

button,
input { 
  overflow: visible;
}

button,
select { 
  text-transform: none;
}

button,
html [type="button"], 
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; 
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; 
  color: inherit; 
  display: table; 
  max-width: 100%; 
  padding: 0; 
  white-space: normal; 
}

progress {
  display: inline-block; 
  vertical-align: baseline; 
}

textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; 
  padding: 0; 
}


[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield; 
  outline-offset: -2px; 
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; 
  font: inherit; 
}

details, 
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*********GENERAL*********/

* {
    box-sizing: border-box;
}

blockquote, body, button, dd, dl, figure, h1, h2, h3, h4, h5, h6, ol, p, pre, ul {
    margin: 0;
    padding: 0;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: underline;
    display: block;
    color: #9c2169;
}

p a {
    display: inline-block;
}

button, select, input, textarea,
button:focus, select:focus, input:focus, textarea:focus,
button:active, select:active, input:active, textarea:active,
a, a:active, a:focus
{outline: none;}

a, button, input, select, textarea, .burger, label {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

img, video {
    max-width: 100%;
    width: 100%;
}

p {
    padding-top: 1rem;
    line-height: 1.8;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder, 
select::-webkit-input-placeholder {
  color: #a4a4a4;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #a4a4a4;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #a4a4a4;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder{
  color: #a4a4a4;
}

/****FONT****/

/*Geomanist */

@font-face {
    font-family: 'geomanistregular';
    src: url('../font/geomanist-regular-webfont.eot');
    src: url('../font/geomanist-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/geomanist-regular-webfont.woff2') format('woff2'),
         url('../font/geomanist-regular-webfont.woff') format('woff'),
         url('../font/geomanist-regular-webfont.ttf') format('truetype'),
         url('../font/geomanist-regular-webfont.svg#geomanistregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geomanistregular';
    src: url('../font/geomanist-medium-webfont.eot');
    src: url('../font/geomanist-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/geomanist-medium-webfont.woff2') format('woff2'),
         url('../font/geomanist-medium-webfont.woff') format('woff'),
         url('../font/geomanist-medium-webfont.ttf') format('truetype'),
         url('../font/geomanist-medium-webfont.svg#geomanistregular') format('svg');
    font-weight: bold;
    font-style: normal;

}

/* Cartograph */

@font-face {
    font-family: 'Cartograph';
    src: url('../font/CartographCF-Light.woff')
    format('embedded-opentype'),
         url('../font/CartographCF-Light.woff2') format('woff2'),
         url('../font/CartographCF-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cartograph';
    src: url('../font/CartographCF-Heavy.woff')
    format('embedded-opentype'),
         url('../font/CartographCF-Heavy.woff2') format('woff2'),
         url('../font/CartographCF-Heavy.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'geomanistregular', sans-serif;
    font-size: 1rem;
    color: #0d0b0b;
    background-color: #f2f3ef;
}

@-webkit-keyframes autofill {
    to {
        background: white;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

a.btn_trans {
    display: inline-block;
    background-color: #1d1c1c;
    color: #f2f3ef;
    padding: 1rem 1.5rem;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 2rem;
    text-transform: uppercase;
}

a.btn_trans:hover, a.btn_trans:focus, a.btn_trans:active {
    background-color: #9c2169;
    color: #f2f3ef;
}


.site_section {
    padding: 12rem 0;
}

.row {
    height: 100%;
}

.grey {
    background-color: #c7c7cd;
}

/*********NAVIGATION*********/

/*NAVIGATION*/

header {
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
    position: fixed;
}

.burger-check, .burger-checkdropdown {
	display: none;
}
  
.hamburger {
  padding: 1.5rem 1rem;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger-box {
  width: 2rem;
  height: 1.5rem;
  display: inline-block;
  position: relative; }
    
.hamburger--3dxy .hamburger-box {
  perspective: 80px; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 2rem;
    height: 4px;
    background-color: #0d0b0b;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
    
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
    
.hamburger-inner::before {
    top: -10px; }
    
.hamburger-inner::after {
    bottom: -10px; }
    
.hamburger--3dxy .hamburger-inner {
  top: 12px;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy .hamburger-inner::before {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
    
.burger-check:checked ~ .hamburger--3dxy .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent; }
    
.burger-check:checked ~ .hamburger--3dxy .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
    
.burger-check:checked ~ .hamburger--3dxy .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }
    
.burger-check:checked ~ .nav-items{
    display: block;
}

.burger-check:checked + label {
    position: fixed;
} 
    
.nav-item > label {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}
    
.mobile-nav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
    
.slide-in-nav {
    position: absolute;
    top: 0;
    width: 100%;
    transition: all ease .6s;
    background-color: #f2f3ef;
    height: 0;
    -webkit-transition: height 500ms ease;
    -moz-transition: height 500ms ease;
    -o-transition: height 500ms ease;
    transition: height 500ms ease;
    overflow: hidden;
    opacity: -1;
    z-index: -1;
    box-shadow: 0 4px 5px rgba(0,0,0,0.25);
}
    
.slide-in-nav .row {
    height: 100vh;
}
    
.slide-in-nav .col-xs-12 {
    padding: 0;
}
    
.slide-in-nav::-webkit-scrollbar { 
    display: none; 
}
    
label[for="mobile-burger"] {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
}
    
#mobile-burger:checked ~ .slide-in-nav {
    height: 100vh;
    opacity: 1;
}
    
#mobile-burger:checked ~ body {
    overflow: none;
}
    
.mob-nav .nav-item:checked, .mob-nav .nav-item:focus, .mob-nav .nav-item:active {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}
   
.mob-nav .nav-item>a, .mob-nav .nav-item>label {
    text-decoration: none;
    color: #0d0b0b;
    cursor: pointer;
    padding: 2rem 0;
    display: inline-block;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    font-size: 5rem;
    font-weight: bold;
    font-family: 'Cartograph', sans-serif;
    padding-right: 3rem;
} 
    
.mob-nav .nav-item>a:hover, .mob-nav .nav-item>a:focus, .mob-nav .nav-item>a:active, .mob-nav .nav-item>a.active, .mob-nav .nav-item label:hover, .mob-nav .nav-item label:focus {
    color: #9c2169; 
}
    
.dropdown-content {
    display: none;
}
    
#drop:checked ~ .dropdown-content {
    display: block;
    position: inherit;
    opacity: 1;
    visibility: visible;
}
    
.nav-item>.dropdown-content>a:hover {
    background-color: transparent;
} 
    
.burger-check:checked + label {
    position: fixed;
}
    
.logo-wrap {
    padding: 1rem 0;
}
    
img.logo {
    width: 3rem;
    margin-left: 1rem;
}

@media only screen and (max-width: 75rem) {

.mob-nav .nav-item > a, .mob-nav .nav-item > label {
    font-size: 5rem;
}
    
}

@media only screen and (max-width: 62rem) {

.mob-nav .nav-item > a, .mob-nav .nav-item > label {
    font-size: 3.5rem;
}
    
}

@media only screen and (max-width: 48rem) {

.mob-nav .nav-item > a, .mob-nav .nav-item > label {
    font-size: 3rem;
    padding: 1.5rem;
}
    
}

@media only screen and (max-width: 30rem) {

.mob-nav .nav-item>a, .mob-nav .nav-item>label {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 2.5rem;
}
    
}

/******FOOTER STYLE*****/ 

footer {
    background-color: #0d0b0b;
    color: #f2f3ef;
    padding: 3rem 1.2rem !important;
}

footer .bottom_row p {
    display: inline-block;
}

footer .bottom_row .lang {
    text-align: right;
}

footer .bottom_row .lang p {
    padding-left: 1rem;
}

footer .bottom_row a {
    text-decoration: none;
}

@media only screen and (max-width: 75rem) {
    
}

@media only screen and (max-width: 62rem) {
    
}

@media only screen and (max-width: 48rem) {

footer .bottom_row, footer .bottom_row .lang {
    text-align: center;
}
    
}

@media only screen and (max-width: 30rem) { 
    
}

/*********FONT STYLING*******/

h1, h2, h3, h5, h6, #main_hero_content p {
    font-family: 'geomanistregular', sans-serif;
    line-height: 1.7;
    font-weight: normal;
}


/******PORTFOLIO PAGE STYLE*****/

.hero_content {
    height: 60vh;
}

.hero_content h1, #main_hero_content p {
    margin-top: 0;
}

.hero_content p {
    font-size: 2rem;
}

/******CONTACT PAGE STYLE*****/

.contact .container {
    height: 100%;
    width: 100%;
}

#contactpage .hero_content {
    background-color: #f2f3ef;
    height: 95vh;
}

a.emailadd {
    color: #9c2169;
    font-size: 5rem;
    font-family: 'geomanistregular', sans-serif;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    line-height: 1.3;
}

/******ABOUT PAGE STYLE*****/

#aboutpage .hero_content .container, #aboutpage .cando .container {
    height: 100%;
}

#aboutpage .info {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

#aboutpage .info p {
    font-size: 1.7rem;
    margin-top: 0;
    padding-top: 3rem;
}

#aboutpage .info h3 {
    margin-top: 2.5rem;
}

#aboutpage h2.section_header {
    font-size: 4rem;
}

#aboutpage .intro {
    background-color: #fefefe;
    color: #252323;
    text-align: left;
}

#aboutpage .intro p {
    padding-top: 0;
}

#aboutpage #support-os {
    background-color: #f6f6f6;
    color: #252323;
}

#aboutpage #support-cr {
    background-color: #f2f3ef;
    color: #252323;
}

#aboutpage #support-ed {
    background-color: #f9f9f9;
}

#aboutpage #support-cr .coins {
    margin-top: 3rem;
}

#aboutpage #support-cr .coins a img {
    width: 8rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#aboutpage #team {
    background-color: #fefefe;
    color: #252323;
}

#aboutpage span.line {
    display: inline-block;
    border-bottom: 10px solid #252323;
    width: 30%;
    margin-top: 1rem;
}

#team .meet-team {
    margin-top: 4rem;
}

#team .meet-team .col-xs-4 {
    background-color: #252323;
    -ms-flex-preferred-size: 23rem;
    flex-basis: 23rem;
    max-width: 23rem;
    margin-top: 1rem;
}

#team .meet-team .col-xs-4.ghost {
    opacity: 0;
}

#team .meet-team .about-team {
    position: relative;
}

#team .meet-team .about-team img {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

#team .meet-team .about-team:hover img {
    opacity: 0.1;
}

#team .meet-team .about-team p.bio {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 2rem;
    left: 2rem;
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
    padding-right: 2rem;
    padding-top: 0;
}

#team .meet-team .about-team:hover p.bio {
    opacity: 1;
}

#team .meet-team {
    color: #f2f3ef;
}

#team .meet-team h3 {
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 2rem 2rem 0 2rem;
}

#team .meet-team p.team-title {
    padding-top: 0;
    font-size: 1.2rem;
    opacity: 0.5;
    padding: 0 2rem 2rem 2rem;
}

@media only screen and (max-width: 75rem) {

#aboutpage h2.section_header {
    font-size: 3rem;
}  
    
#aboutpage .info p {
    font-size: 2rem;
}
    
#team .meet-team .col-xs-4 {
    background-color: #252323;
    -ms-flex-preferred-size: 19.6666rem;
    flex-basis: 19.6666rem;
    max-width: 19.6666rem;
}
    
}

@media only screen and (max-width: 62rem) {
    
.site_section {
    padding: 6rem 0;
}
    
#team .meet-team .col-xs-4 {
    background-color: #252323;
    -ms-flex-preferred-size: 22rem;
    flex-basis: 22rem;
    max-width: 22rem;
    margin-top: 2rem;
}
    
a.emailadd {
    font-size: 4rem;
}
    
}

@media only screen and (max-width: 48rem) {
    
.hero_content {
    padding: 0 3rem;
}
    
#team .meet-team .col-xs-4 {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
    max-width: 49%;
    margin-top: 1rem;
}
    
a.emailadd {
    font-size: 3rem;
} 
    
.site_section {
    padding: 6rem 1.5rem;
}
    
#kovrilogo #kovrilogoidea, #kovrilogo #kovrilogospace {
    background-size: 90%;
    height: 40vh;
}
    
#kovrilogo .hero_content {
    background-size: 90%;
}
    
#aboutpage .info p {
    font-size: 1.5rem;
    padding-top: 1rem;
}
    
}

@media only screen and (max-width: 42rem) { 
    
}

@media only screen and (max-width: 35rem) { 
    
a.emailadd {
    font-size: 1.7rem;
}
    
.site_section {
    padding: 6rem 1.5rem;
}
    
#aboutpage h2.section_header {
    font-size: 2.5rem;
}
    
#team .meet-team {
    margin-top: 2rem;
}
    
#team .meet-team .col-xs-4 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}
    
}

@media only screen and (max-width: 30rem) {

.hero_content {
    padding: 0 1rem;
    height: 50vh;
} 
    
#aboutpage h2.section_header {
    font-size: 2rem;
}
    
#contactpage .hero_content {
    height: 80vh;
}
    
}

@media only screen and (max-width: 22rem) {
    
}

/******PRIVACY POLICY & TERMS OF SERVICE PAGES STYLE*****/

#privacy-policy .hero_content, #termsofservice .hero_content {
    background-color: #f2f3ef;
    height: 50vh;
    margin-top: 0;
}

#privacy-policy h1, #termsofservice h1 {
    font-size: 4rem;
}

#policy .center-xs, #terms .center-xs {
    text-align: left;
}

#privacy-policy .hero_content h1, #termsofservice .hero_content h1 {
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-weight: bold;
}

#privacy-policy .hero_content .container, #privacy-policy .cando .container, #termsofservice .hero_content .container {
    height: 100%;
}

#privacy-policy .policy, #termsofservice #terms {
    background-color: #fefefe;
    color: #252323;
    height: auto;
    padding: 5rem 0;
    text-align: left !important;
}

#privacy-policy #policy {
    background-color: #fefefe;
    color: #252323;
    padding: 5rem 0;
}

#privacy-policy .hero_content p, #termsofservice .hero_content p {
    font-size: 1rem;
}

#privacy-policy #policy .info, #termsofservice #terms .info {
    margin-top: 5rem;
}

#privacy-policy #policy .info:first-of-type, #termsofservice #terms .info:first-of-type {
    margin-top: 0;
}

#privacy-policy .automessage {
    border: 0 !important;
    height: 200px;
    width: 100%;
    margin-top: 3rem;
    background-color: #efefef;
    font-family: 'geomanistregular', sans-serif;
    font-size: 1rem;
    padding: 2rem;
}

#privacy-policy .automessage body {
    margin: 0 !important;
}

@media only screen and (max-width: 75rem) {

}

@media only screen and (max-width: 62rem) {
    
}

@media only screen and (max-width: 35rem) {
    
#privacy-policy h1, #termsofservice h1 {
    font-size: 3.2rem;
}    
    
}

@media only screen and (max-width: 30rem) {
    
}

/*HOME*/

#main_hero_content h1 {
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-size: 9rem;
    font-weight: bold;
}

span.thin {
    font-weight: normal;
}

#main_hero_content h3, .hero_content h3 {
    font-size: 3rem;
}

#main_hero_content .main-btns {
    margin-top: 5rem;
}

#main_hero_content .main-btns a {
    background: #252323;
    color: #f2f3ef;
    padding: 1.5rem 2rem;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: bold;
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    text-decoration: none;
    margin-top: 2rem;
}

.main-btn a {
    background-color: #252323;
    color: #f2f3ef;
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-weight: bold;
    text-decoration: none;
    padding: 5rem;
}

.the-arrow {
  width: 48px;
  transition: all 0.2s;
}
.the-arrow.-left {
  position: absolute;
  top: 50%;
  left: 2rem;
}
.the-arrow.-left > .shaft {
  width: 40px;
  background: #f2f3ef;
    border-radius: 1px;
}
.the-arrow.-left > .shaft:before, .the-arrow.-left > .shaft:after {
  width: 18px;
    border-radius: 1px;
}
.the-arrow.-left > .shaft:before {
  transform: rotate(45deg);
}
.the-arrow.-left > .shaft:after {
  transform: rotate(-45deg);
}

.the-arrow > .shaft {
  display: block;
  height: 5px;
  position: relative;
  transition: all 0.2s;
  transition-delay: 0;
  will-change: transform;
}
.the-arrow > .shaft:before, .the-arrow > .shaft:after {
  background-color: #f2f3ef;
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  right: -3px;
  transition: all 0.2s;
  transition-delay: 0;
}
.the-arrow > .shaft:before {
  transform-origin: top right;
    top: 2px;
    transform: rotate(45deg);
}
.the-arrow > .shaft:after {
  transform-origin: bottom right;
    bottom: 2px;
    transform: rotate(45deg);
}

.animated-arrow {
  position: relative;
  transition: all 0.2s;
}
.animated-arrow:hover {
  color: #f2f3ef;
}
.animated-arrow:hover > .the-arrow.-left > .shaft {
  width: 64px;
  background-color: #eaeaea;
}
.animated-arrow:hover > .the-arrow.-left > .shaft:before, .animated-arrow:hover > .the-arrow.-left > .shaft:after {
  width: 18px;
  background-color: #eaeaea;
}

.animated-arrow:hover > .main {
  transform: translateX(32px);
}

.animated-arrow > .main {
  display: flex;
  align-items: center;
  transition: all 0.2s;
    padding-left: 4rem;
}

.animated-arrow > .main > .the-arrow {
  position: relative;
}

h2.section_header {
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-weight: bold;
    font-size: 3rem;
}

.pre_main_services {
    background-color: #252323;
    color: #f2f3ef;
    position: relative;
    height: 6rem;
}

.pre_main_services .col-sm-6 {
    margin-left: 50%;
}

.pre_main_services:after {
    content:'';
    display: block;
    width: 50%;
    height: 100%;
    background-color: #f2f3ef;
    position: absolute;
    left: 0;
    top: 0;
}

.wrap {
  position: relative;
  width: 71rem;
  height: 34rem;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.tabs {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  float: left;
}

.tab-height, .button {
  height: 125px;
  line-height: 125px;
}

.tab {
  display: none;
}

.button {
  margin: 0;
  padding: 0 2rem;
  display: block;
  position: relative;
  width: 50%;
  text-align: left;
  cursor: pointer;
  font-family: 'Cartograph', 'geomanistregular', sans-serif; 
  font-weight: bold;
  font-size: 2rem;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

#button--1:before, #button--2:before, #button--3:before, #button--4:before {
    content: '';
    height: 4px;
    width: 3rem;
    background: white;
    position: absolute;
    top: 50%;
    left: 0;
    display: none;
}

.display {
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.tabinner {
  margin: 30px 0;
  padding: 0;
  display: block;
  position: relative;
  width: 100%;
  font-size: 2rem;
  font-family: 'geomanistregular', sans-serif;
  letter-spacing: 0.03rem;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.display h3 {
    display: none;
}

#tab--1:checked ~ #button--1,
#tab--2:checked ~ #button--2,
#tab--3:checked ~ #button--3,
#tab--4:checked ~ #button--4 {
   padding-left: 4rem;
}

#tab--1:checked ~ #button--1:before,
#tab--2:checked ~ #button--2:before,
#tab--3:checked ~ #button--3:before,
#tab--4:checked ~ #button--4:before {
    display: block;
}

#tab--1:checked ~ #display--1,
#tab--2:checked ~ #display--2,
#tab--3:checked ~ #display--3,
#tab--4:checked ~ #display--4 {
  display: block;
}


.pre_main_work {
    background-color: #c7c7cd;
    color: #252323;
    position: relative;
    height: 6rem;
}

.pre_main_work.du {
    background-color: #fefefe;
}

.pre_main_work .col-sm-6 {
    margin-left: 50%;
}

.pre_main_work:after {
    content:'';
    display: block;
    width: 50%;
    height: 100%;
    background-color: #252323;
    position: absolute;
    left: 0;
    top: 0;
}

.pre_main_services h2, .pre_main_work h2 {
    text-align: right;
}

.pre_main_services h2, .pre_main_work h2 {
    font-size: 4rem;
    line-height: 6rem;
}

.main_services, #main_services {
    background-color: #252323;
    color: #f2f3ef;
    padding: 12rem 0;
}

h1, #main_hero_content p {
    font-size: 3rem;
    line-height: 1.5;
}

#main_hero_content .container {
    height: 100vh;
}

#main_work {
    background-color: #c7c7cd;
}

#main_work.site_section {
    padding-bottom: 0;
}

.portfolio_work_examples a .main_monero {
    background-color: #c7c7cd;
    background-image: url(/img/moneroresponsive.png);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio_work_examples a .main_mi {
    background-image: url(/img/monerointegrationsweb.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio_work_examples a .main_rosetinted {
    background-image: url(/img/rosetintedclassy.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio_work_examples a .main_kovrilogo {
    background-color: #97D8FA;
    background-image: url(/img/kovrimain.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.portfolio_work_examples a .main_isabella {
    background-color: #ff6501;
    background-image: url(/img/isabella-intro-sm.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.portfolio_work_examples a .main_onna {
    background-color: #a5c0dc;
    background-image: url(/img/onna-telegram.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

img.section_img {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

#main_clients .client-logo {
    width: 15rem;
}

@media only screen and (max-width: 75rem) {

#main_hero_content h1 {
    font-size: 7rem;
}
    
#main_hero_content h3, .hero_content h3 {
    font-size: 2.5rem;
}
    
.wrap {
    width: 61rem;
}
    
.tabinner {
    font-size: 1.7rem;
}
    
.button {
    padding: 0 1rem;
}
    
.pre_main_services h2, .pre_main_work h2 {
    font-size: 3rem;
}
    
}

@media only screen and (max-width: 62rem) {

#main_hero_content h1 {
    font-size: 6.5rem;
}  
    
.pre_main_services h2, .pre_main_work h2 {
    font-size: 2.5rem;
}
    
.wrap {
    width: 46rem;
}
    
.button {
    font-size: 1.6rem;
    height: 90px;
    line-height: 90px;
}
    
.tabinner {
    font-size: 1.5rem;
}
    
#main_clients .col-xs-3 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    margin-top: 2rem;
}
    
}

@media only screen and (max-width: 48rem) {  
 
#main_hero_content {
    padding: 0 3rem;
}    
    
#main_hero_content h1 {
    font-size: 5rem;
}
    
#main_hero_content .main-btns a {
    font-size: 2rem;   
}
    
.pre_main_services {
    border-bottom: 3px solid rgba(255,255,255,.1);
}
    
#main_hero_content h3, .hero_content h3 {
    font-size: 2rem;
}  
    
.tabs label {
    display: none;
} 
    
.wrap {
    height: auto;
    width: 100%;
}
    
#main_services, .main_services {
    padding: 6rem 3rem;
}
    
.display h3 {
    display: block;
    font-size: 2.5rem;
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-weight: bold;
}
    
.display {
    display: block;
    position: initial;
    width: 100%;
}
    
.tabinner {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-family: "geomanistregular", sans-serif;
    margin-bottom: 6rem;
}
    
    
.pre_main_services .col-sm-6, .pre_main_work .col-sm-6 {
    margin-left: 0;
}
    
.pre_main_services:after, .pre_main_work:after {
     display: none;
 }
    
.pre_main_services h2, .pre_main_work h2 {
    text-align: right;
    padding-right: 3rem;
    line-height: 6rem !important;
}
    
}

@media only screen and (max-width: 35rem) {
  
#main_clients .col-xs-3 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    margin-top: 2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}    
    
#main_hero_content h1 {
    font-size: 3.5rem;
} 
    
#main_services {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
    
.pre_main_services h2, .pre_main_work h2 {
        padding-right: 1.5rem;
}
    
}

@media only screen and (max-width: 39rem) {
    
#main_hero_content h1 {
    font-size: 4rem;
}
    
#main_hero_content{
    padding: 0 1.5rem;
}
}

@media only screen and (max-width: 37rem) {
    
#main_services, .main_services {
    padding: 6rem 1.5rem;
}
    
}

@media only screen and (max-width: 30rem) {
    
#main_hero_content h1 {
    font-size: 2.8rem;
}
    
#main_hero_content h3, .hero_content h3 {
    font-size: 1.7rem;
}  
    
#main_hero_content .main-btns a {
    font-size: 1.6rem;
}
    
.the-arrow > .shaft, .the-arrow > .shaft:before, .the-arrow > .shaft:after {
    height: 3px;
}
    
.the-arrow > .shaft:after {
    bottom: 1px;
}
    
.the-arrow > .shaft:before {
    top: 1px;
}
    
.display h3 {
    font-size: 2rem;
}
    
.pre_main_services h2, .pre_main_work h2 {
    font-size: 2.3rem;
}    
    
}

/*SERVICE PAGE*/

.page_hero_content .container {
    height: 100vh;
    margin-top: -6rem;
}

.page_hero_content h1 {
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-size: 8.125rem;
    font-weight: bold;
    line-height: 1.1;
}

.page_hero_content h3 {
    font-size: 3rem;
    margin-top: 2rem;
}

.service-info {
    padding-top: 12rem;
}

.service-info:first-child {
    padding-top: 0;
}

.service-info h3 {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-weight: bold;
}

.service-info p {
    font-size: 2rem;
    line-height: 1.7;
    padding-top: 1rem;
}

.intro h3 {
    margin-top: 2.5rem;
    font-family: 'Cartograph', 'geomanistregular', 'droid_sansregular', sans-serif;
    font-weight: bold;
    font-size: 4rem;
    line-height: 1.4;
}

.intro.main_about h3 {
    margin-top: 0;
}

.intro.du h3 {
    font-size: 2.5rem;
    margin-top: 5rem;
}

.intro {
    background-color: #fefefe;
    color: #252323;
    text-align: left;
}

.intro p {
    padding-top: 3rem;
    font-size: 2rem;
}

img.du-logo {
    height: 7rem;
    margin-right: 2rem;
    width: auto;
    background-color: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(5,3,22,0.1);
    -moz-box-shadow: 0px 0px 3px 2px rgba(5,3,22,0.1);
    box-shadow: 0px 0px 3px 2px rgba(5,3,22,0.1);
    margin-top: 1rem;
}

/* DIGITAL UTILITIES*/

.foss-du input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

/* Accordion styles */
.foss-du .accs {
    overflow: hidden;
    margin-top: 6rem;
}

.foss-du .acc {
  width: 100%;
  overflow: hidden;
}
.foss-du .acc-label {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  margin-top: 2rem;
  cursor: pointer;
  font-family: 'Cartograph', 'geomanistregular', 'droid_sansregular', sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  letter-spacing: 0.03rem;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.foss-du .acc-label:hover {
  color: #9c2169;
}

.foss-du .acc-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}

.foss-du .acc-content {
  max-height: 0;
  padding: 0 1rem;
}

.foss-du .acc-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.foss-du .acc-close:hover {
  background: #1a252f;
}

.foss-du input:checked + .acc-label {
  
}

.foss-du input:checked + .acc-label::after {
  transform: rotate(90deg);
}

.foss-du input:checked ~ .acc-content {
  max-height: 100vh;
  padding: 1rem 0 2rem 0.5rem;
}

/*PORTFOLIO TILES*/

.portfolio_work_examples {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}

.portfolio_work_examples .work_tile {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.portfolio_work_examples .work_tile h2 {
    font-family: 'geomanistregular', sans-serif;
    font-size: 2rem;
    line-height: 1.3;
}

.portfolio_work_examples .work_tile a {
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    -o-transition: all .15s ease;
    transition: all .15s ease;
    overflow: hidden;
    height: 70vh;
    color: #ffffff;
    display: block;
}

.portfolio_work_examples .work_tile a .work_tile_inner {
    position: relative;
    overflow: hidden;
    padding: 4rem;
}

.portfolio_work_examples .work_tile a .work_tile_inner h2 {
    position: absolute;
    left: -20rem;
    top: 0rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 2;
    overflow: hidden;
    opacity: 0;
    font-family: 'geomanistregular', sans-serif;
}

.portfolio_work_examples .work_tile a .work_tile_inner p {
    position: absolute;
    left: -20rem;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 2;
    top: 2.5rem;
    transition-delay: 0.15s;
    opacity: 0;
}

.portfolio_work_examples .work_tile a:hover .work_tile_inner h2, .portfolio_work_examples .work_tile a:hover .work_tile_inner p {
    left: 3rem;
    opacity: 1;
}

.portfolio_work_examples .work_tile .work_tile_inner span.hashtag {
    position: relative;
    text-transform: uppercase; 
    letter-spacing: 0.1rem;
}

.portfolio_work_examples .work_tile a .overlay {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio_work_examples .work_tile a .overlay:after {
    position: absolute;
    content:"";
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    background-color: #232323;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.portfolio_work_examples .work_tile a:hover .overlay:after {
    opacity: 0.5;
    z-index: 1;
}

.portfolio_work_examples .work_tile a .main_mi, .portfolio_work_examples .work_tile a .main_rosetinted, .portfolio_work_examples .work_tile a .main_monero, .portfolio_work_examples .work_tile a .main_kovrilogo, .portfolio_work_examples .work_tile a .main_isabella, .portfolio_work_examples .work_tile a .main_onna {
    transition: transform 0.3s; 
    -webkit-transition: -webkit-transform 0.3s;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.portfolio_work_examples .work_tile a:hover .main_mi, .portfolio_work_examples .work_tile a:hover .main_rosetinted, .portfolio_work_examples .work_tile a:hover .main_monero, .portfolio_work_examples .work_tile a:hover .main_kovrilogo {
    transform: scale(1.05); 
    -webkit-transform: scale(1.05);
}


@media only screen and (max-width: 75rem) {

.hero_content {
    margin-top: 0;
}
    
.page_hero_content h1 {
    font-size: 7rem;
}
    
.page_hero_content h3 {
    font-size: 2.5rem;
}
    
}

@media only screen and (max-width: 62rem) {
    
.page_hero_content h1 {
    font-size: 7rem;
}
    
.page_hero_content h3 {
    font-size: 2.5rem;
}
    
.intro.main_about h3 {
    font-size: 3rem;
}
    
.intro p {
    font-size: 1.8rem;
}

.portfolio_work_examples .work_tile a {
    height: 60vh;
}
    
.portfolio_work_examples .work_tile .work_tile_inner span.hashtag {
    display: none;
}
    
    
}

@media only screen and (max-width: 48rem) {

#main_hero_content .row {
    margin-top: 0;
}
    
.page_hero_content .container {
    height: auto;
    margin-top: 0;
    padding: 10rem 0;
}
    
.page_hero_content .col-xs-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}
    
.page_hero_content h1 {
    font-size: 4.5rem;
}
    
.page_hero_content h3 {
    font-size: 2rem;
}
    
.service-info {
    padding-top: 6rem;
}  
    
.service-info p {
    font-size: 1.5rem;
    line-height: 1.8;
    padding-top: 1rem;
}
    
.foss-du .accs {
    margin-top: 2rem;
}
    
.foss-du .acc-label {
    font-size: 2rem;
    margin-top: 1rem;
    background-color: #f6f6f6;
    padding-left: 1rem;
    padding-right: 1rem;
}
    
.intro.main_about h3 {
    font-size: 2.5rem;
}
    
.intro p {
    font-size: 1.5rem;
}
    
.portfolio_work_examples .work_tile a {
    height: 40vh;
    position: relative;
}
    
.portfolio_work_examples .work_tile a .overlay:after, .portfolio_work_examples .work_tile a .work_tile_inner h2, .portfolio_work_examples .work_tile a:hover .work_tile_inner h2 {
   display: none;
}
    
.portfolio_work_examples .work_tile a:after { 
    position: absolute;
    content: 'view project';
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #252323;
    color: #ffffff;
    padding: 1rem;
    text-transform: uppercase;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(5,3,22,0.3);
    -moz-box-shadow: 0px 0px 3px 0px rgba(5,3,22,0.3);
    box-shadow: 0px 0px 3px 0px rgba(5,3,22,0.3);
}
    
.site_section.portfolio_work_examples {
    padding-bottom: 3rem;
}
    
h2.section_header span.pink, h2.section_header, .info h3, #landing_page p.section_header {
    line-height: 1.5;
}
    
}

@media only screen and (max-width: 37rem) {
    
.page_hero_content h1 {
    font-size: 3.5rem;
}
    
.portfolio_work_examples .work_tile {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}
    
.page_hero_content .col-xs-12 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
    
}

@media only screen and (max-width: 30rem) {
    
.page_hero_content h1 {
    font-size: 3rem;
}

.service-info h3 {
    font-size: 2rem;
}
    
.page_hero_content h3 {
    font-size: 1.7rem;
}
    
}

@media only screen and (max-width: 22rem) {
    
.page_hero_content h1 {
    font-size: 2.5rem;
}
    
}
    

/*CONTACT SECTION*/

.contact {
    background-color: #1d1c1c;
    color: #f2f3ef;
}

.contact h2.section_header {
    margin-bottom: 0;
    font-size: 4rem;
}

.contact h3 {
    font-size: 4rem;
    color: #9c2169;
    font-weight: bold;
}

.contact h3 a {
    text-decoration: none;
}



@media only screen and (max-width: 62rem) {   
    
.contact h2.section_header {
    font-size: 3rem;
}    
    
.contact h3 {
    line-height: 1;
}
    
}

@media only screen and (max-width: 48rem) {

#contact {
    height: 90vh;
}
    
#contact .center-xs {
    text-align: left;
}
    
.page_hero_content#contact .container {
    height: 100%;
}
    
}

@media only screen and (max-width: 35rem) {
 
.contact h2.section_header {
    font-size: 2.3rem;
    line-height: 1.3;
}
    
.intro.main_about h3 {
    font-size: 2.4rem;
} 
}

@media only screen and (max-width: 22rem) {

.intro.main_about h3 {
    font-size: 2.2rem;
}    
    
}
/*PROJECT PAGE*/

.hero_content h1 {
    font-family: 'Cartograph', 'geomanistregular', sans-serif;
    font-weight: bold;
    font-size: 9rem;
}

.about {
    height: auto;
    background-color: #eef1f6;
    padding: 5rem 0;
    color: #232325;
    text-align: left;
}

.about .row {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.about .info:nth-child(2), .about .info:nth-child(3) {
    margin-top: 3.5rem;
}

.cat {
    padding: 3rem 0;
    background-color: #1d1c1c;
}

.about h3 {
    font-size: 2rem;
}

.cat p {
    font-size: 1.3rem;
    display: inline-block;
    color: #f2f3ef;
    padding-top: 0;
}

.cat p:nth-child(2), .cat p:nth-child(3), .cat p:nth-child(4), .cat p:nth-child(5) {
    margin-left: 2rem;
}

.info {
    padding: 0;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
}

.info p {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.info h3 {
    font-size: 2rem;
    font-weight: bold;
}

@media only screen and (max-width: 75rem) {
    
.hero_content h1 {
    font-size: 7rem;
}

.about h2 {
    font-size: 4rem;
}  
    
}

@media only screen and (max-width: 62rem) {

.hero_content h1 {
    font-size: 5rem;
}
    
.about h2 {
    line-height: 1.3;
} 
    
.about .category div {
    display: inline;
}
    
.about .row {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}
       
.info {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
}
    
}

@media only screen and (max-width: 48rem) {    
    
.about .info {
    width: 48rem;
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
}
    
.cat {
    padding: 1rem;
}
    
}

@media only screen and (max-width: 35rem) {

.hero_content h1 {
    font-size: 3.5rem;
    margin-top: 2.5rem;
} 
    

    
}

@media only screen and (max-width: 30rem) {  
    
.about h2 {
    font-size: 3rem;
}
    
.about .category p, .cat p {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}
    
.info p {
    font-size: 1.2rem;
    margin-top: 0;
}
    
.info h3 {
    font-size: 1.6rem;
    
}
    
    }

@media only screen and (max-width: 22rem) {

}

/******ROSETINTED PAGE STYLE*****/

#rosetinted .hero_content {
    background-color: #c7839c;
    background-image: url(/img/rosetintedclassy.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 90vh;
}

#rosetinted .site_section {
    height: 100vh;
}

#rosetinted .bg_img {
    background-image: url(/img/rosetintedfalling.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media only screen and (max-width: 75rem) {
    
}

@media only screen and (max-width: 62rem) {
    
}

@media only screen and (max-width: 48rem) {    
    
}

@media only screen and (max-width: 42rem) { 
    
}

@media only screen and (max-width: 37rem) {
    
}

@media only screen and (max-width: 30rem) {
    
}

@media only screen and (max-width: 22rem) {
    
}

/******MONERO INTEGRATIONS PAGE STYLE*****/

#monerointegrations .hero_content {
    background: #C7CCE3;
    height: 90vh;
}

#monerointegrations .hero_content img {
    width: 50%;
}

#monerointegrations .mi-logos {
    height: 70vh;
}

#monerointegrations .mi-logos .first-half, #monerointegrations .mi-logos .second-half {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

#monerointegrations .mi-logos .first-half {
    background-color: #C7CCE3;
    background-image: url(/img/monero-integr-logo.svg);
    background-repeat: no-repeat;
    background-size: 85%;
    background-position: center;
}

#monerointegrations .mi-logos .second-half {
    background-color: #3a509a;
    background-image: url(/img/monero-integr-logo-white.svg);
    background-repeat: no-repeat;
    background-size: 85%;
    background-position: center;
}

#monerointegrations .imggif {
    height: 100vh;
    background-color: #fdfbfd;
    padding: 6rem 0;
}

#monerointegrations .imggif img {
    width: auto;
    height: auto;
}

/******MONERO CRYPTO PAGE STYLE*****/

#monerocrypto .hero_content {
    background-color: #c7c7cd;
    height: 90vh;
    background-image: url(/img/moneroresponsive.png);
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
}

#monerocrypto .about .info:nth-child(2) {
    margin-top: 3.5rem;
}

#monerocrypto .about .info .goal {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 3rem;
}

#monerocrypto .about .info .goal:first-of-type {
    margin-top: 1.5rem;
}

#monerocrypto .about .info .goal p.number {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    font-family: 'geomanistregular', sans-serif;
    font-weight: bold;
    font-size: 6rem;
    line-height: 1;
    padding: 1rem;
    margin-top: 0;
    color: #c7c7cd;
}

#monerocrypto .about .info .goal p.text {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    margin-top: 0;
    padding-top: 0;
}

#monerocrypto .about .info .challenge {
    margin-top: 2.5rem;
}

#monerocrypto .about .info .challenge h4 {
    font-size: 1.3rem;
    font-family: 'geomanistregular', sans-serif;
}

#monerocrypto .about .info .challenge p {
    margin-top: 0;
    padding-top: 0.5rem;
}

#monerocrypto .before-after {
    background-color: #c8c8ce;
    height: 100vh;
}

#monerocrypto .before-after .first-half, #monerocrypto .before-after .second-half {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

#monerocrypto .before-after .half img {
    width: auto;
}

#monerocrypto .before-after .first-half:before {
    content: 'Before:';
    display: block;
    text-align: center;
    font-family: 'geomanistregular', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #232325;
}

#monerocrypto .before-after .second-half:before {
    content: 'Now:';
    display: block;
    text-align: center;
    font-family: 'geomanistregular', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #232325;
}

@media only screen and (max-width: 75rem) { 

#monerointegrations .mi-logos {
    height: 50vh;
}    
    
#monerocrypto .about .info .goal p.number {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
}   
    
#monerocrypto .about .info .goal p.text {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
}
    
}

@media only screen and (max-width: 62rem) {
    
}

@media only screen and (max-width: 48rem) {
    
#monerocrypto .before-after {
    padding: 5rem 3rem;
    height: auto;
}

#monerocrypto .before-after .first-half, #monerocrypto .before-after .second-half {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
} 
    
#monerocrypto .before-after .second-half {
    margin-top: 2rem;
}
    
#monerointegrations .mi-logos {
    height: 40vh;
}
    
}

@media only screen and (max-width: 37rem) {

#monerointegrations .mi-logos .first-half, #monerointegrations .mi-logos .second-half {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    height: 40vh;
}    
    
#monerointegrations .mi-logos {
    height: auto;
}
    
#monerointegrations .hero_content img {
    width: 90%;
}
    
}

@media only screen and (max-width: 30rem) {

    
#monerocrypto .about .info .goal {
    position: relative;
}
    
#monerocrypto .about .info .goal p.number {
    position: absolute;
    left: -4rem;
    z-index: 1;
    opacity: 0.5;
}   
    
#monerocrypto .about .info .goal p.text {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    z-index: 2;
    padding-left: 10%;
}
    
#monerocrypto .before-after .second-half:before, #monerocrypto .before-after .first-half:before {
    font-size: 2rem;
}
    
}

/******KOVRI LOGO PAGE STYLE*****/

#kovrilogo .hero_content {
    background-color: #97D8FA;
    background-image: url(/img/kovrimain.png);
    height: 90vh;
    background-image: ;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

#kovrilogo .about .info:nth-child(2) {
    margin-top: 3.5rem;
}

#kovrilogo #kovrilogoidea {
    background-color: #C7E5F0;
    height: 70vh;
    background-image: url(/img/kovrilogoidea.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

#kovrilogo #kovrilogospace {
    background-color: #fefefe;
    height: 70vh;
    background-image: url(/img/kovrilogoconstruction.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

/******ISABELLA STICKERS PAGE STYLE*****/

#isabella-stickers .hero_content {
    background-color: #fe7410;
    background-image: url(/img/isabella-intro-bg.png);
    height: 90vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#isabella-stickers .row, #isabella-stickers .container, #samourai-stickers .container, #samourai-stickers .row {
    height: 100%;
}

#isabella-stickers .hero_content .row, #samourai-stickers .hero_content .row {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
}

#isabella-stickers .about .info:nth-child(2) {
    margin-top: 3.5rem;
}

#isabella-stickers #isabella-emotions img {
    display: block;
}

#isabella-stickers #isabella-sketches {
    background-color: #ffffff;
}

#isabella-stickers #isabella-all {
    background-color: #1d1c1c;
    padding-left: 1rem;
    padding-right: 1rem;
}

/******SAMOURAI STICKERS PAGE STYLE*****/

#samourai-stickers .hero_content {
    background-color: #a5c0dc;
    background-image: url(/img/onna-telegram.png);
    height: 90vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#samourai-stickers #samourai-all {
    background-color: #ffffff;
}