* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: "PT Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #1d1d1d;
  background: #ffffff;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 52px;
  line-height: 56px;
}

h2 {
  font-size: 47px;
  line-height: 51px;
}

h3 {
  font-size: 42px;
  line-height: 46px;
}

h4 {
  font-size: 37px;
  line-height: 41px;
}

h5 {
  font-size: 32px;
  line-height: 36px;
}

h6 {
  font-size: 22px;
  line-height: 26px;
}

header {
  display: flex;
  /* position: fixed; */
  position: absolute;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  background: transparent;
  transition: all 300ms;
  padding: 34px 0;
  z-index: 150;
}

header.fixed {
  position: fixed;
  background: #ffffff;
}

.logo {
  height: 100px;
}

.logo-wrapper {
  height: 100px;
}

.logo-footer {
  height: 150px;
}

.container {
  width: 95%;
  margin: 0 auto;
}

.header-container {
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px;
}

.header-nav {
  display: block;
  position: absolute;
  right: 36px;
}

.header-menu {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.header-menu li {
  list-style: none;
  margin-left: 35px;
}

.header .header-menu li:first-child {
  margin-left: 0;
}

.header .header-menu li a.menu-item {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: all 500ms;
}

.header .header-menu li a.menu-item span {
  text-transform: none;
}

.header.fixed .header-menu li a.menu-item {
  color: #1d1d1d;
}

.header .header-menu li:hover a,
.header .header-menu li.active a {
  color: #0e89c9 !important;
  text-decoration: none;
}

.header .header-menu li a.login-button {
  background: #284ba9;
  border-radius: 4px;
  color: #1d1d1d;
  padding: 10px 32px;
}

.header .header-menu li a.login-button:hover {
  background: #e3973e;
  color: #1d1d1d !important;
}

section.banner {
  min-height: 100vh;
  height: auto;
  position: relative;
  overflow: hidden;
  background: url("../images/banner-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding-top: 100px;
}

section.banner .banner-content {
  display: flex;
  flex-wrap: wrap;
}

section.banner .banner-text,
section.banner .banner-animation {
  flex: 0 0 50%;
  max-width: 70%;
  margin: auto;
  text-align: center;
  margin-top: 230px;
}

section.banner .banner-text {
  padding: 0 15px;
}

section.banner .banner-text h1 {
  font-weight: 700;
  margin-bottom: 10px;
}

section.banner .banner-text h1 span {
  color: #284ba9;
}

section.banner .banner-text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #ffffff;
}

section.banner .banner-text .buttons-block {
  display: flex;
  margin-top: 25px;
}

section.banner .primary-button {
  margin-right: 15px;
}

.primary-button {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #284ba9;
  color: #1d1d1d;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 14px 30px;
}

.primary-button:hover {
  background: #e3973e;
  border: 1px solid #e3973e;
}

.secondary-button {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  border-radius: 4px;
  background: #ffffff;
  color: #1d1d1d;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 14px 30px;
}

.secondary-button:hover {
  background: #dddddd;
  border: 1px solid #dddddd;
}

section.banner .mobile-visible {
  display: none;
}

section.banner .diamond-animation {
  height: 470px;
  position: relative;
}

section.banner .diamond-animation .diamond-grid {
  width: 68px;
  height: 111px;
  background: url("../images/diamond-grid-1.png") no-repeat scroll center center /
    cover;
  -webkit-animation: bottomTotop 15s linear 0s infinite;
  animation: bottomTotop 15s linear 0s infinite;
  position: absolute;
  left: 30%;
  z-index: 0;
}
.diamond-grid-2 {
  width: 40px;
  height: 65px;
  background: url("../images/diamond-grid-1.png") no-repeat scroll center center /
    cover;
  -webkit-animation: bottomTotop 16s linear 0s infinite;
  animation: bottomTotop 16s linear 0s infinite;
  position: absolute;
  left: 60%;
  z-index: 0;
}

@-webkit-keyframes bottomTotop {
  0% {
    -webkit-transform: translateY(1000%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(300%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-400%);
    opacity: 0;
  }
}

section.banner .diamond-animation .outer-Orbit {
  background: url("../images/diamond-top-ring.png") no-repeat scroll center
    center / cover;
  width: 0px;
  height: 0px;
  top: 0px;
  position: absolute;
  z-index: 0;
  transition: all 2s ease;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
}

section.banner .diamond-animation .outer-Orbit.active {
  width: 588px;
  height: 344px;
  transition: all 2s ease;
  opacity: 1;
}

section.banner .diamond-animation .Orbit {
  width: 190px;
  height: 310px;
  -webkit-transform: scaleX(2);
  background: transparent;
  left: 0;
  position: absolute;
  top: 5px;
  border-radius: 50%;
  right: 0;
  margin: auto;
}

section.banner .diamond-animation .Orbit .rotate {
  width: 100%;
  height: 100%;
  -webkit-animation: circle 10s infinite linear;
  -webkit-transform-origin: 50% 50%;
}

section.banner .diamond-animation .OrbitSquare {
  width: 50px;
  height: 50px;
  -webkit-animation: ccircle 10s infinite linear;
}

section.banner .diamond-animation .OrbitSquare .inner {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0px;
  top: 0px;
  background: url("../images/OrbitSquare.png") no-repeat scroll 0px 0px / cover;
  display: block;
  -webkit-transform: scaleX(0.5);
  font-size: 0;
}

@-webkit-keyframes circle {
  from {
    -webkit-transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
  }
}

@-webkit-keyframes ccircle {
  from {
    -webkit-transform: rotateZ(360deg);
  }
  to {
    -webkit-transform: rotateZ(0deg);
  }
}

section.banner .diamond-animation .main {
  position: absolute;
  bottom: 35px;
  left: -55px;
  right: 0;
  display: table;
  margin: auto;
  height: 481px;
  width: 685px;
  background: url("../images/diamond-main.png") no-repeat scroll 0px 0px;
  background-size: cover;
  background-position: center;
  animation: MainHight 2s linear;
  z-index: 100;
}

@keyframes MainHight {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

section.banner .diamond-animation .main .top-coin {
  width: 356px;
  height: 239px;
  background: url("../images/diamond-top-coin.png") no-repeat scroll center
    center;
  background-size: cover;
  left: 0;
  right: 0;
  display: table;
  margin: auto;
  top: 25px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

section.banner .diamond-animation .main .top-coin.active {
  opacity: 1;
  visibility: visible;
  animation: TopCoinFalling 3s linear;
}

@keyframes TopCoinFalling {
  0% {
    transform: rotateY(360deg) scale(0, 0) translateY(-1000px);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg) scale(1, 1) translateY(0px);
    opacity: 1;
  }
}

.diamond-animation .main:before {
  height: 271px;
  width: 450px;
  background: url("../images/diamond-top.png") no-repeat scroll 0px 0px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 48px;
  content: "";
  display: table;
  margin: auto;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.diamond-animation .main.active:before {
  opacity: 1;
  visibility: visible;
  animation: MainTOP 2s linear;
}

@keyframes MainTOP {
  0% {
    transform: scale(0, 0);
    top: 70%;
  }
  100% {
    transform: scale(1, 1);
    top: 48px;
  }
}

.diamond-animation .lines {
  position: relative;
  width: 450px;
  margin: auto;
  height: 271px;
  top: 35px;
}

.diamond-animation .lines span {
  width: 2px;
  height: 138px;
  background: url("../images/diamond-top-lines.png") no-repeat scroll 0px 0px;
  position: absolute;
  transition: all 2s ease;
  transform: scaleY(0);
  transform-origin: bottom;
}

.diamond-animation .lines.active span {
  transform: scaleY(1);
}

.diamond-animation .lines span.l-1 {
  top: -63px;
  left: 46px;
}

.diamond-animation .lines span.l-2 {
  top: -40px;
  left: 26px;
}

.diamond-animation .lines span.l-3 {
  top: -12px;
  left: 10px;
}

.diamond-animation .lines span.l-4 {
  top: 33px;
  left: 19px;
}

.diamond-animation .lines span.l-5 {
  bottom: 60px;
  left: 50px;
}

.diamond-animation .lines span.l-6 {
  bottom: 34px;
  left: 102px;
}

.diamond-animation .lines span.l-7 {
  left: 160px;
  bottom: 14px;
}

.diamond-animation .lines span.l-8 {
  left: 226px;
  bottom: 7px;
}

.diamond-animation .lines span.l-9 {
  bottom: 14px;
  right: 156px;
}

.diamond-animation .lines span.l-10 {
  bottom: 32px;
  right: 97px;
}

.diamond-animation .lines span.l-11 {
  bottom: 60px;
  right: 46px;
}

.diamond-animation .lines span.l-12 {
  top: 33px;
  right: 14px;
}

.diamond-animation .lines span.l-13 {
  top: -14px;
  right: 6px;
}

.diamond-animation .lines span.l-14 {
  top: -41px;
  right: 22px;
}

.diamond-animation .lines span.l-15 {
  top: -64px;
  right: 42px;
}

.diamond-animation .lines.active span.l-1 {
  transition: all 2s ease 100ms;
}

.diamond-animation .lines.active span.l-2 {
  transition: all 2s ease 300ms;
}

.diamond-animation .lines.active span.l-3 {
  transition: all 2s ease 500ms;
}

.diamond-animation .lines.active span.l-4 {
  transition: all 2s ease 700ms;
}

.diamond-animation .lines.active span.l-5 {
  transition: all 2s ease 900ms;
}

.diamond-animation .lines.active span.l-6 {
  transition: all 2s ease 1100ms;
}

.diamond-animation .lines.active span.l-7 {
  transition: all 2s ease 1300ms;
}

.diamond-animation .lines.active span.l-8 {
  transition: all 2s ease 1500ms;
}

.diamond-animation .lines.active span.l-9 {
  transition: all 2s ease 1700ms;
}

.diamond-animation .lines.active span.l-10 {
  transition: all 2s ease 1900ms;
}

.diamond-animation .lines.active span.l-11 {
  transition: all 2s ease 2100ms;
}

.diamond-animation .lines.active span.l-12 {
  transition: all 2s ease 2300ms;
}

.diamond-animation .lines.active span.l-13 {
  transition: all 2s ease 2500ms;
}

.diamond-animation .lines.active span.l-14 {
  transition: all 2s ease 2700ms;
}

.diamond-animation .lines.active span.l-15 {
  transition: all 2s ease 2900ms;
}

.inside-bitcoin {
  background: url("../images/bitcoin-inside.png") no-repeat scroll 0px 0px;
  background-size: cover;
  background-position: center;
  width: 133px;
  height: 111px;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
}

.inside-bitcoin.active {
  opacity: 0.3;
  visibility: visible;
  animation: CoinFalling 2s linear;
}

@keyframes CoinFalling {
  0% {
    transform: rotate(360deg) scale(0, 0);
    bottom: 0px;
  }
  100% {
    transform: rotate(0deg) scale(1, 1);
    bottom: 60px;
  }
}

.inside-bitcoin.spincoin {
  animation: SpinCoin 4s linear infinite;
}

@keyframes SpinCoin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

section.banner .diamond-animation .base {
  position: absolute;
  bottom: 0px;
  left: 50%;
  display: table;
  margin: auto;
  height: 115px;
  width: 199px;
  background: url("../images/diamond-base.png") no-repeat scroll 0px 0px;
  transform: translateX(-50%);
}

.diamond-animation .base::before,
.diamond-animation .base::after {
  background: url("../images/diamond-base-1.png") no-repeat scroll 0px 0px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  opacity: 0.5;
}

.diamond-animation .base::before {
  animation: circleripple 4s linear infinite;
}

.diamond-animation .base::after {
  animation: circleripple 4s linear 2s infinite;
}

@keyframes circleripple {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.7);
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

section.banner .mobile-visible {
  display: none;
}

section.steps {
  padding: 90px 0 150px;
}

section.steps .steps-content {
  display: flex;
  flex-wrap: wrap;
}

section.steps .steps-content .steps-animation {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

section.steps .steps-animation .diamond-icon {
  position: relative;
  padding-left: 55px;
}

section.steps .steps-animation .diamond-icon:before {
  background: url("../images/coinpool-dots-circle.png") no-repeat scroll 0px 0px;
  content: "";
  height: 370px;
  width: 370px;
  z-index: 0;
  -webkit-animation: rotate-right 25s linear 0s infinite;
  animation: rotate-right 25s linear 0s infinite;
  opacity: 1;
  top: 10px;
  left: 0px;
  position: absolute;
}

@keyframes rotate-right {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

section.steps .steps-animation .diamond-icon img {
  position: relative;
  width: 250px;
  top: 110px;
  left: 10px;
  animation: rotate-left 55s linear 0s infinite;
}

@-webkit-keyframes rotate-left {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}

section.steps .steps-content .steps-text {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

section.steps .steps-content .steps-text h2 {
  text-align: center;
}

section.steps .steps-content .steps-text .stepper-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0;
}

section.steps .steps-content .steps-text .stepper-items .stepper-item-block {
  display: flex;
  flex: 0 0 30%;
  max-width: 30%;
}

section.steps .stepper-item-block .stepper-number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  font-size: 100px;
  font-weight: 700;
  text-align: center;
  background-color: #284ba9;
  background: linear-gradient(45deg, #284ba9 33%, #e7d195 66%, #f9de93);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section.steps .stepper-item-block .stepper-text {
  display: flex;
  align-items: center;
  font-size: 24px;
  text-align: start;
  color: #284ba9;
  margin-left: 10px;
}

section.steps .steps-text p {
  font-size: 20px;
  text-align: center;
}

section.steps .steps-text p a {
  color: #284ba9;
}

section.steps .steps-text p a:hover {
  text-decoration: underline;
}

section.purchase {
  width: 100%;
  background-image: url("../images/tr-circle-bg.png");
  background-repeat: no-repeat;
  background-color: #000000;
  background-position: left center;
  float: left;
  padding: 120px 0;
}

section.purchase.diamond-layout {
  background-image: none;
  position: relative;
}

#gold-tech-bg {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  opacity: 0.3;
}

section.purchase h2 {
  font-weight: 700;
  text-align: center;
  color: #284ba9;
  margin-bottom: 55px;
}

section.purchase .purchase-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section.purchase .purchase-block {
  position: relative;
  width: 100%;
  flex: 0 0 30%;
  max-width: 30%;
  cursor: pointer;
  background: #ffffff;
  border-radius: 10px;
  transition: all 300ms;
  padding: 50px 30px;
}

section.purchase .purchase-block:hover {
  -webkit-box-shadow: 6px 8px 15px 1px rgba(218, 163, 19, 0.58);
  box-shadow: 6px 8px 15px 1px rgba(218, 163, 19, 0.58);
}

section.purchase .purchase-block .icon {
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 20%);
  box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 20%);
  width: 100px;
  height: 100px;
  padding: 18px;
  margin: 15px auto 0px;
}

section.purchase .purchase-block .icon img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

section.purchase .purchase-block .text h4 {
  color: #000000;
  font-weight: bold;
  margin-bottom: 15px;
}

section.purchase .purchase-block .text p {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

section.security {
  float: left;
  width: 100%;
  padding: 100px 0;
}

section.security h2 {
  text-align: center;
}

section.security .security-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

section.security .security-content .security-block {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 15px 15px;
  transition: all 300ms;
  cursor: pointer;
}

section.security .security-content .security-block .security-icon {
  border-radius: 50%;
  box-shadow: none;
  background-color: transparent;
  transition: all 400ms;
  position: relative;
  margin-bottom: 30px;
  width: 116px;
  height: 116px;
  padding: 22px;
  margin: 15px auto 0px;
}

section.security .security-content .security-block .security-icon:before {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px dashed #000;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 136px;
  height: 136px;
}

section.security .security-content .security-block .security-icon:hover {
  background-color: #284ba9;
}

section.security .security-content .security-block .security-icon img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

section.security .security-content .security-block .security-text {
  width: 70%;
  text-align: center;
  margin: 30px auto 0;
}

section.title-banner {
  display: flex;
  align-items: center;
  min-height: 35vh;
  height: auto;
  position: relative;
  overflow: hidden;
  background: url("../images/banner-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 100px 0 50px;
}

section.title-banner .title {
  text-align: center;
}

section.about-us.content,
section.contact-us.content,
section.faq.content {
  background: #ffffff;
  color: #1d1d1d;
  padding: 80px 0;
}

section.about-us .about-us-block {
  display: flex;
  flex-wrap: wrap;
}

section.about-us .about-us-block .about-us-image,
section.about-us .about-us-block .about-us-content {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

section.about-us .about-us-block .about-us-content {
  display: flex;
}

section.about-us .about-us-block .about-us-content .about-us-title::after {
  min-height: 5px;
  content: "";
  display: block;
  margin: 30px 0;
  background: url("../images/line1.png") no-repeat 0 0;
}

section.about-us .about-us-block .about-us-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

section.about-us .about-us-block .about-us-content p:last-child {
  margin-bottom: 0;
}

section.about-us img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

section.about-us .about-us-block .about-us-image .mobile-visible {
  display: none;
}

section.about-us .about-us-block .about-us-image .about-mercury-animation {
  min-height: 650px;
}

.visible {
  visibility: visible !important;
}

.coin-animation .coin-1 {
  background: url("../images/coin-1.png") no-repeat scroll 0px 0px;
  height: 47px;
  width: 66px;
  background-size: auto;
  position: absolute;
  top: 0;
  left: 100px;
  transition: all 600ms;
  opacity: 0;
}

.coin-animation .coin-2 {
  background: url("../images/coin-2.png") no-repeat scroll 0px 0px;
  height: 56px;
  width: 64px;
  background-size: auto;
  position: absolute;
  top: 0;
  left: 300px;
  transition: all 450ms;
  opacity: 0;
}

.coin-animation .coin-3 {
  background: url("../images/coin-3.png") no-repeat scroll 0px 0px;
  height: 56px;
  width: 64px;
  background-size: auto;
  position: absolute;
  top: 10px;
  left: 180px;
  transition: all 750ms;
  opacity: 0;
}

.coin-animation .coin-4 {
  background: url("../images/coin-4.png") no-repeat scroll 0px 0px;
  height: 56px;
  width: 80px;
  background-size: auto;
  position: absolute;
  top: 0px;
  left: 60px;
  transition: all 500ms;
  opacity: 0;
}

.coin-animation .coin-5 {
  background: url("../images/coin-5.png") no-repeat scroll 0px 0px;
  height: 56px;
  width: 64px;
  background-size: auto;
  position: absolute;
  top: 0px;
  left: 220px;
  transition: all 600ms;
  opacity: 0;
}

.coin-animation .coin-6 {
  background: url("../images/coin-6.png") no-repeat scroll 0px 0px;
  height: 64px;
  width: 56px;
  background-size: auto;
  position: absolute;
  top: 0px;
  left: 340px;
  transition: all 450ms;
  opacity: 0;
}

.coin-animation .coin-7 {
  background: url("../images/coin-7.png") no-repeat scroll 0px 0px;
  height: 65px;
  width: 56px;
  background-size: auto;
  position: absolute;
  top: 0px;
  left: 450px;
  transition: all 800ms;
  opacity: 0;
}

.visible .coin-animation .coin-1 {
  animation: coinanimation 3s linear 0s infinite;
  opacity: 1;
}

.visible .coin-animation .coin-2 {
  animation: coinanimationtwo 8s linear 0s infinite;
  opacity: 1;
}

.visible .coin-animation .coin-3 {
  animation: coinanimation 2.5s linear 0s infinite;
  opacity: 1;
}

.visible .coin-animation .coin-4 {
  animation: coinanimation 6s linear 0s infinite;
  opacity: 1;
}

.visible .coin-animation .coin-5 {
  animation: coinanimationtwo 7s linear 0s infinite;
  opacity: 1;
}

.visible .coin-animation .coin-6 {
  animation: coinanimation 4s linear 0s infinite;
  opacity: 1;
}

.visible .coin-animation .coin-7 {
  animation: coinanimation 6s linear 0s infinite;
  opacity: 1;
}

@keyframes coinanimation {
  0% {
    -webkit-transform: translateY(800%) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(300%) rotate(360deg);
  }
  100% {
    -webkit-transform: translateY(-200%) rotate(720deg);
  }
}

@keyframes coinanimationtwo {
  0% {
    -webkit-transform: translateY(800%) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(300%) rotate(-360deg);
  }
  100% {
    -webkit-transform: translateY(-200%) rotate(-720deg);
  }
}

.about-mercury-animation .mercury-base {
  position: absolute;
  width: 0;
  min-width: 10px;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 1000ms;
}

.visible.about-mercury-animation .mercury-base {
  min-width: 900px;
  width: 100%;
  transition: all 1000ms;
}

section.contact-us.content {
  text-align: center;
}

section.contact-us.content form {
  width: 50%;
  margin: 50px auto 0;
}

section.contact-us.content .form-group {
  position: relative;
  text-align: start;
  margin-bottom: 1.25rem;
}

form .group-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

form .group-block .form-group {
  flex: 0 0 48%;
  max-width: 48%;
  text-align: start;
}

section.contact-us.content .form-group .form-control-input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #284ba9;
  border-radius: 0.25rem;
  background-color: #ffffff !important;
  color: #1d1d1d;
  transition: all 0.2s;
  -webkit-appearance: none;
}

section.contact-us.content .form-group label {
  font-weight: 600;
}

form .form-control-textarea {
  display: block;
  width: 100%;
  height: 8rem;
  padding: 15px 10px;
  border: 1px solid #284ba9;
  border-radius: 0.25rem;
  background-color: #ffffff !important;
  color: #1d1d1d;
  transition: all 0.2s;
}

form .form-group button {
  margin: 20px auto 0;
}

.accordion {
  margin-top: 48px;
}

.accordion__item {
  padding: 15px 65px 15px 30px;
  display: block;
  border: 1px solid #ffecb9;
  background: #fff9e9;
  -webkit-border-radius: 8px !important;
  border-radius: 8px !important;
  position: relative;
  margin: 0 auto 29px;
}

.accordion__item .accordion__title {
  height: 30px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion__item .accordion__title:hover {
  transition: all 0.5s ease-out;
}

.accordion__item .accordion__title * {
  flex-shrink: 0;
}

.accordion__item .accordion__title hr {
  width: 100%;
  flex-shrink: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 4% 0 2%;
}

.accordion__item .accordion__title .accordion__arrow {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  background: #f85c3a;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.accordion__item .accordion__rotate {
  transform: rotate(180deg);
}

.accordion__item .accordion__title .accordion__title-text {
  font-size: 24px;
  line-height: 25px;
}

.accordion__item .accordion__content {
  padding: 29px 0 0;
  display: none;
}

.accordion__item .accordion__content p {
  font-size: 16px;
  line-height: 20px;
}

section.faq.content ul {
  margin-left: 35px;
}

section.faq.content a {
  color: #284ba9;
}

section.documents {
  padding: 80px 0;
}

section.documents h4 {
  margin-bottom: 15px;
}

section.documents .title {
  font-size: 26px;
  text-decoration: underline;
}

section.documents .subtitle {
  font-size: 24px;
}

section.documents .body-text {
  font-size: 18px;
  padding: 15px 0;
}

section.documents ul {
  margin-left: 50px;
}

footer {
  float: left;
  width: 100%;
  background: #000000;
  padding: 90px 0 45px;
  color: rgb(242 242 242 / 85%);
}

footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-info,
footer .footer-menu,
footer .footer-risk {
  flex: 0 0 30%;
  max-width: 30%;
}

footer .footer-content p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 22px;
}

footer .footer-content .footer-contact span {
  font-weight: 700;
}

footer .footer-menu ul {
  list-style: none;
  margin-top: 20px;
}

footer .footer-menu ul li {
  margin: 3px 0;
}

footer .footer-menu ul li:first-child {
  margin: 0;
}

footer .footer-menu ul li a {
  font-size: 14px;
  color: #ffffff;
}

footer .footer-menu ul li.active a {
  color: #284ba9;
}

footer .footer-menu ul li a:hover {
  font-size: 14px;
  color: #284ba9;
}

footer .footer-content .copyrights {
  font-size: 15px;
  color: #ffffff;
}

footer .footer-content .copyrights span {
  color: #284ba9;
}
