/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 01 2021 | 14:49:32 */
/* UTILITIES */
.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* TYPOGRAPHY */

/* BUTTONS */
@media only screen and (max-width: 767px) {
  .dsm_button .et_pb_button_module_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 5%;
    padding-right: 5%;
  }

  body #page-container .et_pb_section .dsm_button .et_pb_button_module_wrapper a.et_pb_button {
    margin-left: 0 !important;
  }
}

/* HEADER */
#header-bar-inner {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

#header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header-bar {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

#header-bar.active {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

/* MENU */
#header-menu, 
#header-menu .et_pb_menu_inner_container {
  height: 100%;
}

#header-menu .nav > li {
  margin: 0;
  padding: 0;
}

#header-menu .nav > li > a {
  position: relative;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  overflow: hidden;
}

#header-menu .nav > li:hover > a {
  background: rgba(255,255,255,.25);
}

#header-menu .nav > li > a:hover {
  opacity: 1;
}

#header-menu .nav > li > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 25px;
  height: 25px;
  background-image: url('https://richierichcoin.com/wp-content/uploads/2021/05/diamond-icon_2.png');
  background-size: contain;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#header-menu .nav > li:hover > a:after {
  -webkit-transform: translate(-50%, calc(0% + 8px));
      -ms-transform: translate(-50%, calc(0% + 8px));
          transform: translate(-50%, calc(0% + 8px));
}

#header-menu.et_pb_menu .et_mobile_nav_menu {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 980px) {
  #header-left {
    margin-bottom: 0;
  }
}

/* HOMEPAGE */
#home-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ICON FILLS */
.icon-fill-row .et_pb_column .icon-color-alt {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.icon-fill-row .et_pb_column .et_pb_code {
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.icon-fill-row .et_pb_column:hover .et_pb_code {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.icon-fill-row .et_pb_column:hover .icon-color-alt {
  fill: #eaea20;
}

/* ROAD MAP */
.road-map {
  position: relative;
}

.road-map:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 80%;
  max-width: 980px;
  border-bottom: 1px dashed #ccc;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.road-map .step {
    width: 30px;
    height: 30px;
    background: #2eb3d5;
  border: 3px solid #2eb3d5;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
}

.road-map .step.step-future, 
.road-map .step.step-current {
  background: #fff;
}

.road-map .step.step-past:after {
  content: "✓";
  font-size: 36px;
  text-align: center;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 55%;
  left: 55%;
  color: yellow;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.road-map .step.step-current:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: yellow;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 980px) {
  .road-map:before {
    display: none!important;
  }
}