/*

0   ->   600px :  Phone
600 ->   900px :  Tablet Portrait
900 ->   1200px:  Desktop

[1200px -> 1800px: Is where our design currently apply]

1800+: Big Desktop

$breakpoint argument choices

- phone
- tab-port
- tab-land
- big-desktop


ORDER: Base + Typography > General layout + grid > Page Layout + components
*/
@import url("../css2");
@import url("../css2-1");
@import url("../css2-2");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.rotate {
  animation: rotation 30s linear infinite;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.scale-x1 {
  transition: all 0.3s;
}
.scale-x1:hover {
  transform: scale(1.05);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #272727;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #272727;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
@media (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

input,
select {
  font-family: inherit;
}

input[type=password]:not(:placeholder-shown) {
  font: small-caption;
  font-size: 1.5rem;
}

body {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

.heading-primary {
  display: inline-block;
  color: #FEFEFE;
  font-size: 6.5rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}
@media (max-width: 56.25em) {
  .heading-primary {
    font-size: 5rem;
  }
}
.heading-primary span {
  color: #E5B061;
}
.heading-paragraph {
  font-family: "Josefin Sans", sans-serif;
  color: #FEFEFE;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
@media (max-width: 56.25em) {
  .heading-paragraph {
    font-size: 2.2rem;
  }
}
.heading-paragraph span {
  color: #E5B061;
}
.heading-secondary {
  display: block;
  color: #272727;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}
@media (max-width: 56.25em) {
  .heading-secondary {
    font-size: 4rem;
  }
}
.heading-secondary-light {
  color: #FEFEFE;
}
.heading-secondary span {
  font-weight: 700;
  color: #E5B061;
}
.heading-tertiary {
  display: block;
  position: relative;
  color: #272727;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}
@media (max-width: 56.25em) {
  .heading-tertiary {
    font-size: 3rem;
  }
}
.heading-tertiary-light {
  color: #FEFEFE;
}
.heading-tertiary span {
  font-weight: 700;
  color: #25292D;
}

.paragraph {
  color: rgba(51, 51, 51, 0.9);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.9;
}
@media (max-width: 56.25em) {
  .paragraph {
    font-size: 2rem;
  }
}
.paragraph-light {
  color: #FEFEFE;
}

.u-center-text {
  text-align: center !important;
}

.u-left-text {
  text-align: left !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}

.u-margin-top-small {
  margin-top: 4rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-top-small {
    margin-top: 3rem !important;
  }
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-margin-right-small {
  padding-right: 2rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-right-small {
    padding-right: 3rem !important;
  }
}

.u-margin-left-small {
  padding-left: 2rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-left-small {
    padding-left: 3rem !important;
  }
}

.u-padding-2 {
  padding: 2rem !important;
}

.u-auto-center {
  margin: 0 auto;
}

.u-bg-light {
  background-color: rgba(39, 39, 39, 0.35) !important;
}

.u-bg-dark {
  background-color: rgba(39, 39, 39, 0.95) !important;
}

.u-default-border-radius {
  border-radius: 3px;
}

.u-shadow-light {
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
}

.u-font-weight-300 {
  font-weight: 300 !important;
}

.u-font-weight-400 {
  font-weight: 400 !important;
}

.u-font-weight-500 {
  font-weight: 500 !important;
}

.u-fontsize-2-5 {
  font-size: 2.5rem;
}

.alert-box {
  margin: 2rem;
}
@media (max-width: 56.25em) {
  .alert-box {
    margin: 1.5rem 1rem;
  }
}

.alert {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 56.25em) {
  .alert {
    font-size: 2rem;
  }
}
.alert__success {
  background-color: rgba(126, 239, 104, 0.05);
  color: #57d83e;
  border: 1px solid rgba(126, 239, 104, 0.6);
}
.alert__warning {
  background-color: rgba(253, 38, 38, 0.05);
  color: #fd2626;
  border: 1px solid rgba(253, 38, 38, 0.6);
}
.alert__error {
  background-color: rgba(253, 38, 38, 0.05);
  color: #fd2626;
  border: 1px solid rgba(253, 38, 38, 0.6);
}

.action-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4rem 0;
}
@media (max-width: 56.25em) {
  .action-cards {
    flex-direction: column;
  }
}

.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0.25;
  padding: 3rem;
}
@media (max-width: 56.25em) {
  .action-card {
    margin: 2rem 0;
  }
}
.action-card-icon {
  width: 7.5rem;
  height: 7.5rem;
  fill: #E5B061;
  margin-bottom: 2rem;
  border-radius: 50%;
  padding: 0.25rem;
}
@media (max-width: 56.25em) {
  .action-card-icon {
    width: 12.5rem;
    height: 12.5rem;
  }
}
.action-card-img {
  width: 30%;
  margin-bottom: 2rem;
  padding: 0.25rem;
}
.action-card-text {
  font-size: 1.7rem; 
  color: #faf9f9;
  color: #06092d;
  text-align: center;
  font-weight: 300;
}
@media (max-width: 56.25em) {
  .action-card-text {
    font-size: 2.5rem;
  }
}

.btn, .btn:link, .btn:visited {
  font-family: inherit;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1.5rem 4rem;
  display: inline-block;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  border-radius: 0.2rem;
  margin: 3rem 0;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .btn, .btn:link, .btn:visited {
    font-size: 2.3rem;
    padding: 1.5rem 4rem;
  }
}
.btn-white {
  color: #FEFEFE;
  border: 2px solid #FEFEFE;
}
.btn-white:hover {
  background-color: #E5B061;
  border: 2px solid #E5B061;
}
.btn-dark {
  color: #272727;
  border: 2px solid #272727;
}
.btn-dark:hover {
  background-color: rgba(39, 39, 39, 0.8);
  color: #FEFEFE;
}
.btn-fill-dark {
  color: #FEFEFE;
  background-image: linear-gradient(to right bottom, #272727, #fd2626);
}
.btn-fill-light {
  color: #272727;
  background-image: linear-gradient(135deg, #E5B061, #E5B061);
}
.btn-fill-primary {
  color: #FEFEFE;
  background-image: linear-gradient(135deg, #272727, #272727);
}
.btn-form {
  background-color: #06092d;
  color: #FEFEFE;
  border: none;
  width: 100%;
  padding: 2rem 1.5rem;
}
@media (max-width: 56.25em) {
  .btn-form {
    padding: 2.5rem 2.5rem;
  }
}
.btn-form:hover {
  background-color: rgba(1, 2, 10, 0.9);
}
.btn__pill {
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 1rem;
  letter-spacing: 0.1rem;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 56.25em) {
  .btn__pill {
    padding: 1.5rem 2.5rem;
    font-size: 1.4rem;
  }
}
.btn__pill-light {
  background-color: #e5b061;
}
.btn__pill-light:active {
  background-color: rgba(229, 176, 97, 0.7);
}
.btn__pill-light a {
  text-decoration: none;
  color: #06092d;
}
.btn__pill-dark {
  background-color: #06092d;
  color: #FEFEFE;
}

.btn-sm, .btn-sm:link, .btn-sm:visited {
  font-family: inherit;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1.5rem 4rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 1rem 0;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .btn-sm, .btn-sm:link, .btn-sm:visited {
    font-size: 1.6rem;
    padding: 2rem 4rem;
  }
}
.btn-sm-light {
  color: #06092d;
  background-color: #E5B061;
}
.btn-icon {
  width: 2rem;
  height: 2rem;
}

.card {
  background-color: #faf9f9;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  padding: 4rem 3rem;
  border-radius: 0.2rem;
  flex: 25%;
  margin: 4rem 3rem;
  text-align: left;
  transition: all 0.3s;
}
@media (max-width: 56.25em) {
  .card {
    margin: 2rem 0;
  }
}
.card:hover {
  transform: scale(1.05);
}
.card__icon {
  margin-bottom: 1rem;
}
.card .heading-tertiary {
  font-weight: 600;
  position: relative;
}
.card .heading-tertiary::after {
  content: "";
  position: absolute;
  top: 105%;
  left: 0;
  width: 4.5rem;
  height: 4px;
  background-color: #E5B061;
}
.card__text {
  font-size: 1.7rem;
  color: #272727;
  font-weight: 300;
  margin: 4rem 0 0 0;
}
@media (max-width: 56.25em) {
  .card__text {
    font-size: 2.5rem;
    margin: 2rem 0 0 0;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: space-between;
  transition: 1s;
}

.carousel__card {
  min-height: 100%;
  background: #25292D;
  background-image: linear-gradient(to right bottom, rgba(200, 243, 249, 0.3), #020020, #011438);
  border-radius: 2rem;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin: 0 1rem;
}
@media (max-width: 56.25em) {
  .carousel__card {
    width: 95%;
    margin: 3rem auto;
  }
}

.carousel__card-thumb {
  width: 70%;
  height: 25rem;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  position: relative;
}

.client-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-name {
  color: #272727;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  padding: 0.5rem 2rem;
  background: #E5B061;
  text-transform: capitalize;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 56.25em) {
  .client-name {
    font-size: 2.5rem;
  }
}

.carousel__card-body {
  width: 120%;
  min-height: 100%;
  height: auto;
  margin-left: 2rem;
  position: relative;
  padding-bottom: 5rem;
}

.review {
  color: #FEFEFE;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 3rem;
  margin-top: 3rem;
}
@media (max-width: 56.25em) {
  .review {
    font-size: 2rem;
  }
}

.indicators {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.indicators button {
  background: none;
  border: none;
  outline: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  margin-left: 5px;
  transition: 0.5s;
}

button.active {
  width: 4rem;
  border-radius: 5rem;
  background: #fff;
}

@media (max-width: 800px) {
  .carousel__card {
    flex-direction: column;
  }

  .carousel__card-thumb {
    width: 100%;
    border-radius: 10px;
  }

  .carousel__card-body {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }
}
.top-traders {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-trader__card {
  position: relative;
  min-height: 100%;
  width: 80%;
  background: #25292d;
  background-image: url(../img/map.png);
  background-size: 100%;
  background-repeat: no-repeat;
  border-radius: 1rem;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin: 2.5rem 0;
}
@media (max-width: 56.25em) {
  .top-trader__card {
    flex: 1 0 1;
    width: 130%;
    background-size: 100%;
    border-radius: 0.5rem;
  }
}
.top-trader__thumbnail {
  width: 40%;
  height: 20rem;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  position: relative;
  border-right: 8px solid #faf9f9;
}
@media (max-width: 56.25em) {
  .top-trader__thumbnail {
    max-width: 50%;
    border-right: none;
    border: 4px solid #25292D;
  }
}
@media (max-width: 37.5em) {
  .top-trader__thumbnail {
    min-width: 50%;
  }
}
.top-trader__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-trader__name {
  color: #FEFEFE;
  position: absolute;
  bottom: 4rem;
  right: 1rem;
  min-width: 50%;
  border-top-left-radius: 1.6rem;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0.5rem 1.5rem;
  background: #25292D;
  text-transform: capitalize;
  font-size: 1.7rem;
  font-weight: 300;
  text-align: right;
}
.top-trader__phone {
  display: flex;
  justify-content: space-between;
  color: #333;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  border-top-left-radius: 1.6rem;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0.5rem 2rem;
  background: #ccc;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.1rem;
  min-width: 30%;
}
@media (max-width: 56.25em) {
  .top-trader__phone {
    min-width: 60%;
    font-size: 1.5rem;
    border: 3px solid #25292D;
  }
}
.top-trader__phone-icon {
  fill: transparent;
  stroke: currentColor;
  height: 2rem;
  width: 2rem;
}

.form {
  flex: 1 0 0;
  margin: 10rem 5rem;
  padding: 5rem 5rem;
}
@media (max-width: 56.25em) {
  .form {
    flex: 1 0 100%;
  }
}
.form__group {
  margin: 1.5rem auto;
  padding: 1rem 0;
  width: 100%;
}
.form__text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #06092d;
}
@media (max-width: 56.25em) {
  .form__text {
    font-size: 2rem;
  }
}
.form__text-link {
  color: #fd2626;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.form__text-link:active, .form__text-link:hover {
  color: #272727;
}
.form__input {
  outline: none;
  padding: 2rem 1.5rem;
  width: 100%;
  border-radius: 0.3rem;
  background-color: #FEFEFE;
  border: 2px solid #06092d;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  transition: border 0.2s;
}
@media (max-width: 56.25em) {
  .form__input {
    font-size: 2rem;
  }
}
.form__input::-webkit-input-placeholder {
  font-size: 1.5rem;
}
@media (max-width: 56.25em) {
  .form__input::-webkit-input-placeholder {
    font-size: 2rem;
  }
}
.form__input:focus, .form__input:focus-visible {
  border: 2px solid #25292D;
}
.form__input:not(:placeholder-shown):valid {
  background: url(../img/good.svg);
  background-size: 2rem;
  background-repeat: no-repeat;
  background-position: 96% 2rem;
}
.form__input:not(:placeholder-shown):invalid {
  border: 2px solid #fd2626;
}

.investment-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem 4rem;
}
@media (max-width: 56.25em) {
  .investment-cards {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
  }
}

.investment-card {
  border-radius: 3px;
  box-shadow: 0px 17px 18px -14px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 17px 18px -14px rgba(0, 0, 0, 0.5);
  flex: 0.25;
}
@media (max-width: 56.25em) {
  .investment-card {
    width: 80%;
    margin: 3rem 0;
  }
}
@media (max-width: 37.5em) {
  .investment-card {
    width: 90%;
  }
}
.investment-card__content {
  background-color: #faf9f9;
  padding: 2rem 3rem;
}
.investment-card__header {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  color: #25292D;
  margin: 0.5rem 0;
  padding-left: 0.7rem;
}
@media (max-width: 56.25em) {
  .investment-card__header {
    font-size: 2.5rem;
    padding-left: 1.5rem;
  }
}
.investment-card__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 90%;
  width: 3px;
  background-color: rgba(37, 41, 45, 0.3);
}
@media (max-width: 56.25em) {
  .investment-card__header::after {
    width: 5px;
  }
}
.investment-card__text {
  font-size: 1.5rem;
  font-weight: 300;
  padding-top: 1.5rem;
}
@media (max-width: 56.25em) {
  .investment-card__text {
    font-size: 2.3rem;
  }
}
.investment-card__amount {
  font-size: 2rem;
  font-weight: 400;
  color: #272727;
}
@media (max-width: 56.25em) {
  .investment-card__amount {
    font-size: 2.6rem;
  }
}
.investment-card__roi {
  font-size: 1.9rem;
  font-weight: 500;
  color: #272727;
}
@media (max-width: 56.25em) {
  .investment-card__roi {
    font-size: 2.6rem;
  }
}
.investment-card__referral {
  font-size: 1.9rem;
  font-weight: 500;
  color: #272727;
}
@media (max-width: 56.25em) {
  .investment-card__referral {
    font-size: 2.6rem;
  }
}
.investment-card__footer {
  background-color: #272727;
  padding: 2rem;
}
@media (max-width: 56.25em) {
  .investment-card__footer {
    padding: 3rem 3rem;
  }
}

.mobile-nav {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3rem 1.5rem;
  background-image: linear-gradient(to right bottom, rgba(1, 2, 10, 0.95), rgba(1, 2, 10, 0.95));
  height: 100vh;
  transition: display 0.2s;
  z-index: 5555;
  width: 80vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  display: none;
}
.mobile-nav__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.mobile-nav__list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: 1.75rem;
  font-weight: 300;
  color: #faf9f9;
  padding: 3rem;
}
.mobile-nav__list > * {
  padding: 1rem 0;
}
.mobile-nav__list a {
  text-decoration: none;
  color: inherit;
}
.mobile-nav__icon {
  height: 100%;
  width: 100%;
}
.mobile-nav__logo {
  width: 60%;
  padding: 3rem;
}
.mobile-nav__link, .mobile-nav__link:link {
  text-decoration: none;
  text-transform: uppercase;
  color: #FEFEFE;
  letter-spacing: 0.2rem;
  font-size: 2rem;
  font-weight: 500;
  padding: 1.3rem 3rem;
  margin: 1.2rem;
  display: flex;
  align-items: center;
}
.mobile-nav__link:active, .mobile-nav__link:link:active {
  color: #E5B061;
}
.mobile-nav__link-button {
  color: #272727 !important;
  background-color: #E5B061;
  transition: all 0.2s;
}
.mobile-nav__link-button:active {
  background-color: rgba(229, 176, 97, 0.8);
}
.mobile-nav__link-button:hover {
  background-color: rgba(229, 176, 97, 0.7);
}
.mobile-nav__icon {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
  fill: currentColor;
}

.header__logo-box {
  background-color: #06092d;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  padding: 2rem 0;
  width: 100vw;
  position: fixed;
  z-index: 99999;
}
@media (max-width: 75em) {
  .header__logo-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 3rem;
  }
}
@media (max-width: 75em) {
  .header__logo {
    width: 20%;
  }
}
@media (max-width: 56.25em) {
  .header__logo {
    width: 30%;
  }
}
@media (max-width: 37.5em) {
  .header__logo {
    width: 40%;
  }
}

.mobile-nav__checkbox {
  display: none;
}
.mobile-nav__button {
  display: inline;
  z-index: 9999;
  transition: all 0.5s;
}
@media (max-width: 75em) {
  .mobile-nav__button {
    top: 8rem;
    right: 4rem;
    display: block;
  }
}
@media (max-width: 56.25em) {
  .mobile-nav__button {
    top: 5.5rem;
    right: 4rem;
    display: block;
  }
}
@media (max-width: 37.5em) {
  .mobile-nav__button {
    top: 5rem;
    right: 4rem;
    display: block;
  }
}
.mobile-nav__close-button {
  fill: #E5B061;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .mobile-nav__close-button {
    height: 4.5rem;
    width: 4.5rem;
  }
}
.mobile-nav__close-button:hover {
  fill: #E5B061;
}

.mobile-nav__checkbox:checked ~ .mobile-nav {
  transform: translateX(0%);
  display: flex;
}
.mobile-nav__checkbox:checked ~ .mobile-nav__button > .mobile-nav__close-button {
  transform: rotate(90deg);
}
.mobile-nav__checkbox:checked ~ .mobile-nav__button > .mobile-nav__close-button:hover {
  fill: #E5B061;
}

.progressbars {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
}

.progressbar {
  width: 100%;
  background-color: #272727;
  height: 0.5rem;
  position: relative;
  border-radius: 0.3rem;
}
@media (max-width: 56.25em) {
  .progressbar {
    height: 0.75rem;
    border-radius: 1rem;
  }
}
.progressbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E5B061;
  height: 0.5rem;
  border-radius: 0.3rem;
}
@media (max-width: 56.25em) {
  .progressbar::after {
    height: 0.75rem;
    border-radius: 1rem;
  }
}
.progressbar-1::after {
  width: 98%;
}
.progressbar-2::after {
  width: 93%;
}
.progressbar-3::after {
  width: 90%;
}
.progressbar-4::after {
  width: 97%;
}
.progressbar-div {
  padding: 1rem 0;
}
.progressbar__heading {
  font-size: 1.7rem;
  font-weight: 300;
  color: #FEFEFE;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 56.25em) {
  .progressbar__heading {
    font-size: 2.2rem;
  }
}
.progressbar__percent {
  font-weight: 400;
}

.section__content-box {
  margin: 0 4rem;
  flex: 0 0 50%;
}
@media (max-width: 56.25em) {
  .section__content-box {
    flex: 1;
    margin: 0 0;
  }
}
.section__img-box {
  padding: 2rem;
  background-size: 120%;
  background-position: 50%;
}
@media (max-width: 56.25em) {
  .section__img-box {
    padding: 3rem;
    order: 1;
  }
}
.section__img-box img {
  width: 100%;
}
.section__list {
  display: flex;
  list-style: none;
  color: #6DBCE1;
  font-size: 1.6rem;
  font-weight: 300;
  margin: 2rem 0;
  padding: 2rem 0;
  flex-wrap: wrap;
}
@media (max-width: 56.25em) {
  .section__list {
    font-size: 2.2rem;
  }
}
.section__list-item {
  flex: 0 0 50%;
  margin-bottom: 0.7rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 56.25em) {
  .section__list-item {
    flex: 0 0 100%;
    margin-bottom: 1rem;
    padding: 1rem;
  }
}
.section__list-item:hover {
  background-color: #E5B061;
  color: #06092d;
}
.section__list-icon {
  fill: currentColor;
  width: 2rem;
  height: 2rem;
}
.section__cards {
  margin: 1rem 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (max-width: 56.25em) {
  .section__cards {
    flex-direction: column;
    margin: 4rem 0;
  }
}

.section-side-content {
  flex: 0 0 50%;
  background-color: #272727;
  background-image: linear-gradient(to right bottom, #06092d, #06092d);
  background-repeat: no-repeat;
  background-size: cover;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 56.25em) {
  .section-side-content {
    display: none;
  }
}
.section-side-logo {
  width: 50%;
}

.withdrawal_alert {
  background-color: #06092d;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  border: 2px solid #ffc857;
  color: #FEFEFE;
  font-size: 1.35rem;
  font-weight: 400;
  padding: 1rem 2.75rem;
  border-radius: 1.5rem;
  position: fixed;
  top: 80%;
  left: 3%;
  z-index: 999;
}
@media (max-width: 56.25em) {
  .withdrawal_alert {
    font-size: 1.95rem;
    padding: 2.75rem 2.75rem;
    width: 70%;
    top: 70%;
    left: 5%;
  }
}

.account {
  display: flex;
  flex-direction: column;
}
.account__div:not(:last-child) {
  border-bottom: 0.5px solid #ccc;
  padding-bottom: 2rem;
}
.account__div:nth-child(2) {
  padding-top: 2rem;
}
.account__header {
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 56.25em) {
  .account__header {
    font-size: 2.5rem;
  }
}
.account__header-flex {
  flex: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account__header-light {
  color: #FEFEFE;
}
.account__header-dark {
  color: #06092d;
}
.account__balance {
  font-size: 3rem;
  font-weight: 400;
  color: #2daf13;
}
.account__balance-2 {
  font-size: 3rem;
  font-weight: 400;
  color: #06092d;
}
.account__number {
  font-size: 3rem;
  font-weight: 400;
  color: #f5a912;
  letter-spacing: 0.1rem;
}
.account__referral-link {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}
.account__referral-link a {
  text-decoration: none;
  color: #272727;
}
.account__referral-link a:active {
  color: #272727;
}

.transaction__box {
  background-color: rgba(254, 254, 254, 0.8);
  border-radius: 3px;
  padding: 1.5rem 2rem 1.5rem 1rem;
  margin: 0.5rem 0;
  width: 100%;
  font-size: 1.5rem;
  max-width: 200%;
  display: flex;
  justify-content: space-between;
}
.transaction__box-div:not(:last-child) {
  flex: 1;
  margin-right: 14rem;
}
.transaction__box-div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.transaction__type {
  font-size: 1.5rem;
  font-weight: 400;
  color: #06092d;
}
@media (max-width: 56.25em) {
  .transaction__type {
    font-size: 2rem;
  }
}
.transaction__amount {
  font-size: 2rem;
  font-weight: 600;
  color: #06092d;
}
@media (max-width: 56.25em) {
  .transaction__amount {
    font-size: 2.5rem;
  }
}
.transaction__status {
  color: #f5a912;
  background-color: #010711;
  border-radius: 6px;
  padding: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 56.25em) {
  .transaction__status {
    font-size: 1.8rem;
  }
}
.transaction__status-icon {
  fill: #2daf13;
  width: 3rem;
  height: 3rem;
}
@media (max-width: 56.25em) {
  .transaction__status-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.transaction__roi {
  font-size: 2rem;
  font-weight: 600;
  color: #2daf13;
}
@media (max-width: 56.25em) {
  .transaction__roi {
    font-size: 2.5rem;
  }
}
.transaction__date {
  color: rgba(51, 51, 51, 0.6);
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 56.25em) {
  .transaction__date {
    font-size: 1.8rem;
  }
}

.transactions {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.activate__card-container {
  display: flex;
  justify-content: space-around;
  flex: 1;
  flex-wrap: wrap;
}
@media (max-width: 56.25em) {
  .activate__card-container {
    flex-direction: column;
    padding: 0 2rem;
  }
}

.activate__card {
  background-color: #e0d9d9;
  border-radius: 1px;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 2.5rem 2rem 2.5rem;
  margin: 4rem 4rem;
  flex: 0 1 27%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 75em) {
  .activate__card {
    flex: 0.25;
  }
}
@media (max-width: 56.25em) {
  .activate__card {
    flex-shrink: 1;
  }
}
.activate__card-content {
  text-align: center;
}
.activate__card-name {
  font-size: 1.5rem;
  font-weight: 400;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 3px;
  margin-bottom: 2rem;
}
@media (max-width: 56.25em) {
  .activate__card-name {
    font-size: 2rem;
  }
}
.activate__card-name-1 {
  color: #272727;
  background-color: #faf9f9;
}
.activate__card-name-2 {
  color: #272727;
  background-color: #E5B061;
}
.activate__card-name-3 {
  color: #ccc;
  background-color: #020020;
}
.activate__card-price {
  color: #272727;
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 56.25em) {
  .activate__card-price {
    font-size: 5.5rem;
    display: block;
  }
}
.activate__card-desc {
  color: #333;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media (max-width: 56.25em) {
  .activate__card-desc {
    font-size: 1.8rem;
  }
}
.activate__card-withdrawal {
  color: #06092d;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media (max-width: 56.25em) {
  .activate__card-withdrawal {
    font-size: 3rem;
  }
}
.activate__card-withdrawal span {
  display: block;
  font-weight: 700;
  font-size: 3rem;
}
@media (max-width: 56.25em) {
  .activate__card-withdrawal span {
    font-size: 3.5rem;
  }
}

.credit__card {
  font-family: "Josefin Sans", sans-serif;
  width: 43rem;
  height: 24rem;
  color: #FEFEFE;
  cursor: pointer;
  perspective: 1000px;
}
@media (max-width: 56.25em) {
  .credit__card {
    width: 40rem;
    height: 25rem;
  }
}
@media (max-width: 37.5em) {
  .credit__card {
    width: 38rem;
    height: 25rem;
  }
}
.credit__card:active .credit__card__inner {
  transform: rotateY(-180deg);
}
.credit__card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.credit__card__number {
  font-size: 2rem;
  margin-top: 4rem;
}
.credit__card__holder {
  font-size: 0.8rem;
  margin-top: 3rem;
}
.credit__card__name {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.credit__card__bar {
  background-color: #222;
  margin: 1rem -3rem 0 -3rem;
  height: 2.5rem;
}
.credit__card__cvv {
  margin-top: 2rem;
}
.credit__card__cvv img {
  width: 100%;
  display: block;
  line-height: 0;
}
.credit__card__cvv div {
  flex: 1;
}
.credit__card__cvv p {
  background: #FEFEFE;
  color: #06092d;
  font-size: 1.5rem;
  padding: 0.8rem 1.3rem;
  margin-left: -0.3rem;
}
.credit__card__text {
  margin-top: 2rem;
  color: #e0d9d9;
  font-size: 1.2rem;
}
.credit__card__signature {
  margin-top: 2rem;
}
.credit__card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1s;
  transform-style: preserve-3d;
}
.credit__card__inner--back {
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.credit__card__inner--front, .credit__card__inner--back {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #011438, #010711);
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  backface-visibility: hidden;
}

.map__img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.dashboard {
  position: relative;
  background-image: linear-gradient(to bottom, #010711, #011438, #011438);
  min-height: 100vh;
}

.dashboard__heading {
  display: block;
  color: #272727;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}
.dashboard__address {
  font-size: 2rem;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 56.25em) {
  .dashboard__address {
    font-size: 2.5rem;
  }
}
.dashboard__qr-code {
  max-width: 30%;
  border: 6px solid #06092d;
}

.form__secondary {
  background-color: #faf9f9;
  border-radius: 1px;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  margin: 2rem auto;
  flex: 0.5;
}
@media (max-width: 75em) {
  .form__secondary {
    flex: 0.75;
  }
}
@media (max-width: 56.25em) {
  .form__secondary {
    flex: 1;
  }
}
.form__secondary-header {
  font-size: 3rem;
}
@media (max-width: 56.25em) {
  .form__secondary-header {
    font-size: 2.3rem;
  }
}
.form__secondary-icon {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 56.25em) {
  .form__secondary-icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.form__preview--img {
  width: 20%;
  display: none;
}

.dashboard__main {
  margin: 2rem 3rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 56.25em) {
  .dashboard__main {
    margin: 3rem 1.5rem;
  }
}
.dashboard__card-box {
  flex: 20%;
  align-self: flex-start;
  margin: 2rem 2rem;
  border-radius: 6px;
  border-bottom: 1.5px solid rgba(255, 200, 87, 0.7);
  display: flex;
}
@media (max-width: 37.5em) {
  .dashboard__card-box {
    flex: 100%;
  }
}
.dashboard__card-box-2 {
  background-image: linear-gradient(to right bottom, #f5a912, #e5b061);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-3 {
  background-color: rgba(1, 7, 17, 0.95);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
@media (max-width: 37.5em) {
  .dashboard__card-box-3 {
    padding: 2rem 2rem;
  }
}
.dashboard__card-box-4 {
  background-color: #010711;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-5 {
  background-color: rgba(1, 7, 17, 0.9);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-6 {
  background-color: rgba(1, 7, 17, 0.8);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-7 {
  background-color: rgba(1, 7, 17, 0.7);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-8 {
  background-color: #faf9f9;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}

.dashboard__navigation {
  background-color: rgba(1, 7, 17, 0.95);
  border-bottom: 0.3px solid #333;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 56.25em) {
  .dashboard__navigation {
    padding: 2.5rem 3rem;
  }
}
.dashboard__username {
  color: #272727;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
}
.dashboard__username-icon {
  fill: #faf9f9;
  width: 3.5rem;
  height: 3.5rem;
  align-self: center;
}
.dashboard__header {
  text-align: center;
  font-size: 2.5rem;
  color: #E5B061;
}
@media (max-width: 56.25em) {
  .dashboard__header {
    font-size: 3rem;
  }
}
.dashboard__header-img {
  width: 20%;
}
@media (max-width: 75em) {
  .dashboard__header-img {
    width: 20%;
  }
}
@media (max-width: 56.25em) {
  .dashboard__header-img {
    width: 50%;
  }
}
.dashboard__navigation-icon {
  height: 4rem;
  width: 4rem;
  fill: #FEFEFE;
  cursor: pointer;
  transition: all 0.1s;
}
.dashboard__navigation-icon:hover {
  fill: #E5B061;
}

.nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3rem 1.5rem;
  background-color: #FEFEFE;
  min-height: 100vh;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  transition: all 2s;
  z-index: 5555;
  display: flex;
  flex-direction: column;
  display: none;
}
.nav__content {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 56.25em) {
  .nav__content {
    margin-top: 7rem;
  }
}
.nav__link, .nav__link:link {
  text-decoration: none;
  color: #faf9f9;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 1rem 1.5rem;
  margin: 0.8rem;
  background-color: rgba(2, 0, 32, 0.85);
  border-radius: 21px;
  display: flex;
  align-items: center;
}
.nav__link:last-child, .nav__link:link:last-child {
  background-color: #fd2626;
}
@media (max-width: 56.25em) {
  .nav__link, .nav__link:link {
    font-size: 2rem;
    font-weight: 300;
    padding: 1.3rem 1.5rem;
    margin: 1.2rem;
    border-radius: 28px;
  }
}
.nav__link:active, .nav__link:link:active {
  color: #E5B061;
}
.nav__icon {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
  fill: currentColor;
}

.nav__button {
  display: inline;
  position: absolute;
  top: 1.7rem;
  right: 2.5rem;
  z-index: 9999;
}
@media (max-width: 56.25em) {
  .nav__button {
    top: 3rem;
    right: 2rem;
  }
}

.nav__close-button {
  fill: #FEFEFE;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .nav__close-button {
    height: 4.5rem;
    width: 4.5rem;
  }
}
.nav__close-button:hover {
  fill: #E5B061;
}

.nav__checkbox {
  display: none;
}

.nav__checkbox:checked ~ .nav {
  transform: translateX(0%);
  display: flex;
}

.nav__checkbox:checked ~ .nav__button > .nav__close-button {
  fill: #272727;
}
.nav__checkbox:checked ~ .nav__button > .nav__close-button:hover {
  fill: #272727;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col] {
  float: left;
}
.row [class^=col]:not(:last-child) {
  margin-right: 6rem;
}
@media (max-width: 56.25em) {
  .row [class^=col]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media (max-width: 56.25em) {
  .row [class^=col] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2* ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2* 6rem);
}

.header {
  min-height: 110vh;
  padding: 4rem;
  background-image: linear-gradient(to right bottom, rgba(39, 39, 39, 0.6), rgba(39, 39, 39, 0.5)), url(../img/building-abs-3.jpg);
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 56.25em) {
  .header {
    height: 70vh;
    padding: 3rem;
  }
}
@media (max-width: 37.5em) {
  .header {
    height: 100vh;
    padding: 15rem 3rem;
  }
}
.header__content {
  padding: 0 0;
  margin-top: 10rem;
  display: flex;
  flex-direction: row;
}
@media (max-width: 56.25em) {
  .header__content {
    margin-top: 0rem;
  }
}
@media (max-width: 37.5em) {
  .header__content {
    margin-top: 15rem;
  }
}
.header__content-main {
  flex: 0 0 50%;
}
@media (max-width: 56.25em) {
  .header__content-main {
    flex: 0 0 100%;
    padding: 10rem 0;
  }
}
.header__content .btn {
  align-self: flex-start;
}
.header__img-box {
  position: absolute;
  top: 4rem;
  right: 1rem;
  padding: 6rem 3rem;
  z-index: 1;
}
@media (max-width: 75em) {
  .header__img-box {
    display: none;
  }
}
@media (max-width: 56.25em) {
  .header__img-box {
    display: none;
  }
}
.header__img {
  width: 80%;
}
.header__map {
  width: 100%;
  opacity: 0.6;
}

.navigation {
  position: fixed;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  padding: 1rem 0;
  background-color: #06092d;
  z-index: 9999;
  width: 100%;
  overflow: hidden;
}
.navigation__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 75em) {
  .navigation {
    display: none;
  }
}
@media (max-width: 56.25em) {
  .navigation {
    display: none;
  }
}
.navigation__brand {
  flex: 0 0 30%;
  margin-left: 2rem;
}
.navigation__brand a {
  text-decoration: none;
  color: #E5B061;
  font-size: 2rem;
}
.navigation__brand .logo {
  width: 40%;
}
.navigation__list {
  display: flex;
  list-style: none;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}
.navigation__items {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-end;
}
.navigation__item {
  text-transform: uppercase;
  padding: 1.5rem;
}
.navigation__link {
  color: #ccc;
  text-decoration: none;
  padding: 1rem;
  transition: all 0.1s ease-in;
}
.navigation__active {
  border: 2px solid #E5B061;
}

.footer {
  padding: 5rem 3rem;
  background-color: #06092d;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 56.25em) {
  .footer {
    padding: 5rem 3rem;
  }
}
@media (max-width: 37.5em) {
  .footer {
    padding: 5rem 3rem;
  }
}
@media (max-width: 75em) {
  .footer > * {
    margin-bottom: 7rem;
  }
}
@media (max-width: 56.25em) {
  .footer > * {
    margin-bottom: 5rem;
  }
}
.footer__logo-box {
  flex: 0 0 35%;
}
@media (max-width: 56.25em) {
  .footer__logo-box {
    flex: 0 0 100%;
  }
}
.footer__logo {
  width: 50%;
}
@media (max-width: 75em) {
  .footer__logo {
    width: 40%;
  }
}
@media (max-width: 56.25em) {
  .footer__logo {
    width: 50%;
  }
}
.footer__description {
  color: #faf9f9;
  font-size: 1.75rem;
}
@media (max-width: 56.25em) {
  .footer__description {
    font-size: 2rem;
  }
}
.footer__links {
  flex: 0.25;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}
@media (max-width: 56.25em) {
  .footer__links {
    flex: 0 0 100%;
  }
}
.footer__list {
  list-style: none;
  padding-top: 1rem;
}
.footer__list-item {
  padding: 0.5rem 0;
}
@media (max-width: 56.25em) {
  .footer__list-item {
    padding: 1rem 0;
  }
}
.footer__list-icon {
  fill: none;
  stroke: #E5B061;
  height: 2rem;
  width: 2rem;
}
.footer__links-header {
  color: #ccc;
  font-size: 2.5rem;
  font-weight: 500;
}
@media (max-width: 56.25em) {
  .footer__links-header {
    font-size: 2.5rem;
  }
}
.footer__list-link, .footer__list-link:active, .footer__list-link:visited {
  text-decoration: none;
  color: #ccc;
  font-size: 1.75rem;
  font-weight: 400;
  position: relative;
  transition: padding 0.2s;
}
@media (max-width: 56.25em) {
  .footer__list-link, .footer__list-link:active, .footer__list-link:visited {
    font-size: 2rem;
  }
}
.footer__list-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #6DBCE1;
  transform: scaleY(0);
  transition: transform 0.2s, width 0.4s cubic-bezier(1, 0, 0, 1) 0.2s, background-color 0.1s;
}
.footer__list-link:hover::before {
  transform: scaleY(1);
  width: 5px;
}
.footer__list-link:hover {
  padding-left: 1rem;
  color: #E5B061;
}
.footer__company {
  background-color: #272727;
  padding: 1rem 5rem;
  font-size: 1.5rem;
  color: #ccc;
}
@media (max-width: 56.25em) {
  .footer__company {
    padding: 2rem 3rem;
  }
}
.footer__copyright {
  background-color: #06092d;
  padding: 1rem 5rem;
  font-size: 1.5rem;
  color: #ccc;
}
@media (max-width: 56.25em) {
  .footer__copyright {
    font-size: 2rem;
  }
}

.section-start-journey {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #272727;
  padding: 2.5rem 0;
}
@media (max-width: 56.25em) {
  .section-start-journey {
    flex-direction: column;
    align-items: flex-end;
    text-align: left;
    padding: 2rem 2rem;
    background-color: none;
    background-image: url(../img/layered-1.svg);
    background-size: cover;
  }
}
@media (max-width: 56.25em) {
  .section-start-journey .heading-tertiary {
    align-self: flex-start;
  }
}

.section-trust-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10rem 5rem;
  background-color: #06092d;
  background-size: cover;
}
@media (max-width: 56.25em) {
  .section-trust-us {
    padding: 10rem 3rem;
    flex-direction: column;
  }
}
@media (max-width: 37.5em) {
  .section-trust-us {
    padding: 10rem 1rem;
  }
}
.section-trust-us .section__content-box {
  margin: 0 2rem 0 2rem;
}
@media (max-width: 56.25em) {
  .section-trust-us .section__content-box {
    margin: 0 2rem 5rem 2rem;
  }
}
.section-trust-us .section__img-box {
  margin: 1rem 1rem 1rem 5rem;
  padding: 2rem;
  background-size: 120%;
  background-position: 75% 50%;
  border: 1.5px solid #E5B061;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
}
@media (max-width: 56.25em) {
  .section-trust-us .section__img-box {
    margin: 1rem 1rem 1rem 2rem;
  }
}
.section-trust-us .section__img-box img {
  width: 100%;
}

.section-actions {
  background-color: rgba(39, 39, 39, 0.15);
  padding: 10rem 5rem;
}
@media (max-width: 56.25em) {
  .section-actions {
    padding: 10rem 3rem;
  }
}
@media (max-width: 37.5em) {
  .section-actions {
    padding: 10rem 1rem;
  }
}

.section-investments {
  background-color: #06092d;
  padding: 10rem 5rem;
}
@media (max-width: 56.25em) {
  .section-investments {
    padding: 10rem 3rem;
  }
}
@media (max-width: 37.5em) {
  .section-investments {
    padding: 10rem 1rem;
  }
}

.section-features {
  background-color: #06092d;
  padding: 10rem 5rem;
}
@media (max-width: 56.25em) {
  .section-features {
    padding: 10rem 3rem;
  }
}
@media (max-width: 37.5em) {
  .section-features {
    padding: 10rem 3rem;
  }
}

.section-testimonials {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background-color: #06092d;
  background-image: url(../img/wavy.jpg);
  background-size: cover;
  padding: 10rem 5rem;
}
@media (max-width: 56.25em) {
  .section-testimonials {
    padding: 10rem 2rem;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 37.5em) {
  .section-testimonials {
    padding: 10rem 1rem;
  }
}
.section-testimonials .section__content-box {
  margin: 0 0 0 2rem;
}
@media (max-width: 56.25em) {
  .section-testimonials .section__content-box {
    margin: 2rem auto;
  }
}

.section-market-overview {
  display: flex;
  justify-content: space-around;
  background-image: linear-gradient(to right bottom, rgba(1, 2, 10, 0.8), rgba(2, 0, 32, 0.9));
  padding: 10rem 5rem;
}
@media (max-width: 56.25em) {
  .section-market-overview {
    padding: 10rem 3rem;
    flex-direction: column;
    align-items: center;
  }
  .section-market-overview > *:first-child {
    max-width: 100%;
  }
}
@media (max-width: 37.5em) {
  .section-market-overview {
    padding: 10rem 1rem;
  }
}
.section-market-overview .section__content-box {
  margin: 0 1rem;
}
@media (max-width: 56.25em) {
  .section-market-overview .section__content-box {
    margin: 5rem 0;
  }
}

.section-map {
  height: 60vh;
}

.section-misc {
  padding: 10rem 5rem;
}
@media (max-width: 56.25em) {
  .section-misc {
    padding: 10rem 3rem;
  }
}
@media (max-width: 37.5em) {
  .section-misc {
    padding: 10rem 3rem;
  }
}

.section-form {
  background-color: #faf9f9;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/*# sourceMappingURL=style.css.map */
