/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

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

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primulticolor-leaf ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
   
/*=================
Intro animation
==================*/

html, body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family:'Mulish',Helvetica,Arial, sans-serif;
}

img {
    vertical-align: bottom;
    max-width: 100%;
}

h1, h2, p {
    margin: 0;
}

/*===================
animation01
====================*/

.animation01 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #CDE5BE;
}

.animation01 .line_content {
    width: 100%;
    height: 50%;
    animation: animation01_content 0.3s ease-in forwards;
}

.animation01 .line_content01 {
    transform-origin: bottom;
}

.animation01 .line_content02 {
    transform-origin: top;
}

.animation01 .line_wrapper {
    width: 100%;
    height: 100%;
}

.animation01 .line_wrapper01 {
    transform-origin: bottom;
    animation: animation01_wrapper01 0.5s ease-in-out 0.2s forwards;
}

.animation01 .line_wrapper02 {
    transform-origin: top;
    animation: animation01_wrapper02 0.5s ease-in-out 0.2s forwards;
}

.animation01 .line01 {
    width: 100%;
    height: 50%;
    background-color: #006A30;
}

.animation01 .line02 {
    width: 100%;
    height: 50%;
    background-color: #CDE5BE;
}

@keyframes animation01_content {
    0% {
        transform: scale3d(1, 0, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes animation01_wrapper01 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50vw);
    }
}

@keyframes animation01_wrapper02 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50vw);
    }
}

/*===================
animation02 - big leaf
====================*/

.animation02 {
    position: absolute;
    width: 100%;
    height: 100%;
}

.square {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 8vw;
    height: 8vw;
    margin: auto;
    background-color: transparent;

    animation: square 0.2s ease-in-out 0.6s forwards;
    opacity: 0;
    z-index: 100;
}

@keyframes square {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }
    100% {
        transform: rotate(0);
        opacity: 1;
    }
}

/* core css leaf */
.multicolor-leaf {
  position: relative;
  height: 8vw;
  width: 8vw;
  margin: auto;
  transform:scale(0.4);
  margin-top:15px;
}
.multicolor-leaf .leaf {
  position: absolute;
  bottom: 75px;
  left: 50%;
  margin-left: -95px;
  width: 150px;
  height: 150px;
  border-radius: 0 50% 0;
  background-color: #006a30;
  background-size: 100% 100%, auto 10px;
  background-image: linear-gradient(to right top, #006a30 50%, rgba(0, 0, 0, 0) 50%), linear-gradient(to left, #298700 50%, rgba(0, 0, 0, 0) 50%);
  background-clip: padding-box;
  transform-origin: 50% 100%;
  transform: rotate(90deg) scaleY(0.3) rotate(-45deg);
}
.multicolor-leaf .leaf.out {
  bottom: 55px;
  left: 50%;
  margin-left: -115px;
  width: 130px;
  height: 130px;
  transform: rotate(50deg) scaleY(0.3) rotate(-45deg);
}
.multicolor-leaf .leaf.out._2 {
  margin-left: -20px;
  transform: rotatex(180deg) rotate(230deg) scaleY(0.3) rotate(-45deg);
}
.multicolor-leaf .leaf.outer {
  bottom: 20px;
  left: 50%;
  margin-left: -75px;
  width: 80px;
  height: 80px;
  transform: rotate(10deg) scaleY(0.3) rotate(-45deg);
}
.multicolor-leaf .leaf.outer._2 {
  margin-left: -5px;
  transform: rotatex(180deg) rotate(-170deg) scaleY(0.3) rotate(-45deg);
}
.multicolor-leaf .leaf.outest {
  bottom: 15px;
  left: 50%;
  margin-left: -25px;
  width: 30px;
  height: 30px;
  transform: rotate(-30deg) scaleY(0.3) rotate(-45deg);
}
.multicolor-leaf .leaf.outest._2 {
  margin-left: -10px;
  transform: rotatex(180deg) rotate(-210deg) scaleY(0.3) rotate(-45deg);
}
/* end core css leaf */

/* primary css leaf */
.primary-leaf {
  position: relative;
  height: 5vw;
  width: 5vw;
  margin: auto;
  transform:scale(0.2);
}
.primary-leaf .leaf {
  position: absolute;
  bottom: 75px;
  left: 50%;
  margin-left: -95px;
  width: 150px;
  height: 150px;
  border-radius: 0 50% 0;
  background-color: #006a30;
  background-size: 100% 100%, auto 10px;
  background-clip: padding-box;
  transform-origin: 50% 100%;
  transform: rotate(90deg) scaleY(0.3) rotate(-45deg);
}
.primary-leaf .leaf.out {
  bottom: 55px;
  left: 50%;
  margin-left: -115px;
  width: 130px;
  height: 130px;
  transform: rotate(50deg) scaleY(0.3) rotate(-45deg);
}
.primary-leaf .leaf.out._2 {
  margin-left: -20px;
  transform: rotatex(180deg) rotate(230deg) scaleY(0.3) rotate(-45deg);
}
.primary-leaf .leaf.outer {
  bottom: 20px;
  left: 50%;
  margin-left: -75px;
  width: 80px;
  height: 80px;
  transform: rotate(10deg) scaleY(0.3) rotate(-45deg);
}
.primary-leaf .leaf.outer._2 {
  margin-left: -5px;
  transform: rotatex(180deg) rotate(-170deg) scaleY(0.3) rotate(-45deg);
}
.primary-leaf .leaf.outest {
  bottom: 15px;
  left: 50%;
  margin-left: -25px;
  width: 30px;
  height: 30px;
  transform: rotate(-30deg) scaleY(0.3) rotate(-45deg);
}
.primary-leaf .leaf.outest._2 {
  margin-left: -10px;
  transform: rotatex(180deg) rotate(-210deg) scaleY(0.3) rotate(-45deg);
}
/* end primary css leaf */

/* secondary css leaf */
.secondary-leaf {
  position: relative;
  height: 5vw;
  width: 5vw;
  margin: auto;
  transform:scale(0.2);
}
.secondary-leaf .leaf {
  position: absolute;
  bottom: 75px;
  left: 50%;
  margin-left: -95px;
  width: 150px;
  height: 150px;
  border-radius: 0 50% 0;
  background-color: #F17604;
  background-size: 100% 100%, auto 10px;
  background-clip: padding-box;
  transform-origin: 50% 100%;
  transform: rotate(90deg) scaleY(0.3) rotate(-45deg);
}
.secondary-leaf .leaf.out {
  bottom: 55px;
  left: 50%;
  margin-left: -115px;
  width: 130px;
  height: 130px;
  transform: rotate(50deg) scaleY(0.3) rotate(-45deg);
}
.secondary-leaf .leaf.out._2 {
  margin-left: -20px;
  transform: rotatex(180deg) rotate(230deg) scaleY(0.3) rotate(-45deg);
}
.secondary-leaf .leaf.outer {
  bottom: 20px;
  left: 50%;
  margin-left: -75px;
  width: 80px;
  height: 80px;
  transform: rotate(10deg) scaleY(0.3) rotate(-45deg);
}
.secondary-leaf .leaf.outer._2 {
  margin-left: -5px;
  transform: rotatex(180deg) rotate(-170deg) scaleY(0.3) rotate(-45deg);
}
.secondary-leaf .leaf.outest {
  bottom: 15px;
  left: 50%;
  margin-left: -25px;
  width: 30px;
  height: 30px;
  transform: rotate(-30deg) scaleY(0.3) rotate(-45deg);
}
.secondary-leaf .leaf.outest._2 {
  margin-left: -10px;
  transform: rotatex(180deg) rotate(-210deg) scaleY(0.3) rotate(-45deg);
}
/* end secondary css leaf */

.leaves-2 .primary-leaf, .leaves-2 .secondary-leaf {
  transform:scale(0.1);
  height:2.5vw;
  width:2.5vw;
}

.square_item {
    display: block;
    position: absolute;
    width: 0.5vw;
    height: 0.5vw;
    margin: auto;
    background-color: #F17604;
    border-radius: 50%;
    opacity: 0;
}

.square_item01 {
    top: -105%;
    right: 0;
    bottom: 0;
    left: 0;
    animation: square_item01 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

.square_item02 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 99%;
    animation: square_item02 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

.square_item03 {
    top: 105%;
    right: 0;
    bottom: 0;
    left: 0;
    animation: square_item03 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

.square_item04 {
    top: 0;
    right: 0;
    bottom: 0;
    left: -99%;
    animation: square_item04 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

.square_item05 {
    top: -105%;
    right: 0;
    bottom: 0;
    left: 99%;
    animation: square_item05 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

.square_item06 {
    top: 105%;
    right: 0;
    bottom: 0;
    left: 99%;
    animation: square_item06 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

.square_item07 {
    top: 105%;
    right: 0;
    bottom: 0;
    left: -99%;
    animation: square_item07 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

.square_item08 {
    top: -105%;
    right: 0;
    bottom: 0;
    left: -99%;
    animation: square_item08 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

@keyframes square_item01 {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-7vw);
        opacity: 1;
    }
}

@keyframes square_item02 {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(7vw);
        opacity: 1;
    }
}

@keyframes square_item03 {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(7vw);
        opacity: 1;
    }
}

@keyframes square_item03 {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(7vw);
        opacity: 1;
    }
}

@keyframes square_item04 {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-7vw);
        opacity: 1;
    }
}

@keyframes square_item05 {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(3.5vw, -3.5vw, -3.5vw);
        opacity: 1;
    }
}

@keyframes square_item06 {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(3.5vw, 3.5vw, 3.5vw);
        opacity: 1;
    }
}

@keyframes square_item07 {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(-3.5vw, 3.5vw, 3.5vw);
        opacity: 1;
    }
}

@keyframes square_item08 {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(-3.5vw, -3.5vw, 3.5vw);
        opacity: 1;
    }
}

.circle_item01 {
    position: absolute;
    top: 150%;
    right: 0;
    bottom: 0;
    left: 90%;
    width: 5vw;
    height: 5vw;
    margin: auto;

    animation: circle_item 1.0s cubic-bezier(0.19, 1, 0.22, 1) 1.1s forwards;
    opacity: 0;
}

.circle_item02 {
    position: absolute;
    top: 125%;
    right: 0;
    bottom: 0;
    left: 125%;
    width: 5vw;
    height: 5vw;
    margin: auto;

    animation: circle_item 1.0s cubic-bezier(0.19, 1, 0.22, 1) 1.15s forwards;
    opacity: 0;
}

.circle_item03 {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 158%;
    width: 5vw;
    height: 5vw;
    margin: auto;

    animation: circle_item 1.0s cubic-bezier(0.19, 1, 0.22, 1) 1.2s forwards;
    opacity: 0;
}

.circle_item04 {
    position: absolute;
    top: -150%;
    right: 0;
    bottom: 0;
    left: -158%;
    width: 5vw;
    height: 5vw;
    margin: auto;

    animation: circle_item 1.0s cubic-bezier(0.19, 1, 0.22, 1) 1.1s forwards;
    opacity: 0;
}

.circle_item05 {
    position: absolute;
    top: -125%;
    right: 0;
    bottom: 0;
    left: -227%;
    width: 5vw;
    height: 5vw;
    margin: auto;

    animation: circle_item 1.0s cubic-bezier(0.19, 1, 0.22, 1) 1.15s forwards;
    opacity: 0;
}

.circle_item06 {
    position: absolute;
    top: -100%;
    right: 0;
    bottom: 0;
    left: -298%;
    width: 5vw;
    height: 5vw;
    margin: auto;

    animation: circle_item 1.0s cubic-bezier(0.19, 1, 0.22, 1) 1.2s forwards;
    opacity: 0;
}

@keyframes circle_item {
    0% {
        transform: scale3d(0, 0, 1);
        opacity: 1;
    }
    75% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
    100% {
        transform: scale3d(0.5, 0.5, 1);
        opacity: 1;
    }
}

.circle_item01_1 {
    position: absolute;
    top: 150%;
    right: 0;
    bottom: 0;
    left: 106%;
    width: 2.5vw;
    height: 2.5vw;
    margin: auto;
    animation: circle_twice 0.25s linear 2s forwards;
    opacity: 0;
}

.circle_item02_2 {
    position: absolute;
    top: 175%;
    right: 0;
    bottom: 0;
    left: 141%;
    width: 2.5vw;
    height: 2.5vw;
    margin: auto;
    animation: circle_twice 0.245s linear 2.05s forwards;
    opacity: 0;
}

.circle_item03_3 {
    position: absolute;
    top: 200%;
    right: 0;
    bottom: 0;
    left: 175%;
    width: 2.5vw;
    height: 2.5vw;
    margin: auto;
    animation: circle_twice 0.24s linear 2.1s forwards;
    opacity: 0;
}

.circle_item04_4 {
    position: absolute;
    top: -150%;
    right: 0;
    bottom: 0;
    left: -158%;
    width: 2.5vw;
    height: 2.5vw;
    margin: auto;
    animation: circle_third 0.25s linear 2s forwards;
    opacity: 0;
}

.circle_item05_5 {
    position: absolute;
    top: -175%;
    right: 0;
    bottom: 0;
    left: -227%;
    width: 2.5vw;
    height: 2.5vw;
    margin: auto;
    animation: circle_third 0.245s linear 2.05s forwards;
    opacity: 0;
}

.circle_item06_6 {
    position: absolute;
    top: -200%;
    right: 0;
    bottom: 0;
    left: -298%;
    width: 2.5vw;
    height: 2.5vw;
    margin: auto;
    animation: circle_third 0.24s linear 2.1s forwards;
    opacity: 0;
}

@keyframes circle_twice {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    25% {
        transform: translate3d(75%, -120%, 0);
        opacity: 1;
    }
    50% {
        transform: translate3d(100%, -240%, 0);
        opacity: 1;
    }
    75% {
        transform: translate3d(75%, -360%, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, -480%, 0);
        opacity: 1;
    }
}

@keyframes circle_third {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    25% {
        transform: translate3d(75%, 120%, 0);
        opacity: 1;
    }
    50% {
        transform: translate3d(100%, 240%, 0);
        opacity: 1;
    }
    75% {
        transform: translate3d(75%, 360%, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 480%, 0);
        opacity: 1;
    }
}

/*===================
animation03
====================*/

.animation03 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    width: 100%;
    height: 100%;
}

.animation03 div {
    width: 10vw;
    height: 10vw;
    background-color: #E6ECD2;
    transform: rotate(45deg);
    animation: bg 0.5s linear 2.5s forwards;
    opacity: 0;
    z-index: 99;
}

@keyframes bg {
    0% {
        transform: scale3d(0, 0, 0) rotate(45deg);
        opacity: 1;
    }
    75% {
        transform: scale3d(1, 1, 1) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: scale3d(1.5, 1.5, 1) rotate(45deg);
        opacity: 1;
    }
}

/*===================
animation04
====================*/

.animation04 {
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 9998;
}



/*===================
main content area
====================*/

.main-content-area {
    position: absolute;
    display:flex;
    align-items:center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(20deg, #006a30, #298700, #788900, #006a30, #f17604, #128ff9, #006a30);
    background-size: 1400% 1400%;
    transform-origin: center;
    animation: main_content_area 1s cubic-bezier(0.165, 0.84, 0.44, 1) 3.1s forwards, gradient 30s ease infinite;
    opacity: 0;
}

@keyframes main_content_area {
    0% {
        transform: scale3d(0, 1, 1);
        opacity: 1;
    }
    100% {
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@keyframes gradient {
    0%{background-position:44% 0%}
    50%{background-position:57% 100%}
    100%{background-position:44% 0%}
}

.main-content-inner {
  display:flex;
  padding-left:100px;
  padding-right:100px;
  margin:auto;
  max-width:1920px;
  align-items:center;
  height:100%;
}

.main-content-left {
  flex-basis:55%;
  display:flex;
  max-height:650px;
  align-items:center;
  flex-direction:column;
  justify-content:space-between;
}

.main-content-heading {
  font-family:'Mulish',Helvetica,Arial, sans-serif;
  font-weight:900;
  font-size:4rem;
  line-height:1;
  color:white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);  
  animation: name 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) 4.1s forwards;
  opacity: 0;
}

.heading-underline {
  background-image: linear-gradient(120deg, #F17604 0%, #ffd304 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
}

.main-content-subheading {
  font-family:'Mulish',Helvetica,Arial, sans-serif;
  font-weight:300;
  font-size:1.75rem;
  color:white;  
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  animation: name 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) 4.6s forwards;
  opacity: 0;
  margin-top:35px;
}

@keyframes name {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.main-content-button {
  margin-top:35px;
  animation: name 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) 5.1s forwards;
  opacity: 0;
  display:flex;
  align-self:flex-start;
}

.cta-button {
  min-width: 300px;
  min-height: 60px;
  font-family: 'Mulish', sans-serif;
  font-size: 22px;
  text-transform: lowercase;
  letter-spacing: 1.3px;
  font-weight: 600;
  color: white;
  background: #4FD1C5;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
background-image: -webkit-linear-gradient(
0deg
,#FF5C00 0,#ff7917 100%);
  background-image: -ms-linear-gradient(0deg,#FF5C00 0%,#ff7917 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 0 2px 5px 0 rgba(63,54,132,.1)!important;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  text-decoration: none;
  padding: 10px;
  -webkit-transform:translate3d(0,0,0);
  -webkit-backface-visibility: hidden;
	-webkit-transform: scale(1);
	-webkit-transform-style: preserve-3d;
  }

button::before {
content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #AFD402;
  box-shadow: 0 0 60px rgba(175,212,2,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

button:hover, button:focus {
  color: white;
  transform: translateY(-6px);
}

button:hover::before, button:focus::before {
  opacity: 1;
}

button::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #AFD402;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

button:hover::after, button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.main-content-right {
  flex-basis:45%;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}

.main-content-logo {
  align-self:flex-end;
  opacity:0;
  animation: name 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) 6s forwards;
  padding-top:20px;
}

.logo-img {
  width:auto;
  max-height:120px;
  max-width:100%;
}

.main-content-credit {
  align-self:flex-end;
  border-radius: 5px;
  padding-bottom:20px;
}

.main-content-credit-text {
  font-size:11px;
  color:#128FF9;
  text-align:left;
  margin-bottom:5px;
}

.main-content-credit-logos {
  text-align:left;
}

.credit-logo {
  width:55px;
  height:55px;
  filter: grayscale();
  transition: filter 0.4s ease-in-out;
}

.credit-logo:hover {
  filter:none;
}

.clf {
  margin-right:30px;
  animation: name 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) 7s forwards;
  opacity:0;
}

.cls {
  animation: name 0.75s cubic-bezier(0.165, 0.84, 0.44, 1) 7.2s forwards;
  opacity:0;
}