:root {
  --main-color: #300000;
  --text-color: #363535;
  --textlite-color: #363535;
  --light-main-color: #fae3ea;
  --sub-color: #ff01b46b;
  --light-sub-color: #ff01b4ff;
  --bg-color: #e3e3e3;
  --grey-color: #7c818c;
  --white-color: #d4d4d4;
  --text-color: #363535;
  --border-color: #d4d4d4;
  --main-gradient: linear-gradient(
    to bottom,
    #ff01b46b 0%,
    #ff01b4ff 100%
  );
  --xs-pad: 8px;
  --sm-pad: 16px;
  --main-pad: 24px;
  --md-pad: 32px;
  --lg-pad: 48px;
  --xl-pad: 72px;
  --xxl-pad: 96px;
  --lg-neg: -48px;
  --main-neg: -24px;
  --main-font: 16px;
  --sm-font: 14px;
  --input-font: 16px;
  --button-font: 14px;
  --sm-icon: 18px;
  --main-icon: 32px;
  --large-icon: 96px;
}
html {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
body {
  padding: 0;
  margin: 0;
  background: var(--white-color);
  font-family: 'Source Sans Pro', sans-serif;;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #300000;
  color: var(--text-color);
  background-color: #ffdcdc;
}
.boldText {
    font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: fredoka one, Arial, Helvetica, sans-serif;
  margin-top: 0;
}
h1 {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 3px;
  margin-bottom: var(--main-pad);
}
h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 5px;
  margin-bottom: var(--sm-pad);
  color: #ef03b5;
  background: linear-gradient( to top, #ff9be1 0%, #ff01b4ff 100% );
  background: -webkit-linear-gradient( to top, #ff9be1 0%, #ff01b4ff 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: var(--xs-pad);
}
h4 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: var(--xs-pad);
  line-height: 1;
}
h2 span,
h3 span {
  color: var(--sub-color);
}
.sub-title {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: var(--sm-pad);
  color: var(--sub-color);
}
.italic {
  font-style: italic;
}
p {
  margin-bottom: 2.4rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.lead,
.page-intro p,
.article-intro p {
  font-weight: 300;
  font-size: 26px;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
h3 + .lead {
  margin-top: 1.6rem;
}
:focus {
  -moz-outline-style: none;
}
::selection {
  background-color: #333;
  color: #fff;
}
::-moz-selection {
  background-color: #333;
  color: #fff;
}
img {
  max-width: 100%;
}
input:focus,
button:focus {
  outline: none;
}
a,
a:visited {
  color: var(--main-color);
  border: none;
  outline: 0;
  -moz-outline-style: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  color: var(--text-color);
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
a img {
  border: none;
  outline: 0;
  -moz-outline-style: none;
}
.page p a {
  font-weight: 400;
  text-decoration: underline;
}
input.button,
.button,
.button:visited,
.w-btn,
.l-btn,
.c-btn {
  position: relative;
  cursor: pointer;
  color: var(--textlite-color);
  font-size: var(--button-font);
  font-family: 'Source Sans Pro', sans-serif;;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 7px;
  outline: none;
  background: var(--sub-color);
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}
a.button,
.button {
  color: var(--textlite-color);
  display: inline-block;
  text-decoration: none !important;
  padding: 12px 24px;
}
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}
.button.disabled,
.button:disabled {
  opacity: 0.64;
  cursor: default;
}
.button.disabled,
.button:disabled:hover {
}
.l-btn.button.disabled:hover,
.l-btn.button:disabled:hover {
  color: var(--textlite-color);
  border: 1px solid var(--textlite-color);
}
.button:hover,
.button:active,
.button:focus {
  background: var(--sub-color);
  box-shadow: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.icon-btn {
  display: inline-flex;
  padding: 12px 16px 12px 12px;
}
.icon-btn i {
  display: flex;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 16px;
}
.l-btn,
.l-btn:visited,
a.l-btn,
a.l-btn:visited {
  display: inline-block;
  text-decoration: none;
  padding: 11px 24px;
  padding: 12px 24px 10px;
  color: var(--textlite-color);
  background: 0 0;
  box-shadow: none;
  border: 1px solid var(--textlite-color);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.l-btn:hover,
.l-btn:active,
.l-btn:focus {
  background: 0 0;
  color: var(--sub-color);
  border: 1px solid var(--sub-color);
  box-shadow: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-clean,
.btn-clean:visited,
a.btn-clean,
a.btn-clean:visited {
  display: inline-block;
  font-size: var(--button-font);
  color: var(--main-color);
  border: none;
  background: 0 0;
  box-shadow: none;
  line-height: 24px;
  padding: 12px 24px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-main {
  position: relative;
  background: 0 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn-main span {
  position: relative;
  display: block;
  padding-top: 2px;
  line-height: 22px;
  z-index: 1;
}
.btn-main:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 7px;
  background: var(--main-gradient);
  z-index: -1;
}
.btn-main:hover {
  background: var(--sub-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-main.blue-btn:before {
  background: linear-gradient(
    to bottom,
    rgba(121, 202, 97, 1) 0%,
    rgba(46, 163, 11, 1) 100%
  );
  background: linear-gradient(180deg, #404eed 0%, #2c359c 100%) 100%;
}
.blue-btn,
.blue-btn:visited,
a.blue-btn,
a.blue-btn:visited {
  color: var(--textlite-color);
}
.blue-btn:hover,
.blue-btn:active,
.blue-btn:focus {
  background: #2c359c;
  color: var(--textlite-color);
}
.btn-clean i {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  width: 24px;
  text-align: center;
  vertical-align: top;
  margin-right: 4px;
}
.btn-clean:hover,
.btn-clean:active,
.btn-clean:focus,
a.btn-clean:hover,
a.btn-clean:active,
a.btn-clean:focus {
  color: var(--sub-color);
  border: none;
  /*background: 0 0;*/
}
.i-btn,
.i-btn:visited {
  display: block;
  text-decoration: none;
  padding: 0;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 20px;
  color: var(--main-color);
  background: 0 0;
  border: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.i-btn:hover,
.i-btn:active,
.i-btn:focus {
  background: 0 0;
  color: var(--sub-color);
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn-group .btn {
  position: relative;
  display: flex;
  padding: 11px 16px;
  padding: 0;
  font-size: 14px;
  border: 1px solid var(--border-color);
  color: var(--grey-color);
  background: #fff;
}
.btn-group .btn span {
  width: 48px;
  line-height: 46px;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
}
.btn-group .btn span i {
}
.btn-group .btn:hover,
.btn-group .btn.active {
  color: var(--sub-color);
}
.btn-group .btn div {
  width: 48px;
  text-align: left;
  line-height: 46px;
}
.txt-link,
.txt-link:visited,
.btn-link,
.btn-link:visited {
  background: 0 0;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  text-decoration: none;
  color: var(--nav-light-color);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn-link {
  font-weight: 400;
  text-decoration: none;
}
.txt-link:hover,
.txt-link:focus,
.txt-link:active,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  color: var(--sub-color);
  text-decoration: none;
}
@-moz-document url-prefix() {
}
.large-btn {
  font-size: 20px;
  padding: 18px 48px;
  line-height: 1.8;
}
.large-btn:hover,
.large-btn:active,
.large-btn:focus {
}
#outer-wrapper {
  position: relative;
}
#bg-wrapper {
  position: fixed;
  content: '';
  display: none;
  opacity: 0;
  width: 100%;
  height: 150%;
  z-index: 10;
  background: #060726;
}
.menu-open #bg-wrapper {
  display: block;
  opacity: 1;
  -webkit-animation: opac-in-animate 0.3s ease-out forwards;
  animation: opac-in-animate 0.3s ease-out forwards;
}
.menu-ani #bg-wrapper {
  display: block;
  opacity: 1;
  -webkit-animation: opac-out-animate 0.3s ease-in forwards;
  animation: opac-out-animate 0.3s ease-in forwards;
}
#main-wrapper {
  position: relative;
}
#content-wrapper {
  position: relative;
  display: block;
  z-index: 2;
  padding: 96px 0;
  overflow: hidden;
  /*background: var(--textlite-color);*/
}
.home-wrap #content-wrapper {
  padding: 0;
}
#content-wrapper.page-wrap {
  padding: 72px 0;
}
#content-wrapper.page-wrap:after {
  display: none !important;
}
#navbar {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  top: 0;
  z-index: 99;
  background: #fff;
}
#navbar.sticky {
  position: fixed;
  box-shadow: 0 1px 0 #e2e2e2;
  background: #faf4f0;
}
.home-wrap #navbar,
.banner-page #navbar {
  background: 0 0;
}
.home-wrap #navbar.sticky,
.banner-page #navbar.sticky {
  background: #faf4f0;
}
.navbar-header {
  position: relative;
}
.logo-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  margin: 8px 0;
  padding: 0 8px;
}
.logo-main-mob {
  display: none;
}
.logo-main img {
  height: 80px;
  width: auto;
}
#navbar.sticky .logo-main img {
  height: 48px;
}
.logo-main span {
  position: relative;
  display: block;
}
#navbar .logo-main-light {
  display: none;
}
.logo-mob,
.nav-back-btn,
.nav-share-btn {
  display: none;
}
.nav-toggle {
  position: relative;
  float: right;
  cursor: pointer;
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 16px 0 16px 16px;
  background: 0 0;
  border: none;
  overflow: hidden;
}
.nav-icon span,
.menu-ani .nav-icon span {
  display: block;
  position: absolute;
  top: 11px;
  left: 3px;
  right: 3px;
  height: 2px;
  background: var(--main-color);
  transition: background 0s 0.2s;
}
.nav-icon span::before,
.nav-icon span::after,
.menu-ani .nav-icon span::before,
.menu-ani .nav-icon span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  content: '';
  transition-duration: 0.2s, 0.2s;
  transition-delay: 0.2s, 0s;
}
.nav-icon span::before,
.menu-ani .nav-icon span::before {
  top: -5px;
  transition-property: top, transform;
}
.nav-icon span::after,
.menu-ani .nav-icon span::after {
  bottom: -5px;
  transition-property: bottom, transform;
}
.menu-open .nav-icon span {
  background: 0 0;
}
.menu-open .nav-icon span::before {
  top: 0;
  width: 100%;
  transform: rotate(45deg);
}
.menu-open .nav-icon span::after {
  bottom: 0;
  width: 100%;
  transform: rotate(-45deg);
}
.menu-open .nav-icon span::before,
.menu-open .nav-icon span::after {
  transition-delay: 0s, 0.2s;
}
.navbar-header {
  display: flex;
  flex-direction: row;
}
.nav-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 16px;
}
#navbar.sticky .nav-wrap {
  padding-top: 0;
}
#nav-main {
  position: relative;
  display: flex;
  width: calc(50% - 80px);
  justify-content: flex-end;
}
#nav-right {
  position: relative;
  display: flex;
  width: calc(50% - 80px);
  justify-content: flex-start;
}
#nav-main ul,
#nav-right ul {
  position: relative;
  margin: 16px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
#nav-main ul li,
#nav-right ul li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0 24px;
  padding: 12px 0;
  margin: 0 24px;
  text-align: center;
}
#nav-main ul li a,
#nav-right ul li a {
  display: block;
  line-height: 20px;
  padding: 10px 0;
  color: var(--textlite-color);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}
#navbar.sticky #nav-main ul li a,
#navbar.sticky #nav-right ul li a {
  color: var(--main-color);
}
#nav-main ul li a:hover,
#nav-right ul li a:hover,
#navbar.sticky #nav-main ul li a:hover {
  color: var(--sub-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#nav-main .show-mob {
  display: none !important;
}
#navbar.sticky,
.menu-open #navbar {
  position: fixed;
}
#nav-right .button {
  margin: 24px 8px;
}
#navbar.sticky #nav-right .button {
  margin: 16px 8px;
}
#navbar.sticky #nav-main ul,
#navbar.sticky #nav-right ul {
  margin: 8px 0;
}
#nav-right ul.nav-social li a:hover,
#navbar.sticky #nav-right ul.nav-social li a:hover {
  color: var(--sub-color);
}
#navbar .btn-clean,
#navbar .btn-clean:visited,
#navbar a.btn-clean,
#navbar a.btn-clean:visited {
  color: var(--textlite-color);
}
#navbar.sticky .l-btn,
#navbar.sticky .l-btn:visited {
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
#navbar.sticky .btn-clean,
#navbar.sticky .btn-clean:visited,
#navbar.sticky a.btn-clean,
#navbar.sticky a.btn-clean:visited,
#navbar.sticky .dropdown-toggle::after {
  color: var(--main-color);
}
.navbar-header:after,
#nav-main ul:after,
.icon-blocks:after {
  content: '';
  display: block;
  clear: both;
}
#banner-wrapper {
  position: relative;
  display: block;
  height: 100%;
  min-height: 100vh;
  min-height: 110vh;
  z-index: 1;
  overflow: hidden;
}
#banner-wrapper:before {
  content: '';
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*background: url('../images/bg/longSpaceScene.jpg') top center no-repeat; 
  background-size: cover; */
  background: url(../images/bg/pinkstripes.png) repeat;
  
  z-index: 0;
}
#banner-wrapper:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 10%;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #fae3ea 100%
  );
  z-index: 5;
}
#banner-main {
  position: fixed;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  padding-top: 75px;
  z-index: 3;
}

.clouds-wrapper {
  position: absolute;
  display: block;
  width: 100%;
  height: 40%;
  left: 0%;
  top: 20%;
  opacity: 0.6;
  z-index: 1;
}
.clouds-1,
.clouds-2 {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  left: 0;
  animation: b-clouds-animate 80s infinite;
}
.clouds-2 {
  left: 100%;
}
#banner-wrapper .container {
  position: relative;
  display: flex;
  z-index: 2;
}
.banner-main-wrap {
  position: relative;
  z-index: 4;
}
.banner-text {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-self: center;
  width: 100%;
  color: var(--textlite-color);
  z-index: 3;
}
.banner-header {
  position: relative;
  display: flex;
  flex-direction: column;
}
.banner-main-top {
  position: relative;
  display: block;
  padding: 25px 0px;
}

.banner-text .banner-header-title {
  position: relative;
  display: inline-block;
}
.banner-text .banner-header-title h1 {
    position: relative;
    display: block;
    text-transform: uppercase;
    animation: opacity-in-animate 2s ease-in forwards;
    opacity: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0px;
    margin-bottom: 0px;
    text-align: left;
    font-style: italic;
    width: 75%;
    margin: auto;
    color: #f278ce;
}
.banner-text p {
  position: relative;
  line-height: 1.6;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: var(--main-pad);
  color: var(--textlite-color);
  opacity: 0;
  animation: opac-in-animate 1s ease-in forwards;
}
.banner-header-button {
  margin-top: 24px;
  opacity: 0;
  animation: btm-fade-animate 1.2s ease-out forwards;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  display: flex;
  justify-content: center;
}
.banner-main-img {
  position: absolute;
  display: block;
  width: 100%;
  height: 110%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.banner-main-back- {
  position: fixed;
  background: url('../images/main-banner-back.png') top center no-repeat;
  background-size: cover;
  z-index: 1;
}
.banner-main-mid- {
  background: url('../images/main-banner-mid.png') top center no-repeat;
  background-size: cover;
  z-index: 2;
}
.banner-main-front {
  /*background: url('../images/bg/betterBeach.png') bottom center no-repeat; */
  background-size: cover;
  z-index: 1;
}
.flipdown {
  height: initial;
  width: initial;
  padding-left: 16px;
  margin: 0 auto;
}
.flipdown .rotor-group {
  position: relative;
  padding-right: 16px;
  display: flex;
  flex-wrap: wrap;
  width: 25%;
  width: 120px;
}
.rotor-group .rotor-group-heading {
  width: 100%;
  width: 104px;
  margin-top: 16px;
  line-height: 24px;
  text-transform: lowercase;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;;
  font-size: 14px;
  opacity: 0.72;
  order: 3;
}
.flipdown .rotor-group-heading:before {
  height: 24px;
  line-height: 24px;
}
.flipdown .rotor {
  border-radius: 0;
  margin: 0 2px 0 0;
  font-size: 5rem;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;;
}
.flipdown .rotor-leaf-front {
}
.flipdown .rotor-leaf-rear {
}
.flipdown.flipdown__theme-light .rotor,
.flipdown.flipdown__theme-light .rotor-top,
.flipdown.flipdown__theme-light .rotor-leaf-front,
.flipdown.flipdown__theme-light .rotor-bottom,
.flipdown.flipdown__theme-light .rotor-leaf-rear {
  color: var(--white-color);
  background-color: var(--sub-color);
  background-color: #ff01b44a;
  box-shadow: none;
}
.flipdown.flipdown__theme-light
  .rotor-group:nth-child(n + 2):nth-child(-n + 3):before,
.flipdown.flipdown__theme-light
  .rotor-group:nth-child(n + 2):nth-child(-n + 3):after {
  background-color: #a86e71;
  display: none;
}
.flipdown.flipdown__theme-light .rotor-group-heading:before {
  color: var(--text-color);
  font-weight: 300;
}
.flipdown.flipdown__theme-light .rotor:after {
  border: none;
}
.content-banner-wrap {
  position: relative;
  display: block;
  padding: 50px 0;
  z-index: 1;
}
.content-banner,
.info-blocks {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.content-banner.content-banner-txt-img {
  margin-left: -48px;
  margin-right: -48px;
}
.center-page-wrap .content-banner {
  flex-direction: column;
  justify-content: center;
}
.banner-blk-txt,
.banner-blk-img,
.content-blk-block {
  position: relative;
  display: flex;
  width: 50%;
  padding: 0 48px;
  align-content: flex-start;
  align-self: center;
  flex-direction: column;
}
.banner-blk-txt {
  width: 50%;
}
.banner-blk-img {
  width: 35%;
  padding: 0 48px;
}

.banner-blk-img img {
    /*
    border-width: 10px;
    border-style: double;
    border-radius: 10px;
    border-color: var(--main-gradient); */
    background: 
      linear-gradient(to left, #d53a9d, #743ad5) padding-box,
      linear-gradient(to left, #743ad5, #d53a9d) border-box;
  border-radius: 1em;
  border: 5px solid transparent;
}

.banner-blk-txt.banner-txt-sm {
  width: 40%;
  width: 44%;
}
.banner-blk-txt.banner-txt-lg {
  width: 60%;
  width: 56%;
}
.content-blk-block {
  flex-direction: row;
  justify-content: center;
}
.content-banner-title {
  position: relative;
  display: block;
  margin-bottom: 24px;
}
.content-banner-title h2 {
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}
.content-banner-title h2 span {
  display: block;
}
.content-banner-title-icon {
  position: inherit;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}
.content-banner-title-icon img {
  height: 48px;
  width: auto;
}
.title-icon h2 {
  display: inline-block;
  line-height: 48px;
}
.title-icon span {
  display: inline-block;
  margin-right: 16px;
  vertical-align: top;
}
.title-icon img {
  height: 48px;
  width: auto;
}
.content-banner-txt {
  position: relative;
  display: block;
}
.content-banner-txt p:last-child {
  margin-bottom: 0;
}
.content-banner-txt.lead-p p:first-child {
  font-size: 26px;
  line-height: 1.6;
  color: var(--grey-color);
}
.content-banner-txt p + .button {
  margin-top: 24px;
}
.content-banner-buttons {
  margin-top: 24px;
}
.content-banner-buttons .button {
  margin: 0 8px;
  display: inline-flex;
  vertical-align: top;
}
.bottomButtons{
    width: 100%;
    text-align: center;
    margin-top: 5%;
}
.banner-img-blocks {
  position: relative;
  display: flex;
  padding: 0;
  margin-left: -24px;
  margin-right: -24px;
  align-self: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.banner-blk-img-wrap {
  position: relative;
  display: flex;
  padding: 0 24px 48px;
  padding: 0;
  width: 33.3333%;
}
#content-3 .banner-blk-img-wrap {
  opacity: 0;
}
#content-3.animate .banner-blk-img-wrap {
  -webkit-animation: btm-fade-animate 0.6s ease-out forwards;
  animation: btm-fade-animate 0.6s ease-out forwards;
}
#content-3 .banner-img-blocks .banner-blk-img-wrap:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
#content-3 .banner-img-blocks .banner-blk-img-wrap:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
#content-3 .banner-img-blocks .banner-blk-img-wrap:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
#content-3 .banner-img-blocks .banner-blk-img-wrap:nth-child(4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.banner-img-blk {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: 0;
}
.banner-img-blk:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 24px;
  opacity: 0.48;
}
.banner-img-blk-img {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin-bottom: 24px;
}
.banner-img-blk-img span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 64px;
  height: 64px;
  font-size: 48px;
  color: var(--grey-color);
}
.banner-img-blk-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  font-size: 75px;
  margin-bottom: 25px;
}
.banner-img-blk-txt {
  display: flex;
  flex-direction: column;
}

.banner-img-blk-txt h3 {
    text-align: center;
    font-weight: 600;
    padding-bottom: 15px;
}
.banner-img-blk-txt p {
  margin-bottom: 0;
}
#content-bottom {
  position: relative;
  color: var(--white-color);
  background: var(--main-color);
}
.content-banner.content-banner-center {
  flex-direction: column;
}
.content-banner-center .banner-blk-txt {
  width: 100%;
  text-align: center;
  padding: 0 96px;
  padding: 0 20%;
}
.content-banner-center .banner-blk-img {
  width: 30%;
  margin-bottom: 24px;
  text-align: center;
}
.content-banner-center .button {
  align-self: center;
}
.content-banner-center p + .button {
  margin-top: 24px;
}
.content-banner-center .banner-blk-img img {
  position: relative;
  display: inline-block;
  height: 144px;
  width: auto;
  margin: 0 auto;
}
.content-banner-center-block {
  margin-top: 48px;
  text-align: center;
}
.content-center {
  position: relative;
  display: block;
  text-align: center;
  padding: 0 40px;
  padding: 0 10%;
  margin-bottom: var(--lg-pad);
}
.content-top-center .content-center {
  padding: 0;
}
.content-center-title {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 70%;
}
.content-center-title h2 {
  margin-bottom: 0;
}
.content-banner.content-banner-left {
  justify-content: flex-start;
}
.content-banner-left .banner-blk-txt {
  padding: 0;
  width: 100%;
  margin-bottom: var(--lg-pad);
}
.content-big-list {
  position: relative;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.content-big-list li {
  position: relative;
  display: flex;
  line-height: 80px;
  margin: 0;
  padding: 0;
  font-size: 24px;
  border-bottom: 1px solid var(--border-color);
}
.content-big-list li span {
  width: 30%;
  text-align: left;
  letter-spacing: 1px;
  font-family: fredoka one, Arial, Helvetica, sans-serif;
}
.content-big-list li div {
  width: 70%;
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.profile-users-wrapper {
  position: relative;
  margin-bottom: var(--lg-pad);
}
.profile-users {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 48px;
  margin-top: 48px;
  justify-content: center;
}
.profile-user-wrap {
  display: inline-block;
  padding: 0 16px;
  margin-bottom: 48px;
  width: 20%;
  width: 16.6666%;
  opacity: 0;
}
.animate .profile-user-wrap {
  -webkit-animation: btm-fade-animate 0.6s ease-out forwards;
  animation: btm-fade-animate 0.6s ease-out forwards;
}
.profile-users .profile-user-wrap:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.profile-users .profile-user-wrap:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.profile-users .profile-user-wrap:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.profile-users .profile-user-wrap:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.profile-users .profile-user-wrap:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.profile-users .profile-user-wrap:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.profile-users .profile-user-wrap:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.profile-users .profile-user-wrap:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.profile-users .profile-user-wrap:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.profile-user {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.profile-user-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin-bottom: 16px;
}
.profile-user-img span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 128px;
  height: 128px;
  line-height: 128px;
  font-size: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
.profile-user-title {
  position: relative;
  line-height: 1.6;
  margin-bottom: var(--sm-pad);
}
.profile-user-title div {
  font-family: fredoka one, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.profile-user-title span {
  font-weight: 400;
}
#content-roadmap {
  color: var(--white-color);
  background: var(--sub-color);
  background: #023355;
  background: linear-gradient(0deg, #060726 0%, #02406a 100%) 0% 0%;
  overflow: hidden;
  padding: 72px 0 240px;
  padding: 72px 0 0;
}
#content-roadmap .content-banner-title {
  margin-bottom: 24px;
}
#content-roadmap .content-banner-title h2 {
  color: var(--white-color);
}
.road-map-bg {
  position: absolute;
  display: block;
  background: url('../images/rocket-knockers-roadmap-banner.png') center bottom
    no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  bottom: -20%;
  left: 0;
  z-index: 1;
}
#content-roadmap:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 25%;
  bottom: 0%;
  left: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}
.road-map {
  position: relative;
  overflow-x: hidden;
}
.road-map-wrap {
  position: relative;
  display: flex;
  cursor: grab;
  overflow-x: scroll;
  padding-top: 72px;
  padding-bottom: 120px;
  padding-bottom: 320px;
}
.road-map ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}
.road-map ::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.road-map ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  cursor: pointer;
  transition: background 300ms ease;
}
.road-map ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}
.road-map-container {
  position: relative;
  display: flex;
}
.road-map-item {
  position: relative;
}
.road-map-time-line {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background: rgba(255, 255, 255, 0.32);
  z-index: 0;
}
.road-map-blocks {
  position: relative;
  display: flex;
  height: 360px;
  z-index: 2;
}
.road-map-1 .road-map-blocks {
  padding-left: 48px;
}
.road-map-4 .road-map-blocks {
  padding-right: 48px;
}
.road-map-block {
  position: relative;
  width: 25%;
  width: 320px;
  width: 360px;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
}
.road-map-block.rm-top {
  padding-bottom: 12.5%;
  padding-bottom: 208px;
  padding-bottom: 224px;
  justify-content: flex-end;
}
.road-map-block.rm-btm {
  padding-top: 12.5%;
  padding-top: 224px;
}
.road-map-date {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.road-map-title {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  font-family: fredoka one, Arial, Helvetica, sans-serif;
  color: var(--white-color);
}
.road-map-dot-wrap {
  position: absolute;
  display: block;
  text-align: center;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
}
.road-map-dot {
  position: absolute;
  position: relative;
  display: block;
  text-align: center;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 7px;
  border-radius: 50%;
  background: var(--bg-color);
  background: linear-gradient(180deg, #ffffff 0%, #dfdfdf 100%) 0% 0%;
  border: 1px solid var(--border-color);
  z-index: 2;
}
.road-map-dot span {
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  width: 8px;
  height: 8px;
  background: #e3e3e3;
  box-shadow: 0 0 6px #022438a3;
}
.road-map-checked .road-map-dot-wrap {
  width: 48px;
  height: 48px;
  top: calc(50% - 24px);
}
.road-map-checked .road-map-dot {
  width: 48px;
  height: 48px;
  padding: 11px;
  background: linear-gradient(180deg, #ffffff 0%, #dfdfdf 100%) 0% 0%;
  border: 1px solid var(--white-color);
}
.road-map-checked .road-map-dot span {
  position: relative;
  display: block;
  background: 0 0;
  box-shadow: none;
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}
.road-map-checked .road-map-dot span:before {
  content: '\f00c';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: var(--sub-color);
  font-family: 'font awesome 5 pro';
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
}
#road-map-links {
  display: flex;
  justify-content: center;
  margin-left: auto;
}
a.road-map-link {
  display: inline-block;
  border: 1px solid var(--white-alpha-color);
  background: 0 0;
  border-radius: 16px;
  padding: 4px 16px;
  height: 32px;
  line-height: 24px;
  margin: 0 8px;
  color: var(--white-alpha-color);
  font-size: 14px;
  font-weight: 500;
}
a.road-map-link:hover {
  color: var(--white-color);
  border: 1px solid var(--white-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a.road-map-link.rm-left,
a.road-map-link.rm-right {
  border: none;
  font-size: 20px;
}
.road-map-link span {
  width: initial;
  height: initial;
  margin: 0;
  background: 0 0;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
}
#road-map .owl-dots {
  margin-top: 24px;
}
.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-dots .owl-dot,
.owl-carousel button.owl-dot {
  display: inline-block;
  border-radius: 12px;
  padding: 4px 8px !important;
  height: 16px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.48;
  zoom: 1;
  box-shadow: none;
  border: none;
  background: 0 0;
}
.owl-dots .owl-dot.active {
  opacity: 1;
}
.owl-dots .owl-dot:hover {
  opacity: 1;
}
.owl-dots .owl-dot span {
  width: initial;
  height: initial;
  margin: 0;
  background: 0 0;
  display: block;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 12px;
  padding: 0 16px;
  height: 4px;
  line-height: 4px;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: #fff;
}
#content-faq {
  background: #e71da921;
}
#content-faq .content-banner-center {
  margin-bottom: var(--lg-pad);
}
.faq-main {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 12%;
}
.faq-blk {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #30000052;
  padding: var(--main-pad);
  margin-bottom: var(--main-pad);
  border-radius: 20px;
}
.faq-header {
  position: relative;
  width: 100%;
}
.faq-header .btn-link {
  display: block;
  width: 100%;
  padding: 8px 48px 8px 0;
  line-height: 24px;
  font-size: 22px;
  font-family: roboto slab, Arial, Helvetica, sans-serif;
  text-align: left;
  font-weight: 700;
}
.faq-header .btn-link span {
  display: block;
  position: absolute;
  padding: 0;
  top: -4px;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--main-gradient);
  border-radius: 50%;
}
.faq-header .btn-link span:after {
  content: '\f068';
  display: block;
  position: absolute;
  padding: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  line-height: 48px;
  text-align: center;
  color: var(--white-color);
  font-family: 'font awesome 5 pro';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  vertical-align: middle;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-header .btn-link.collapsed span:after {
  content: '\f067';
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-body {
  padding-top: var(--main-pad);
}
.faq-body p:last-child {
  margin-bottom: 0;
}
#content-1.content-banner-wrap {
  background: #efceb7;
  background: url('../images/rocket-knockers-story-banner.jpg') center bottom
    no-repeat #efceb7;
  background-size: cover;
  padding-bottom: 10px;
}
#content-1 .banner-blk-txt {
  color: var(--white-color);
  text-shadow: 0 0 12px #00000029;
}
#content-2.content-banner-wrap {
  background: var(--light-main-color);
}
#content-3.content-banner-wrap {
  background: #383636;
  /*background: url('../images/rocket-knockers-theclub-banner.jpg') center top
    no-repeat #632d7b61; */
  background-size: cover;
  color: var(--white-color);
}
#content-4.content-banner-wrap {
  position: relative;
  background: linear-gradient(180deg, #632d7b 0%, #32173e 100%) 0% 0%;
  color: var(--white-color);
  padding-bottom: 25px;
  z-index: 1;
}
#content-4.content-banner-wrap:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 3%;
  left: 0;
  z-index: 0;
  background: url('../images/rocket-knockers-twoknockers-banner.png') center bottom
    no-repeat;
  background-size: contain;
  pointer-events: none;
}
.sub-banner {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 12%;
  left: 0;
  z-index: 3;
}
.sub-banner:after {
  content: '';
  position: absolute;
  display: block;
  top: 98%;
  left: 0;
  height: 300%;
  width: 100%;
  background: #060726;
}
.sub-banner img {
  width: 100%;
}

#content-5.content-banner-wrap {
  color: var(--white-color);
  background: linear-gradient(180deg, #060726 0%, #02406a 100%) 0% 0%;
  z-index: 2;
}
#content-5.content-banner-wrap:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -5%;
  left: 0;
  z-index: 0;
  background: url('../images/rocket-knockers-dreamteam-banner-stars.png') center top
    no-repeat;
  background-size: cover;
}
#content-6.content-banner-wrap {
  background: var(--light-main-color);
}
#content-1 .banner-blk-txt,
#content-2 .banner-blk-txt,
#content-2 .banner-blk-img,
#content-6 .banner-blk-txt,
#content-6 .banner-blk-img {
  opacity: 0;
}
#content-2.animate .banner-blk-txt,
#content-6.animate .banner-blk-txt {
  -webkit-animation: left-in-animate 0.6s ease-out forwards;
  animation: left-in-animate 0.6s ease-out forwards;
}
#content-2.animate .banner-blk-img,
#content-6.animate .banner-blk-img {
  -webkit-animation: opac-in-animate 0.6s ease-out forwards;
  animation: opac-in-animate 0.6s ease-out forwards;
}
#content-1.animate .banner-blk-txt {
  -webkit-animation: btm-fade-animate 0.6s ease-out forwards;
  animation: btm-fade-animate 0.6s ease-out forwards;
}
.captcha-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-bottom: -19px;
  margin-bottom: -9px;
}
#captcha-box,
#captcha-box-contact {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
#captcha_check,
#captcha_check_contact {
  position: absolute;
  margin-left: -99999px;
  margin-top: -999px;
  opacity: 0;
  height: 1px;
  width: 1px;
}
.g-recaptcha,
.g-recaptcha-contact {
}
.form-loading {
  position: absolute;
  display: none;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}
.loading-icon {
  position: relative;
  display: inline-block;
  width: 80px;
  max-width: 25%;
  text-align: center;
  align-self: center;
  margin-top: -10%;
}
.loading-txt {
  display: block;
  font-size: 1.8rem;
}
.form-loading.show {
  display: -webkit-flex;
  display: flex;
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#footer {
  position: relative;
  display: block;
  /*background: url('../images/main-banner-bg.jpg') top center no-repeat;
  background-size: cover; */
  color: var(--white-color);
  padding: 0;
  padding: 64px 0;
  font-size: 14px;
  z-index: 2;
}
.footer-content {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  text-align: center;
  justify-content: center;
  padding: 0;
  margin-bottom: var(--lg-pad);
}
.footer-logo-main {
  position: relative;
  display: block;
  width: 20%;
  text-align: left;
}
.footer-logo {
  position: relative;
  display: inline-block;
  text-align: left;
}
.footer-logo a {
  display: block;
  display: inline-block;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: inline-block;
  vertical-align: top;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 60%;
  margin: 0;
}
.footer-menu h3 {
}
.footer-menu ul {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.footer-menu ul li {
  position: relative;
  display: block;
  padding: 0 16px;
  margin: 0;
  color: var(--white-color);
}
.footer-menu ul li span {
  font-weight: 700;
}
.footer-menu ul li a {
  position: relative;
  display: block;
  padding: 4px 0;
  line-height: 24px;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer-menu ul li a:hover {
  color: var(--sub-color);
  opacity: 0.5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer-right {
  position: relative;
  display: block;
  width: 20%;
  text-align: right;
}
#footer-bottom {
  position: relative;
  display: flex;
  padding-top: 24px;
  z-index: 2;
  border-top: 1px solid var(--border-color);
}
.footer-copyright {
  font-weight: 400;
  font-size: 14px;
}
.footer-social {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  margin-left: auto;
  padding: 0;
  align-self: center;
  justify-content: center;
}
.footer-social li {
  margin: 0;
  margin-left: 16px;
  padding: 0;
}
.footer-social li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 18px;
  text-align: center;
  color: var(--white-color);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer-social li a i {
  margin: auto;
}
.footer-social li a img {
  height: 24px;
  width: auto;
  margin-top: 1px;
  vertical-align: text-top;
}
.footer-social li span {
  padding: 0 8px;
  line-height: 32px;
  font-family: fredoka one, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-social li a:hover {
  color: var(--sub-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer-mob {
  display: none;
}
body.modal-open {
  padding: 0 !important;
  overflow-y: hidden;
}
.modal-backdrop {
  background: #fff;
}
.modal-backdrop.in {
  opacity: 0.9;
}
.modal-backdrop.show {
  opacity: 0.9;
}
.modal {
  z-index: 9999;
}
.modal-open .modal {
}
.modal.modal-static .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.modal-dialog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 33%;
  min-width: 520px;
  max-width: 90%;
  align-self: center;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  background: #fff;
  border: 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.modal-content .close {
  position: absolute;
  right: 28px;
  top: 30px;
  opacity: 1;
  margin: 0;
  width: 22px;
  height: 22px;
  font-size: 12px;
  line-height: 10px;
  text-align: center;
  font-weight: 400;
  color: #fff;
  border: 1px solid #fff;
}
.modal-header {
  padding: 48px;
  border: 0;
}
.modal-header h2 {
  margin-bottom: 16px;
  font-size: 26px;
  color: var(--sub-color);
}
.modal-header p {
  margin: 0;
  color: var(--grey-color);
}
.modal-body {
  padding: 0 48px;
}
.modal-padding .modal-body {
  padding-bottom: 48px;
}
.modal-body .form-btns {
  text-align: right;
}
.modal-body p {
  margin: 0;
  margin-bottom: 16px;
}
.modal-footer {
  padding: 30px;
  border: 0;
  text-align: left;
}
.modal-success {
  position: relative;
  display: none;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  flex-direction: column;
  text-align: center;
  background: #fff;
  z-index: 9;
}
.complete.modal-success {
  position: absolute;
  display: flex;
  padding: 0 48px;
}
.modal-success-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 48px 0;
  z-index: 9;
}
.modal-success-block h2 {
  margin-bottom: 16px;
  font-size: 26px;
  color: var(--sub-color);
}
.modal-success-block p {
  color: var(--grey-color);
  margin-bottom: 48px;
  padding: 0 5%;
}
.modal-success-img {
  position: relative;
  text-align: center;
  margin: 48px 0;
}
.modal-success-img img {
  width: 60%;
  height: auto;
}
.modal-success-button {
}
.modal-success-button .button {
  display: inline-block;
  align-self: flex-end;
}
.modal-success-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 120px;
  height: 120px;
  line-height: 116px;
  border-radius: 50%;
  border: 2px solid var(--light-color);
  font-size: 60px;
  margin: 0 auto;
}
.modal-success-icon img {
  display: none;
  margin: 0 auto;
}
.complete.modal-success .modal-success-icon img {
  display: flex;
}
.modal-full {
  padding-right: 0 !important;
}
.modal-full .modal-dialog {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}
.modal-full .modal-content {
  height: 100%;
  width: 100%;
  background: #fff;
  box-shadow: none;
  border-radius: 0;
}
.modal-full .close-btn-full {
  position: absolute;
  right: 24px;
  top: 24px;
  right: 32px;
  top: 30px;
}
#footer:after,
.footer-copyright-content:after,
.home-center-banner:after,
.content-banner:after,
.info-blocks:after,
.content-blocks:after,
.project-blocks:after,
.project-blk-txt:after,
.footer-menu ul:after,
.form-wrap:after,
.form-cols:after,
.footer-content:after,
.footer-left:after,
.footer-right:after {
  content: '';
  display: block;
  clear: both;
}
.clear {
  display: block;
  clear: both;
}
.no_border {
  border: none !important;
}
.mob-break {
  display: none;
}
.web-break {
  display: inline;
}
.show-mob {
  display: none;
}
.waiting {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9;
  text-align: center;
  vertical-align: middle;
}
.form-wrap .waiting {
  width: 102%;
  left: -1%;
}
.form-wrapper .waiting {
  background: #f7f7fa;
}
.loader-wrap {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  opacity: 0;
  -webkit-animation: opac-in-animate 0.3s ease-out forwards;
  animation: opac-in-animate 0.3s ease-out forwards;
}
.lds-ripple {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-self: center;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid var(--sub-color);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}
.clock {
  width: 650px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 125%, 0);
    transform: translate3d(0, 125%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 125%, 0);
    transform: translate3d(0, 125%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-delay: 1.2s;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 125%, 0);
    transform: translate3d(0, 125%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 125%, 0);
    transform: translate3d(0, 125%, 0);
  }
}
.animate__slideOutDown {
  animation-delay: 0s;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes opac-in-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opac-in-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes opac-out-animate {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opac-out-animate {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes btn-animate {
  0%,
  100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
}
@keyframes btn-animate {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes nav-animate {
  0% {
    -webkit-transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
@keyframes nav-animate {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes left-in-animate {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes left-double-in-animate {
  0% {
    transform: translateX(-200%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes right-in-animate {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes right-double-in-animate {
  0% {
    transform: translateX(200%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes top-in-animate {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes btm-in-animate {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes btm-hover-animate {
  0% {
    -webkit-transform: translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-5%);
    opacity: 1;
  }
}
@keyframes btm-hover-animate {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-5%);
    opacity: 1;
  }
}
@-webkit-keyframes zoom-in-animate {
  0% {
    -webkit-transform: scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoom-in-animate {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes zoom-pop-animate {
  0% {
    -webkit-transform: scale(0);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoom-pop-animate {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  90% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes top-fade-animate {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes btm-fade-animate {
  0% {
    -webkit-transform: translateY(15%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes btm-fade-animate {
  0% {
    transform: translateY(15%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes opacity-in-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity-in-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale(0.5);
    transform: translate3d(0, 100%, 0) scale(0.5);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale(0.5);
    transform: translate3d(0, 100%, 0) scale(0.5);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@keyframes b-clouds-animate {
  0% {
    transform: translateX(0%);
    animation-timing-function: linear;
  }
  100% {
    transform: translateX(-100%);
    animation-timing-function: linear;
  }
}
.container {
  padding-right: 48px;
  padding-left: 48px;
}
.row {
  margin-right: -24px;
  margin-left: -24px;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-right: 48px;
  padding-left: 48px;
  padding-right: 24px;
  padding-left: 24px;
}
@media (min-width: 1200px) {
  #navbar.sticky-ani {
    position: fixed;
    top: -120px;
  }
  #navbar.sticky {
    position: fixed;
    top: 0;
    transition: 0.4s ease-out top;
    -webkit-transition: 0.4s ease-out top;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1382px;
    padding-right: 48px;
    padding-left: 48px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  body {
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  a.button,
  .button {
  }
  .container {
    max-width: 1320px;
    padding-right: 48px;
    padding-left: 48px;
  }
  #nav-main ul li,
  #nav-right ul li {
    margin: 0 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  #nav-main ul li,
  #nav-right ul li {
    margin: 0 12px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body {
    font-size: 14px;
  }
  .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  #navbar .container {
    padding-left: 0;
    padding-right: 0;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 18px;
  }
  .banner-text p {
    font-size: 18px;
  }
  .banner-image {
    right: 0;
  }
  .banner-main-wrap {
    padding: 145px 0;
  }
  .banner-text .banner-header-title h1 {
    margin-bottom: var(--main-pad);
  }
  .banner-header-button .button {
    margin-right: 16px;
    vertical-align: top;
    font-size: var(--button-font);
    padding: 14px 48px;
    line-height: initial;
    display: inline-block;
  }
  .road-map-wrap {
    padding-top: 48px;
  }
  .road-map-blocks {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .road-map-block {
    padding-right: 8px;
  }
  .road-map-title {
  }
  .road-map-block.rm-top {
  }
  .road-map-block.rm-btm {
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  body {
    font-size: 14px;
  }
  h1,
  .article-header h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  #navbar {
    padding: 0;
  }
  #navbar .container {
    padding-left: 0;
    padding-right: 0;
  }
  .logo-main {
    display: block;
  }
  .lead {
    font-size: 20px;
  }
  .web-break {
    display: none;
  }
  #main-wrapper {
    overflow: hidden;
  }
  #banner-wrapper {
  }
  .banner-image {
    right: 0;
  }
  .banner-text .banner-header-title h1 {
    font-size: 24px;
  }
  .banner-text p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .content-banner.content-banner-txt-img {
    margin-left: -16px;
    margin-right: -16px;
  }
  .content-banner-wrap {
    padding: 24px 0;
    padding: 48px 0;
  }
  .banner-main-wrap {
    padding: 145px 0;
  }
  .banner-text .banner-header-title h1 {
    margin-bottom: var(--main-pad);
  }
  .banner-header-button .button {
    margin-right: 16px;
    vertical-align: top;
    font-size: var(--button-font);
    padding: 9px 48px;
    line-height: initial;
    display: inline-block;
  }
  .banner-blk-txt,
  .banner-blk-img,
  .content-blk-block {
    padding: 0 16px;
  }
  .content-banner-title {
    margin-bottom: 24px;
  }
  .content-banner-txt.lead-p p:first-child {
    font-size: 20px;
  }
  .banner-blk-img-wrap {
    padding: 0 16px 32px;
  }
  .banner-img-blk {
    padding: 32px 24px;
  }
  .content-banner-center .banner-blk-txt {
    padding: 0 12%;
  }
  .content-banner-icons {
    margin: 0;
    padding: 0 8%;
  }
  .banner-icon-blk {
    width: 100%;
  }
  #content-1.content-banner-wrap {
    padding-bottom: 72px;
  }
  .road-map-wrap {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .road-map-blocks {
    max-width: 100%;
    padding: 0 24px;
  }
  .road-map-block {
    padding-right: 0;
  }
  #footer {
    padding: 48px 0;
  }
  .footer-content {
    margin-bottom: 48px;
  }
  .footer-menu ul li a {
    font-size: 12px;
  }
  #footer-bottom {
    padding: 24px 0;
  }
}
@media (max-width: 768px) {
  :root {
    --xs-pad: 8px;
    --sm-pad: 16px;
    --main-pad: 24px;
    --lg-pad: 48px;
    --xl-pad: 72px;
    --xxl-pad: 96px;
    --lg-neg: -48px;
    --main-neg: -24px;
    --main-font: 16px;
    --sm-font: 14px;
    --input-font: 14px;
    --button-font: 16px;
    --sm-icon: 18px;
    --main-icon: 32px;
    --large-icon: 96px;
  }
  .col,
  .col-1,
  .col-10,
  .col-11,
  .col-12,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-auto,
  .col-lg,
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-auto,
  .col-md,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-auto,
  .col-sm,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-auto,
  .col-xl,
  .col-xl-1,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-auto {
    padding-right: 16px;
    padding-left: 16px;
  }
  body {
    font-size: 14px;
  }
  .container {
    padding-right: 16px;
    padding-left: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .row {
    margin-right: -16px;
    margin-left: -16px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  h4 {
    font-size: 16px;
  }
  h2 br,
  h3 br {
    display: none;
  }
  p {
    margin-bottom: 1.6rem;
  }
  .lead {
    font-size: 18px;
    margin-bottom: 16px;
    margin-bottom: 1.6rem;
  }
  h3 + .lead {
    margin-top: 16px;
    margin-top: 1.6rem;
  }
  .sub-title {
    font-size: 11px;
    margin-bottom: 8px;
  }
  input.button,
  .button,
  .button:visited,
  .w-btn,
  .l-btn,
  .c-btn {
    line-height: 22px;
    text-align: center;
  }
  a.button,
  .w-btn {
  }
  a.button,
  .button,
  .w-btn,
  .w-btn:visited {
    font-size: 14px;
    line-height: 20px;
    padding: 14px 24px;
  }
  .l-btn,
  .l-btn:visited {
    font-size: 14px;
    padding: 9px 24px;
  }
  .icon-btn {
    padding: 12px 16px 12px 12px;
  }
  .btn-clean {
    font-size: 14px;
    padding: 10px 16px;
  }
  .btn-clean i {
    height: 20px;
    line-height: 20px;
    width: 20px;
  }
  .mob-break {
    display: inline;
  }
  .web-break {
    display: none;
  }
  .hide-mob {
    display: none;
  }
  .show-mob {
    display: inline-block;
  }
  .form-col input:focus ~ .form-border,
  .form-col textarea:focus ~ .form-border {
    left: 16px;
    width: calc(100% - 32px);
  }
  .content-banner-buttons {
    margin-top: 24px;
  }
  .content-banner-buttons .button {
    margin: 0 8px;
    width: 60%;
    margin-bottom: 16px;
    justify-content: center;
  }
  #main-wrapper {
    overflow: hidden;
  }
  #navbar {
    padding: 0;
  }
  #navbar .container {
    padding-left: 0;
    padding-right: 0;
  }
  #banner-main {
    padding-top: 56px;
  }
  .banner-main-wrap {
    padding: 5px 0 48px;
  }
  #banner-wrapper .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .banner-text .banner-header-title h1 {
    font-size: 24px;
  }
  .banner-text p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .banner-image {
    position: relative;
    width: 100%;
    padding: 0 48px;
    top: initial;
    right: 8px;
    padding-bottom: 24px;
  }
  .banner-header {
    align-items: center;
  }
  .banner-main-top {
    position: relative;
    display: block;
    padding: 0px 0px 5px 0px;
    font-size: 16px;
  }
  .banner-main-top h1 {
    font-size: 16px;
  }
  .banner-main-front {
    background-size: 340%;
    background-position: 17% 100%;
  }
  .flipdown {
    padding-left: 12px;
  }
  .flipdown .rotor-group {
    padding-right: 8px;
    width: 25%;
  }
  .rotor-group .rotor-group-heading {
    width: 100%;
    width: 64px;
    margin-top: 8px;
    line-height: 24px;
    font-weight: 200;
    font-size: 12px;
    order: 3;
  }
  .flipdown .rotor-group-heading:before {
    font-size: 12px;
  }
  .flipdown .rotor {
    border-radius: 0;
    margin: 0 4px 0 0;
    font-size: 2.2rem;
  }
  .content-banner-wrap {
    padding: 48px 0;
  }
  .content-banner.content-banner-txt-img {
    margin-left: 0;
    margin-right: 0;
  }
  .content-banner {
    flex-direction: column;
  }
  .banner-blk-txt,
  .banner-blk-img {
    padding: 0;
    width: 100%;
  }
  .banner-blk-img {
    margin-bottom: 24px;
  }
  .banner-blk-img.neg-margin {
    margin-bottom: 48px;
  }
  .banner-blk-img.neg-margin img {
    margin-top: 0;
    margin-bottom: 0;
  }
  .banner-header-button .button {
    font-size: 18px;
    line-height: 20px;
    padding: 18px 32px;
  }
  .content-banner.content-banner-txt-img .banner-blk-img {
    order: 2;
    margin-top: 48px;
    margin-left: -24px;
    margin-right: -24px;
    width: initial;
  }
  .content-banner.content-banner-txt-img .banner-blk-txt {
    order: 1;
  }
  .content-center,
  .content-banner-center .banner-blk-txt {
    padding: 0;
  }
  .content-banner-txt.lead-p p:first-child {
    font-size: 18px;
  }
  .content-banner-title {
    margin-bottom: 12px;
  }
  .content-banner-title:after {
    bottom: -12px;
  }
  .content-banner-center .banner-blk-img {
    margin-top: 16px;
    margin-bottom: 16px;
    width: 40%;
  }
  .banner-img-blocks {
    flex-direction: column;
  }
  .banner-blk-img-wrap {
    padding: 0 16px 32px;
    width: 100%;
  }
  .banner-img-blk {
    padding: 8px;
  }
  .content-banner-center .banner-blk-txt {
    padding: 0 12%;
    padding: 0;
  }
  .content-banner-icons {
    margin: 0;
  }
  .banner-icon-blk {
    width: 100%;
    padding: 0;
  }
  .banner-icon-blk-icon {
    width: 96px;
    height: 96px;
  }
  .banner-icon-text {
    width: calc(100% - 96px);
  }
  .content-big-list li {
    line-height: 56px;
    font-size: 18px;
  }
  #content-1.content-banner-wrap {
    padding-bottom: 300px;
    background-size: 200%;
    background-position: 30% 100%;
  }
  .content-banner-left .banner-blk-txt {
    width: 100%;
  }
  #content-4.content-banner-wrap {
    padding-bottom: 280px;
  }
  #content-4.content-banner-wrap:after {
    width: 200%;
    left: -50%;
    bottom: 4%;
  }
  .sub-banner {
    width: 300%;
    bottom: 12%;
    left: -20%;
  }
  .sub-banner:after {
    height: 400%;
  }
  #content-roadmap:after {
    height: 16%;
  }
  .road-map-bg {
    width: 150%;
    left: -25%;
    height: 50%;
    bottom: 25%;
    bottom: 0%;
  }
  .road-map-wrap {
    padding-top: 24px;
    padding-bottom: 120px;
  }
  .road-map-blocks {
    max-width: 100%;
    height: 288px;
    padding: 0 24px;
    padding: 0;
  }
  .road-map-1 .road-map-blocks {
    padding-left: 24px;
  }
  .road-map-4 .road-map-blocks {
    padding-right: 24px;
  }
  #road-map-links {
    position: relative;
    display: block;
    margin-left: -24px;
    margin-right: -24px;
  }
  a.road-map-link {
    font-size: 12px;
    padding: 4px 8px;
    margin: 0 4px;
    word-wrap: nowrap;
    vertical-align: top;
  }
  .road-map-block {
    padding-right: 0;
    width: 120px;
  }
  .road-map-block.rm-top {
    padding-bottom: 45%;
    padding-bottom: 180px;
  }
  .road-map-block.rm-btm {
    padding-top: 45%;
    padding-top: 180px;
  }
  .road-map-date {
    font-size: 11px;
  }
  .road-map-title {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
  }
  .road-map-checked .road-map-dot-wrap {
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
  }
  .road-map-checked .road-map-dot {
    width: 32px;
    height: 32px;
    padding: 7px;
  }
  .road-map-checked .road-map-dot span {
    width: 16px;
    height: 16px;
    line-height: 16px;
  }
  .road-map-checked .road-map-dot span:before {
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 20px;
  }
  #content-team.content-banner-wrap {
    padding: 48px 0;
  }
  #content-team .content-banner.content-banner-center {
    margin-bottom: 0;
  }
  #content-team.content-banner-wrap .banner-blk-txt {
    order: 0;
  }
  .profile-users-wrapper {
    margin-left: -24px;
    margin-right: -24px;
  }
  .profile-users {
    padding: 0;
    order: 3;
  }
  .profile-user-wrap {
    width: 50%;
    width: 100%;
    padding: 0 12px;
    margin-bottom: 24px;
  }
  .profile-user-img span {
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 36px;
  }
  .profile-user-title div {
    font-size: 16px;
  }
  .owl-dots .owl-dot span {
    height: 2px;
  }
  #profile-users .owl-carousel .owl-stage {
    display: flex;
    height: 100%;
  }
  #profile-users .owl-carousel .owl-item {
    float: none;
    display: flex;
    flex-direction: column;
  }
  #profile-users .owl-dots .owl-dot {
    border-radius: 15px;
    border-radius: 3px;
    border: none;
  }
  #profile-users .owl-dots .owl-dot,
  #profile-users .owl-carousel button.owl-dot {
    padding: 4px !important;
  }
  #profile-users .owl-dots .owl-dot span {
    border: 1px solid #798394;
    background: #798394;
    border-radius: 3px;
    padding: 0 6px;
  }
  #profile-users .owl-dots .owl-dot.active span,
  #profile-users .owl-dots .owl-dot:hover span {
    background: #798394;
  }
  #content-faq {
    padding: 48px 0 24px;
  }
  #content-faq .content-banner-center {
    margin-bottom: 24px;
  }
  .faq-main {
    padding: 0;
  }
  .faq-header .btn-link {
    font-size: 16px;
    padding: 0 48px 0 0;
  }
  .faq-blk {
    padding: 16px;
  }
  .faq-header .btn-link span {
    width: 32px;
    height: 32px;
    line-height: 32px;
    right: -4px;
  }
  .faq-header .btn-link span:after {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
  }
  #footer {
    padding: 24px 0;
    /*background: url('../images/main-banner-bg.jpg') top center no-repeat;
    background-size: 600%;  */
  }
  .footer-content {
    margin-bottom: 48px;
    margin-top: 24px;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .footer-logo-main {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 0;
  }
  .footer-logo {
    margin-bottom: 24px;
  }
  .footer-logo img {
    height: 48px;
  }
  .footer-menu {
    width: 100%;
    margin-bottom: 24px;
  }
  .footer-menu h3 {
    position: relative;
    padding: 16px 0;
    margin: 0;
  }
  .footer-menu-list {
    display: none;
  }
  .footer-menu ul {
    flex-direction: column;
    padding-bottom: 16px;
  }
  .footer-menu ul li a {
    font-size: 14px;
  }
  .footer-right {
    width: 100%;
    text-align: center;
  }
  #footer-bottom {
    flex-direction: column;
    padding: 24px 0 0;
  }
  .footer-copyright {
    text-align: center;
    margin-bottom: 24px;
  }
  .footer-social {
    margin: 0 auto;
    align-self: center;
    flex-wrap: wrap;
  }
  .footer-social li {
    margin: 0 8px 8px;
  }
  .footer-social li a {
    font-size: 16px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
  .footer-social li span {
    line-height: 24px;
  }
  body.modal-open {
    position: fixed;
    width: 100%;
  }
  .modal-backdrop.show {
    opacity: 1;
  }
  .modal-dialog {
    display: block;
    width: 100%;
    min-width: initial;
    max-width: initial;
  }
  .modal-content {
    border-radius: 0;
    box-shadow: none;
  }
  .modal-header {
    padding: 24px;
  }
  .modal-body {
    padding: 0 24px;
  }
  .modal-padding .modal-body {
    padding-bottom: 24px;
  }
  .modal-full .close-btn-full {
    right: 16px;
  }
  .banner-text .banner-header-title h1 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  .banner-countdown-ticker {
    font-size: 30px !important;
  }
}
@media (min-width: 400px) and (max-width: 767px) {
}
@media (min-width: 320px) and (max-width: 361px) {
}
@media (max-width: 1199px) {
  body.menu-open {
  }
  #navbar.sticky-ani {
    position: fixed;
    top: -56px;
  }
  #navbar.sticky {
    position: fixed;
    top: 0;
    -webkit-transition: 0.5s ease-out top;
    transition: 0.5s ease-out top;
  }
  .menu-open #navbar {
    box-shadow: none;
    top: 0 !important;
  }
  .banner-countdown-ticker {
    font-size: 40px !important;
  }
  .menu-open.menu-ani .navbar-header {
    background: 0 0;
    -webkit-transition: background 0.01s ease-out;
    transition: background 0.01s ease-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  .navbar-header {
    justify-content: flex-start;
  }
  #navbar {
    padding: 0 24px;
  }
  .nav-toggle {
    display: block;
    margin: 16px 16px 16px 0;
  }
  .nav-trigger-light {
    display: block;
  }
  .nav-trigger-dark {
    display: none;
  }
  .sub-page .nav-toggle .nav-trigger-light {
  }
  #navbar.sticky .nav-toggle .nav-trigger-dark {
    display: block;
  }
  .logo-main {
    margin: 0;
    margin: 14px 0;
    display: none;
  }
  .logo-main-mob {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    margin: 14px 0;
    width: calc(100% - 72px);
    text-align: center;
  }
  .logo-main-mob img {
    height: 28px;
    width: auto;
    vertical-align: top;
  }
  .nav-wrap {
    position: absolute;
    position: fixed;
    display: block;
    float: none;
    top: 72px;
    right: -110%;
    width: 100%;
    height: 90%;
    height: calc(100% - 72px);
    margin: 0;
    padding: 0 8px 48px;
    z-index: 2;
    opacity: 0;
    overflow: hidden;
    overflow-y: auto;
  }
  .menu-open .nav-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90vh;
    width: 100%;
    right: 0;
    -webkit-animation: zoom-in-animate 0.3s ease-out forwards;
    animation: zoom-in-animate 0.3s ease-out forwards;
  }
  #nav-main {
    width: 100%;
    opacity: 0;
    margin-left: initial;
    justify-content: center;
  }
  .menu-open #nav-main {
    -webkit-animation: opac-in-animate 0.6s ease-in forwards;
    animation: opac-in-animate 0.6s ease-in forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .menu-ani #nav-main {
    right: -110%;
    opacity: 0;
  }
  .menu-open #navbar.sticky,
  .menu-open.sub-page #navbar {
    background: 0 0;
    box-shadow: none;
  }
  .menu-open #navbar.sticky .logo-main-dark,
  .menu-open #navbar .logo-main-dark {
    display: none;
  }
  .menu-open #navbar.sticky .logo-main-light,
  .menu-open #navbar .logo-main-light {
    display: block;
  }
  .home-wrap .nav-icon span,
  .home-wrap .nav-icon span::before,
  .home-wrap .nav-icon span::after {
    background: var(--white-color);
  }
  .home-wrap .sticky .nav-icon span,
  .home-wrap .sticky .nav-icon span::before,
  .home-wrap .sticky .nav-icon span::after {
    background: var(--main-color);
  }
  .menu-open .nav-icon span,
  .home-wrap.menu-open .nav-icon span {
    background: 0 0 !important;
  }
  .menu-open .nav-icon span,
  .menu-open .nav-icon span::before,
  .menu-open .nav-icon span::after,
  .menu-open .home-wrap .sticky .nav-icon span::before,
  .menu-open .home-wrap .sticky .nav-icon span::after {
    background: var(--white-color);
  }
  #nav-main ul {
    align-self: center;
    margin: 0;
    padding: 8px 24px 24px 40px;
    padding: 0;
  }
  #nav-main ul li,
  #nav-right ul li {
    display: block;
    float: none;
    text-align: center;
    padding: 0;
    margin: 0 0;
  }
  #nav-main ul li a,
  #nav-right ul li a {
    font-size: 16px;
    color: #fff !important;
  }
  #nav-main ul li a:after {
    display: none;
  }
  #nav-right {
    position: relative;
    display: flex;
    margin-left: 0;
    margin-top: 24px;
    margin-top: 0;
    width: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #nav-right ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #nav-right ul.nav-social {
    margin-top: var(--sm-pad);
  }
  #nav-right ul.nav-social li a {
    color: var(--white-color);
  }
  .menu-open #nav-right {
    -webkit-animation: btm-fade-animate 0.6s ease-in forwards;
    animation: btm-fade-animate 0.6s ease-in forwards;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation: opac-in-animate 0.6s ease-in forwards;
    animation: opac-in-animate 0.6s ease-in forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .menu-ani #nav-right {
    opacity: 0 !important;
    animation-delay: 0s;
  }
  #nav-right .btn-main {
    font-size: 16px;
    border: 1px solid #fff;
  }
  #nav-right .btn-main:hover,
  #nav-right .btn-main:active,
  #nav-right .btn-main:focus {
    background: var(--main-color);
  }
  .nav-buttons {
    margin: 48px 24px 48px 16px;
    display: flex;
    flex-direction: column;
  }
  .nav-buttons .button {
    margin: 0;
    margin-bottom: 16px;
  }
  #navbar.sticky .btn-clean,
  #navbar.sticky .btn-clean:visited,
  #navbar.sticky a.btn-clean,
  #navbar.sticky a.btn-clean:visited {
    color: var(--white-color);
  }
  #navbar.sticky #nav-main ul li a,
  #navbar.sticky #nav-right ul li a {
    color: var(--white-color);
  }
  #navbar.sticky .l-btn,
  #navbar.sticky .l-btn:visited {
    color: var(--white-color);
    border: 1px solid var(--white-color);
  }
}
@media (min-width: 340px) and (max-width: 767px) and (min-height: 740px) {
}
@media (max-width: 375px) {
}
@media (max-width: 767px) {
}
@media only screen and (min-height: 600px) and (min-width: 768px) and (orientation: portrait) {
}
@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
}
@media only screen and (width: 375px) and (-webkit-device-pixel-ratio: 3) {
}
@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 2) {
}
@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 3) {
}
.mint{
  max-width: 25%;
  margin: auto;
}
.status{
  max-width: 25%;
  margin: auto;
  padding: 10px;
}
.mintButton{
  margin: 10px;
}
.mint input {
  height: 2.5em;
  padding: 15px;
  font-size: 1.3em;
  border-radius: 10px;
  background-color: #efc8ff;
  color: blue;
  width: 80px;
}

#userConnected{
  display: none;
}