/* @import url("./bootstrap.min.css"); */
@import url("./all.min.css");
@import url("./global.css");

header {
  padding: 20px 0;
  background-color: var(--menu-color);
  z-index: 2 !important;
}
.header-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header a {
  color: var(--primary-color);
  text-decoration: none;
}

.main-nav {
  background-color: var(--menu-color);
}

.hamburger {
  display: none;
}

.hamburger button {
  background: transparent;
  border: none;
  font-size: 15px;
  color: var(--primary-color);
}

.logo {
  font-size: 18px;
  color: #feffff;
}

.logo a {
  color: var(--primary-color);
}

header li:hover {
  color: var(--secondary-color);
}

.navbar {
  letter-spacing: 1px;
}

.profile-menu {
  width: 100px;
  padding: 10px 0;
  box-shadow: 2px 2px 5px #ccc;
  position: absolute;
  top: 60px;
  right: 100px;
  background: var(--secondary-color);
  z-index: 2;
}

.profile-menu ul {
  padding: 0;
}

.profile-menu li {
  padding: 10px 0 10px 10px;
  list-style: none;
}

.profile-menu li:hover {
  background-color: var(--primary-color);
}

.header-wrapper .hidden {
  display: none;
}

header sup {
  color: var(--menu-color);
}

.hide-in-lg {
  display: none;
}

/* *****************hero******************* */

#hero {
  /*background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/bg-3.png);*/
  /*background-image: url(../img/bg-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;*/
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 50px 60px;
}

.hero-wrapper img{
  width: 100%;
}

.hero {
  margin: auto;
  position: relative;
  z-index: 0;
}

.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 50px;
  text-transform: uppercase;
  /*border-right: 4px #2b7a78 solid;*/
  z-index: 1;
  /* line-height: 50px; */
}
.hero h3 {
  font-size: 18px;
}
.hero .icon {
  position: absolute;
  font-size: 200px;
  right: -20px;
  z-index: -1;
  animation-name: dance;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes dance {
  0% {
    top: -70px;
  }
  50% {
    top: -50px;
  }
  100% {
    top: -70px;
  }
}

/* *******************APIS***************** */
.apis {
  width: 100%;
  justify-self: center;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  transform: translateY(-150px);
}

.apis .btc {
  position: relative;
  z-index: 0;
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

.apis .btc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.api-title {
  font-size: 30px;
}

/* ******************Action***************** */
#action {
  background-color: #f9f9f9;
}
.action {
  width: 100%;
  display: grid;
  padding: 50px;
  grid-template-columns: 4fr 1fr;
}

.action h3 {
  font-weight: 400;
}

.action h1 {
  font-size: 35px;
}

.action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ******************services***************** */
.services {
  width: 100%;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--menu-color);
}

.serve-1,
.serve-2 {
  padding: 10px 0;
}

.serve-1 h1 {
  font-size: 45px;
  padding: 10px 0;
  color: var(--primary-color);
}

.serve-1 p {
  padding: 10px 0;
  font-size: 16px;
}

.serve-1 .desc {
  line-height: 30px;
}

.serve-1 i {
  padding: 5px;
  color: var(--primary-color);
  border: 1px var(--primary-color) solid;
  border-radius: 50%;
  margin-right: 10px;
}

.serve-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* *********************live rates********************* */
#live-rate {
  width: 100%;
  height: 80vh;
  position: relative;
}

#live-rate::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#live-rate .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  z-index: 1;
}

/* *********************testimonial******************** */
#testimonial {
  width: 100%;
  padding: 100px 0;
  background-color: #f9f9f9;
}

#testimonial h4 {
  padding-bottom: 20px;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
}

#testimonial p {
  margin-bottom: 40px;
  text-align: center;
}

.testimonial-wrapper {
  padding: 0 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonial {
  width: 400px;
  padding: 10px 10px 10px 20px;
  border: 1px #ccc solid;
  border-radius: 10px;
  background-color: transparent;
  box-shadow: 1px 3px 3px 0px rgba(131, 131, 131, 0.36);
  display: grid;
  grid-template-rows: 1fr 3fr 1fr;
  margin: 7px 10px;
}

.testimonial .t-name {
  padding: 10px 0;
  border-bottom: 1px #ccc solid;
}

.t-name i {
  padding: 5px;
  border: 1px var(--primary-color) solid;
  border-radius: 50%;
  color: var(--primary-color);
}

.testimonial .t-body {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.testimonial .t-date {
  color: #ccc;
  font-size: 11px;
}
/* *********************Investment plans******************** */
.invest-plans{
  transform: translateY(-150px);
}
.herobox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.box {
    background-color: #1B93CF;
    padding: 50px 20px;
    margin: 10px;
}

.box img {
    width: 80px;
    height: 80px;
    padding-right: 10px;
    float: left;
    vertical-align: middle;
}

.box h4 {
    text-decoration: none;
    padding: 0px;
    font-size: 20px;
    margin-top: -10px;
}
.box p {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
    margin-left: 5px;
}
/* *********************plans break down******************** */
.all-plans{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 50px 0;
}

.plan-brkdn{
  margin: 10px;
  padding: 30px;
  background-color: #FDB25D;
  text-align: center;
}

.plan-brkdn h5{
  font-size: 20px;
}

.plan-brkdn h4{
  font-size: 28px;
  padding: 20px 0;
  color: var(--primary-color);
}

/* *********************footer******************** */
footer {
  width: 100%;
  background-color: var(--secondary-color);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#footer-widget {
  padding: 100px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
}

.footer-widget {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--menu-color);
}

.footer-widget h2 {
  padding: 0 0 40px 0;
  font-size: 20px;
  font-weight: 500;
}

.footer-widget .about p {
  line-height: 25px;
}

.footer-links {
  padding-left: 30px;
}

.footer-links li {
  list-style: none;
  font-size: 16px;
  padding: 0 0 15px 10px;
}

.footer-links a {
  color: #fff;
}

.footer-links i {
  padding: 7px;
  border: 1px #fff solid;
  border-radius: 50%;
}

.copyright {
  font-size: 12px;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}

.langue {
  cursor: pointer;
}

/* *************************language modal********************* */

#langue {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  /* padding-top: 100px; */
  z-index: 2 !important;
}

#langue::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--tertiary-color);
  z-index: 3 !important;
}

.langue-wrapper {
  z-index: 4 !important;
  position: relative;
  width: 250px;
}

.close-langue {
  position: absolute;
  top: -20px;
  right: 0px;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  border: none;
  color: var(--menu-color);
}

.close-langue:hover {
  transform: rotate(90deg);
}

.langue-wrapper .h3 {
  font-size: 15px;
  color: var(--menu-color);
  margin-bottom: 20px;
}

@media only screen and (max-width: 780px) {
  body {
    font-size: 12px;
  }

  .main-wrapper {
    width: 100%;
    padding: 20px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    text-align: center;
  }

  .hero-wrapper-img{
    padding-top: 50px;
  }

  .testimonial {
    width: 300px;
  }

  .apis {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    transform: translateY(-150px);
  }

  .action {
    padding: 50px 20px;
    grid-template-columns: 1fr;
  }

  .action-btn {
    padding: 30px 0;
    justify-content: left;
  }
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 12px;
  }

  .profile-menu {
    right: 10px;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 100px;
    width: 100%;
    padding: 10px;
    margin: auto;
    text-align: center;
    z-index: 2;
  }

  .hide-in-lg {
    display: block;
  }

  .user {
    display: none;
  }

  .hero h1 {
    font-weight: 500;
    font-size: 40px;
  }
  .hero h3 {
    font-size: 16px;
  }

  .apis {
    grid-template-columns: 1fr;
  }

  .action {
    padding: 50px 20px;
    grid-template-columns: 1fr;
  }

  .action-btn {
    padding: 30px 0;
    justify-content: left;
  }

  .services {
    padding: 10px 0;
    grid-template-columns: 1fr;
  }

  .serve-2 {
    display: block;
  }
  .serve-2 img {
    width: 230px;
  }

  .footer-widget {
    grid-template-columns: 1fr;
  }

  .testimonial-wrapper {
    padding: 0 5px;
    grid-template-columns: 1fr;
  }

  .testimonial {
    width: 300px;
  }

  .footer-widget h2 {
    padding: 30px 0 10px 0;
    font-size: 17px;
    text-align: center;
  }

  .footer-links {
    padding-left: 0;
  }

  .footer-links li {
    font-size: 12px;
    text-align: center;
    padding: 0 0 15px 0;
  }

  .footer-widget .about p {
    line-height: 25px;
    text-align: center;
  }

  .herobox{
    grid-template-columns: 1fr;
  }

  .all-plans{
    display: grid;
    grid-template-columns: 1fr;
  }
}
