@charset "UTF-8";
/* Screen Readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

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

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

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

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

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font: 18px/1.2 "museo-sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background-color: #f0eeed;
  overflow-x: hidden;
}

strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #ff6600;
}

.sr-only {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.cf:before, .cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.visible-sm {
  display: none;
}
@media (max-width: 1025px) {
  .visible-sm {
    display: block;
  }
}

.visible-xs {
  display: none;
}
@media (max-width: 769px) {
  .visible-xs {
    display: block;
  }
}

input, button {
  font-family: "museo-sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

form {
  margin: 40px 0;
  max-width: 600px;
}

form p {
  margin-bottom: 15px;
}

form ul,
form ol {
  padding: 10px 20px;
}

form li {
  padding: 0;
}

fieldset {
  margin: 20px 0;
  padding: 20px;
  border: 2px solid #999;
  background-color: white;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
  display: block;
  padding: 0 10px;
  margin-left: -10px;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  padding-right: 10px;
  font-weight: bold;
  line-height: 1.25;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "museo-sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.25;
  margin: 0;
}

button,
input {
  overflow: visible;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
input[type=date],
input[type=month],
input[type=week],
input[type=datetime],
input[type=datetime-local],
input[type=range],
input[type=color],
textarea,
select {
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  border: 2px solid #666;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  font-size: 16px;
  line-height: 1.25;
  color: #333;
  background-color: white;
  box-shadow: none;
  -webkit-box-shadow: none;
  transition: all 0.5s ease-in-out;
}
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=range]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  border-color: #222;
  background-color: white !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

select,
input[type=date],
input[type=month],
input[type=week],
input[type=datetime-local],
input[type=color],
input[type=range] {
  height: calc(2px + 15px + 16px * 1.25 + 15px + 2px);
}

input[type=color] {
  padding: 0 2px;
}

input[type=range] {
  border: none;
  background-color: transparent;
}

textarea {
  height: auto;
  overflow: auto;
}

select {
  text-transform: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  margin: 5px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[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;
}

input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::-webkit-input-placeholder {
  font-style: italic;
  color: #666;
}

::-moz-placeholder {
  font-style: italic;
  color: #666;
}

:-ms-input-placeholder {
  font-style: italic;
  color: #666;
}

:-moz-placeholder {
  font-style: italic;
  color: #666;
}

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;
}

button,
input[type=submit],
input[type=button],
input[type=reset],
.btn {
  display: inline-block;
  vertical-align: baseline;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  margin-bottom: 10px;
  margin-right: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  color: #222;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-width: 2px;
  border-radius: 5px;
  border-color: transparent;
  background-color: #ff6600;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
button:last-child,
input[type=submit]:last-child,
input[type=button]:last-child,
input[type=reset]:last-child,
.btn:last-child {
  margin-right: 0;
}
button:hover,
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,
.btn:hover {
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
}

[disabled] {
  opacity: 0.5 !important;
  cursor: default !important;
}

input[type=submit][disabled],
input[type=button][disabled],
input[type=reset][disabled],
button[disabled] {
  opacity: 0.35 !important;
  background-color: #666 !important;
}

.table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  overflow-x: hidden;
}

.table__row {
  display: table-row;
}

.table__cell {
  display: table-cell;
  position: relative;
}

.table__cell__contents {
  position: absolute;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
  overflow: hidden;
}

.table__cell__contents--static {
  position: static;
}

.fixed-elements-bg {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(#f0eeed, rgba(240, 238, 237, 0));
}

.fixed-element {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 3;
}
.fixed-element--left {
  right: auto;
  left: 40px;
}
@media (max-width: 769px) {
  .fixed-element {
    top: 5px;
    right: 20px;
    margin-left: 20px;
    line-height: 2.2;
    text-align: right;
  }
  .fixed-element--left {
    right: auto;
    left: 20px;
  }
}

.btn {
  color: #b22222;
  border: 3px solid #b22222;
  background-color: rgba(240, 238, 237, 0.8);
  padding: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  transition: all 0.2s;
  margin-right: 10px;
}
.btn:last-of-type {
  margin-right: 0;
}
.btn:hover, .btn:active, .btn:focus {
  background-color: #333;
  color: #f0eeed;
}
.btn .fa {
  margin-right: 0.33em;
}
.btn.no-border {
  border: none;
  background-color: rgba(240, 238, 237, 0);
}
.btn.no-border:hover {
  background-color: #333;
}

.btn--icon-right .fa {
  margin-right: 0;
  margin-left: 0.33em;
}

.btn--large {
  font-size: 18px;
  padding: 15px;
  display: inline-block;
  margin: 0 0 50px 0;
  box-shadow: none !important;
  color: white !important;
  background: #b22222 !important;
  border-color: #b22222 !important;
}
.btn--large:hover {
  color: #b22222 !important;
  background: #ffd1b3 !important;
  border-color: #ffd1b3 !important;
}

.theme--dark {
  color: white;
}
.theme--dark .table__cell {
  background: #333;
}
.theme--dark .fixed-elements-bg {
  background: linear-gradient(#333, rgba(51, 51, 51, 0));
}
.theme--dark .btn {
  color: #ff6600;
  border-color: #ff6600;
  background-color: rgba(51, 51, 51, 0.8);
}
.theme--dark .btn:hover, .theme--dark .btn:active, .theme--dark .btn:focus {
  background-color: #ff6600;
  color: white;
}
.theme--dark .btn.no-border {
  background-color: rgba(51, 51, 51, 0);
}
.theme--dark .btn.no-border:hover {
  background-color: #ff6600;
}
.theme--dark .section h2 {
  color: #f0eeed;
  text-shadow: -1px 1px #333, -2px 2px rgba(178, 34, 34, 0.8);
}

.theme--feature {
  color: white;
}
.theme--feature .table__cell {
  background: #ff6600;
}
.theme--feature .fixed-elements-bg {
  background: linear-gradient(#ff6600, rgba(255, 102, 0, 0));
}
.theme--feature .btn {
  color: white;
  border-color: white;
  background-color: rgba(255, 102, 0, 0.8);
}
.theme--feature .btn:hover, .theme--feature .btn:active, .theme--feature .btn:focus {
  background-color: white;
  color: #ff6600;
}
.theme--feature .btn.no-border {
  background-color: rgba(255, 102, 0, 0);
}
.theme--feature .btn.no-border:hover {
  background-color: white;
}
.theme--feature .section h2 {
  color: black;
  text-shadow: -1px 1px #ff6600, -2px 2px rgba(255, 255, 255, 0.5);
}
.theme--feature .section a {
  color: #ffd1b3;
}
.theme--feature .section a:hover {
  color: white;
  box-shadow: 0 -1.2em 0 0 #b22222 inset;
}

.install {
  background: #ff6600;
  color: white;
  padding: 1em 1em 0.01em 2em;
  margin-bottom: 1em;
}
.install h2 {
  color: black;
  text-shadow: -1px 1px #ff6600, -2px 2px rgba(255, 255, 255, 0.5);
}
.install a {
  color: #ffd1b3;
}
.install a:hover {
  color: white;
  box-shadow: 0 -1.2em 0 0 #b22222 inset;
}

.section a {
  font-weight: bold;
  transition: all 0.2s;
  box-shadow: 0 -3px 0 0 rgba(255, 102, 0, 0.3) inset;
}
.section a:hover {
  color: white;
  box-shadow: 0 -1.2em 0 0 #ff6600 inset;
}

.section {
  box-sizing: content-box;
  width: 90vw;
  padding-top: 50px;
  padding-bottom: 70px;
  padding-left: 5vw;
  padding-right: 5vw;
  margin: 0 auto;
  text-align: center;
}
.section h2 {
  color: #b22222;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  margin: 0 0 20px;
  font-family: "museo-slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: -1px 1px #f0eeed, -2px 2px rgba(255, 102, 0, 0.4);
}
@media (min-width: 414px) {
  .section h2 {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .section h2 {
    font-size: 36px;
  }
}
@media (min-width: 1280px) {
  .section h2 {
    font-size: 44px;
  }
}

.section--testimonials {
  background-color: #eeeeee;
}

.section--intro {
  padding: 0;
  margin: 0;
  width: 100vw;
  overflow: hidden;
}
.section--intro .brand {
  box-shadow: none !important;
}

.section--intro__contents {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 20px;
}

.tagline {
  color: #f0eeed;
  text-align: center;
}

.tagline__adjective {
  font-weight: bold;
  color: #ffd1b3;
}

.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #999;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section--intro__bg {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  z-index: 0;
}

.item {
  display: block;
  background: #393939;
  border-radius: 2px;
}

.bg-c-1 {
  background: #3A3A3A;
}

.bg-c-2 {
  background: #383838;
}

.bg-c-3 {
  background: #363636;
}

.bg-w-1 {
  width: 30px;
}

.bg-w-2 {
  width: 63px;
}

.bg-w-3 {
  width: 96px;
}

.bg-w-4 {
  width: 129px;
}

.bg-h-1 {
  height: 30px;
}

.bg-h-2 {
  height: 63px;
}

.bg-h-3 {
  height: 96px;
}

.bg-h-4 {
  height: 129px;
}

.bg-w-1.bg-h-1.bg-s-2,
.bg-w-2.bg-h-2.bg-s-2,
.bg-w-3.bg-h-3.bg-s-2,
.bg-w-4.bg-h-4.bg-s-2 {
  border-radius: 100%;
}

.bg-w-1.bg-h-1.bg-s-3,
.bg-w-2.bg-h-2.bg-s-3,
.bg-w-3.bg-h-3.bg-s-3,
.bg-w-4.bg-h-4.bg-s-3 {
  z-index: 1;
  overflow: hidden;
}
.bg-w-1.bg-h-1.bg-s-3::before,
.bg-w-2.bg-h-2.bg-s-3::before,
.bg-w-3.bg-h-3.bg-s-3::before,
.bg-w-4.bg-h-4.bg-s-3::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  border-radius: 100%;
  background: #333;
  transform: translate(50%, 50%);
}

.bg-w-4.bg-h-2.bg-s-1,
.bg-w-2.bg-h-1.bg-s-1 {
  overflow: hidden;
}
.bg-w-4.bg-h-2.bg-s-1::before, .bg-w-4.bg-h-2.bg-s-1::after,
.bg-w-2.bg-h-1.bg-s-1::before,
.bg-w-2.bg-h-1.bg-s-1::after {
  content: " ";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  background: #333;
}
.bg-w-4.bg-h-2.bg-s-1::before,
.bg-w-2.bg-h-1.bg-s-1::before {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(1.415);
}
.bg-w-4.bg-h-2.bg-s-1::after,
.bg-w-2.bg-h-1.bg-s-1::after {
  top: 0;
  right: 0;
  transform: translate(50%, -50%) rotate(45deg) scale(1.415);
}
.bg-w-4.bg-h-2.bg-s-1.bg-f-3,
.bg-w-2.bg-h-1.bg-s-1.bg-f-3 {
  transform: none;
}

.bg-w-2.bg-h-4.bg-s-1,
.bg-w-1.bg-h-2.bg-s-1,
.bg-w-1.bg-h-2.bg-s-2 {
  overflow: hidden;
}
.bg-w-2.bg-h-4.bg-s-1::before, .bg-w-2.bg-h-4.bg-s-1::after,
.bg-w-1.bg-h-2.bg-s-1::before,
.bg-w-1.bg-h-2.bg-s-1::after,
.bg-w-1.bg-h-2.bg-s-2::before,
.bg-w-1.bg-h-2.bg-s-2::after {
  content: " ";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  background: #333;
}
.bg-w-2.bg-h-4.bg-s-1::before,
.bg-w-1.bg-h-2.bg-s-1::before,
.bg-w-1.bg-h-2.bg-s-2::before {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) rotate(45deg) scale(1.415);
}
.bg-w-2.bg-h-4.bg-s-1::after,
.bg-w-1.bg-h-2.bg-s-1::after,
.bg-w-1.bg-h-2.bg-s-2::after {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%) rotate(45deg) scale(1.415);
}
.bg-w-2.bg-h-4.bg-s-1.bg-f-3,
.bg-w-1.bg-h-2.bg-s-1.bg-f-3,
.bg-w-1.bg-h-2.bg-s-2.bg-f-3 {
  transform: none;
}

.bg-w-4.bg-h-2.bg-s-2 {
  border-top-left-radius: 129px;
  border-top-right-radius: 129px;
}

.bg-w-2.bg-h-1.bg-s-2 {
  border-top-left-radius: 63px;
  border-top-right-radius: 63px;
}

.bg-f-2 {
  transform: scale(-1, 1);
}

.bg-f-3 {
  transform: scale(1, -1);
}

p, ol, ul {
  text-align: left;
  margin-bottom: 18px;
}

h3 {
  font-weight: bold;
  text-align: left;
}

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

footer {
  background: #333;
  color: white;
}
footer .section {
  padding-top: 12px;
  padding-bottom: 12px;
}
footer .section a {
  box-shadow: none;
}
footer .section a:hover {
  box-shadow: none;
}

.section--center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.valueprop {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.valueprop__contents {
  margin-top: 20vh;
  margin-bottom: 20vh;
  border-right: 1px dotted rgba(178, 34, 34, 0.9);
  padding: 20px 15px 20px 0;
}
.valueprop__contents p {
  color: #222;
  font-size: 20px;
  text-align: center;
}
.valueprop__contents p strong {
  color: black;
}
@media (max-width: 769px) {
  .valueprop__contents {
    margin: 0;
    padding: 0 0 40px 0;
    border-right: 0;
    border-bottom: 1px dotted rgba(178, 34, 34, 0.9);
  }
}

.valueprop--last .valueprop__contents {
  border-right-width: 0;
  padding-right: 0;
}

.valueprop__icon {
  max-width: 40%;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.85;
}

.block-group {
  margin: 0 -0.5vw;
}
.block-group:after {
  content: " ";
  float: none;
  display: block;
  clear: both;
}

.testimonial {
  margin-top: 20px;
  padding: 0;
}
.testimonial:last-child {
  margin-bottom: 100px;
}
@media (min-width: 1026px) {
  .testimonial .block-group {
    display: flex;
    align-items: center;
  }
}
.testimonial .block {
  vertical-align: middle;
  padding: 0;
}
.testimonial blockquote, .testimonial p {
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
}
.testimonial blockquote {
  text-indent: -0.33em;
}
.testimonial blockquote cite {
  font-size: 14px;
  display: block;
  color: #999;
  margin-top: 2em;
  text-indent: 0;
}

h3 {
  font-size: 24px;
  margin-bottom: 18px;
  margin-bottom: 18px;
}

blockquote {
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
  text-indent: -0.33em;
}
blockquote cite {
  font-size: 14px;
  display: block;
  color: #999;
  margin-top: 2em;
  text-indent: 0;
}

.features-list li {
  text-align: left;
  list-style-type: none;
}

.feature__icon {
  color: rgba(255, 209, 179, 0.5);
  font-size: 60px;
  margin-bottom: 20px;
}

.feature__label {
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 769px) {
  .feature__icon {
    margin-bottom: 20px;
  }

  .feature__label {
    text-align: left;
    margin-bottom: 20px;
  }
}
.glamkit-features-heading {
  padding-bottom: 20px;
}

.c-feature {
  position: relative;
  width: 100%;
  padding: 50px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-font-smoothing: antialiased;
}
.c-feature__info {
  max-width: 460px;
  margin: auto;
  padding: 0px 20px;
}
.c-feature__title {
  font-family: "museo-slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  color: #ff6600;
  max-width: 400px;
  margin-bottom: 2vw;
  padding: 20px 0;
}
.c-feature__title i {
  display: block;
  margin: 10px 0px;
}
.c-feature__main-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 40px;
}
.c-feature__details {
  position: relative;
  padding-bottom: 50px;
  text-align: left;
}
.c-feature__details-toggle {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  cursor: pointer;
}
.c-feature__details-toggle:before {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  font-family: FontAwesome;
  font-size: 40px;
  color: #ff6600;
  content: "";
  text-align: center;
}
.c-feature__details-toggle.is-active:before {
  content: "";
  line-height: 40px;
}
.c-feature__details-toggle:hover {
  color: #ff6600;
}
.c-feature__details-toggle:hover:before {
  background-color: #ff6600;
  color: #fff;
}
.c-feature__details-content {
  max-width: 400px;
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-out;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.c-feature__details-content.is-open {
  height: auto;
  padding: 1vw 0 2vw 0;
}

@media (min-width: 1025px) {
  .c-feature {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-feature__info {
    width: 50%;
    max-width: 600px;
  }
  .c-feature__image {
    width: 50%;
  }
  .c-feature--align-image-right [class*=info] {
    order: 1;
  }
  .c-feature--align-image-right [class*=image] {
    order: 2;
  }
}
.footer {
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer__text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  color: #999;
}
.footer__text p {
  text-align: center;
  position: relative;
}
.footer__text a {
  color: #fccc02;
}
.footer__text a:hover {
  color: white;
}

#ic-logo {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-bottom: 0 !important;
  border-radius: 2px;
}
#ic-logo:hover .ic-logo-dot {
  transition: all 0.5s;
}
#ic-logo:hover .ic-logo-dot:nth-child(1) {
  left: -57.5%;
}
#ic-logo:hover .ic-logo-dot:nth-child(2) {
  left: 32.5%;
}
#ic-logo:hover .ic-logo-dot:nth-child(3) {
  left: 117.5%;
}

.ic-logo-dot {
  display: block;
  content: " ";
  width: 75%;
  height: 75%;
  position: absolute;
  top: 12.5%;
  border-radius: 100%;
  z-index: 2;
  background: #fccc02;
  transition: none 0s;
}
.ic-logo-dot:nth-child(1) {
  left: -142.5%;
}
.ic-logo-dot:nth-child(2) {
  left: -57.5%;
}
.ic-logo-dot:nth-child(3) {
  left: 32.5%;
}

.footer__social {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.footer__social > li {
  font-size: 30px;
  display: inline-block;
  margin-left: 10px;
}
.footer__social > li a {
  color: #666;
}
.footer__social > li a:hover {
  color: white;
}

.img--responsive {
  max-width: 100%;
  height: auto;
}

.block {
  display: block;
  float: left;
  box-sizing: border-box;
  text-align: center;
  padding-left: 1vw;
  padding-right: 1vw;
  vertical-align: top;
}

.md-w-1 {
  width: 6.5833333333vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-2 {
  width: 14.1666666667vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-3 {
  width: 21.75vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-4 {
  width: 29.3333333333vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-5 {
  width: 36.9166666667vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-6 {
  width: 44.5vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-7 {
  width: 52.0833333333vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-8 {
  width: 59.6666666667vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-9 {
  width: 67.25vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-10 {
  width: 74.8333333333vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-11 {
  width: 82.4166666667vw;
  float: left;
  display: block;
  position: relative;
}

.md-w-12 {
  width: 90vw;
  float: left;
  display: block;
  position: relative;
}

.md-offset-1 {
  margin-left: 6.5833333333vw;
}

.md-offset-2 {
  margin-left: 14.1666666667vw;
}

.md-offset-3 {
  margin-left: 21.75vw;
}

.md-offset-4 {
  margin-left: 29.3333333333vw;
}

.md-offset-5 {
  margin-left: 36.9166666667vw;
}

.md-offset-6 {
  margin-left: 44.5vw;
}

.md-pull-1 {
  right: 6.5833333333vw;
}

.md-pull-2 {
  right: 14.1666666667vw;
}

.md-pull-3 {
  right: 21.75vw;
}

.md-pull-4 {
  right: 29.3333333333vw;
}

.md-pull-5 {
  right: 36.9166666667vw;
}

.md-pull-6 {
  right: 44.5vw;
}

.md-pull-7 {
  right: 52.0833333333vw;
}

.md-pull-8 {
  right: 59.6666666667vw;
}

.md-pull-9 {
  right: 67.25vw;
}

.md-pull-10 {
  right: 74.8333333333vw;
}

.md-pull-11 {
  right: 82.4166666667vw;
}

.md-pull-12 {
  right: 90vw;
}

.md-push-1 {
  left: 6.5833333333vw;
}

.md-push-2 {
  left: 14.1666666667vw;
}

.md-push-3 {
  left: 21.75vw;
}

.md-push-4 {
  left: 29.3333333333vw;
}

.md-push-5 {
  left: 36.9166666667vw;
}

.md-push-6 {
  left: 44.5vw;
}

.md-push-7 {
  left: 52.0833333333vw;
}

.md-push-8 {
  left: 59.6666666667vw;
}

.md-push-9 {
  left: 67.25vw;
}

.md-push-10 {
  left: 74.8333333333vw;
}

.md-push-11 {
  left: 82.4166666667vw;
}

.md-push-12 {
  right: 90vw;
}

.md-h-1 {
  height: 6.5833333333vw;
  margin-bottom: 1vw;
}

.md-h-2 {
  height: 14.1666666667vw;
  margin-bottom: 1vw;
}

.md-h-3 {
  height: 21.75vw;
  margin-bottom: 1vw;
}

.md-h-4 {
  height: 29.3333333333vw;
  margin-bottom: 1vw;
}

.md-h-5 {
  height: 36.9166666667vw;
  margin-bottom: 1vw;
}

.md-h-6 {
  height: 44.5vw;
  margin-bottom: 1vw;
}

.md-h-7 {
  height: 52.0833333333vw;
  margin-bottom: 1vw;
}

.md-h-8 {
  height: 59.6666666667vw;
  margin-bottom: 1vw;
}

.md-h-9 {
  height: 67.25vw;
  margin-bottom: 1vw;
}

.md-h-10 {
  height: 74.8333333333vw;
  margin-bottom: 1vw;
}

.md-h-11 {
  height: 82.4166666667vw;
  margin-bottom: 1vw;
}

.md-h-12 {
  height: 90vw;
  margin-bottom: 1vw;
}

.md-h-125vh {
  min-height: 125vh;
}

.md-h-100vh {
  min-height: 100vh;
}

.md-h-50vh {
  min-height: 50vh;
}

.md-h-33vh {
  min-height: 33vh;
}

.md-h-25vh {
  min-height: 25vh;
}

@media (max-width: 1025px) {
  .md-w-2 {
    width: 29.3333333333vw;
    float: left;
    display: block;
    position: relative;
  }

  .md-w-6 {
    width: 74.8333333333vw;
    float: left;
    display: block;
    position: relative;
    margin-left: 6.5833333333vw;
  }

  .sm-w-12 {
    width: 90vw;
    float: left;
    display: block;
    position: relative;
  }

  .sm-no-push-pull {
    left: auto;
    right: auto;
    margin-left: 0;
  }
}
@media (max-width: 769px) {
  .xs-w-12 {
    width: 90vw;
    float: left;
    display: block;
    position: relative;
  }

  .xs-w-4 {
    width: 29.3333333333vw;
    float: left;
    display: block;
    position: relative;
  }

  .xs-w-8 {
    width: 59.6666666667vw;
    float: left;
    display: block;
    position: relative;
  }
}
::selection {
  background: #f0eeed;
  color: #333;
  text-shadow: none !important;
}

::-moz-selection {
  background: #f0eeed;
  color: #333;
  text-shadow: none !important;
}

pre {
  font-size: 12px;
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  overflow-x: auto;
  background-color: #cc3300;
  padding: 5px;
  margin-bottom: 0.5em;
  text-align: left;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
}
pre.indent {
  padding-left: 2.6ex;
  text-indent: -2ex;
}

.small, small {
  font-size: 0.7em;
}

/* Active Campaign Global Styles */
input._has_error,
textarea._has_error {
  background-color: #FFF !important;
  border-color: #dc3545 !important;
}

._error {
  position: relative;
}

._error-arrow {
  position: absolute;
  left: 0.5rem;
  top: -0.35em;
  width: 0;
  border-width: 0 0.75rem 0.75rem 0.75rem;
  border-style: solid;
  border-color: transparent transparent #dc3545 transparent;
}

._error-inner {
  margin-bottom: 1rem;
  padding: 5px 10px;
  background-color: #dc3545;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  text-align: left;
}

/* Active Campaign Form */
.contact-form {
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.newsletter-signup-form {
  max-width: 455px;
  margin: auto;
  margin-top: 64px;
  margin-bottom: 64px;
  border-top: 2px dashed rgba(255, 255, 255, 0.25);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.25);
}

.glamkit-cloud-update-form form {
  max-width: 300px;
  margin: auto;
  text-align: center;
}
.glamkit-cloud-update-form input,
.glamkit-cloud-update-form button {
  display: inline-block;
  width: 100%;
  border-color: transparent;
}
.glamkit-cloud-update-form h3 {
  margin-bottom: 30px;
  font-family: "museo-slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 20px;
  color: #f0eeed;
  text-align: center;
  text-shadow: -1px 1px #333, -2px 2px rgba(178, 34, 34, 0.8);
}
@media (min-width: 768px) {
  .glamkit-cloud-update-form h3 {
    font-size: 26px;
  }
}
.glamkit-cloud-update-form h3 strong {
  font-weight: bold;
  color: #ffd1b3;
}
.glamkit-cloud-update-form h3::before {
  content: "———";
  display: block;
  margin: calc(10px + 1vw) auto;
}
.glamkit-cloud-update-form ._form_element._x38119144 label,
.glamkit-cloud-update-form ._form_element._x50114480 label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}
.glamkit-cloud-update-form .g-recaptcha {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .glamkit-cloud-update-form form {
    width: 500px;
    max-width: none;
  }
  .glamkit-cloud-update-form ._form-content {
    position: relative;
  }
  .glamkit-cloud-update-form ._form_element._x38119144 {
    width: 300px;
  }
  .glamkit-cloud-update-form ._button-wrapper {
    width: 195px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .glamkit-cloud-update-form ._button-wrapper ._form_error {
    width: 304px;
    padding: 10px;
    position: absolute;
    left: -205px;
    top: 160px;
  }
}

/*# sourceMappingURL=style.css.map */
