@import url("https://fonts.googleapis.com/css2?family=BenchNine&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BenchNine&family=Changa&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abyssinica+SIL&family=Roboto:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.target {
  position: absolute;
  top: -30px;
}

.logo_span{
  color: white;
  font-size: 2.5em;
  font-weight: 600;
}

html {
  font-size: 50%;
  scroll-behavior: smooth;
}

body {
  /* --orange: #f59b2c; */
  --orange: #193266;
  --lightBlue: #2b60bb;
  --grey: #f0f8ff;
  --white: #fff;
  --darkgrey: #3f4141;
  --lightBlack: #282929;
  background: #f6f5f5;
  letter-spacing: 1px;
  font-family: "BenchNine", sans-serif;
  font-family: "Changa", sans-serif;
  font-family: "Abyssinica SIL", serif;
  /* background: #222b34fa;
  color: var(--white); */
}

.head-cover {
  height: auto;
  background: url("../images/octa/stats.gif");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  /* background-position: center; */
}

.purple {
  width: 100%;
  height: 100%;
  background: #192e4a8d;
  position: absolute;
  left: 0;
  z-index: -1;
}

.app {
  width: 100%;
  position: relative;
}

.log-btn,
.signup-btn {
  cursor: pointer;
}

/* -------------------------------------------------------- FORM ------------------------------------------- */
.app .user-log {
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  /* background: #192e4a; */
  background: #0e121b;
  z-index: 250;
}

.app .user-log .cancel {
  width: 40px;
  height: 40px;
  font-size: 1.7em;
  background: var(--darkgrey);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 5px var(--white);
  position: absolute;
  right: -20px;
  top: -25px;
  cursor: pointer;
  transition: 0.5s;
}

.app .user-log .cancel:hover {
  background: #30313168;
  box-shadow: 0 0 5px var(--orange);
}

.app .user-log > div {
  width: 500px;
  height: auto;
  /* border: 2px solid white; */
  border-radius: 20px;
}

.app .user-log > div form {
  width: 100%;
  padding: 40px;
  background: var(--white);
  position: relative;
  border-radius: 20px;
}

.app .user-log > div form h2 {
  font-size: 2.5em;
}

.app .user-log > div form p {
  font-size: 1.7em;
}

.app .user-log > div form p.err {
  font-size: 1.7em;
  color: #ff1d1d;
  font-weight: 600;
}

.app .user-log > div form input {
  height: 30px;
  border: none;
  outline: none;
  background: var(--grey);
  padding-left: 10px;
  transition: 0.5s;
}

.app .user-log > div form input:focus {
  background: var(--darkgrey);
  color: var(--white);
  border-bottom: 2px solid var(--orange);
}

.app .user-log > div form .inpts {
  border: 2px solid white;
  width: 100%;
  height: 100%;
  /* padding: 20px 0; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app .user-log > div form .inpts > div {
  margin: 10px 0;
}
.app .user-log > div form .inpts .fullname {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.app .user-log > div form .inpts .fullname input {
  width: 45%;
}

.app .user-log > div form .inpts .full,
.app .user-log > div form .inpts .full input {
  width: 100%;
}

.app .user-log > div form .inpts .full .packg {
  width: 80%;
  height: 25px;
}

.app .user-log > div form .inpts input[type="submit"] {
  width: 120px;
  padding: 0;
  font-size: 1.5em;
  margin-top: 20px;
  align-self: flex-start;
  cursor: pointer;
  border: none;
  background: linear-gradient(90deg, #35389b, #1d22b3);
  color: #f0f8ff;
  transition: 0.5s;
}

.app .user-log > div form .inpts input[type="submit"]:hover {
  background: linear-gradient(90deg, #484ba3, #272baa);
  transform: scale(1.03);
}

/* FORM ACTIVE */
.signup {
  display: none;
}

.login {
  display: none;
}

/* CLASS TOGGLE */
/* on signup */
.app .user-log.sign {
  display: flex;
  position: fixed;
  top: 0;
}

.app .user-log.sign .signup {
  display: block;
}

/* on login */
.app .user-log.log {
  display: flex;
  position: fixed;
  top: 0;
}

.app .user-log.log .login {
  display: block;
}



.app .user-log .form-logo {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* background: red; */
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 3px black;
  z-index: 1;
}

.app .user-log .form-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
}

/* -------------------------------------------------------- HEADER ------------------------------------------- */
/* .app .header{
    width: 100%;
    color: var(--white);
}

.app .header .head-contact{
    width: 100%;
    height: 70px;
    background: #192e4a;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app .header .head-contact .mail-phone{
    height: 100%;
    display: flex;
    align-items: center;
} */
/* 
.app .header .head-contact .mail-phone h2{
    padding: 0 20px;
}


.app .header .head-contact .mail-phone h2 span{
    padding: 0 6px;
    font-size: 1em;
}

.app .header .head-contact .mail-phone h2 .icon{
    padding: 8px 12px;
    border: 2px solid var(--orange);
    border-radius: 50%;
}
.app .header .head-contact .icon-media{
    height: 100%;
}

.app .header .head-contact .icon-media ul{
    height: 100%;
    display: flex;
    align-items: center;
    list-style-type: none;
}

.app .header .head-contact .icon-media ul li a{
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 10px;
    color: var(--white);
    font-size: 1.5em;
    border: 2px solid var(--orange);
    border-radius: 50%;
} */

.app .header nav {
  width: 100%;
  height: 100px;
  background: #192e4a00;
  position: fixed;
  top: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  border-bottom: 2px ridge #192e4a41;
}

.app .header nav .logo {
  width: 200px;
  height: 90%;
  position: sticky;
  display: flex;
  align-items: center;
  top: 0;
  /* height: 170px; */
  /* border: 2px solid #af4605; */
}

.app .header nav .logo img {
  width: 40%;
  height: 48%;
  object-fit: cover;
}

.app .header nav .button,
.app .header nav .button:focus {
  width: 40px;
  height: 35px;
  padding: 5px 0;
  backdrop-filter: blur(5px);
  position: absolute;
  right: 30px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
  transition: 0.5s;
  border-right: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.app .header nav .button::before,
.app .header nav .button:focus:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transition: 0.5s;
}

.app .header nav .button::after,
.app .header nav .button:focus:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transition: 0.5s;
}

.app .header nav .button:hover::before,
.app .header nav .button.active:hover::before {
  background: var(--orange);
  width: 0px;
}

.app .header nav .button:hover::after,
.app .header nav .button.active:hover::after {
  background: var(--orange);
  width: 0px;
}

.app .header nav .button:hover,
.app .header nav .button.active:hover {
  border-left: 2px solid rgba(0, 0, 0, 0);
  border-right: 2px solid rgba(0, 0, 0, 0);
}

.app .header nav .button .icon {
  margin: auto;
  width: 80%;
  height: 5px;
  border-radius: 20px;
  background: white;
  transition: 0.5s;
}

/* .app .header nav .button:hover .icon,
.app .header nav .button.active:hover .icon{
    transform: translateX(calc(-3px * var(--ic)));
    background: var(--orange);
} */

/* --------------------- ON ACTIVE CLASS -------------------------- */
.app .header nav .button .icon.active {
  background: #323131;
}
.app .header nav .button.active {
  border-right: 2px solid #323131;
  border-left: 2px solid #323131;
}

.app .header nav .button.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #323131;
  transition: 0.5s;
}

.app .header nav .button.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #323131;
  transition: 0.5s;
}

.app .header nav .page-link {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.app .header nav .page-link ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-right: 80px;
}

.app .header nav .page-link ul li a {
  text-decoration: none;
  padding: 17px 15px;
  margin: 0 10px;
  color: var(--white);
  font-size: 2em;
  font-weight: 700;
  transition: 0.5s;
}

.app .header nav .page-link ul li a:hover {
  color: var(--orange);
  transform: scale(1.1);
}

.app .header nav .page-link .log a {
  text-decoration: none;
  padding: 10px 20px;
  margin: 0 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 2em;
  border-radius: 6px;
  transition: 0.5s;
  background: var(--orange);
  border: 1px solid var(--grey);
}

.app .header nav .page-link .log a:hover {
  color: var(--orange);
  background: var(--white);
  transform: scale(1.05);
  border: 1px solid var(--orange);
}

.app .header .nav-2 {
  width: 100%;
  height: auto;
  background: #7c7c7cf5;
  background: #d5d5d5f5;
  background: #03081cf5;
  position: fixed;
  padding: 50px 0;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-bottom: 2px ridge #192e4a41;
  left: 3000px;
  transition: 0.5s;
}

.app .header .nav-2 .page-link-2 {
  display: block;
  align-items: center;
  justify-content: center;
}

.app .header .nav-2 .page-link-2 ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  list-style-type: none;
  /* margin-right: 80px; */
}

.app .header .nav-2 .page-link-2 ul li {
  margin-bottom: 39px;
  transition: 0.5s;
}

.app .header .nav-2 .page-link-2 ul li a {
  text-decoration: none;
  padding: 15px 180px;
  /* margin: 0px 10px; */
  background: #192e4a;
  background: #565252;
  background: var(--grey);
  color: var(--white);
  color: var(--orange);
  font-size: 2em;
  font-weight: 700;
  transition: 0.5s;
}

.app .header .nav-2 .page-link-2 ul li a:hover {
  background: #abb9c5;
  color: var(--lightBlack);
  border: 2px solid #192e4a;
  border: 2px solid var(--orange);
  transform: translate(-300px);
  transition: 0.5s;
}

/* --------------------- DEFAULT --------------------------- */
.app .header .nav-2 .page-link-2 ul li a:hover,
.app .header .nav-2 .page-link-2 ul li:hover {
  transform: translate(30px);
}

/* --------------------- ON SCREEN --------------------------- */
.app .header .nav-2.in .page-link-2 ul li a:hover,
.app .header .nav-2.in .page-link-2 ul li:hover {
  transform: translate(30px);
}

.app .header .nav-2 .page-link-2 .log {
  margin: auto;
  width: 80%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* border: 2px solid #192e4a; */
}

.app .header .nav-2 .page-link-2 .log a {
  text-decoration: none;
  padding: 15px 50px;
  margin: 2px 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 2em;
  border-radius: 3px;
  transition: 0.5s;
  background: var(--orange);
}

.app .header .nav-2 .page-link-2 .log a:hover {
  color: var(--orange);
  background: var(--white);
  transform: scale(1.05);
}

/* DEFAULT PROPERTIES  OFF SCREEN */
.app .header .nav-2 .page-link-2 ul li,
.app .header .nav-2 .page-link-2 .log {
  opacity: calc(0.1 * var(--li));
  transform: translateX(calc(100px * var(--li)));
}

/*  PROPERTIES  ON SCREEN */
.app .header .nav-2.in {
  left: 0px;
}

.app .header .nav-2.in .page-link-2 ul li,
.app .header .nav-2.in .page-link-2 .log {
  opacity: calc(1 * var(--li));
  transform: translateX(calc(0px * var(--li)));
}

/* -------------------------------------------------------- MIDWAY ------------------------------------------- */
.app .mid-way {
  width: 100%;
  /* height: 700px; */
  background: #0e121b9c;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 100px 0;
}

.app .mid-way .display {
  width: 100%;
  height: 100%;
  padding: 50px;
  margin-top: 130px;
}

.app .mid-way .display h1 {
  width: 50%;
  font-size: 6em;
  color: var(--white);
  font-weight: 700;
  line-height: 55px;
}

.app .mid-way .display h1:nth-child(2) {
  color: var(--lightBlue);
}

.app .mid-way .display p {
  font-size: 2em;
  margin: 7px 0;
  color: var(--grey);
}

.app .mid-way .display .start-btn {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* border: 2px solid #af4605; */
}

.app .mid-way .display .start-btn button {
  background: transparent;
  border: none;
  outline: none;
  transition: 0.5s;
}

.app .mid-way .display .start-btn button a {
  background: var(--orange);
  text-decoration: none;
  color: var(--white);
  font-size: 1.7em;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 6px;
  transition: 0.5s;
  border: none;
  border: 1px solid var(--grey);
}

.app .mid-way .display .start-btn button:hover {
  transform: scale(1.1);
}

.app .mid-way .display .start-btn button a:hover {
  color: var(--orange);
  background: var(--white);
  transform: scale(1.05);
  border: 1px solid var(--orange);
}

.app .mid-way .display .start-btn .vid:hover {
  color: var(--orange);
  transform: scale(1.05);
}

.app .head-cover.faq{
  background-image: none;
  background-color: var(--darknavyblue);
}

.app .mid-way .highlight{
  margin: 0 10px;
  margin-top: 95px;
  color: var(--grey);
}

.app .mid-way .highlight h1 {
  font-size: 6em;
}

.app .mid-way .highlight p {
  font-size: 3.5em;
  margin: 10px 0;
}

/* -------------------------------------------------------- SHOWCASE ------------------------------------------- */
.app .showcas-tabs {
  width: 100%;
  padding: 100px 70px;
}

.app .showcas-tabs .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.app .showcas-tabs .row .tab {
  width: 350px;
  height: 330px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 1px 8px #3031316c;
  border-bottom: 3px solid var(--orange);
}

.app .showcas-tabs .row .tab .icon {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app .showcas-tabs .row .tab .icon i {
  font-size: 4em !important;
  padding: 25px 35px;
  color: var(--orange);
  border-radius: 50%;
}

.app .showcas-tabs .row .tab .number {
  text-align: center;
  font-size: 1.5em;
  color: var(--darkgrey);
  margin-bottom: 15px;
}

.app .showcas-tabs .row .tab .title h1 {
  text-align: center;
  font-size: 2.3em;
  font-weight: lighter;
}

/* ----------------------------------- ALT DISPLAY -------------------------------------- */
.app .dis-tabs {
  width: 100%;
  padding: 100px 70px;
}

.app .dis-tabs .row {
  width: 100%;
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-around;
  background: #0b111e;
  border-radius: 15px;
}

.app .dis-tabs .row .tab {
  /* width: 550px; */
  height: 350px;
  display: flex;
  padding: 20px;
  margin: 30px 35px;
  /* padding: 10px 13px; */
  /* box-shadow: 0 1px 8px #3031316c; */
  /* border-bottom: 3px solid var(--orange); */
  text-align: center;
}

.app .dis-tabs .row .tab:nth-child(2) {
  width: 55%;
  width: 700px;
  height: 350px;
  display: flex;
  padding: 20px;
  margin: 20px 0;
  /* box-shadow: 0 1px 8px #3031316c; */
  /* border-bottom: 3px solid var(--orange); */
}

.app .dis-tabs .row .tab .image {
  width: 100%;
  height: 100%;
}

.app .dis-tabs .row .tab .image img {
  width: 100%;
  width: 700px;
  height: 100%;
}

.app .dis-tabs .row .tab h1 {
  font-size: 4em;
  color: var(--white);
}

.app .dis-tabs .row .tab p {
  font-size: 2em;
  margin: 15px 0;
  margin-bottom: 34px;
  color: var(--grey);
}

.app .dis-tabs .row .tab a {
  font-size: 2em;
  background: var(--lightBlue);
  text-decoration: none;
  color: var(--white);
  padding: 13px 17px;
  border-radius: 20px;
  /* margin-top: 35px; */
}

/* -------------------------------------------------------- INVESTMENT ------------------------------------------- */
.app .investment {
  width: 100%;
  padding: 100px;
  background: #3031310a;
  position: relative;
}

.app .investment .intro {
  width: 85%;
  margin: 100px auto;
  /* border: 2px solid red; */
}

.app .investment .intro h1 {
  font-size: 4em;
  text-align: center;
  font-weight: lighter;
  color: #303131;
  margin: 20px 0;
}

.app .investment .intro p {
  font-size: 1.5em;
  text-align: center;
  padding: 5px;
  /* font-weight: bold; */
  color: #303131d1;
}

.app .investment .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.app .investment .row .pack{
  margin-bottom: 12px;
  font-size: 2.5em;
}

.app .investment .row .tab {
  width: 350px;
  height: 480px;
  margin: 60px 0;
  padding: 50px;
  box-shadow: 0 1px 8px #3031316c;
  border: 2px solid var(--orange);
}

/* .app .investment .row .tab .return{
    margin-bottom: 30px 0;
} */

.app .investment .row .tab .return span {
  font-size: 1.5em;
  color: #303131f3;
}

.app .investment .row .tab .return .percent {
  font-size: 3.5em;
  font-weight: bolder;
  margin-right: 8px;
  color: var(--orange);
}

.app .investment .row .tab .day {
  margin: 20px 0;
  font-size: 1.6em;
  color: #303131f2;
}

.app .investment .row .tab .amounts {
  list-style-type: none;
  margin-bottom: 70px;
}

.app .investment .row .tab .amounts li {
  margin: 20px 0;
  font-size: 1.78em;
  color: #303131f2;
}

.app .investment .row .tab a {
  text-decoration: none;
  padding: 17px 30px;
  color: #f0f8ff;
  font-weight: 700;
  font-size: 2em;
  border-radius: 6px;
  transition: 0.5s;
  background: var(--orange);
}

.app .investment .row .tab a:hover {
  color: #df8312;
  background: #f0f8ff;
  transform: scale(1.05);
  border: 2px solid var(--orange);
}

.app .partner {
  width: 100%;
  /* padding: 100px; */
}

.app .partner .intro {
  width: 85%;
  margin: 30px auto;
  /* border: 2px solid red; */
}

.app .partner .intro h1 {
  font-size: 4em;
  text-align: center;
  font-weight: lighter;
  color: #303131;
  margin: 20px 0;
}

.app .partner .intro p {
  font-size: 1.5em;
  text-align: center;
  padding: 5px;
  /* font-weight: bold; */
  color: #303131d1;
}

.app .partner .row {
  width: 100%;
  display: flex;
  /* padding: 0 50px; */
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-around;
}

.app .partner .row .tab {
  width: 180px;
  height: auto;
  margin: 30px 0;
  display: flex;
  align-items: center;
  /* flex-direction: column; */
  justify-content: space-evenly;
  transition: 0.5s;
}

.app .partner .row .tab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* -------------------------------------------------------- GUARANTEE ------------------------------------------- */
.app .guarantee {
  width: 100%;
  padding: 100px;
  margin-bottom: 50px;
}

.app .guarantee .intro {
  width: 95%;
  margin: 20px auto;
  /* border: 2px solid red; */
}

.app .guarantee .intro h1 {
  font-size: 2.2em;
  text-align: center;
  font-weight: lighter;
  color: var(--orange);
  margin: 20px auto;
  background: var(--lightgray);
  width: fit-content;
  border-radius: 20px;
  padding: .3em .8em;
  font-weight: 700;
}

.app .guarantee .intro p {
  font-size: 1.5em;
  text-align: center;
  padding: 5px;
  /* font-weight: bold; */
  color: #303131d1;
}

.app .guarantee .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.app .guarantee .row .tab {
  width: 680px;
  height: auto;
  padding: 45px 20px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  cursor: default;
  transition: 0.5s;
  flex-direction: column;
  text-align: center;
}

/* .app .guarantee .row .tab:hover{
    filter: invert();
    background: #0000a1;
    color: #d1cfcf;
} */

.app .guarantee .row .tab .icon {
  width: 110px;
  height: 100px;
  margin: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: #192e4a 2px solid;
  background: var(--lightergray);
}

.app .guarantee .row .tab .icon i {
  font-size: 4em !important;
  color: var(--orange);
}
.app .guarantee .row .tab .text {
  width: 70%;
}

.app .guarantee .row .tab .text h3 {
  width: inherit;
  margin: 7px 0;
  font-size: 3em;
}

.app .guarantee .row .tab .text p {
  font-size: 2em;
  line-height: 35px;
}

/* -------------------------------------------------------- CEO ------------------------------------------- */
.app .ceo {
  width: 100%;
  /* height: 300px; */
  /* height: fit-content; */
  padding: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.app .ceo img {
  width: 100%;
  height: inherit;
  object-fit: contain;
  position: absolute;
  filter: brightness(0.6);
  left: 0;
  z-index: -1;
}

.app .ceo .text {
  width: 700px;
  height: auto;
  padding: 50px;
  background: #f0f8ff;
  justify-self: flex-start;
}

.app .ceo .text h2 {
  font-size: 2em;
  line-height: 45px;
  margin-bottom: 15px;
}

.app .ceo .text h3 {
  font-size: 1.7em;
}

/* -------------------------------------------------------- REFERRAL ------------------------------------------- */
.app .referral {
  width: 100%;
  padding: 100px;
  background: #3031310a;
}

.app .referral .intro {
  width: 85%;
  margin: 100px auto;
  /* border: 2px solid red; */
}

.app .referral .intro h1 {
  font-size: 4em;
  text-align: center;
  font-weight: lighter;
  color: #303131;
  margin: 20px 0;
}

.app .referral .intro p {
  font-size: 1.5em;
  text-align: center;
  padding: 5px;
  /* font-weight: bold; */
  color: #303131d1;
}

.app .referral .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}

.app .referral .row .tab {
  width: 400px;
  height: 380px;
  margin: 20px 0;
  padding: 50px;
  text-align: center;
  /* border: 2px solid var(--orange); */
}

.app .referral .row .tab .icon {
  width: 130px;
  height: 130px;
  background: #ffffffef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  border-radius: 50%;
  box-shadow: 0 0px 3px #d8ddddd2, 0 0px 7px #d8ddddd2, 0 0px 9px #d8ddddd2,
    0 0px 13px 2px #d8ddddd2;
  /* border: 2px solid var(--orange); */
  position: relative;
}

.app .referral .row .tab .icon .num {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #ecf0f3;
  font-size: 1.5em;
  position: absolute;
  top: -10px;
  left: -5px;
}

.app .referral .row .tab .icon .num-2 {
  background: #2cf570;
}

.app .referral .row .tab .icon .num-3 {
  background: #2caff5;
}

.app .referral .row .tab .text h2 {
  font-size: 1.8em;
}

/* -------------------------------------------------------- DEPOSIT ------------------------------------------- */
.app .deposit {
  width: 100%;
  padding: 100px;
}

.app .deposit .intro {
  width: 85%;
  margin: 100px auto;
  /* border: 2px solid red; */
}

.app .deposit .intro h1 {
  font-size: 4em;
  text-align: center;
  font-weight: lighter;
  color: #303131;
  margin: 20px 0;
}

.app .deposit .intro p {
  font-size: 1.5em;
  text-align: center;
  padding: 5px;
  /* font-weight: bold; */
  color: #303131d1;
}

/* -------------------------------------------------------- SIGN ------------------------------------------- */
.app .sign {
  width: 100%;
  /* height: 300px; */
  /* height: fit-content; */
  padding: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app .sign img {
  width: 100%;
  height: inherit;
  object-fit: contain;
  position: absolute;
  filter: brightness(0.6);
  left: 0;
  z-index: -1;
}

.app .sign .text {
  width: 70%;
  height: auto;
  padding: 50px;
  text-align: center;
}

.app .sign .text h1 {
  font-size: 3.2em;
  line-height: 45px;
  color: #f0f8ff;
  margin: 50px 0;
}

.app .sign .text a {
  text-decoration: none;
  padding: 17px 25px;
  color: #f0f8ff;
  font-weight: 700;
  font-size: 1.7em;
  transition: 0.5s;
  background: var(--orange);
}

.app .sign .text a:hover {
  color: #df8312;
  background: #f0f8ff;
  transform: scale(1.05);
}

/* -------------------------------------------------------- REVIEWS ------------------------------------------- */
.app .reviews {
  width: 100%;
  padding: 100px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.app .reviews .intro {
  width: 40%;
  margin: 100px 0;
  padding-right: 50px;
  /* border: 2px solid red; */
}

.app .reviews .intro h1 {
  font-size: 4em;
  font-weight: lighter;
  color: #303131;
  margin: 20px 0;
}

.app .reviews .intro p {
  font-size: 1.8em;
  padding: 5px;
  line-height: 35px;
  margin-bottom: 40px;
  color: #303131d1;
}

.app .reviews .intro button {
  background: transparent;
  border: none;
  outline: none;
}

.app .reviews .intro button a {
  background: var(--orange);
  text-decoration: none;
  color: var(--white);
  font-size: 1.7em;
  font-weight: 700;
  padding: 15px 45px;
  border-radius: 6px;
  transition: 0.5s;
  border: none;
}

.app .reviews .intro button:hover {
  transform: scale(1.1);
}

.app .reviews .intro button a:hover {
  color: var(--orange);
  background: var(--white);
  transform: scale(1.05);
  border: 2px solid var(--orange);
}

.app .reviews .review-box {
  width: 60%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  display: none;
}

.app .reviews .review-box .comment {
  width: 250px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column-reverse;
  margin: 60px 0;
  cursor: grab;
  transition: 0.5s;

  /* animating on */
  transform: skewX(10deg) scale(0.7);
  opacity: 0.9;
}

.app .reviews .review-box .comment .text {
  padding: 50px 25px;
  margin-bottom: 20px;
  font-size: 2.2em;
  line-height: 35px;
  /* border: 2px solid var(--orange); */
  box-shadow: 0 1px 8px #3031316c;
}

.app .reviews .review-box .comment.active .text {
  border: 2px solid var(--orange);
}

.app .reviews .review-box .comment .text .rating {
  margin-bottom: 5px;
  display: none;
}

.app .reviews .review-box .comment .text .rating span {
  margin-left: 7px;
}

.app .reviews .review-box .comment .profile {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1.7em;
  position: relative;
}

.app .reviews .review-box .comment .profile .pic {
  width: 100%;
  height: auto;
  margin-right: 40px;
  border-radius: 50%;
  margin: auto;
  border: 2px solid var(--orange);
  /* overflow: hidden; */
}

.app .reviews .review-box .comment .profile .pic img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.app .reviews .review-box .comment .details {
  position: relative;
  display: none;
}

.app .reviews .review-box .comment .details > div {
  margin: 10px 0;
}

.app .reviews .review-box .comment .details .name h2 {
  font-size: 1em;
}

.app .reviews .review-box .comment .details .position span {
  font-size: 1em;
}

/* ---------------------------------------------------------- CLIENT ------------------------------------------------------- */
.app .clients {
  width: 100%;
  padding: 80px;
}

.app .clients .intro {
  width: 85%;
  margin: 100px auto;
  /* border: 2px solid red; */
}

.app .clients .intro h1 {
  font-size: 4em;
  text-align: center;
  font-weight: lighter;
  color: #303131;
  margin: 20px 0;
}

.app .clients .intro p {
  font-size: 1.5em;
  text-align: center;
  padding: 5px;
  /* font-weight: bold; */
  color: #303131d1;
}

.app .clients .row {
  width: 100%;
  height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  position: relative;
  overflow: hidden;
  /* border: 2px solid var(--darkgrey); */
}

.app .clients .row .tab {
  width: 750px;
  height: auto;
  padding: 20px;
  display: none;
  align-items: center;
  /* justify-content: space-around; */
  position: relative;
  color: var(--lightblack);
  transform: rotate(45deg);
}

.app .clients .row .tab.active {
  animation: client 7s;
  display: flex;
  opacity: 0;
}

@keyframes client {
  0%,
  100% {
    opacity: 0;
    display: none;
    /* transform: rotate(45deg); */
  }
  10% {
    opacity: 0;
    display: flex;
    transform: rotate(20deg);
  }
  80%,
  20% {
    opacity: 1;
    display: flex;
    transform: rotate(0deg);
  }
  90% {
    opacity: 0;
    display: flex;
    /* transform: rotate(45deg); */
    transform: translateX(-100px);
  }
}

.app .clients .row .tab::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 55%;
  border-radius: 20px;
  background: #30313161;
  z-index: -1;
}

.app .clients .row .tab .image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 10px;
  box-shadow: 0 0 3px var(--lightBlack);
}

.app .clients .row .tab .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.app .clients .row .tab .text .rate {
  margin-bottom: 10px;
}

.app .clients .row .tab .text .rate i {
  font-size: 2em;
  color: var(--orange);
}

.app .clients .row .tab .text .words p {
  font-size: 1.67em;
  margin-bottom: 7px;
}

.app .clients .row .tab .text .words h2 {
  font-size: 1.67em;
}

/* indicator */

.app .clients .row .dot {
  display: flex;
  position: absolute;
  bottom: 0;
}
.app .clients .row .dot > div {
  width: 20px;
  height: 20px;
  margin: 3px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  /* background: var(--orange); */
  transition: 0.5s;
}

.app .clients .row .dot > div.active {
  background: var(--orange);
}

/* ------------------------------------------------------------ FAQ -------------------------------------------------------------------- */
.app .frequent {
  width: 100%;
  padding: 100px;
}

.app .frequent .intro {
  width: 85%;
  margin: 100px auto;
  /* border: 2px solid red; */
}

.app .frequent .intro h1 {
  font-size: 4em;
  text-align: center;
  font-weight: lighter;
  color: #303131;
  margin: 20px 0;
}

.app .frequent .intro p {
  font-size: 1.5em;
  text-align: center;
  padding: 5px;
  /* font-weight: bold; */
  color: #303131d1;
}

.app .frequent .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.app .frequent .row .tab {
  width: 550px;
  height: auto;
  margin: 30px 0;
  /* box-shadow: 0 0 1px 1px #081a2a30; */
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly; */
  cursor: default;
  transition: 0.5s;
}

.app .frequent .row .tab h2 {
  font-size: 2em;
  height: 60px;
  display: flex;
  align-items: center;
  /* background: var(--grey); */
  color: var(--darkgrey);
  padding: 10px;
  padding-right: 30px;
  position: relative;
  /* cursor: pointer; */
}

/* .app .frequent .row .tab h2:hover {
  background: #9c9b9b;
  color: var(--grey);
  transition: 0.5s;
} */

.app .frequent .row .tab h2 i {
  position: absolute;
  top: 15px;
  right: 10px;
  color: #acd4d4;
  display: none;
}

.app .frequent .row .tab .ans {
  padding: 15px 10px;
  font-size: 2em;
  display: none;
}

.app .frequent .row .tab .ans.active {
  display: block;
}

/* -------------------------------------------------------- FOOTER ------------------------------------------- */
.app footer {
  width: 100%;
  /* padding: 100px 0 0; */
}

.app footer .info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.app footer .info > div {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app footer .info .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app footer .info .page-links {
  position: relative;
}

.app footer .info .page-links h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.app footer .info .page-links ul {
  list-style: none;
  text-decoration: none;
  color: var(--lightBlack);
}

.app footer .info .page-links ul li {
  font-size: 1.8em;
  margin-bottom: 20px;
  justify-self: flex-start;
}

.app footer .info .page-links ul li a {
  text-decoration: none;
  color: var(--lightBlack);
}

.app footer .info .page-links ul li a:hover {
  color: var(--orange);
  transform: scale(1.1);
}

.app footer .info .page-links ul li span:nth-child(1) {
  color: var(--orange);
  margin-right: 5px;
}

.app footer .copyright {
  width: 100%;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app footer .copyright p {
  font-size: 2.3em;
}

.app footer .copyright p a {
  text-decoration: none;
  color: var(--orange);
}

/* ----------------------------------------------- MEDIA QUERIES -------------------------------------- */
@media screen AND (max-width: 1615px) {
  html {
    font-size: 60%;
  }

  .app .mid-way,
  .app .showcas-tabs,
  .app .investment,
  .app .guarantee,
  .app .ceo,
  .app .referral,
  .app .deposit,
  .app .sign {
    padding: 50px;
  }
}

@media screen AND (max-width: 1610px) {
  .app .partner .row .tab {
    width: 130px;
  }

  .app .guarantee .row .tab .text {
    width: 90%;
    margin-top: 30px;
  }

  .app .reviews .review-box .comment.forw {
    left: unset;
    right: -300px;
  }

  .app .reviews .review-box .comment.prev {
    right: unset;
    left: -300px;
  }
}

@media screen AND (max-width: 1500px) {
  .app .dis-tabs .row .tab:nth-child(2),
  .app .dis-tabs .row .tab .image img {
    width: 540px;
  }
}

@media screen AND (max-width: 1400px) {
  .app .mid-way .display h1 {
    font-size: 5em;
  }

  .app .showcas-tabs .row .tab {
    width: 270px;
    height: 296px;
  }

  .app .showcas-tabs .row .tab .icon i {
    font-size: 3em;
  }

  .app .showcas-tabs .row .tab .number {
    font-size: 1.3em;
  }

  .app .showcas-tabs .row .tab .title h1 {
    font-size: 2em;
  }

  .app .investment .row .tab {
    width: 270px;
    height: auto;
    padding: 40px;
  }

  .app .investment .row .tab .return span {
    font-size: 1.3em;
  }

  .app .investment .row .tab .return .percent {
    font-size: 2.5em;
  }

  .app .investment .row .tab .day {
    font-size: 1.4em;
  }

  .app .investment .row .tab .amounts li {
    font-size: 1.58em;
  }

  .app .investment .row .tab a {
    font-size: 1.5em;
  }

  .app .guarantee .row .tab {
    width: 540px;
  }
}

@media screen AND (max-width: 1330px) {
  .app .header nav .logo {
    width: 180px;
  }

  .app .mid-way .display h1 {
    width: 76%;
  }

  .app .reviews .review-box .comment.forw {
    left: unset;
    right: -360px;
  }

  .app .reviews .review-box .comment.prev {
    right: unset;
    left: -360px;
  }
}

@media screen AND (max-width: 1200px) {
  /* .app .header nav {
    padding: 0 60px;
  } */

  .app .header nav .logo {
    width: 180px;
  }

  .app .header nav .page-link ul {
    margin-right: 30px;
  }

  .app .mid-way .display h1 {
    width: 79%;
    font-size: 5.5em;
  }

  .app .mid-way .display .start-btn button a {
    font-size: 1.4em;
  }

  .app .showcas-tabs .row .tab {
    width: 250px;
    height: 280px;
  }

  .app .dis-tabs .row .tab:nth-child(2),
  .app .dis-tabs .row .tab .image img {
    width: 400px;
  }

  .app .investment .row .tab {
    width: 251px;
  }

  .app .partner .row .tab {
    width: 100px;
  }

  .app .guarantee .row .tab {
    width: 510px;
  }

  .app .referral .row .tab {
    width: 340px;
    margin: 20px 0;
  }

  .app footer .info > div {
    width: 250px;
  }

  .app .reviews .intro button a {
    font-size: 1.4em;
    padding: 13px 40px;
  }

  .app .reviews .review-box .comment {
    width: 400px;
  }
}

@media screen AND (max-width: 1000px) {
  .app .header nav .button {
    display: flex;
  }

  .app .header nav .page-link {
    display: none;
  }

  .app .dis-tabs {
    width: 100%;
    padding: 90px 10px;
  }

  .app .dis-tabs .row {
    flex-wrap: wrap;
  }

  .app .dis-tabs .row .tab {
    height: 300px;
  }

  .app .dis-tabs .row .tab:nth-child(2),
  .app .dis-tabs .row .tab .image img {
    width: 100%;
  }

  .app .reviews {
    flex-direction: column;
  }
  .app .reviews .intro,
  .app .reviews .review-box {
    width: 100%;
  }
}

@media screen AND (max-width: 950px) {
  html {
    font-size: 60%;
  }

  .currency .tab .logo {
    width: 50px;
    height: 50px;
  }

  .app .header .head-contact {
    display: none;
  }

  /* .app .header nav {
    padding: 0px 90px;
  } */

  .app .mid-way .display h1 {
    width: 76%;
  }

  .app .partner .row .tab {
    width: 80px;
  }

  .app .investment .row .tab {
    height: auto;
  }

  .app .ceo .text {
    width: 600px;
  }

  .app .ceo .text h2 {
    font-size: 1.7em;
  }

  .app .ceo .text h3 {
    font-size: 1.5em;
  }

  .app .sign {
    padding: 100px 20px;
  }

  .app .sign .text {
    width: 90%;
  }

  .app .reviews .intro button a {
    font-size: 1em;
  }

  .app .clients .row .tab {
    font-size: 80%;
    width: 700px;
  }

  .app .reviews .review-box .comment .profile .pic {
    width: 160px;
  }

  .app footer .info .logo img {
    width: 80%;
    height: 80%;
  }
}

@media screen AND (max-width: 770px) {
  .noty {
    width: 250px;
  }

  .currency .tab .logo {
    width: 45px;
    height: 45px;
  }

  .app .ceo {
    padding: 80px;
    justify-content: center;
  }

  .app .ceo .text {
    width: 100%;
  }

  .app .sign {
    padding: 80px 20px;
  }

  .app .sign .text {
    width: 100%;
    padding: 30px;
  }

  .app .sign .text h1 {
    font-size: 2.5em;
  }

  .app .sign .text a {
    padding: 12px 20px;
    font-size: 1.5em;
  }

  .app .clients .row .tab .image {
    width: 130px;
    height: 130px;
  }

  .app .clients .row .dot > div {
    width: 15px;
    height: 15px;
  }

  .app .mid-way {
    padding: 15px 0;
  }

  .app .showcas-tabs,
  .app .investment,
  .app .guarantee,
  .app .ceo,
  .app .referral,
  .app .deposit,
  .app .sign {
    padding: 20px;
  }
}

@media screen AND (max-width: 690px) {
  .noty {
    width: 220px;
  }

  .app .mid-way .display .start-btn button a {
    font-size: 1em;
  }

  /* .app .partner .row .tab {
    width: 60px;
  } */

  .app .reviews .review-box .comment {
    width: 390px;
  }

  .app .reviews .review-box {
    flex-wrap: wrap;
  }

  .app .frequent {
    padding: 10px;
  }
}

@media screen AND (max-width: 650px) {
  html {
    font-size: 52%;
  }

  .noty {
    width: 180px;
    padding: 25px 20px;
  }

  .app .dis-tabs .row .tab {
    height: 230px;
  }

  .app .guarantee .row .tab {
    padding: 20px 10px;
    width: 400px;
    flex-direction: column;
  }

  .app .guarantee .row .tab .icon {
    width: 100px;
    height: 100px;
    margin: 0px;
  }

  .app .showcas-tabs .row .tab .icon {
    height: 155px;
  }

  .app .ceo {
    padding: 60px;
    justify-content: center;
  }

  .app .sign {
    padding: 50px 0px;
  }

  .app .reviews {
    padding: 30px;
  }

  .app .clients {
    padding: 60px;
  }

  .app .clients .row .tab .image {
    width: 110px;
    height: 110px;
  }
}

@media screen and (max-width: 550px) {
  .noty {
    width: 170px;
    padding: 20px 15px;
  }

  .currency .tab {
    font-size: 80%;
    padding: 7px;
    margin: 0 6px;
  }

  .currency .tab .logo {
    width: 35px;
    height: 35px;
  }

  .app .header nav {
    padding: 0px 10px;
  }

  .app .header nav .logo {
    width: 150px;
  }

  .app .mid-way .display h1 {
    width: 100%;
    font-size: 5em;
    line-height: 1.5em;
  }

  .app .mid-way .display .start-btn button a {
    padding: 13px 20px;
  }

  /* .app .partner .row .tab {
    width: 50px;
  } */

  .app .user-log > div {
    width: 90%;
  }

  .app .user-log .cancel {
    width: 30px;
    height: 30px;
    right: 5px;
  }

  .app .showcas-tabs .row .tab {
    width: 210px;
    height: 251px;
  }

  .app .showcas-tabs .row .tab .icon i {
    padding: 20px 25px;
  }

  .app .investment .row .tab {
    width: 240px;
    padding: 35px;
  }

  .app .referral .row .tab {
    height: 250px;
  }

  .app .referral .row .tab .icon {
    width: 100px;
    height: 100px;
  }

  .app .ceo {
    padding: 35px;
    justify-content: center;
  }

  .app .ceo .text {
    padding: 30px;
  }

  .app .sign {
    padding: 10px 0px;
  }

  .app .sign .text h1 {
    line-height: 25px;
  }

  .app .reviews .intro p {
    line-height: 25px;
  }

  .app .reviews .review-box .comment {
    width: 350px;
  }

  .app .reviews .review-box .comment .text {
    line-height: 25px;
  }

  .app .clients {
    padding: 20px;
  }
}

@media screen and (max-width: 500px) {
  html {
    /* font-size: 47%; */
  }

  .currency .tab .logo {
    width: 27px;
    height: 27px;
  }

  .app .header nav .logo {
    width: 130px;
  }

  .app .header .nav-2 .page-link-2 ul li a {
    padding: 15px 150px;
  }

  .app .header .nav-2 .page-link-2 .log a {
    padding: 15px 85px;
  }

  .app .dis-tabs .row .tab {
    margin: 15px;
    height: 150px;
    padding: 20px 0;
  }

  .app .investment .row .tab a {
    padding: 10px 20px;
  }

  .app .guarantee .row .tab .icon {
    width: 75px;
    height: 75px;
  }

  .app .guarantee .row .tab .icon i {
    font-size: 25px;
  }

  .app .ceo {
    padding: 20px;
  }

  .app .ceo .text {
    padding: 20px;
  }

  .app .ceo img,
  .app .sign img {
    width: 130%;
  }

  .app .reviews .intro {
    padding-right: 0px;
  }

  .app .reviews .intro button a {
    padding: 13px 20px;
  }

  .app .reviews .review-box .comment .text {
    padding: 35px 20px;
  }

  .app .reviews .review-box .comment.active {
    margin-left: 80%;
  }

  .app .clients {
    padding: 0;
  }

  .app .clients .row .tab {
    width: 750px;
    height: auto;
    padding: 20px 15px;
  }

  .app .clients .row .tab .image {
    width: 95px;
    height: 95px;
  }

  .app .frequent .row .tab h2 {
    /* font-size: 1.6em; */
  }

  .app footer {
    /* padding: 50px 0 0; */
  }

  .app footer .info .logo img {
    width: 55%;
  }
}

@media screen and (max-width: 400px) {
  .noty {
    width: 160px;
    padding: 20px 10px;
  }

  .app .header nav .button {
    width: 35px;
    height: 30px;
  }

  .app .header nav .button .icon {
    height: 3px;
  }

  .app .header .nav-2 .page-link-2 ul li a {
    padding: 15px 120px;
    /* font-size: 85%; */
  }

  .app .mid-way .display .start-btn button a {
    padding: 10px;
    font-size: 1em;
  }

  .app .user-log > div form {
    padding: 30px;
  }

  .app .user-log > div form .inpts input[type="submit"] {
    width: 100px;
  }

  .app .mid-way .display {
    padding: 25px 20px;
  }
/* 
  .app .partner .row {
    padding: 0 40px;
  } */

  .app .guarantee .row .tab {
    width: 100%;
  }

  .app .guarantee .row .tab .text p {
    line-height: 25px;
  }

  .app .ceo .text h2 {
    line-height: 26px;
  }

  .app .reviews .intro {
    margin-bottom: 0;
  }
  .app .reviews .review-box .comment {
    width: 310px;
    margin: 20px 0;
  }

  .app .reviews .review-box .comment.active {
    margin-left: 100%;
  }

  .app .reviews .review-box .comment .text {
    padding: 17px 20px;
  }

  .app .clients .row {
    height: 150px;
  }

  .app .clients .row .dot > div {
    width: 10px;
    height: 10px;
  }

  /* app .reviews .review-box .comment .profile .pic {
        width: 70px;
    } */

  .app .frequent {
    padding: 20px;
  }

  .app footer {
    /* padding: 0px 0 0; */
  }

  .app footer .copyright p {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 350px) {
  .currency .tab {
    padding: 7px 6px;
  }

  .currency .tab .logo {
    width: 20px;
    height: 20px;
  }

  .app .header .nav-2 .page-link-2 ul li a {
    padding: 15px 100px;
  }

  .app .header nav .button {
    width: 30px;
    height: 25px;
  }

  .app .user-log > div form {
    padding: 30px 20px;
  }

  .app .user-log > div form input {
    height: 25px;
    padding-left: 5px;
  }

  .app .user-log > div form .inpts .fullname {
    flex-wrap: wrap;
  }

  .app .user-log > div form .inpts .fullname input {
    width: 100%;
    margin: 5px 0;
  }

  .app .user-log > div form .inpts input[type="submit"] {
    width: 70px;
  }

  /* .app .partner .row {
    padding: 0 30px;
  } */

  .app .partner .row .tab {
    width: 40px;
  }

  .app .guarantee .row .tab {
    width: 100%;
  }

  .app .reviews .review-box .comment {
    width: 100%;
  }

  .app .reviews .review-box .comment.active {
    margin-left: 160%;
  }

  .app .reviews .review-box .comment .profile .pic {
    width: 65px;
  }

  .app .reviews .intro,
  .app .reviews .review-box {
    width: 100%;
    flex-wrap: wrap;
  }

  .app .clients .row .tab {
    padding: 20px 8px;
    font-size: 60%;
  }

  .app .clients .row .tab .image {
    width: 70px;
    height: 65px;
  }

  .app .ceo img,
  .app .sign img {
    width: 150%;
  }

  .app .ceo .text h2 {
    line-height: 20px;
  }

  .app .sign .text h1 {
    line-height: 20px;
  }
}

@media screen and (max-width: 300px) {
  html {
    font-size: 35%;
  }

  .noty {
    width: 140px;
    padding: 15px 10px;
  }

  .app .header nav .logo {
    width: 110px;
  }

  .app .header .nav-2 .page-link-2 ul li a {
    padding: 15px 70px;
  }

  .app .header .nav-2 .page-link-2 .log a {
    padding: 10px 35px;
  }

  .app .mid-way .display {
    padding: 25px;
  }

  .app .mid-way .display .start-btn button a {
    padding: 12px;
    font-size: 80%;
  }

  .app .showcas-tabs .row .tab {
    width: 210px;
    height: 200px;
  }
  .app .showcas-tabs .row .tab .icon {
    height: 100px;
  }

  .app .investment .row .tab {
    width: 220px;
    padding: 25px;
  }



  .app .investment .row .tab .amounts {
    margin-bottom: 50px;
  }

  .app .investment .row .tab a {
    padding: 8px 15px;
  }

  .app .referral .row .tab .icon {
    width: 80px;
    height: 80px;
  }

  .app .referral .row .tab .icon .num {
    width: 30px;
    height: 30px;
  }

  .app .sign .text a {
    padding: 11px 13px;
  }

  .app .reviews .intro button a {
    padding: 11px 12px;
  }

  .app .sign .text {
    padding: 20px;
  }

  .app .mid-way,
  .app .showcas-tabs,
  .app .investment,
  .app .guarantee,
  .app .ceo,
  .app .referral,
  .app .deposit,
  .app .sign {
    padding: 5px;
  }

  .app .ceo {
    padding: 24px;
  }

  .app .clients .row {
    height: 100px;
  }

  .app .clients .row .tab .image {
    width: 50px;
    height: 50px;
  }
}
