html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#loader {
  border: 12px solid #f3f3f3;
  border-radius: 50%;
  border-top: 12px solid #444444;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

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

.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#loader {
  border: 12px solid #2f3fb1;
  border-radius: 50%;
  border-top: 12px solid #f3f3f3;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

.demo {
  cursor: pointer;
}

.demo a {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #2f3fb1;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
}

.demo a:hover {
  opacity: 0.5;
}

#section10 a {
  cursor: pointer;
  padding-top: 60px;
}

#section10 a span {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #2f3fb1;
  border-radius: 50px;
  box-sizing: border-box;
}

#section10 a span::before {
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #2f3fb1;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

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

.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.navbar {
  padding-top: 0rem;
}

.navbar .nav-link {
  margin-right: 15px;
  font-weight: 400;
}

.navbar a {
  color: white;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
}

.navbar a:hover {
  color: white;
}

.btn {
  box-shadow: 0px 8px 24px #1b531b26;
  border-radius: 6px;
  font-family: "Rajdhani";
  font-size: 1.2rem;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}

#logo {
  height: auto;
  width: auto;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #2057c4;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 1.2vh;
  padding-top: 4vh;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
  margin-left: 8%;
}

.main-nav {
  width: 100vw;
}

.nav-div {
  width: 100vw;
}

.landing-text {
  margin-top: 20vh;
  margin-left: 8%;
}

.landing-head {
  font-weight: 600;
}

.landing-content {
  overflow: hidden;
  line-height: 40px;
  width: 100%;
}

.landing-sub {
  font-size: 1.5rem;
  width: 40vw;
}

.feat-head {
  font-weight: 500;
}

/* Text Animation */
.landing-text-animated {
  margin-top: 20vh;
  margin-left: 8%;
}

.content {
  overflow: hidden;
  line-height: 70px;
  color: #ffffff;
  margin-top: 10px;
}

.content__container {
  overflow: hidden;
  height: 70px;
  /* padding: 0 40px; */
}

.content__container:before {
  /* content: '['; */
  left: 0;
}

.content__container:after {
  /* content: ']'; */
  position: absolute;
  right: 0;
}

.content__container:after,
.content__container:before {
  position: relative;
  top: 0;
  color: #16a085;
  line-height: 70px;
  -webkit-animation-name: opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.content__container__list {
  margin-top: 0;
  padding-left: 0px;
  text-align: left;
  list-style: none;
  -webkit-animation-name: change;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

.content__container__list__item {
  line-height: 70px;
  margin: 0;
}

@-webkit-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@-o-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-o-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@-moz-keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-moz-keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

@keyframes opacity {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}

/* Trusted Section */
.trusted-img {
  min-width: 120px;
  min-height: 120px;
  height: 15vw;
  width: 15vw;
  box-shadow: 0px 8px 32px #97a8d15e;
  border-radius: 50%;
  background-color: #f9fbff;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 0%;
  position: relative;
  padding: 1.5%;
}

.trusted-img img {
  height: 12%;
  width: 80%;
  margin-top: 30%;
  position: absolute;
  align-self: center;
  cursor: pointer;
}

.trusted-img img:hover {
  opacity: 1;
}

.media-box {
  background: linear-gradient(180deg, #ffffff 20%, #e5ebf7 20%, #fff 90%);
  background-repeat: no-repeat;
}

/* Footer */
.footer {
  background-color: #2f3fb1;
}

.fa-facebook-official,
.fa-twitter-square,
.fa-instagram,
.fa-linkedin-square,
.fa-medium {
  font-size: 24px;
  margin-left: 1vw;
}

.copyright {
  background: #2f3fb1;
}

/*Potrait Phone*/
@media only screen and (max-width: 1100px) {
  .display-4 {
    font-size: 30px;
  }

  .display-3 {
    font-size: 40px;
  }

  .landing-sub {
    font-size: 1.3rem;
    width: 70vw;
  }

  .demo a {
    bottom: -20px;
  }

  .landing-text {
    margin-top: 12vh;
    margin-left: 8%;
  }

  .req-mbtn {
    font-size: 1.2rem;
  }

  .content__container {
    height: 40px;
  }

  .content {
    line-height: 40px;
  }

  .content__container:after,
  .content__container:before {
    line-height: 40px;
  }

  .content__container__list__item {
    line-height: 40px;
  }

  .client-single.active {
    height: 60%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .client-single.inactive {
    border: none;
    box-shadow: none;
  }

  .client-single.inactive .client-info {
    display: none;
  }

  .h1 {
    font-size: 18px;
  }

  .client-info {
    text-align: center;
    position: relative;
    top: -10px;
  }

  .client-info p {
    font-size: 15px !important;
    font-weight: 700;
  }

  .test-name {
    font-size: 1.5rem;
  }

  .client-comment {
    position: relative;
    top: 0;
    padding: 10px;
  }

  #testimonial-area {
    width: 100%;
  }

  .client-single.inactive .test-name {
    font-size: 3rem;
    text-align: center;
  }

  .client-single.inactive .client-info p {
    font-size: 25px;
  }

  .client-single.position-2 {
    left: -5% !important;
    top: 50px !important;
  }

  .client-single.position-3 {
    left: -15% !important;
    top: auto !important;
  }

  .client-single.position-4 {
    left: -5% !important;
    top: 430px !important;
  }

  .client-single.position-5 {
    top: 50px !important;
    right: -5% !important;
  }

  .client-single.position-6 {
    top: auto !important;
    right: -15% !important;
  }

  .client-single.position-7 {
    top: 430px !important;
    right: -5% !important;
  }
}

.client-single.active {
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  width: 28%;
  height: 80%;
}

.client-single.inactive {
  top: auto;
  z-index: 10;
  width: 34%;
  height: 100%;
  padding-top: 12%;
}

.client-single.active .client-comment,
.client-single.active .client-info {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.client-single:not(.active) {
  -webkit-transform: scale(0.55);
  transform: scale(0.55);
  z-index: 99;
}

.client-single.active .client-img {
  width: 140px;
  height: 140px;
  margin: 5% 2% 0 0%;
  position: relative;
  display: inline-block;
}

.client-single.inactive .client-img {
  width: 180px;
  height: 180px;
  margin: auto;
  position: relative;
}

.client-single.active .client-info {
  display: inline-block;
  text-align: left;
}

.client-single.inactive .client-info {
  font-size: 3rem;
  line-height: 50px;
}

.client-single.active .client-img:before {
  border-radius: 100%;
  content: "";
  padding: 0px;
  width: 160px;
  height: 140px;
  top: -4px;
  left: 0px;
  position: absolute;
  z-index: -1;
}

.client-single .client-img img {
  width: 150px;
  border-radius: 50%;
  transition: 0.5s ease;
  border: solid;
  border-color: #1a429e;
}

.client-single .client-img img:hover {
  /* border: 5px solid #004B9B; */
  cursor: pointer;
  transition: 0.5s ease;
}

.client-single.active .client-img img {
  max-width: 160px;
  /* margin: 0 auto 24px; */
  transition: 0.5s ease;
  /* border: 3px solid #004B9B; */
}

.client-single.active .client-img img:hover {
  cursor: default;
}

.client-comment {
  padding: 0%;
}

@media only screen and (min-width: 1100px) {
  .client-comment {
    width: 60%;
    margin: 0 auto;
  }

  .display-3 {
    font-size: 60px;
  }
}

.client-comment h3 {
  font-size: 22px;
  line-height: 32px;
  color: black;
}

.client-comment span i {
  font-size: 60px;
  color: #1a429e;
  margin: 40px 0 24px;
  display: inline-block;
}

.client-info h3 {
  color: #000;
  font-weight: 400;
  margin-bottom: 4px;
}

.client-info p {
  font-size: 18px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
}

.client-single.inactive .client-info h3 {
  color: #000;
  font-weight: 400;
  margin-bottom: 4px;
}

.client-single.inactive .client-info p {
  font-size: 25px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
  }

  .client-comment h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .client-single.active {
    width: 50%;
  }

  .client-single.inactive {
    width: 40%;
  }

  .client-single:not(.active) {
    -webkit-transform: scale(0.55);
    transform: scale(0.35);
  }

  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(0.3) !important;
    transform: scale(0.3) !important;
  }

  .client-single.active .client-img img {
    max-width: 100px;
  }

  .client-single.active .client-img::before {
    padding: 5px;
    width: 140px;
    height: 140px;
    top: -4px;
    left: 6px;
  }

  .client-single.active .client-img {
    width: 120px;
    height: 100px;
  }

  .testi-wrap {
    height: 580px;
  }

  #testimonial-area {
    padding: 100px 0 0;
  }
}

@media only screen and (min-width: 570px) and (max-width: 770px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
  }

  .client-comment h3 {
    font-size: 14px;
    line-height: 26px;
  }

  .client-single.active {
    width: 60%;
  }

  .client-comment span i {
    font-size: 40px;
  }

  .client-single:not(.active) {
    -webkit-transform: scale(0.55);
    transform: scale(0.35);
  }

  .client-single.position-5,
  .client-single.position-7 {
    right: 0;
  }

  .client-single.position-4 {
    left: 0;
  }

  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(0.3) !important;
    transform: scale(0.3) !important;
  }

  .client-single.active .client-img img {
    max-width: 80px;
  }

  .client-single.active .client-img::before {
    padding: 5px;
    width: 88px;
    height: 88px;
    top: -4px;
    left: 16px;
  }

  .client-single.active .client-img {
    width: 120px;
    height: 100px;
  }

  .testi-wrap {
    height: 630px;
  }
}

@media only screen and (max-width: 540px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .client-comment h3 {
    font-size: 14px;
    line-height: 26px;
  }

  .client-single.active {
    width: 80%;
  }

  .client-comment span i {
    font-size: 40px;
  }

  .client-single:not(.active) {
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
  }

  .client-single.position-5,
  .client-single.position-7,
  .client-single.position-6 {
    right: -70px;
  }

  .client-single.position-4 {
    left: -60px;
  }

  .client-single.position-3 {
    left: -75px;
  }

  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(0.25) !important;
    transform: scale(0.25) !important;
  }

  .client-single.active .client-img img {
    max-width: 80px;
  }

  .client-single.active .client-img::before {
    padding: 5px;
    width: 88px;
    height: 88px;
    top: -4px;
    left: 16px;
  }

  .client-single.active .client-img {
    width: 120px;
    height: 100px;
  }

  .testi-wrap {
    height: 600px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 400px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
  }

  .trusted-img {
    min-width: 90px;
    min-height: 90px;
    width: 13vw;
    height: 13vw;
  }

  .client-comment h3 {
    font-size: 14px;
    line-height: 26px;
  }

  .client-single.active {
    width: 80%;
  }

  .client-comment span i {
    font-size: 40px;
  }

  .client-single:not(.active) {
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
  }

  .client-single.position-5,
  .client-single.position-7,
  .client-single.position-6 {
    right: -70px;
  }

  .client-single.position-4 {
    left: -60px;
  }

  .client-single.position-3 {
    left: -75px;
  }

  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(0.25) !important;
    transform: scale(0.25) !important;
  }

  .client-single.active .client-img img {
    max-width: 80px;
  }

  .client-single.active .client-img::before {
    padding: 5px;
    width: 88px;
    height: 88px;
    top: -4px;
    left: 16px;
  }

  .client-single.active .client-img {
    width: 120px;
    height: 100px;
  }

  .testi-wrap {
    height: 550px;
  }
}

/* Accordion */

.wrap {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

/*
a:focus,
a:hover,
a:active {
  outline: 0;
  text-decoration: none;
} */

.panel {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #fff;
  background: none;
  box-shadow: none;
}

.panel:last-child {
  border-bottom: none;
}

.panel-group>.panel:first-child .panel-heading {
  border-radius: 4px 4px 0 0;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-group .panel+.panel {
  margin-top: 0;
}

.panel-heading {
  background-color: #1a429e;
  border-radius: 0;
  border: none;
  color: #fff;
  padding: 0;
}

.panel-title a {
  display: block;
  color: #fff;
  padding: 15px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}

.panel-body {
  background: #fff;
}

.panel:last-child .panel-body {
  border-radius: 0 0 4px 4px;
}

.panel:last-child .panel-heading {
  border-radius: 0 0 4px 4px;
  transition: border-radius 0.3s linear 0.2s;
}

.panel:last-child .panel-heading.active {
  border-radius: 0;
  transition: border-radius linear 0s;
}

/* #bs-collapse icon scale option */

.panel-heading a:before {
  content: "\e146";
  position: absolute;
  font-family: "Material Icons";
  right: 5px;
  top: 10px;
  font-size: 24px;
  transition: all 0.5s;
  transform: scale(1);
}

.panel-heading.active a:before {
  content: " ";
  transition: all 0.5s;
  transform: scale(0);
}

#bs-collapse .panel-heading a:after {
  content: " ";
  font-size: 24px;
  position: absolute;
  font-family: "Material Icons";
  right: 5px;
  top: 10px;
  transform: scale(0);
  transition: all 0.5s;
}

#bs-collapse .panel-heading.active a:after {
  content: "\e909";
  transform: scale(1);
  transition: all 0.5s;
}

/* #accordion rotate icon option */

#accordion .panel-heading a:before {
  content: "\e316";
  font-size: 24px;
  position: absolute;
  font-family: "Material Icons";
  right: 5px;
  top: 10px;
  transform: rotate(180deg);
  transition: all 0.5s;
}

#accordion .panel-heading.active a:before {
  transform: rotate(0deg);
  transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a429e;
}

/* Cards Animation */
.line {
  border-top: 1px solid #1a429e;
  width: 40%;
}

.feature-box {
  margin-top: 10vh;
}

form {
  width: 100%;
}

.card,
.card-img,
.card-img-overlay {
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.1),
    0 15px 12px rgba(185, 183, 183, 0.2);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: rgba(26, 66, 158, 0.5);
  min-height: 280px;
}

@media (max-width: 800px) {
  .landing-text-animated {
    margin-left: 8%;
    padding: 10vw;
    margin-top: 10vh;
  }
}

@media (max-width: 767px) {
  .landing-text-animated {
    margin-left: 8%;
    padding: 0;
    margin-top: 15vh;
  }

  .bg-buttons {
    text-align: center;
  }

  /*
  .content__container {
    font-size: 6vw;
  }

  .content__container__list {
    padding-left: 32vw;
  } */
}

@media (max-width: 340px) {
  .bg-button1 {
    margin-bottom: 2vw;
  }

  .bg-button2 {
    margin-left: 0;
  }
}

.cli-info {
  font-weight: 400;
  font-size: 1.5rem;
  color: black;
  text-transform: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.feature-img {
  width: auto;
  height: auto;
  transition: transform 0.2s;
}

.feature-img:hover {
  transform: scale(1.2);
}

.feature-bg {
  /*   background: linear-gradient(162deg, #ffffff 25%, #E5EBF7 25%, #E5EBF7 75%, #fff 75%); */
  background-repeat: no-repeat;
  padding-left: 10%;
  padding-right: 10%;
}


.feat-text {
  font-size: 1.2rem;
  font-weight: 400;
}

.feat-text-l {
  font-size: 1.5rem;
  font-weight: 400;
  padding-left: 10%;
  padding-right: 10%;
}

.bubble-tree {
  background-size: 550px 400px;
  width: 550px;
  height: 400px;
  display: inline-block;
  position: relative;
  /* top: 50px; */
  /* left: 0; */
  opacity: 0;
  padding: 20%;
}

@media only screen and (min-width: 1100px) and (max-width: 1600px) {
  .bubble-tree {
    background-size: 450px 300px;
    width: 450px;
    height: 300px;
  }

  #navbarNav {
    margin-left: 16%;
  }
}

@media only screen and (max-width: 1100px) {
  .bubble-tree {
    background-size: 360px 210px;
    width: 360px;
    height: 210px;
    padding: 0%;
    right: 10%;
  }

  #navbarNav {
    margin-left: 16%;
  }

  .left-bann {
    right: 15%;
  }

  h1 {
    font-size: 25px;
  }
}

.bubble-tree.start {
  animation: tree-animate ease-out 0.5s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode: forwards;
  /*when the spec is finished*/
  -webkit-animation: tree-animate ease-out 0.5s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode: forwards;
  /*Chrome 16+, Safari 4+*/
  -moz-animation: tree-animate ease-out 0.5s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode: forwards;
  /*FF 5+*/
  -o-animation: tree-animate ease-out 0.5s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode: forwards;
  /*Not implemented yet*/
  -ms-animation: tree-animate ease-out 0.5s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode: forwards;
  /*IE 10+*/
  -webkit-animation-delay: 700ms;
  /* Chrome, Safari, Opera */
  animation-delay: 700ms;
}

@keyframes tree-animate {
  0% {
    opacity: 0;
    transform: translate(0px, 40px);
  }

  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

@-moz-keyframes tree-animate {
  0% {
    opacity: 0;
    -moz-transform: translate(0px, 40px);
  }

  100% {
    opacity: 1;
    -moz-transform: translate(0px, 0px);
  }
}

@-webkit-keyframes tree-animate {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0px, 0px);
  }
}

@-o-keyframes tree-animate {
  0% {
    opacity: 0;
    -o-transform: translate(0px, 40px);
  }

  100% {
    opacity: 1;
    -o-transform: translate(0px, 0px);
  }
}

@-ms-keyframes tree-animate {
  0% {
    opacity: 0;
    -ms-transform: translate(0px, 40px);
  }

  100% {
    opacity: 1;
    -ms-transform: translate(0px, 0px);
  }
}

.privpol {
  font-size: 18px;
  text-align: justify;
}

.privpol h5 {
  margin-top: 15px;
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }

  .testim {
    top: 40vh;
  }

  .testim .cont div p {
    line-height: 25px;
    font-size: 1rem;
  }

  .testim .cont div h2 {
    line-height: 25px;
    font-size: 1.4rem;
  }

  .cli-info {
    font-size: 1rem;
  }
}

#navbarNav {
  margin-top: 1.5vh;
  margin-right: 2%;
}

@media (min-width: 991.98px) {
  .navbar {
    height: 8.5vh;
  }
}

@media (max-width: 991.98px) {
  #logo {
    height: 65px;
    padding-top: 0vh;
  }
}

.bg-prod {
  color: white !important;
  padding-left: 0%;
  padding-right: 0%;
  background: url("../images/undraw_Charts_re_5qe9.svg") no-repeat padding-box;
  background-color: white;
  background-position: top right;
  background-size: 50vw 120vh;
  border-radius: 0px !important;
}

.sub-text {
  color: black;
}

.card,
.card-img,
.card-img-overlay {
  min-height: 0;
  background: none;
}

.card {
  border: none;
  margin-bottom: 24px;
  box-shadow: 0px 8px 24px #1b531b26;
  -webkit-box-shadow: 0px 8px 24px #1b531b26;
  /* -webkit-box-shadow: 0 0 13px 0 rgba(236, 236, 241, .44);
  box-shadow: 0 0 13px 0 rgba(236, 236, 241, .44); */
}

.card-header {
  border-bottom: 0;
  background: none;
}

.btn {
  box-shadow: none;
}

.feature-prod-img1 {
  background-image: url("../images/Image-20_2x.png");
  float: left;
}

.feature-prod-img2 {
  background-image: url("../images/screenshot@2x.png");
  float: left;
}

.feature-prod-img3 {
  background-image: url("../images/Image\ 21@2x.png");
  float: left;
}

.feature-bg-prod {
  background: linear-gradient(180deg,
      #ffffff 15%,
      #e5ebf7 25%,
      #e5ebf7 75%,
      #fff 100%);
  background-repeat: no-repeat;
  padding-left: 10%;
  padding-right: 10%;
}

#footer a {
  color: white;
  cursor: pointer;
}

#footer a:hover {
  color: white;
}

.copyright a {
  color: white;
  cursor: pointer;
}

.copyright a:hover {
  color: white;
}

.analyst-box .nav-item {
  color: #2f3fb1;
  font-size: 1.1rem;
  font-weight: 400;
  /* padding-left: 9.5%;
  padding-right: 9.5%; */
  border: none;
}

.analyst-box .nav-tabs .active {
  color: #0433e2;
  font-size: 1.2rem;
  font-weight: 400;
  outline: none;
  border: solid;
  border-bottom: none;
  border-color: #93ace85e;
  border-width: 0.1;
}

.tab-content .active {
  outline: none;
  border: none;
  box-shadow: 0px 16px 40px #93ace85e;
}

/* .tab-content .tab-pane .active
{
  border: none;
  box-shadow: 0px 16px 40px #93ACE85E;
} */

.feature-more-img1 {
  background-image: url("../images/Image\ 26@2x.png");
  float: left;
}

.feature-more-img2 {
  background-image: url("../images/Image\ 27@2x.png");
  float: right;
}

.more-pts {
  color: blue;
  font-size: 1.8rem;
  padding-top: 2%;
}

.more-feat .feat-text {
  font-size: 1.8rem;
  font-weight: 550;
  padding-top: 5%;
}


@media only screen and (min-width: 800px) {
  .more-sm {
    display: none;
  }

  .tab-pane>div {
    display: inline-block;
    padding: 15px;
    width: 50%;
  }

  .tab-content .tab-pane {
    display: none;
  }

  .tab-content .active {
    display: flex;
  }

  .tab-image img {
    width: 100%;
    height: auto;
    padding: 8%;
    padding-right: 3%;
  }

  .tab-text p {
    width: 80%;
    padding-top: 20%;
    font-size: 1.2rem;
    font-weight: 400;
  }
}

@media only screen and (max-width: 1100px) {
  .bg-prod {
    width: 100vw;
    color: white !important;
    padding-left: 0%;
    padding-right: 0%;
    background: white;
  }
}

@media only screen and (max-width: 1100px) {
  .tab-pane>div {
    display: flex;
    padding: 15px;
    width: 100%;
  }

  .tab-image img {
    width: 100%;
    height: auto;
    padding: 8%;
    padding-right: 3%;
  }

  .tab-text p {
    width: 80%;
    padding-top: 20%;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .more-pts {
    color: blue;
    font-size: 1rem;
    padding-top: 2%;
  }

  .more-feat .feat-text {
    font-size: 1.3rem;
    font-weight: 550;
    padding-top: 5%;
  }

  .analyst-box .nav-item {
    color: #2f3fb1;
    font-size: 1.3rem;
    font-weight: 400;
    /* padding-left: 2%;
    padding-right: 2%; */
    border: none;
  }

  .analyst-box .nav-tabs .active {
    color: #0433e2;
    font-size: 1.3rem;
    font-weight: 400;
    outline: none;
    border: solid;
    border-bottom: none;
    border-color: #93ace85e;
    border-width: 0.1;
  }
}

@media only screen and (max-width: 800px) {
  .feature-img {
    margin-left: 5%;
    clear: both;
  }

  .more-lg {
    display: none;
  }

  .tab-pane {
    width: 100%;
  }

  .tab-pane>div {
    width: 100%;
    padding: 0%;
    margin-bottom: 0%;
  }

  .tab-image img {
    width: 100%;
    height: auto;
    padding: 5%;
    padding-bottom: 0%;
  }

  .tab-text p {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    padding-left: 5%;
  }
}

.dropdown-menu {
  background-color: #fefefe;
  width: 350px;
  margin-right: 15%;
  /* padding: 0%; */
  cursor: pointer;
}

.dropdown-menu a {
  font-size: 1.5rem;
  padding: 0%;
  padding-bottom: 4%;
}

.drop-text {
  font-size: 1rem;
  padding: 0%;
  padding-left: 0px;
  font-weight: 400;
}

.dd-icon-wrap {
  float: left;
  padding: 3%;
}

.dd-text {
  float: left;
  padding-top: 3%;
  padding-bottom: 3%;
}

.dd-icons {
  height: 4vh;
  width: 5vh;
}

@media all and (max-width: 1000px) {
  .dd-icon-wrap {
    float: left;
    padding: 1%;
  }

  .dd-text {
    float: left;
    padding-top: 1%;
    padding-bottom: 1%;
    width: 78%;
  }

  .dd-icons {
    height: 4vh;
    width: 5vh;
  }

  .dropdown-menu a {
    font-size: 1.2rem;
    padding: 0%;
  }

  .drop-text {
    font-size: 0.9rem;
    padding: 0%;
    margin-left: 0px;
    font-weight: 500;
  }

  .dropdown-menu {
    width: auto;
    height: 100%;
    padding-top: 2%;
    background-color: white;
  }

  .modal-title {
    font-weight: 700;
    padding-top: 1%;
    font-size: 1rem;
    color: #0433e2;
  }
}

.card-heading {
  background-color: #2f3fb1;
  width: 9%;
  display: table-cell;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}

.card-body {
  display: table-cell;
  padding-left: 20px;
  padding-bottom: 30px;
  position: relative;
  background-color: white;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}

.modal-content {
  display: table;
  border-radius: 15px !important;
  background: url("../images/logopng.png") no-repeat;
  background-color: #2f3fb1;
  background-size: 70% 60%;
  background-position: 250px 250px;
  border-radius: 15px;
}

.modal-content .modal-footer {
  justify-content: flex-start;
}

.modal-body label {
  font-weight: 700;
}

.modal .close {
  font-size: 3rem;
  color: #0433e2;
}

.modal-title {
  font-weight: 700;
  padding-top: 1%;
  font-size: 2rem;
  color: #0433e2;
}

a:hover {
  text-decoration: none;
}

/* Button Hover Animation */
#button-2 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#button-2 a {
  position: relative;
  transition: all 0.35s ease-Out;
  color: white;
}

#slide {
  width: 100%;
  height: 100%;
  left: -210px;
  background: white;
  position: absolute;
  transition: all 0.35s ease-Out;
  bottom: 0;
}

#button-2:hover #slide {
  left: 0;
}

#button-2:hover a {
  color: #2f3fb1;
}

.modal,
.modal-content,
.modal-body,
.modal-footer,
.modal-title,
.card-body,
.modal-header,
.card-heading,
.modal-dialogue {
  border: none;
}

@media all and (max-width: 1100px) {
  .dd-icon-wrap {
    float: left;
    padding: 1%;
  }

  .dd-text {
    float: left;
    padding-top: 1%;
    padding-bottom: 1%;
    width: 78%;
  }

  .dd-icons {
    height: 4vh;
    width: 5vh;
  }

  .dropdown-menu a {
    font-size: 1.2rem;
    padding: 0%;
  }

  .drop-text {
    font-size: 0.9rem;
    padding: 0%;
    margin-left: 0px;
    font-weight: 500;
  }

  .dropdown-menu {
    width: auto;
    height: 400px;
    padding-top: 2%;
    background-color: white;
  }

  .card-heading {
    width: 0%;
  }

  .card-body {
    border-radius: 15px;
  }
}


@media all and (max-width: 600px) {

  .dropdown-menu {
    width: auto;
    height: 620px;
    padding-top: 2%;
    background-color: white;
  }

}
@media all and (max-width: 400px) {

  .dropdown-menu {
    width: auto;
    height: 720px;
    padding-top: 2%;
    background-color: white;
  }

}