/* USAGE */
@import url("https://fonts.googleapis.com/css?family=Martel+Sans|Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=Martel+Sans|Roboto&display=swap");
.test-class {
  font-size: 0.875rem; }

/* USAGE: OUTPUT */
.test-class {
  font-size: 14px;
  font-size: 0.8rem; }

/********************************************************************/
/* USAGE */
.test-class {
  -webkit-transition: all 2s ease-out;
  -moz-transition: all 2s ease-out;
  -ms-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  transition: all 2s ease-out; }

/* USAGE: OUTPUT */
.test-class {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

/********************************************************************/
/********************************************************************/
/* USAGE */
.test-class {
  padding-top: 0; }

/********************************************************************/
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0); }
  50% {
    top: 22px;
    transform: rotate(0); }
  100% {
    top: 22px;
    transform: rotate(45deg); } }

@keyframes top-2 {
  0% {
    top: 22px;
    transform: rotate(45deg); }
  50% {
    top: 22px;
    transform: rotate(0deg); }
  100% {
    top: 0;
    transform: rotate(0deg); } }

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0); }
  50% {
    bottom: 22px;
    transform: rotate(0); }
  100% {
    bottom: 22px;
    transform: rotate(135deg); } }

@keyframes bottom-2 {
  0% {
    bottom: 22px;
    transform: rotate(135deg); }
  50% {
    bottom: 22px;
    transform: rotate(0); }
  100% {
    bottom: 0;
    transform: rotate(0); } }

@keyframes scaled {
  50% {
    transform: scale(0); }
  100% {
    transform: scale(0); } }

@keyframes scaled-2 {
  0% {
    transform: scale(0); }
  50% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

@keyframes animate-fr {
  0% {
    right: 300px; }
  100% {
    right: 0; } }

@keyframes scroll-mouse {
  0% {
    transform: translate(0, 0);
    opacity: 0; }
  40% {
    opacity: 1; }
  80% {
    transform: translate(0, 20px);
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes silder-l-r {
  0% {
    left: -30px;
    top: 0; }
  25% {
    left: 30px;
    top: 0; }
  50% {
    left: -30px;
    top: 0; }
  75% {
    left: 30px;
    top: 0; }
  100% {
    left: -30px;
    top: 0; } }

@-moz-keyframes silder-l-r {
  0% {
    left: -30px;
    top: 0; }
  25% {
    left: 30px;
    top: 0; }
  50% {
    left: -30px;
    top: 0; }
  75% {
    left: 30px;
    top: 0; }
  100% {
    left: -30px;
    top: 0; } }

@-ms-keyframes silder-l-r {
  0% {
    left: -30px;
    top: 0; }
  25% {
    left: 30px;
    top: 0; }
  50% {
    left: -30px;
    top: 0; }
  75% {
    left: 30px;
    top: 0; }
  100% {
    left: -30px;
    top: 0; } }

@-o-keyframes silder-l-r {
  0% {
    left: -30px;
    top: 0; }
  25% {
    left: 30px;
    top: 0; }
  50% {
    left: -30px;
    top: 0; }
  75% {
    left: 30px;
    top: 0; }
  100% {
    left: -30px;
    top: 0; } }

@keyframes silder-l-r {
  0% {
    left: -30px;
    top: 0; }
  25% {
    left: 30px;
    top: 0; }
  50% {
    left: -30px;
    top: 0; }
  75% {
    left: 30px;
    top: 0; }
  100% {
    left: -30px;
    top: 0; } }

@-webkit-keyframes silder-r-l {
  0% {
    left: 30px;
    top: 0; }
  25% {
    left: -30px;
    top: 0; }
  50% {
    left: 30px;
    top: 0; }
  75% {
    left: -30px;
    top: 0; }
  100% {
    left: 30px;
    top: 0; } }

@-moz-keyframes silder-r-l {
  0% {
    left: 30px;
    top: 0; }
  25% {
    left: -30px;
    top: 0; }
  50% {
    left: 30px;
    top: 0; }
  75% {
    left: -30px;
    top: 0; }
  100% {
    left: 30px;
    top: 0; } }

@-ms-keyframes silder-r-l {
  0% {
    left: 30px;
    top: 0; }
  25% {
    left: -30px;
    top: 0; }
  50% {
    left: 30px;
    top: 0; }
  75% {
    left: -30px;
    top: 0; }
  100% {
    left: 30px;
    top: 0; } }

@-o-keyframes silder-r-l {
  0% {
    left: 30px;
    top: 0; }
  25% {
    left: -30px;
    top: 0; }
  50% {
    left: 30px;
    top: 0; }
  75% {
    left: -30px;
    top: 0; }
  100% {
    left: 30px;
    top: 0; } }

@keyframes silder-r-l {
  0% {
    left: 30px;
    top: 0; }
  25% {
    left: -30px;
    top: 0; }
  50% {
    left: 30px;
    top: 0; }
  75% {
    left: -30px;
    top: 0; }
  100% {
    left: 30px;
    top: 0; } }

html {
  height: 100%; }

body {
  font-size: 1rem;
  color: #646464;
  font-family: "Roboto", sans-serif;
  background: #FFFFFF; }

h2 {
  font-size: calc(1.35rem + 1.2vw); }
  @media (min-width: 1200px) {
    h2 {
      font-size: 2.25rem; } }

p {
  padding-bottom: calc(1.275rem + 0.3vw); }
  @media (min-width: 1200px) {
    p {
      padding-bottom: 1.5rem; } }

a.on-light,
input.on-light {
  color: #00D1B2;
  font-size: calc(1.275rem + 0.3vw);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (min-width: 1200px) {
    a.on-light,
    input.on-light {
      font-size: 1.5rem; } }
  a.on-light:hover,
  input.on-light:hover {
    color: #09B79D; }

a.on-dark,
input.on-dark {
  color: #09B79D;
  font-size: calc(1.275rem + 0.3vw);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media (min-width: 1200px) {
    a.on-dark,
    input.on-dark {
      font-size: 1.5rem; } }
  a.on-dark:hover,
  input.on-dark:hover {
    color: #00D1B2; }
  a.on-dark--disabled,
  input.on-dark--disabled {
    color: #B5B5B5; }
    a.on-dark--disabled:hover,
    input.on-dark--disabled:hover {
      color: #B5B5B5; }

.hov-under-from-left {
  position: relative;
  display: inline-block; }
  .hov-under-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 4px;
    -webkit-transition: right 0.3s ease-out;
    -moz-transition: right 0.3s ease-out;
    -ms-transition: right 0.3s ease-out;
    -o-transition: right 0.3s ease-out;
    transition: right 0.3s ease-out; }
  .hov-under-from-left:hover::before, .hov-under-from-left:focus::before, .hov-under-from-left:active::before {
    right: 0; }

.on-light.hov-under-from-left:before {
  background: #09B79D; }

.on-dark.hov-under-from-left:before {
  background: #00D1B2; }

#site-form {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 100%;
  margin: auto;
  padding: calc(1.325rem + 0.9vw); }
  @media (min-width: 1200px) {
    #site-form {
      padding: 2rem; } }
  #site-form .form-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 800px;
    margin: auto; }
    #site-form .form-wrapper .form-header {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: calc(1.375rem + 1.5vw);
      text-transform: uppercase;
      width: 100%;
      padding: calc(1.325rem + 0.9vw);
      background-color: #FFFFFF;
      border-top: 0.25rem solid #FF3860;
      border-left: 0.25rem solid #FF3860;
      border-right: 0.25rem solid #FF3860;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      border-top-left-radius: 2rem;
      border-top-right-radius: 2rem; }
      @media (min-width: 1200px) {
        #site-form .form-wrapper .form-header {
          font-size: 2.5rem; } }
      @media (min-width: 1200px) {
        #site-form .form-wrapper .form-header {
          padding: 2rem; } }
      #site-form .form-wrapper .form-header--icon {
        padding-right: 0.75rem; }
    #site-form .form-wrapper .form-container {
      width: 100%;
      padding: calc(1.325rem + 0.9vw);
      background-color: #FFFFFF;
      border: 0.25rem solid #FF3860;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-bottom-left-radius: 2rem;
      border-bottom-right-radius: 2rem; }
      @media (min-width: 1200px) {
        #site-form .form-wrapper .form-container {
          padding: 2rem; } }

.button.is-link {
  background-color: #FF3860;
  color: #FFFFFF; }
  .button.is-link:hover {
    background-color: #FF3860;
    color: #FFFFFF; }

.button.is-text {
  background-color: transparent;
  color: #646464; }
  .button.is-text:hover {
    background-color: transparent;
    color: #FF3860; }

#content-wrapper {
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */ }

#sidebar-menu-wrapper {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  background-color: #000000;
  overflow-x: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-align: right;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  border-right: 0.1rem solid #FF3860; }

.sidebar-menu a {
  display: block;
  position: relative;
  padding: 2rem 1rem 0;
  text-decoration: none;
  font-size: calc(1.28125rem + 0.375vw);
  color: #FF3860;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  white-space: nowrap; }
  @media (min-width: 1200px) {
    .sidebar-menu a {
      font-size: 1.5625rem; } }
  .sidebar-menu a:hover {
    color: #FFD83D; }

.sidebar-menu-shift {
  width: 250px !important; }

#sidebar-icon-wrapper {
  position: fixed;
  -webkit-transition: margin-left 0.3s ease-out;
  -moz-transition: margin-left 0.3s ease-out;
  -ms-transition: margin-left 0.3s ease-out;
  -o-transition: margin-left 0.3s ease-out;
  transition: margin-left 0.3s ease-out;
  top: 0;
  left: 0;
  padding: 1rem;
  cursor: pointer;
  background-color: #000000;
  border-top: 0.1rem solid #FF3860;
  border-right: 0.1rem solid #FF3860;
  border-bottom: 0.1rem solid #FF3860;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7); }
  @media (min-width: 415px) {
    #sidebar-icon-wrapper {
      top: calc(1.325rem + 0.9vw);
      left: calc(1.325rem + 0.9vw);
      padding: 1.25rem;
      border: 0.1rem solid #FF3860; } }
  @media (min-width: 415px) and (min-width: 1200px) {
    #sidebar-icon-wrapper {
      top: 2rem; } }
  @media (min-width: 415px) and (min-width: 1200px) {
    #sidebar-icon-wrapper {
      left: 2rem; } }

.sidebar-icon {
  position: absolute;
  width: 5rem;
  cursor: pointer;
  z-index: 3; }

.sidebar-icon-shift {
  margin-left: 250px; }

.sidebar-icon span {
  display: block;
  width: 100%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  height: 8px;
  background: #FF3860;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative; }

.sidebar-icon span + span {
  margin-top: 14px; }

.active span:nth-child(1) {
  animation: ease .7s top forwards; }

.not-active span:nth-child(1) {
  animation: ease .7s top-2 forwards; }

.active span:nth-child(2) {
  animation: ease .7s scaled forwards; }

.not-active span:nth-child(2) {
  animation: ease .7s scaled-2 forwards; }

.active span:nth-child(3) {
  animation: ease .7s bottom forwards; }

.not-active span:nth-child(3) {
  animation: ease .7s bottom-2 forwards; }

.cwy-animate-fr a:nth-child(1) {
  animation: animate-fr 0.5s;
  animation-timing-function: ease-out; }

.cwy-animate-fr a:nth-child(2) {
  animation: animate-fr 1s;
  animation-timing-function: ease-out; }

.cwy-animate-fr a:nth-child(3) {
  animation: animate-fr 1.5s;
  animation-timing-function: ease-out; }

.cwy-animate-fr a:nth-child(4) {
  animation: animate-fr 2s;
  animation-timing-function: ease-out; }

section.hero-land {
  height: 100%;
  background-color: #000000;
  background-image: none;
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat; }
  @media (min-width: 415px) {
    section.hero-land {
      background-image: url("/img/landing-hero-01-small.jpg"); } }
  @media (min-width: 1200px) {
    section.hero-land {
      background-image: url("/img/landing-hero-01-large.jpg"); } }
  section.hero-land .section-container {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%; }
    section.hero-land .section-container .intro-content-wrap {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      height: 100%;
      padding: calc(1.325rem + 0.9vw); }
      @media (min-width: 1200px) {
        section.hero-land .section-container .intro-content-wrap {
          padding: 2rem; } }
      section.hero-land .section-container .intro-content-wrap .content-container {
        padding-right: 1rem;
        padding-left: 1rem;
        background-color: #000000;
        max-width: 1000px;
        border: none; }
        @media (min-width: 415px) {
          section.hero-land .section-container .intro-content-wrap .content-container {
            padding: calc(1.325rem + 0.9vw);
            border: 0.1rem solid #FF3860; } }
  @media (min-width: 415px) and (min-width: 1200px) {
    section.hero-land .section-container .intro-content-wrap .content-container {
      padding: 2rem; } }
        section.hero-land .section-container .intro-content-wrap .content-container .content-variable {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          font-family: monospace;
          color: #FFFFFF;
          font-size: calc(1.3rem + 0.6vw); }
          @media (min-width: 1200px) {
            section.hero-land .section-container .intro-content-wrap .content-container .content-variable {
              font-size: 1.75rem; } }
          section.hero-land .section-container .intro-content-wrap .content-container .content-variable .variable-type {
            color: #0955a5; }
          section.hero-land .section-container .intro-content-wrap .content-container .content-variable .content-variable-name,
          section.hero-land .section-container .intro-content-wrap .content-container .content-variable .obj-key {
            color: lightskyblue; }
          section.hero-land .section-container .intro-content-wrap .content-container .content-variable .content-variable-curly {
            color: gold; }
          section.hero-land .section-container .intro-content-wrap .content-container .content-variable .obj-value {
            color: #cd6b47; }
          section.hero-land .section-container .intro-content-wrap .content-container .content-variable .content-variable-section-middle .code-indent {
            display: flex;
            flex-wrap: wrap;
            margin-left: 20px; }
      section.hero-land .section-container .intro-content-wrap .scroll-down a {
        position: absolute;
        bottom: 0;
        left: auto;
        right: 20%;
        width: auto;
        z-index: 2;
        display: inline-block;
        -moz-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        color: #fff;
        font-family: inherit;
        letter-spacing: .1em;
        text-decoration: none;
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -ms-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
        padding-top: 4rem;
        margin-left: -1rem; }
        @media (min-width: 325px) {
          section.hero-land .section-container .intro-content-wrap .scroll-down a {
            left: 50%;
            right: auto; } }
        section.hero-land .section-container .intro-content-wrap .scroll-down a span {
          position: absolute;
          top: 0;
          left: 50%;
          width: 30px;
          height: 50px;
          border: 2px solid #FF3860;
          border-radius: 50px;
          box-sizing: border-box; }
          section.hero-land .section-container .intro-content-wrap .scroll-down a span:before {
            position: absolute;
            top: 10px;
            left: 50%;
            content: '';
            width: 6px;
            height: 6px;
            margin-left: -3px;
            background-color: #fff;
            border-radius: 100%;
            -webkit-animation: scroll-mouse 2s infinite;
            animation: scroll-mouse 2s infinite;
            box-sizing: border-box; }

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

.animated {
  -webkit-animation: 1.5s both;
  -moz-animation: 1.5s both;
  -ms-animation: 1.5s both;
  -o-animation: 1.5s both;
  animation: 1.5s both; }

.section:nth-child(odd) {
  background: #FFFFFF; }

.section:nth-child(even) {
  background: lightgrey; }

.section {
  position: relative;
  text-align: center;
  z-index: 2; }
  .section .section-highlight {
    display: inline-block;
    font-family: "Martel Sans", sans-serif;
    color: #FF3860;
    font-size: calc(1.375rem + 1.5vw);
    white-space: nowrap;
    text-transform: uppercase; }
    @media (min-width: 1200px) {
      .section .section-highlight {
        font-size: 2.5rem; } }
  .section .article-wrapper {
    display: flex;
    flex-flow: column; }
    .section .article-wrapper .section-title {
      position: relative;
      font-family: "Martel Sans", sans-serif;
      padding-bottom: 1rem; }
      .section .article-wrapper .section-title .section-1-title-heading,
      .section .article-wrapper .section-title .section-2-title-heading,
      .section .article-wrapper .section-title .section-3-title-heading,
      .section .article-wrapper .section-title .section-4-title-heading,
      .section .article-wrapper .section-title .section-5-title-heading {
        font-size: calc(1.625rem + 4.5vw);
        text-transform: uppercase; }
        @media (min-width: 1200px) {
          .section .article-wrapper .section-title .section-1-title-heading,
          .section .article-wrapper .section-title .section-2-title-heading,
          .section .article-wrapper .section-title .section-3-title-heading,
          .section .article-wrapper .section-title .section-4-title-heading,
          .section .article-wrapper .section-title .section-5-title-heading {
            font-size: 5rem; } }
        .section .article-wrapper .section-title .section-1-title-heading:after,
        .section .article-wrapper .section-title .section-2-title-heading:after,
        .section .article-wrapper .section-title .section-3-title-heading:after,
        .section .article-wrapper .section-title .section-4-title-heading:after,
        .section .article-wrapper .section-title .section-5-title-heading:after {
          content: "";
          display: block;
          width: 100px;
          margin: auto;
          height: 0.5rem;
          background-color: #FF3860;
          border-radius: 5px;
          position: relative;
          -webkit-animation: silder-l-r 10s infinite;
          -moz-animation: silder-l-r 10s infinite;
          -ms-animation: silder-l-r 10s infinite;
          -o-animation: silder-l-r 10s infinite;
          animation: silder-l-r 10s infinite; }
      .section .article-wrapper .section-title .section-1-title-heading:after,
      .section .article-wrapper .section-title .section-3-title-heading:after,
      .section .article-wrapper .section-title .section-5-title-heading:after {
        -webkit-animation: silder-l-r 10s infinite;
        -moz-animation: silder-l-r 10s infinite;
        -ms-animation: silder-l-r 10s infinite;
        -o-animation: silder-l-r 10s infinite;
        animation: silder-l-r 10s infinite; }
      .section .article-wrapper .section-title .section-2-title-heading:after,
      .section .article-wrapper .section-title .section-4-title-heading:after {
        -webkit-animation: silder-r-l 10s infinite;
        -moz-animation: silder-r-l 10s infinite;
        -ms-animation: silder-r-l 10s infinite;
        -o-animation: silder-r-l 10s infinite;
        animation: silder-r-l 10s infinite; }
    .section .article-wrapper .section-1-title-icon {
      font-size: calc(1.625rem + 4.5vw); }
      @media (min-width: 1200px) {
        .section .article-wrapper .section-1-title-icon {
          font-size: 5rem; } }
      .section .article-wrapper .section-1-title-icon .fa-coffee {
        color: #6F4E37; }
      .section .article-wrapper .section-1-title-icon .fa-sun {
        color: #FFD83D; }
      .section .article-wrapper .section-1-title-icon .fa-star {
        color: #E8E8E8; }
    .section .article-wrapper .rotate-icon {
      color: #FFD83D;
      animation: spin 15s linear infinite; }
    .section .article-wrapper .section-body {
      width: 100%;
      max-width: 1400px;
      margin: auto; }
      .section .article-wrapper .section-body p.lead-intro {
        font-size: calc(1.325rem + 0.9vw);
        margin-bottom: 1rem; }
        @media (min-width: 1200px) {
          .section .article-wrapper .section-body p.lead-intro {
            font-size: 2rem; } }
      .section .article-wrapper .section-body p.sub-intro {
        font-size: 1.25rem;
        margin-bottom: 1rem; }
        .section .article-wrapper .section-body p.sub-intro .my-resume-wrapper {
          display: block; }
          .section .article-wrapper .section-body p.sub-intro .my-resume-wrapper .my-resume-download {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem;
            border: 0.15rem solid;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease; }
      .section .article-wrapper .section-body .weather {
        display: none;
        font-size: calc(1.305rem + 0.66vw);
        padding: 1rem; }
        @media (min-width: 1200px) {
          .section .article-wrapper .section-body .weather {
            font-size: 1.8rem; } }
        .section .article-wrapper .section-body .weather #weather-temp {
          display: inline-block;
          font-weight: bold;
          color: #646464;
          font-size: calc(1.425rem + 2.1vw); }
          @media (min-width: 1200px) {
            .section .article-wrapper .section-body .weather #weather-temp {
              font-size: 3rem; } }
          .section .article-wrapper .section-body .weather #weather-temp .weather-metric-unit {
            font-size: calc(1.305rem + 0.66vw);
            color: #646464;
            padding-left: 0.25rem;
            font-weight: normal; }
            @media (min-width: 1200px) {
              .section .article-wrapper .section-body .weather #weather-temp .weather-metric-unit {
                font-size: 1.8rem; } }
          .section .article-wrapper .section-body .weather #weather-temp.temp-cold {
            color: #0B77BF; }
          .section .article-wrapper .section-body .weather #weather-temp.temp-warm {
            color: #BF6B0B; }
          .section .article-wrapper .section-body .weather #weather-temp.temp-hot {
            color: #F54813; }
      .section .article-wrapper .section-body .contact-form-wrapper {
        background-color: #F5F6F7;
        padding: 20px;
        width: 100%;
        max-width: 800px;
        margin: auto;
        margin-top: calc(1.325rem + 0.9vw);
        text-align: left;
        /* Style inputs with type="text", select elements and textareas */ }
        @media (min-width: 1200px) {
          .section .article-wrapper .section-body .contact-form-wrapper {
            margin-top: 2rem; } }
        .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper {
          padding-top: 1rem;
          /* Firefox < 19 */
          /* Firefox > 19 */
          /* Internet Explorer 10 */ }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper input::-webkit-input-placeholder,
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper textarea::-webkit-input-placeholder {
            color: #999; }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper input:focus::-webkit-input-placeholder,
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper textarea:focus::-webkit-input-placeholder {
            color: #FFFFFF; }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper input:-moz-placeholder,
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper textarea:-moz-placeholder {
            color: #999; }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper input:focus:-moz-placeholder,
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper textarea:focus:-moz-placeholder {
            color: #FFFFFF; }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper input::-moz-placeholder,
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper textarea::-moz-placeholder {
            color: #999; }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper input:focus::-moz-placeholder,
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper textarea:focus::-moz-placeholder {
            color: #FFFFFF; }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper input:-ms-input-placeholder,
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper textarea:-ms-input-placeholder {
            color: #999; }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper input:focus:-ms-input-placeholder,
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper textarea:focus:-ms-input-placeholder {
            color: #FFFFFF; }
          .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper .ff-required {
            color: red; }
        .section .article-wrapper .section-body .contact-form-wrapper .form-body .form-group-wrapper:nth-last-child(1) {
          padding-top: 0; }
        .section .article-wrapper .section-body .contact-form-wrapper form label {
          font-size: 1.25rem;
          font-family: "Martel Sans", sans-serif;
          text-transform: uppercase; }
        .section .article-wrapper .section-body .contact-form-wrapper input[type=text],
        .section .article-wrapper .section-body .contact-form-wrapper select,
        .section .article-wrapper .section-body .contact-form-wrapper textarea {
          font-size: 1rem;
          width: 100%;
          padding: 1rem;
          border: 1px solid #ccc;
          box-sizing: border-box;
          margin-top: 1rem;
          margin-bottom: calc(1.275rem + 0.3vw);
          resize: vertical;
          border-radius: 4px; }
          @media (min-width: 1200px) {
            .section .article-wrapper .section-body .contact-form-wrapper input[type=text],
            .section .article-wrapper .section-body .contact-form-wrapper select,
            .section .article-wrapper .section-body .contact-form-wrapper textarea {
              margin-bottom: 1.5rem; } }
        .section .article-wrapper .section-body .contact-form-wrapper textarea#subject {
          min-height: 200px; }
        .section .article-wrapper .section-body .contact-form-wrapper input#form-submit {
          display: inline-block;
          margin-top: 1rem;
          padding: 1rem;
          border: 0.15rem solid;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease;
          background-color: transparent;
          cursor: pointer; }
      .section .article-wrapper .section-body .contact-me-wrapper {
        display: flex;
        flex-flow: wrap;
        justify-content: space-around;
        height: 100%; }
        .section .article-wrapper .section-body .contact-me-wrapper .contact-me-resume .my-resume-wrapper,
        .section .article-wrapper .section-body .contact-me-wrapper .contact-me-resume .contact-me-form-wrapper,
        .section .article-wrapper .section-body .contact-me-wrapper .contact-me-form .my-resume-wrapper,
        .section .article-wrapper .section-body .contact-me-wrapper .contact-me-form .contact-me-form-wrapper {
          display: block;
          width: 100%; }
          .section .article-wrapper .section-body .contact-me-wrapper .contact-me-resume .my-resume-wrapper .my-resume-download,
          .section .article-wrapper .section-body .contact-me-wrapper .contact-me-resume .my-resume-wrapper .contact-me-link,
          .section .article-wrapper .section-body .contact-me-wrapper .contact-me-resume .contact-me-form-wrapper .my-resume-download,
          .section .article-wrapper .section-body .contact-me-wrapper .contact-me-resume .contact-me-form-wrapper .contact-me-link,
          .section .article-wrapper .section-body .contact-me-wrapper .contact-me-form .my-resume-wrapper .my-resume-download,
          .section .article-wrapper .section-body .contact-me-wrapper .contact-me-form .my-resume-wrapper .contact-me-link,
          .section .article-wrapper .section-body .contact-me-wrapper .contact-me-form .contact-me-form-wrapper .my-resume-download,
          .section .article-wrapper .section-body .contact-me-wrapper .contact-me-form .contact-me-form-wrapper .contact-me-link {
            display: inline-block;
            padding: 0.5rem;
            margin: 0.5rem;
            border: 0.15rem solid;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
            width: 250px; }
      .section .article-wrapper .section-body .portfolio-wrapper {
        display: flex;
        flex-flow: wrap;
        justify-content: space-around;
        height: 100%; }
        .section .article-wrapper .section-body .portfolio-wrapper .portfolio-me .portfolio-projects-link {
          display: inline-block;
          padding: 0.5rem;
          margin: 0.5rem;
          border: 0.15rem solid;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease;
          width: auto; }
      .section .article-wrapper .section-body .section-splitter {
        display: block;
        width: 300px;
        height: 0.15rem;
        margin: auto;
        margin-bottom: 1rem;
        background-color: #00D1B2;
        border-radius: 3px; }

.clients-wrapper {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-self: stretch;
  flex: auto;
  height: 100%; }
  .clients-wrapper .client-card {
    display: flex;
    height: auto;
    border: 1px solid rgba(10, 10, 10, 0.1);
    margin: 0.5rem;
    box-shadow: 0px 0px 8px -3px rgba(0, 0, 0, 0.45); }
    .clients-wrapper .client-card a.client-site-link {
      display: flex;
      align-items: center;
      width: 200px;
      height: 200px;
      padding: 1rem; }
      .clients-wrapper .client-card a.client-site-link img.client-img {
        height: auto;
        width: auto;
        filter: gray;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
        -webkit-transition: opacity 0.3s ease;
        -moz-transition: opacity 0.3s ease;
        -ms-transition: opacity 0.3s ease;
        -o-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease; }
        .clients-wrapper .client-card a.client-site-link img.client-img:hover {
          -webkit-filter: grayscale(0);
          filter: none; }

.testimonial-wrapper {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  height: 100%;
  width: 100%; }
  .testimonial-wrapper .testimonial-card {
    display: flex;
    flex-flow: column;
    align-items: center;
    border: 1px solid rgba(10, 10, 10, 0.1);
    width: 500px;
    height: 500px;
    margin: 0.75rem;
    box-shadow: 0px 0px 8px -3px rgba(0, 0, 0, 0.45);
    cursor: pointer; }
    .testimonial-wrapper .testimonial-card .flip-card {
      background-color: transparent;
      width: 100%;
      height: 100%; }
      .testimonial-wrapper .testimonial-card .flip-card:hover .flip-card-inner {
        -moz-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg); }
      .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        -webkit-transition: transform 0.6s ease-in-out;
        -moz-transition: transform 0.6s ease-in-out;
        -ms-transition: transform 0.6s ease-in-out;
        -o-transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        transform-style: preserve-3d; }
        .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front,
        .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-back {
          position: absolute;
          width: 100%;
          height: 100%;
          backface-visibility: hidden; }
        .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front {
          display: flex;
          flex-flow: column;
          justify-content: center;
          align-items: center;
          background-color: transparent; }
          .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front .flip-card-img {
            font-size: calc(2.125rem + 10.5vw); }
            @media (min-width: 1200px) {
              .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front .flip-card-img {
                font-size: 10rem; } }
            .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front .flip-card-img i {
              color: #FF3860; }
          .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front .flip-card-info .flip-card-info-name {
            font-size: calc(1.3rem + 0.6vw);
            padding: 1rem;
            font-weight: 600;
            letter-spacing: 0.10rem;
            text-transform: capitalize; }
            @media (min-width: 1200px) {
              .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front .flip-card-info .flip-card-info-name {
                font-size: 1.75rem; } }
          .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front .flip-card-info .flip-card-info-value .brilliance-value {
            display: block;
            font-size: calc(1.275rem + 0.3vw);
            padding: 1rem;
            color: #00D1B2; }
            @media (min-width: 1200px) {
              .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-front .flip-card-info .flip-card-info-value .brilliance-value {
                font-size: 1.5rem; } }
        .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-back {
          display: flex;
          flex-flow: column;
          justify-content: center;
          align-items: center;
          background-color: #FF3860;
          color: #FFFFFF;
          -moz-transform: rotateY(180deg);
          -o-transform: rotateY(180deg);
          -ms-transform: rotateY(180deg);
          -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }
          .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-back q.flip-card-back-quote {
            display: block;
            font-size: 0.8rem;
            padding: 1rem;
            line-height: 1.4; }
            @media (min-width: 767px) {
              .testimonial-wrapper .testimonial-card .flip-card .flip-card-inner .flip-card-back q.flip-card-back-quote {
                font-size: 1rem; } }
    .testimonial-wrapper .testimonial-card .admin-content {
      width: 100%;
      padding: 0.75rem;
      border-top: 0.085rem solid #00D1B2; }
      .testimonial-wrapper .testimonial-card .admin-content--form {
        display: inline-block; }
      .testimonial-wrapper .testimonial-card .admin-content .field {
        display: flex;
        justify-content: space-around; }
      .testimonial-wrapper .testimonial-card .admin-content .button.is-link {
        width: 100px; }
      .testimonial-wrapper .testimonial-card .admin-content .btn-edit {
        background-color: #00D1B2; }
      .testimonial-wrapper .testimonial-card .admin-content .btn-delete {
        background-color: red; }

.admin-pannel-wrapper .header-admin-block {
  padding: calc(1.425rem + 2.1vw);
  text-align: right; }
  @media (min-width: 1200px) {
    .admin-pannel-wrapper .header-admin-block {
      padding: 3rem; } }
  .admin-pannel-wrapper .header-admin-block .header-admin-title .title-heading {
    display: inline-block;
    font-size: calc(1.375rem + 1.5vw); }
    @media (min-width: 1200px) {
      .admin-pannel-wrapper .header-admin-block .header-admin-title .title-heading {
        font-size: 2.5rem; } }
    .admin-pannel-wrapper .header-admin-block .header-admin-title .title-heading .user-welcome {
      color: #FF3860; }

.admin-pannel-wrapper .section-admin-block .user-dtails-wrapper {
  display: flex;
  flex-flow: wrap;
  align-items: center; }
  .admin-pannel-wrapper .section-admin-block .user-dtails-wrapper .user-profile-img {
    flex: 1 1 30%;
    background-color: white;
    padding: 1rem; }
    .admin-pannel-wrapper .section-admin-block .user-dtails-wrapper .user-profile-img .user-profile-icon {
      color: #FF3860;
      font-size: calc(1.925rem + 8.1vw); }
      @media (min-width: 1200px) {
        .admin-pannel-wrapper .section-admin-block .user-dtails-wrapper .user-profile-img .user-profile-icon {
          font-size: 8rem; } }
    .admin-pannel-wrapper .section-admin-block .user-dtails-wrapper .user-profile-img .user-profile-gender .gender-type {
      display: inline-block;
      padding: 1rem;
      border: 2px solid;
      border-radius: 1rem;
      width: 3rem; }
  .admin-pannel-wrapper .section-admin-block .user-dtails-wrapper .user-profile-details {
    flex: 1 1 70%;
    font-size: 1.25rem;
    padding: 1rem;
    text-align: left; }
    .admin-pannel-wrapper .section-admin-block .user-dtails-wrapper .user-profile-details .user-profile-key {
      font-size: calc(1.275rem + 0.3vw);
      border-bottom: 2px solid;
      text-transform: uppercase; }
      @media (min-width: 1200px) {
        .admin-pannel-wrapper .section-admin-block .user-dtails-wrapper .user-profile-details .user-profile-key {
          font-size: 1.5rem; } }

.admin-pannel-wrapper .section-admin-block a.upload-btn {
  display: block;
  width: 300px;
  margin: 1rem auto;
  padding: 1rem;
  border: 0.1rem solid; }
  .admin-pannel-wrapper .section-admin-block a.upload-btn .icon-wrapper {
    display: block; }

.fpl-events-container {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  width: 100%; }

.fpl-event-card-item {
  width: 25%;
  border: 1px solid #cccccc;
  margin: 0.25rem; }
  .fpl-event-card-item .fpl-event-gw {
    display: block;
    font-size: calc(1.265rem + 0.18vw);
    font-weight: 700;
    letter-spacing: 0.05rem;
    color: #FFFFFF;
    background-color: #37003C; }
    @media (min-width: 1200px) {
      .fpl-event-card-item .fpl-event-gw {
        font-size: 1.4rem; } }
