/* BODY */
/* @font-face {
  font-family: "Gotham";

  src: url("../fonts/GothamLight.ttf") format("truetype"); 
  font-weight: 100;
  font-style: normal;
} */

*,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Nunito";
}

/* HEADER */

.header-top {
  padding: 1em 0;
  background: #232a34;
  display: flex;
}

/********NAVIGATION*********/

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  /* background-color: #5d4954; */
  font-family: "Oxanium";
  position: relative;
}

nav .alogo {
  margin-left: -100px;
}

.nav-links {
  display: flex;
  width: 49%;
  justify-content: space-around;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #990c05;
  text-decoration: none;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 14px;
}

nav ul li a {
  position: relative;
}
nav ul li a::before,
nav ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #990c05;
  left: 0;
  transform: scaleX(0);
  transition: all 0.5s;
}

nav ul li a::before {
  top: -10px;
  transform-origin: left;
}

nav ul li a::after {
  bottom: -10px;
  transform-origin: right;
}

nav ul li a:hover::before,
nav ul li a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  cursor: pointer;
  position: fixed;
  z-index: 1009;
  right: 25%;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: rgb(42, 42, 42);
  margin: 5px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1160px) {
  .nav-links {
    width: 59%;
  }
}

@media screen and (max-width: 880px) {
  .nav-links {
    width: 69%;
  }
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: fixed;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background: #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translate(100%);
    transition: transform 0.5s ease-in;
    z-index: 1009;
  }

  .nav-links li {
    opacity: 0;
  }
  .burger {
    display: block;
    margin-right: -70px;
  }

  nav .alogo {
    margin-left: -70px;
  }
}

.nav-active {
  transform: translateX(0%);
}

.nav-in-active {
  transform: translateX(100%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* HEADER PART */

.my-ripple {
  position: absolute;
  top: 50%;
  left: 30%;
}

.my-ripple span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  animation: ripple 6s linear infinite;
}
.my-ripple span:nth-child(1) {
  animation-delay: 0s;
}

.my-ripple span:nth-child(2) {
  animation-delay: 2s;
}

.my-ripple span:nth-child(3) {
  animation-delay: 4s;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.3);
  }
  90% {
    width: 480px;
    height: 480px;
    opacity: 1;
  }
  100% {
    width: 550px;
    height: 550px;
    opacity: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.3);
  }
}

@keyframes ripple768 {
  0% {
    width: 0;
    height: 0;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.3);
  }
  90% {
    width: 280px;
    height: 280px;
    opacity: 1;
  }
  100% {
    width: 350px;
    height: 350px;
    opacity: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.3);
  }
}
.first-words {
  padding-left: 100px;
  padding-top: 150px;
  position: relative;
}

.first-graphics {
  position: relative;
}

.first-words h3 {
  font-size: 30px;
  color: #000;
  margin-bottom: 10px;
}

.first-words h1 {
  font-size: 40px;
  color: #990c05;
  margin-bottom: 10px;
  font-weight: 600;
}

.header-btn {
  color: #fff;
  background: #990c05;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #990c05;
  font-weight: 500;
  transition: 0.5s;
}

.header-btn:hover {
  color: #990c05;
  background: #fff;
  border: 1px solid #990c05;
  font-weight: 500;
  transition: 0.5s;
  text-decoration: none;
}

.first-words h5 {
  font-size: 17px;
  color: #000;
}

.first-graphics img {
  margin-top: 200px;
}

.first-words .first-piece img {
  position: absolute;
  /* top: 67%; */
  right: 40%;
  width: 25px;
  animation-name: first-piece;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.first-words .sec-piece img {
  position: absolute;
  top: 83%;
  right: 50%;
  width: 50px;
  animation-name: sec-piece;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.first-words .third-piece img {
  position: absolute;
  /* top: 60%; */
  right: 10%;
  width: 60px;
  animation-name: third-piece;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.first-words .fourth-piece img {
  position: absolute;
  top: 80%;
  right: 15%;
  width: 30px;
  animation-name: third-piece;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.first-graphics .first-piece img {
  position: absolute;
  top: 20%;
  right: 40%;
  width: 25px;
  animation-name: third-piece;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.first-graphics .sec-piece img {
  position: absolute;
  top: 30%;
  right: 25%;
  width: 50px;
  animation-name: third-piece;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.first-graphics .third-piece img {
  position: absolute;
  top: 23%;
  right: 5%;
  width: 80px;
  animation-name: third-piece;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.first-graphics .fourth-piece img {
  position: absolute;
  top: -10%;
  right: 7%;
  width: 110px;
  animation-name: fourth-piece;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.first-graphics .fifth-piece img {
  position: absolute;
  top: 8%;
  right: 7%;
  width: 30px;
  animation-name: third-piece;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.first-graphics .sixth-piece img {
  position: absolute;
  top: 38%;
  right: 10%;
  width: 30px;
  animation-name: third-piece;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.first-graphics .seventh-piece img {
  position: absolute;
  top: 50%;
  right: 20%;
  width: 65px;
  animation-name: third-piece;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}

@keyframes first-piece {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sec-piece {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes third-piece {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(0.5);
  }
}

@keyframes fourth-piece {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(0.5);
  }
}

/* GAINS */

.gains {
  margin-top: 300px;
  margin-bottom: 300px;
}

.gains .gains-row .gains-col,
.gains .gains-row .gains-col2 {
  position: relative;
}

.gains .gains-row .gains-col img.wd {
  position: absolute;
  width: 57%;
  top: 78%;
  right: 20%;
  transition: 1s;
}

/* .gains .gains-row .gains-col img.wd:hover{
    transition: 1s;
    right: 30%;
    top: 74%;
    transform: rotate(30deg);
} */

.gains .gains-row .gains-col img.wd2 {
  position: absolute;
  width: 58%;
  top: 40%;
  right: -20%;
  transform: rotate(-60deg);
}

.gains .gains-row .gains-col2 img.wd3 {
  position: absolute;
  width: 55%;
  top: -10%;
  left: -10%;
  transform: rotate(-55deg);
}

.gains .gains-row .gains-col2 img.wd4 {
  position: absolute;
  width: 55%;
  top: -25%;
  left: 30%;
  transform: rotate(5deg);
}

.gains .gains-row .gains-col2 img.gear1 {
  position: absolute;
  width: 15%;
  top: 24%;
  left: 40%;
  animation: gear1 2s infinite linear;
}

.gains .gains-row .gains-col2 img.gear2 {
  position: absolute;
  width: 10%;
  top: 23%;
  left: 54%;
  animation: gear4 1s infinite linear;
  animation-direction: reverse;
}

.gains .gains-row .gains-col2 img.gear3 {
  position: absolute;
  width: 20%;
  top: 32%;
  left: 58.2%;
  animation: gear4 4s infinite linear;
}

.gains .gains-row .gains-col2 img.gear4 {
  position: absolute;
  width: 30.6%;
  top: 41.9%;
  left: 32%;
  animation: gear4 6s infinite linear;
  animation-direction: reverse;
}

.gains .gains-row .gains-col .infog {
  position: absolute;
  width: 80%;
  top: 15%;
  left: 18%;
}

.gains .gains-row .gains-col .infog div {
  width: 30px;
  height: 60px;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
}

.line11 {
  background-color: rgb(214, 151, 34);
  animation: infog 10s linear infinite;
  top: 200px;
  left: 60px;
}

.line21 {
  background-color: rgb(231, 34, 23);
  animation: infog2 15s linear infinite;
  top: 200px;
  left: 95px;
}
.line31 {
  background-color: rgb(79, 77, 77);
  animation: infog3 20s linear infinite;
  top: 200px;
  left: 131px;
}

.line41 {
  background-color: rgb(15, 61, 198);
  animation: infog4 17s linear infinite;
  top: 200px;
  left: 165px;
}

.line51 {
  background-color: rgb(147, 11, 11);
  animation: infog4 19s linear infinite;
  top: 200px;
  left: 199px;
}

@keyframes infog {
  50% {
    background-color: rgb(84, 56, 5);
    top: 100px;
    height: 160px;
  }
}

@keyframes infog2 {
  50% {
    background-color: rgb(111, 11, 6);
    top: 100px;
    height: 160px;
  }
}

@keyframes infog3 {
  50% {
    background-color: rgb(2, 2, 2);
    top: 100px;
    height: 160px;
  }
}

@keyframes infog4 {
  50% {
    background-color: rgb(7, 24, 74);
    top: 100px;
    height: 160px;
  }
}

@keyframes infog5 {
  50% {
    background-color: rgb(34, 4, 63);
    top: 100px;
    height: 160px;
  }
}

@keyframes gear1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@keyframes gear4 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* ROI */

.gains-col2 .roi {
  position: absolute;
  top: -38%;
  left: -48%;
}

.gains-col2 .roi h4 {
  font-size: 15px;
  font-weight: 600;
  color: #990c05;
}

.gains-col2 .roi p {
  font-size: 13px;
}

.dec-line-t-l::before {
  content: "";
  position: absolute;
  top: -12%;
  left: 11.5%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(62, 62, 62);
  margin-top: -2.5px;
}

.dec-line-t-l::after {
  background: rgb(62, 62, 62);
  top: -30%;
  left: 12%;
  width: 2px;
  height: 85px;
  content: "";
  position: absolute;
}

.dec-line::after {
  background: rgb(62, 62, 62);
  top: -30%;
  left: -2.5%;
  width: 85px;
  height: 2px;
  content: "";
  position: absolute;
}

/* DIVERSIFIED PORTFOLIO */

.gains-col2 .dp {
  position: absolute;
  top: -45%;
  left: 57%;
}

.gains-col2 .dp h4 {
  font-size: 15px;
  font-weight: 600;
  color: #990c05;
}

.gains-col2 .dp p {
  font-size: 12.5px;
}

.dec-line-t-l2::before {
  content: "";
  position: absolute;
  top: -22%;
  left: 39.5%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(62, 62, 62);
  margin-top: -2.5px;
  z-index: 10;
}

.dec-line-t-l2::after {
  background: rgb(62, 62, 62);
  top: -40%;
  left: 40%;
  width: 2px;
  height: 85px;
  content: "";
  position: absolute;
  z-index: 10;
}

.dec-line2::after {
  background: rgb(62, 62, 62);
  top: -40%;
  left: 40%;
  width: 85px;
  height: 2px;
  content: "";
  position: absolute;
}

.gains-col .seam {
  position: absolute;
  top: 135%;
  left: 5%;
}

.gains-col .seam h4 {
  font-size: 15px;
  font-weight: 600;
  color: #990c05;
}

.gains-col .seam p {
  font-size: 12.5px;
}

.dec-line-t-l3::before {
  content: "";
  position: absolute;
  top: 122%;
  left: 56.3%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(62, 62, 62);
  margin-top: -2.5px;
  z-index: 10;
}

.dec-line-t-l3::after {
  background: rgb(62, 62, 62);
  top: 122%;
  left: 57%;
  width: 2px;
  height: 85px;
  content: "";
  position: absolute;
  z-index: 10;
}

.dec-line3::after {
  background: rgb(62, 62, 62);
  top: 140%;
  left: 42%;
  width: 85px;
  height: 2px;
  content: "";
  position: absolute;
}

.gains-col .pf {
  position: absolute;
  top: 107%;
  left: 117%;
  width: 250px;
}

.gains-col .pf h4 {
  font-size: 15px;
  font-weight: 600;
  color: #990c05;
}

.gains-col .pf p {
  font-size: 12.5px;
}

.dec-line-t-l4::before {
  content: "";
  position: absolute;
  top: 94%;
  left: 93.3%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(62, 62, 62);
  margin-top: -2.5px;
  z-index: 10;
}

.dec-line-t-l4::after {
  background: rgb(62, 62, 62);
  top: 94%;
  left: 94%;
  width: 2px;
  height: 85px;
  content: "";
  position: absolute;
  z-index: 10;
}

.dec-line4::after {
  background: rgb(62, 62, 62);
  top: 112%;
  left: 94%;
  width: 85px;
  height: 2px;
  content: "";
  position: absolute;
}

/* INVESTMENT JOURNEY */

.inv-journey {
  margin-top: 400px;
}
.inv-journey .inv-row .inv-col1 img {
  width: 55%;
  position: relative;
}

.inv-journey .inv-row .inv-col1 .step-1 {
  position: absolute;
  top: 3%;
  left: 39%;
}

.inv-journey .inv-row .inv-col1 .step-1 h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.inv-journey .inv-row .inv-col1 .step-1 p {
  font-size: 13px;
  font-weight: 500;
}

.inv-journey .inv-row .inv-col1 .step-2 {
  position: absolute;
  top: 40%;
  left: -22%;
}

.inv-journey .inv-row .inv-col1 .step-2 h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: right;
}

.inv-journey .inv-row .inv-col1 .step-2 p {
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}

.inv-journey .inv-row .inv-col1 .step-3 {
  position: absolute;
  top: 73%;
  left: 39%;
}

.inv-journey .inv-row .inv-col1 .step-3 h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.inv-journey .inv-row .inv-col1 .step-3 p {
  font-size: 13px;
  font-weight: 500;
}

/* PARTNERS */

.partners {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 90%;
}

.partner-row {
  border-radius: 30px 30px 0px 0px;
  padding: 30px;
  box-shadow: 4px 4px 10px gray;
}

.partners h3 {
  text-align: center;
  color: #990c05;
  font-weight: 600;
  margin-bottom: 10px;
}

.partners h5 {
  text-align: center;
  font-size: 17px;
  margin-bottom: 30px;
}

.partner-row {
  position: relative;
}
.partner-row .col-md-3 {
  transition: 0.5s;
}
.partner-row .col-md-3:hover {
  transform: scale(1.1);
  transition: 0.5s;
  box-shadow: 4px 4px 10px gray;
  border-radius: 6px;
}

/* TESTIMONIALS */

.testimonial-wrapper {
  margin-bottom: 150px;
}
.testimonial-wrapper h3 {
  text-align: center;
  color: #990c05;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-wrapper h5 {
  text-align: center;
  font-size: 17px;
  margin-bottom: 30px;
}
.testimonial {
  background-color: #fff;
  width: 95%;
  max-width: 700px;
  min-height: 260px;
  box-shadow: 3px 3px 6px gray;
}

.d-flex {
  display: flex !important;
}

.testimonial div.image {
  width: 45%;
  background-size: cover;
  background-position: 50%;
  /* -webkit-clip-path: polygon(0 0,100% 0,64% 100%,0 100%); */
  clip-path: polygon(0 0, 100% 0, 64% 100%, 0 100%);
  overflow: hidden;
}

.testimonial div.comment {
  width: 55%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
blockquote {
  margin: 0 0 1rem;
}

.testimonial div.comment p {
  line-height: 30px;
  font-size: 12px;
  margin-bottom: 0;
}
.position-relative {
  position: relative !important;
}

.testimonial div.comment .quot {
  line-height: 1;
  font-weight: 900;
  font-size: 30px;
  color: #990c05;
  position: absolute;
  left: -20px;
}
.font-weight-bold {
  font-weight: 700 !important;
}

/* FOOTER */

.flow-blue {
  position: relative;
}
.flow-blue .wave2 {
  position: absolute;
  width: 100%;
  height: 143px;
  bottom: 0;
  left: 0;
  background: url(../images/wave.png);
  animation: animate 40s linear infinite;
}

.flow-blue .wave2::before {
  content: "";
  width: 100%;
  height: 143px;
  background: url(../images/wave.png);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  animation: animate-reverse 40s linear infinite;
}

.flow-blue .wave2::after {
  content: "";
  width: 100%;
  height: 143px;
  background: url(../images/wave.png);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  animation-delay: -5s;
  animation: animate 70s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1360px;
  }
}

@keyframes animate-reverse {
  0% {
    background-position: 1360px;
  }
  100% {
    background-position: 0;
  }
}

.footer-red {
  background-color: #ec2024;
  /* height: 500px; */
  z-index: 1000;
  margin-top: -3px;
}

.footer-red .footer-row {
  padding: 0 20px 0 20px;
}

.footer-red .footer-row .footer-col h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 40px 0 30px 0;
}

.footer-red .footer-row .footer-col p {
  color: #fff;
  font-size: 12px;
  line-height: 25px;
}

.footer-col ul li {
  color: #fff;
  font-size: 15px;
}

.footer-col ul li a {
  color: #fff;
  font-size: 12px;
  line-height: 25px;
}

.final-footer {
  text-align: center;
  padding-bottom: 50px;
}

.final-footer img {
  margin-top: 100px;
  width: 150px;
  margin-bottom: 30px;
}

.final-footer .footer-img h5 {
  font-size: 11px;
  color: #fff;
}

.social-icons {
  text-align: center;
  margin-bottom: 30px;
}

.social-icons ul li {
  float: left;
  margin-right: 8px;
}

#footer .social-icons {
  margin-top: 15px;
}

#footer .social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .social-icons ul li a {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  line-height: 33px;
}

#footer .social-icons ul li a:hover {
  color: #fff;
}

#footer .social-icons ul li a.whatsapp:hover {
  background-color: #33cc66;
}

#footer .social-icons ul li a.facebook:hover {
  background-color: #3b5999;
}
#footer .social-icons ul li a.twitter:hover {
  background-color: #2ac6f7;
}
#footer .social-icons ul li a.instagram:hover {
  background-color: #833ab4;
}
#footer .social-icons ul li a.linkedin:hover {
  background-color: #036dc0;
}
#footer .social-icons ul li a.youtube:hover {
  background-color: #c4302b;
}

.social-icons {
  margin-top: 30px;
  text-align: center;
}

.social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.social-icons ul li {
  float: left;
  margin-right: 8px;
}

.social-icons ul li:last-child {
  margin-right: 0;
}

.social-icons ul li a {
  color: #fff;
  background-color: #d9d9d9;
  height: 36px;
  width: 36px;
  line-height: 36px;
  display: block;
  font-size: 16px;
  opacity: 0.8;
  transition: 0.7s;
}

.social-icons ul li a:hover {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  transition: 0.7s;
}

.insight-footer a {
  text-decoration: none;
}

.insight-footer .insight-row .col-md-4 {
  position: relative;
}

.insight-footer .insight-row .col-md-4 img {
  width: 150px !important;
}

.insight-footer .insight-row .col-md-8 h5 {
  font-size: 10px;
  color: #fff;
  line-height: 20px;
  font-weight: lighter;
}

.insight-footer .insight-row .col-md-8 p {
  font-size: 9px;
}

/* RESPONSIVENESS */

@media (max-width: 1380px) {
  .my-ripple {
    position: absolute;
    top: 50%;
    left: 37%;
  }
  .first-words {
    padding-left: 40px;
    padding-top: 150px;
  }
  .first-words h3 {
    font-size: 25px;
  }
  .first-words h1 {
    font-size: 35px;
  }
  .first-words h5 {
    font-size: 15px;
  }

  .inv-journey .inv-row .inv-col1 img {
    width: 60%;
    position: relative;
    margin-left: 90px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 h4,
  .inv-journey .inv-row .inv-col1 .step-2 h4,
  .inv-journey .inv-row .inv-col1 .step-3 h4 {
    font-size: 15.5px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 p,
  .inv-journey .inv-row .inv-col1 .step-2 p,
  .inv-journey .inv-row .inv-col1 .step-3 p {
    font-size: 12px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 4%;
    left: 58%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 40%;
    left: 2%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 75%;
    left: 58%;
  }
}

@media (max-width: 1285px) {
  .inv-journey .inv-row .inv-col1 img {
    width: 60%;
    position: relative;
    margin-left: 60px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 4%;
    left: 54%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 42%;
    left: -4.5%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 74%;
    left: 48%;
  }
}

@media (max-width: 1200px) {
  .my-ripple {
    position: absolute;
    top: 50%;
    left: 40%;
  }
  .first-words h3 {
    font-size: 23px;
  }
  .first-words h1 {
    font-size: 32px;
  }
  .first-words h5 {
    font-size: 14px;
  }

  .first-graphics .m-img img {
    width: 75%;
  }

  .gains-col2 .roi {
    top: -19%;
    left: -56%;
  }

  .gains-col2 .dp {
    left: 47%;
  }
  .gains-col2 .roi h4,
  .gains-col2 .dp h4,
  .gains-col .seam h4,
  .gains-col .pf h4 {
    font-size: 14px;
  }

  .gains-col2 .roi p,
  .gains-col2 .dp p,
  .gains-col .seam p,
  .gains-col .pf p {
    font-size: 12px;
  }

  .dec-line-t-l::before {
    top: -10.5%;
    left: 5%;
  }
  .dec-line::after {
    top: -10%;
    left: -5%;
    width: 50px;
  }

  .dec-line-t-l::after {
    visibility: hidden;
  }

  .dec-line2::after {
    top: -40%;
    left: 40%;
    width: 30px;
  }

  .dec-line-t-l2::after {
    top: -40%;
    left: 40%;
    width: 2px;
    height: 70px;
  }

  .dec-line4::after {
    top: 112%;
    left: 94%;
    width: 20px;
  }

  .dec-line-t-l4::after {
    height: 70px;
  }

  .dec-line3::after {
    top: 140%;
    left: 51%;
    width: 30px;
  }

  .dec-line-t-l3::after {
    height: 70.5px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 3%;
    left: 53%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 42%;
    left: -12%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 72%;
    left: 53%;
  }
}

@media (max-width: 1150px) {
  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 4%;
    left: 58%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 38%;
    left: 0%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 75%;
    left: 58%;
  }

  nav .alogo {
    margin-left: -50px;
  }
}

@media (max-width: 1000px) {
  .my-ripple {
    position: absolute;
    top: 50%;
    left: 47%;
  }
  .first-words h3 {
    font-size: 22px;
  }
  .first-words h1 {
    font-size: 30px;
  }
  .first-words h5 {
    font-size: 13px;
  }
}

@media screen and (max-width: 992px) {
  .gains .gains-row .gains-col .infog {
    width: 65%;
    top: -20%;
    left: 5%;
  }

  .dec-line2::after {
    visibility: hidden;
  }

  .dec-line-t-l2::after {
    top: -37%;
    left: 40%;
    width: 2px;
    height: 45px;
  }

  .dec-line-t-l2::before {
    top: -22%;
    left: 39%;
  }

  .gains-col2 .dp {
    top: -65%;
    left: 30%;
  }

  .gains-col2 .roi {
    top: -19%;
    left: -67%;
  }

  .dec-line::after {
    left: -3%;
    width: 30px;
  }

  .dec-line3::after {
    visibility: hidden;
  }

  .dec-line-t-l3::after {
    height: 40px;
  }
  .gains-col .seam {
    position: absolute;
    top: 138%;
    left: 33%;
  }

  .dec-line-t-l4::after {
    height: 30px;
  }

  .dec-line4::after {
    visibility: hidden;
  }

  .inv-journey .inv-row .inv-col1 img {
    width: 70%;
    position: relative;
    margin-left: 20px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 2%;
    left: 55%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 35%;
    left: -12.5%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 73%;
    left: 55%;
  }

  .inv-journey .inv-row .inv-col1 .step-1 h4,
  .inv-journey .inv-row .inv-col1 .step-2 h4,
  .inv-journey .inv-row .inv-col1 .step-3 h4 {
    font-size: 14px;
  }
}

@media (max-width: 880px) {
  nav .alogo {
    margin-left: 0px;
  }
}

@media (max-width: 850px) {
  .my-ripple {
    position: absolute;
    top: 50%;
    left: 53%;
  }
}

@media screen and (max-width: 768px) {
  nav .alogo {
    position: relative;
    left: -37%;
  }
  .first-words {
    padding-left: 40px;
    padding-top: 100px;
  }
  .first-graphics .m-img {
    text-align: center;
  }
  .first-graphics img {
    margin-top: 30px;
  }

  .my-ripple span {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    animation: ripple768 6s linear infinite;
  }

  .gains {
    position: relative;
  }

  /* .gains-col .pf{
        position: absolute;
        top: 107%;
        left: 50%;
        margin-right: 0;
    } */

  .gains-col .img-circle {
    margin-bottom: 200px;
  }

  .gains-col2 .img-circle2 {
    margin-bottom: 200px;
    margin-top: 250px;
  }

  .gains .gains-row .gains-col img.wd2 {
    position: absolute;
    width: 58%;
    top: -30%;
    right: 25%;
    transform: rotate(180deg);
  }

  .gains .gains-row .gains-col img.wd {
    position: absolute;
    width: 57%;
    top: 60%;
    right: 15%;
    transition: 1s;
  }

  .gains-col .pf {
    top: -40%;
    left: 20%;
    right: 15%;
  }

  .gains-col .pf h4,
  .gains-col .pf p {
    text-align: center;
  }

  .dec-line3::after {
    top: -60%;
  }

  .dec-line-t-l3::after {
    height: 40px;
  }

  .gains .gains-row .gains-col .infog {
    width: 80%;
    top: 10%;
    left: 20%;
  }

  .gains .gains-row .gains-col2 img.wd4 {
    position: absolute;
    width: 55%;
    top: 15%;
    left: 25%;
    transform: rotate(0deg);
  }

  .gains-col2 .dp {
    top: 10%;
    left: 5%;
    z-index: 1002;
    margin: -20px 100px;
  }

  .gains-col2 .dp h4,
  .gains-col2 .dp p {
    text-align: center;
  }

  .gains .gains-row .gains-col2 img.wd3 {
    position: absolute;
    width: 55%;
    top: 65%;
    left: 23%;
    transform: rotate(-180deg);
  }

  .gains-col .seam {
    position: absolute;
    top: 92%;
    left: 37%;
  }
  .gains-col .seam h4,
  .gains-col .seam p {
    text-align: center;
  }

  .gains-col2 .roi {
    top: 93%;
    left: 33%;
  }

  .dec-line-t-l::before {
    visibility: hidden;
  }

  .dec-line-t-l::before {
    visibility: hidden;
  }

  .dec-line-t-l4::after {
    visibility: hidden;
  }
  .dec-line-t-l2::before {
    visibility: hidden;
  }
  .dec-line-t-l3::before {
    visibility: hidden;
  }
  .dec-line-t-l4::before {
    visibility: hidden;
  }
  .dec-line-t-l3::after {
    visibility: hidden;
  }
  .dec-line-t-l2::after {
    visibility: hidden;
  }
  .dec-line::after {
    visibility: hidden;
  }

  .gains .gains-row .gains-col2 img.gear4 {
    position: absolute;
    width: 30.6%;
    top: 51.9%;
    left: 32%;
    animation: gear4 6s infinite linear;
    animation-direction: reverse;
  }

  .gains .gains-row .gains-col2 img.gear3 {
    position: absolute;
    width: 20%;
    top: 47%;
    left: 58.2%;
    animation: gear4 4s infinite linear;
  }

  .gains .gains-row .gains-col2 img.gear1 {
    position: absolute;
    width: 15%;
    top: 43%;
    left: 40%;
    animation: gear1 2s infinite linear;
  }

  .gains .gains-row .gains-col2 img.gear2 {
    position: absolute;
    width: 10%;
    top: 43%;
    left: 54%;
    animation: gear4 1s infinite linear;
    animation-direction: reverse;
  }

  .inv-journey {
    margin-top: -100px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 4%;
    left: 52%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 40%;
    left: -2%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 75%;
    left: 52%;
  }

  .inv-journey .inv-row .inv-col1 .step-1 h4,
  .inv-journey .inv-row .inv-col1 .step-2 h4,
  .inv-journey .inv-row .inv-col1 .step-3 h4 {
    font-size: 14px;
  }

  .inv-col1 {
    margin-bottom: 100px;
  }

  .insight-footer .insight-row .col-md-4 {
    width: 33%;
  }

  .insight-footer .insight-row .col-md-8 {
    width: 67%;
  }
}

@media (max-width: 600px) {
  .inv-journey .inv-row .inv-col1 img {
    width: 55%;
    position: relative;
    margin-left: 120px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 4%;
    left: 65.5%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 40%;
    left: 10%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 74%;
    left: 60.5%;
  }
}

@media (max-width: 550px) {
  .gains-col2 .dp {
    top: 10%;
    top: 10%;
    left: 2% !important;
    z-index: 1002;
    margin: -30px 60px !important;
  }

  .gains-col .seam {
    position: absolute;
    top: 92%;
    left: 32%;
  }

  .gains-col2 .roi {
    top: 93%;
    left: 30%;
  }

  .gains .gains-row .gains-col .infog {
    width: 80%;
    top: 0%;
    left: 20%;
  }

  .inv-journey .inv-row .inv-col1 img {
    width: 60%;
    position: relative;
    margin-left: 80px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 4%;
    left: 57%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 40%;
    left: 5%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 74%;
    left: 57%;
  }
}

@media (max-width: 500px) {
  nav .alogo {
    position: relative;
    left: -32%;
  }
  .inv-journey .inv-row .inv-col1 img {
    width: 60%;
    position: relative;
    margin-left: 70px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 4%;
    left: 63%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 38%;
    left: -3%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 70%;
    left: 57%;
  }
}

@media (max-width: 450px) {
  .inv-journey .inv-row .inv-col1 img {
    width: 60%;
    position: relative;
    margin-left: 70px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: 4%;
    left: 62%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 38%;
    left: 3%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 82%;
    left: 54%;
  }

  .inv-journey .inv-row .inv-col1 .step-1 h4,
  .inv-journey .inv-row .inv-col1 .step-2 h4,
  .inv-journey .inv-row .inv-col1 .step-3 h4 {
    font-size: 13.5px;
  }

  .inv-journey .inv-row .inv-col1 .step-1 p,
  .inv-journey .inv-row .inv-col1 .step-2 p,
  .inv-journey .inv-row .inv-col1 .step-3 p {
    font-size: 11px;
  }
  .gains-col2 .dp {
    top: 7%;
    left: 17%;
    z-index: 1002;
  }

  .gains-col .seam {
    position: absolute;
    top: 80%;
    left: 24%;
  }

  .gains-col2 .roi {
    top: 90%;
    left: 22%;
  }

  .gains .gains-row .gains-col .infog {
    width: 65%;
    top: -10%;
    left: 10%;
  }

  .gains .gains-row .gains-col2 img.wd3 {
    position: absolute;
    width: 55%;
    top: 63%;
    left: 19%;
    transform: rotate(-180deg);
  }

  .gains .gains-row .gains-col img.wd {
    position: absolute;
    width: 57%;
    top: 50%;
    right: 20%;
    transition: 1s;
  }
}

@media (max-width: 417px) {
  nav .alogo {
    position: relative;
    left: -27%;
  }

  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: -8%;
    left: 76%;
  }

  .inv-journey .inv-row .inv-col1 .step-2 {
    position: absolute;
    top: 38%;
    left: 1%;
  }

  .inv-journey .inv-row .inv-col1 .step-3 {
    position: absolute;
    top: 101%;
    left: 40%;
  }

  .inv-journey .inv-row .inv-col1 img {
    width: 75%;
    position: relative;
    margin-left: 70px;
  }
  .inv-journey .inv-row .inv-col1 .step-3 h4 {
    font-size: 13px;
    text-align: right;
  }
  .inv-journey .inv-row .inv-col1 .step-3 {
    font-size: 10.5px;
    text-align: right;
  }

  .inv-col1 {
    margin-bottom: 150px;
  }
}

@media (max-width: 354px) {
  .inv-journey .inv-row .inv-col1 .step-1 {
    position: absolute;
    top: -21%;
    left: 51%;
  }
}
