@charset "UTF-8";

/* =====  1 Global Rules & Definitions  ===================================== */

/* -----  1.1 Font Definitions  --------------------------------------------- */

/* Rubik */
@font-face {
  font-family: 'Rubik';
  src: url(../fonts/rubik-700.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}

/* Source Sans Pro */
@font-face {
  font-family: 'Source Sans Pro';
  src: url(../fonts/sourcesanspro-400.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}

/* -----  1.2 Reset & Normalization  ---------------------------------------- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  /* Add correct display for IE 9- and some newer browsers */
  display: block;
}

::-moz-selection {
  background: #a42372;
  color: #fff;
}

::selection {
  background: #a42372;
  color: #fff;
}

/* -----  1.3 General Typography  ------------------------------------------- */

h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, pre {
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 1.5rem;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: Rubik, Helvetica, Arial, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 2.2rem;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

h4 {
  font-size: 1rem;
}

small {
  font-size: 0.8rem;
  font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.title {
  margin: 0;
}

/* Colors */
.accent {
  color: #a42372;
}

.grey {
  color: #717c89;
}

/* Links */
a {
  color: #6db2b6;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #a42372;
}

/* Misc */
hr {
  font-size: 1.25rem;
  font-weight: 500;
  height: 1.5rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #71efac;
}

h1 + hr,
.intro + hr {
  margin-top: -1.5rem;
}

i, em {
  font-weight: 500;
  font-style: normal;
}

b, strong {
  font-weight: 700;
}

/* -----  1.4 Images & Figures  --------------------------------------------- */

img {
  color: #a42372;
  border-style: none;
  max-width: 100%;
  height: auto;
  font-size: 2rem;
}

figcaption {
  font-size: .75rem;
  line-height: 1.5rem;
}

.teaser-image {
  order: -1;
  width: 130px;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

/* =====  2 Layout Helpers & Reusable Components  =========================== */

.cf::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

/* -----  2.1 Kirbytext  ---------------------------------------------------- */

.text ul {
  list-style: none;

}

.text li {
  padding-left: 25px;
}

.text ul > li::before {
  font-family: ionicons;
  content: "\f3d1";
  display: inline-block;
  position: relative;
  width: 1em;
  margin-left: -20px;
}

.text ol > li {
  list-style: decimal;
}

/* -----  2.2 Button  ------------------------------------------------------- */

.btn {
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  font-size: .9em;
  border-radius: 5px;
  padding: 1em 2em;
  white-space: nowrap;
  line-height: 1;
  font-weight: 400;
  margin-top: 1em;
  background-color: #6db2b6;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn:hover {
  color: #fff;
  background: #5e9b9f;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}

.btn:focus, .btn:active {
  background: #5e9b9f;
}

/* -----  2.3 Layout  ------------------------------------------------ */

.wrap {
  box-sizing: content-box;
  margin: 0 auto;
  width: 90%;
  max-width: 1240px;
}

.space-bottom{
  margin-bottom: 2rem;
}

.breadcrumb {
  display: none;
  color: #b4b4b4;
  padding: 0.75rem 0;
  background-color: #e6e6e6;
}

.breadcrumb li {
  text-transform: uppercase;
  display: inline-block;
  margin: 0 1rem;
}

#sticky {
  width: 100%;
}

#sticky.stick {
  margin-top: 0 !important;
  position: fixed;
  top: 0;
  z-index: 9998;
}

.main-bg {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-bg:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(164,35,114);
  background: -moz-linear-gradient(-45deg, rgba(164,35,114,1) 0%, rgba(58,122,224,0.7) 100%);
  background: -webkit-linear-gradient(-45deg, rgba(164,35,114,1) 0%,rgba(58,122,224,0.7) 100%);
  background: linear-gradient(135deg, rgba(164,35,114,1) 0%,rgba(58,122,224,0.7) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a42372', endColorstr='#3a7ae0',GradientType=1 );

}

/* ----- 2.5 Products Showcase ---------------------------------------------- */

.showcase-image {
  width: 150px;
  margin-bottom: 1rem;
}

.productimg {
  width: 250px;
}

.productnav{
  text-transform: uppercase;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.productnav li {
  color: #717c89;
  padding: 0.5em 0;
  margin-right: 2rem;
  display: block;
}


/* =====  3 Site Layout  ==================================================== */

html, body {
  height:100%;
}

html {
  background: #e6e6e6;
  color: #717c89;
  font: normal 400 0.9em "Source Sans Pro", Helvetica, Arial, sans-serif;
  cursor: default;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(113, 239, 172, .5);
}

body {
  min-width: 320px;
}

/* ----- 3.1  Header  ------------------------------------------------------- */

.header {
  background-color: #fff;
}

/* -----  3.2 Menu  --------------------------------------------------------- */

.navigation ul {
  margin: 0;
  list-style: none;
}

.menu {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
}

.menu a {
  color: #717c89;
}

.menu a:hover {
  color: #a42372;
}

.menu-item {
  text-transform: uppercase;
  padding: 1.5rem 0;
  margin: 0 1rem;
  display: inline-block;
}

.branding {
  display: none;
}

.branding-resp {
  padding-top: .5em;
  display: block;
}

.menu-item a {
  border-bottom: 0;
}

.menu-item:last-child {
  margin-right: 0;
}

.menu-item:first-child {
  margin-left: 0;
}

.menu li.is-active {
  border-bottom: 4px solid #717c89;
}

.menu li.is-active a {
  color: #a42372;
}

.js .navigation {
  max-height: 0;
  position: absolute;
  overflow: hidden;
}

.btn-toggle {
  margin: 2em 0;
}

.btn-toggle a{
  float: right;
}

.hamburger-menu{
  width: 30px;
  height: 24px;
  cursor: pointer;
}

.bar,
.bar:after,
.bar:before {
  width: 30px;
  height: 4px;
  border-radius: 3px;
}

.bar {
  position: relative;
  transform: translateY(10px);
  background-color: #a42372;
  transition: all 0ms 300ms;
}

.bar.animate {
  background-color: #fff;
}

.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background-color: #a42372;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #a42372;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}


/* -----  3.3 Footer  ------------------------------------------------ */

footer {
  color: #fff;
  background-color: #717c89;
  margin-top: 4rem;
}

footer a {
  color: #fff
}

.mainfooter {
  font-size: 1.25rem;
  padding: 4rem 0;
}

.subfooter {
  font-size: 0.85rem;
  padding: 2rem 0;
  background-color: #515963;
}

.icon {
  margin-right: 1em;
}

.icon-contact {
  float: left;
  width: 1em;
  margin-right: 1em;
}

.subfooter ul li {
  display: inline-block;
  margin: 0 1rem;
  text-transform: uppercase;
}

.subfooter li:first-child {
  margin-left: 0;
}

.subfooter li:last-child {
  margin-right: 0;
}

.footernav {
  margin-top: 1.5rem;
}

.footernav a {
  color: #717c89;
}

.footernav a:hover {
  color: #fff;
}

.footer-item a{
  color: #fff;
}

.social-footer {
  padding: 1.5em 0;
  background: #5f6975;
}

/* -----  3.4 Main Content  ------------------------------------------------- */

.main {
  position: relative;
  z-index: 1;
}

/* =====  4 Template-specific Components ==================================== */

/* -----  4.1 Homepage  ----------------------------------------------------- */

.siteteaser {
  display: flex; 
  justify-content: space-between;
  flex-direction: column;
  color: #fff;
  padding: 3rem 0;
}

.siteteaser p {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.siteteaser h1 {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  word-break: break-all;
}

.teaserborder {
  border-left: 0px;
  padding: 0;
  display: flex;
  align-items: center;
}

.media {
  flex-basis: 40%;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
  line-height: 0;
}

.media video {
  width: 100%;
  height: auto;
  min-height: 280px!important;
}


.card {
  padding: 2rem;
  border-radius: 5px;
  background-color: #fff;
  height: 100%;
}

.gallery {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

.gallery-item {
  display: inline-block;
  width: 140px;
  height: 100px;
  margin-right: 1.5rem;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gallery::-webkit-scrollbar-track
{
  -webkit-box-shadow: none;
  background-color: #FFF;
}

.gallery::-webkit-scrollbar
{
  height: 6px;
  background-color: #FFF;
}

.gallery::-webkit-scrollbar-thumb
{
  -webkit-box-shadow: none;
  background-color: #6db2b6;
}


/* ----- 4.2 Blog Article  -------------------------------------------------- */

.news h2 {
  margin: 1rem 0;
}

.article-title {
  font-weight: 700;
  margin-bottom: 0;
}

.article-title a {
  border-bottom: 0;
}

.article-date {
  text-align: center;
}

.article:last-of-type + hr {
  /* Hide last <hr> on blog page */
  display: none;
}

.article-more {
  font-size: 75%;
  text-transform: uppercase;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  letter-spacing: .025em;
  white-space: nowrap;
  border-bottom: 2px solid #71efac;
}

/* -----  4.4 Contact  ------------------------------------------------------ */

.map {
  padding: 0;
}

#map {
  min-height: 400px;
  height: 100%;
  width: 100%;
}

.map-center {
  text-align: center;
}

.map-center .btn{
  background-color: #a42372;
}

/* =====  Media Queries  ==================================================== */


@media all and (min-width: 48em) {
  .breadcrumb {
    display: block;
  }
  .productnav li {
    padding: 0;
    display: inline-block;
  }
  .navigation ul{
    justify-content: flex-end;
    text-align: end;
  }
  .js .navigation {
    position: relative;
  }
  .js .navigation.closed {
    max-height: none;
  }
  .btn-toggle {
    display:none;
  }
  #menu-btn {
    display:none;
  }
  .gallery-item {
    width: 180px;
    height: 120px;
  }
  .siteteaser {
    flex-direction: row;
  }
  .media {
    margin-top: 0;
  }
}

@media all and (min-width: 62em) {
  html {
    font: normal 400 1.25em/1.5 "Source Sans Pro", Helvetica, Arial, sans-serif;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25em;
  }
  .main-bg {
    height: 540px;
  }
  .siteteaser {
    padding: 5rem 0rem;
  }
  .teaserborder {
    border-left: 10px solid #fff;
    padding-left: 3rem;
  }
  .menu-item {
    padding: 2rem 0;
  }
  .branding {
    display: block;
  }
  .branding-resp{
    display: none;
  }
  .footernav {
    margin: 0;
  }
  .gallery-item {
    width: 250px;
    height: 180px;
  }
}

@media (min-width: 75em) {
  .teaser-image {
    width: 300px;
    position: absolute;
    top: 50px;
    right: 4em;
    -webkit-filter: drop-shadow(0 30px 15px rgba(0,0,0,0.1));
    filter: drop-shadow(0 30px 15px rgba(0,0,0,0.1))
  }
}

@media (max-width: 40em) {
  .navigation {
    margin-bottom: 1em;
  }
  .menu-item {
    padding: 0.5em 0;
    margin: 0;
    width: 100%;
    display: block;
  }
  .menu li.is-active{
    border-bottom: 0;
  }
  .menu li.is-active a {
    border-left: 4px solid #717c89;
    padding-left: 1em;
  }
}
