* {
  font-family: 'Poppins', sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 100%;
}
.roadmap svg{
display: none;
  align-items: center;
  justify-content: center;
  /* min-height: 200vh; */
  margin-top: 8em;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
  font-size: 100%;
}

.nav-link {
  display: inline-block;
  position: relative;
font-size: 1vw;
}
.nav-link:hover{
  background: linear-gradient(132.14deg, #F8953A 0%, #EF3C69 88.51%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.solution-content p{
  text-align: justify !important;
  font-size: 16px !important;
}
.py-2 .row .col-sm-12 a:hover{
  text-decoration: none;
  }

#cube-img1 {
  width: 500px;
  position: absolute;
  top: 150px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
    transform: translatey(0px);
  }

  50% {
    /* box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2); */
    transform: translatey(-20px);
  }

  100% {
    /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
    transform: translatey(0px);
  }
}




.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(132.14deg, #0085FF 0%, #18D0FA 88.51%);
  transform-origin: bottom right;
  transition: transform 1.80s ease-out;
  -webkit-transition: transform 1.80s ease-out;
  -moz-transition: transform 1.80s ease-out;
  -ms-transition: transform 1.80s ease-out;
  -o-transition: transform 1.80s ease-out;
}

.footer-logo{

  transform: translateX(-10px);
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
}

.text-address{
  color: #fff !important;
  transform: translateY(10px) !important;
  -webkit-transform: translateY(10px) !important;
  -moz-transform: translateY(10px) !important;
  -ms-transform: translateY(10px) !important;
  -o-transform: translateY(10px) !important;
  font-weight: 400 !important;
}
.navbar {
  background-color: #fff;
  z-index: 1000;
  /* animation: expand 3s ease forwards; */
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.navbar .active {
  color: #007bff;

}

.nav-link {
  color: #6c6c6c;
  font-weight: 500;
  padding: 12px 52px;
  margin-right: 2em;
  font-family: 'Poppins', sans-serif;
  z-index: 100;

}

.nav-active {
  background-color: #fff;
  box-shadow: 5px -1px 12px -5px grey;
}

.nav-colored {
  background: #fff !important;
  position: fixed !important;
  width: 100%;
  background-color: #f3f3f3;
  z-index: 100 !important;
  animation: navbar-up .7s alternate ease-in-out forwards;
  transition: all .6s;
}

@keyframes navbar-up {
  from {
    transform: translateY(-90px);
  }

  to {
    transform: translateY(0px);
  }
}


.navbar-toggler {
  border: none !important;
}

.nav-colored .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)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.nav-colored .nav-link {
  color: #000 !important;
}

.nav-colored #active {
  color: #0084FF !important;
}

.nav-transparent {
  background-color: #fff;
}

/* titlte */

.hero-section {
  /* position: absolute; */
  width: 100%;
  min-height: 100vh;
  background: url('../images/verticals/solution-hero.png');
  background-size: cover;
  background-position: 80%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* animation: expand 1s ease forwards; */
  transition: all .8s ease;
}

@keyframes expand {
  0% {
    transform: translateY(400px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-section .title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}

.title h2 {
  color: #fff;
  float: left;
  font-size: 3vw;
  font-weight: 700;
  animation: 3s anim-lineUp ease-out forwards;
}

@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }

  20% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: translateY(0%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.hero-section img {
  /* width: 500px; */
  float: left;
}

#text-first {
  width: 100%;
  color: #fff;
  font-family: 'Poppins';
  opacity: 1;
  text-align: center;
  font-size: 3vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;


}


.fadeOut {
  opacity: 0;
}

.fadeIn {
  opacity: 1;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.fade-up {
  animation-delay: 8s;
  animation: fade-in-up 1s ease-in-out both;
}

.scrolled.fade-up1 {
  transition: all .6s;
  animation: fade-in-up1 2s ease-in-out both;
}

@keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-up1 {
  0% {
    animation-delay: 1.5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

/* partices */
/* solution */
/* stack */
.stack-img img {
  width: 100%;
}

.left-img {
  border: 2px solid #6C6C6C;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  margin-top: 3em;

}

.left-img li {
  text-align: left;
  padding: 30px;

}


/* footer */
/* footer */
footer {
  background-color: #333535;
}

.text {
  color: #D3D3D3;
  font-weight: 500;
  text-decoration: none;
}

.company {
  color: white;
  margin-top: 1em;
  font-size: 1.2vw;
}

.active {
  color: #0084FF;
}

.fa {
  padding: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  font-size: 20px !important;
  background-color: #0085FF;
  color: #fff;
}

.fa:hover {
  background: linear-gradient(132.14deg, #F8953A 0%, #EF3C69 88.51%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: footerIcon .6s ease-in-out alternate forwards;
}

@keyframes footerIcon {
  from {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(0deg);
  }
}
.mb-2 a{
  font-size: .8vw;
}
.py-2 .row .col-sm-12{
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.py-2 .row .col-sm-12 p{
font-size:.8vw;
text-align: center;
}

.fa-facebook {
  background: #0085FF;
  color: white;
}

.fa-twitter {
  background: #fff;
  color: #0085FF;
  font-size: 20px;
}

.fa-linkedin {
  background: #0085FF;
  color: white;
}

.fa-instagram {
  background-color: #0085FF;
  color: white;
}

.py-2 .row .white{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mb-4{
  font-size: .8vw;
}
.py-2 .row .white2{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.py-2 .row .col-sm-12 a{
  font-size: .8vw;
  color: #fff;
  opacity: .7;
}
.py-2 {
  background-color: #282828;
}

.center {
  margin-bottom: 5em;
}

h3 {
  color: black;
}

.cardName {
  line-height: 2.5em;
}

/* upper footer */
.sub-footer {
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.3)), url('../images/footer/footer.png');
  min-height: 20vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.sub-left {
  color: linear-gradient(90deg, rgba(11, 166, 253, 1) 48%, rgba(24, 206, 249, 1) 99%);
}

.sub-left h2 {
  font-size: 2vw;
  color: #fff;
  font-weight: 500;
}

.cen {
  color: #000;
}


.talk a {
  position: relative;
  padding: 12px 82px;

  margin: 5px;
  border: 2px solid transparent;
  display: inline-block;
  font-size: 1vw;
  border-radius: 30px;
  background-color: inherit;

  transition: .5s ease-out;
  border: 0px;
  color: #fff;
  font-weight: 500;
}

.talk a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  /* control the border thickness */
  /* background:linear-gradient(132.14deg, #0085FF 0%, #18D0FA 88.51%); */
  background-color: #fff;
  /* background: linear-gradient(132.14deg, #F8953A 0%, #EF3C69 88.51%); */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.talk a:hover {
  text-decoration: none;
  background-position: left;
  color: #007bff;
  border: none;
  text-decoration: none !important;
  background-color: #fff;
}

#star {
  color: orange;
}

.footer-logo p {
  font-size: 2vw;
  color: #fff;
  font-weight: 200;
  align-items: flex-start;
  transform: translateX(-5px);
  transform: translateY(7px);
}

/* card icons */
/*----  Main Style  ----*/
#cards_landscape_wrap-2 {
  text-align: center;
  background: #F7F7F7;
  min-height: 50vh;

}
#cards_landscape_wrap-2 .container-fluid .row{
transform: translateY(-100px);
}

#cards_landscape_wrap-2 .container-fluid {
  /* padding-top: 80px; */
  padding-bottom: 100px;
}

#cards_landscape_wrap-2 .container-fluid .row{
margin-bottom: 2rem;
}
#cards_landscape_wrap-2 a {
  text-decoration: none;
  outline: none;
}
.image-card{
  display: flex;
  align-items: center;
  justify-content: center;
}
#cards_landscape_wrap-2 .card-flyer {
  border-radius: 5px;
  width: 12rem;
  height: 1rem;
  /* height: 10px; */
  background: inherit;
}

#cards_landscape_wrap-2 .card-flyer .image-box {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.50);
  border-radius: 5px;
  width: 100%;
}

#cards_landscape_wrap-2 .card-flyer .image-box img {
  -webkit-transition: all .9s ease;
  -moz-transition: all .9s ease;
  -o-transition: all .9s ease;
  -ms-transition: all .9s ease;
  width: 100%;
  height: 170px;
}

#cards_landscape_wrap-2 .card-flyer:hover .image-box img {
  opacity: 0.7;
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}

#cards_landscape_wrap-2 .card-flyer .text-box {
  text-align: center;
}

#cards_landscape_wrap-2 .card-flyer .text-box .text-container {
  padding: 30px 18px;
}

#cards_landscape_wrap-2 .card-flyer {
  background: #FFFFFF;


  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.40);
}



#cards_landscape_wrap-2 .card-flyer .text-box p {
  margin-top: 10px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: 1vw;
  letter-spacing: 1px;
  color: #000000;
  font-weight: 600;
  text-align: center;
}

#cards_landscape_wrap-2 .card-flyer .text-box h6 {
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 1vw;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Roboto Black', sans-serif;
  letter-spacing: 1px;
  color: #00acc1;
}

figure svg {
  width: 100%;
  float: right;
  height: 80%;

  transform: translateY(-70px);

}

#notification {
  animation: crescendo 1.5s alternate infinite ease-in;
}

@keyframes crescendo {
  0% {
    transform: translateY(-300px);
    transform: scale(1.2);
  }

  100% {
    transform: translateY(700px);
    /* transform: scale(1.5); */
  }
}
#verticals{
  margin-top: 6rem;
  font-size: 48px;
  font-weight: 700;
}

#mobile-screen {
  transition: all .6s ease-in-out;
  animation: small-bid 1.9s alternate ease-in-out infinite;
}

@keyframes small-bid {
  0% {
    transform: translateY(-900px);
    /* transform: scale(.8); */
  }

  100% {
    transform: translateY(0px);
    transform: scale(1.5);
  }
}

/* second-content */

.scrolled.text-animation {
  animation: ani 1s;
  text-align: center;
  transition: 0.7s all;
}

@keyframes ani {
  from {
    letter-spacing: 35px;
    filter: blur(5px);
    opacity: 0;
  }

  to {
    letter-spacing: 0;
    filter: blur(0);
    opacity: 1px;
  }
}

.solution-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  min-height: 70vh;
  margin-top: 2em;
}

.solution-content h1 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 48px !important;
  line-height: 72px;
}

.solution-content p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;

  line-height: 24px;

  
  text-align: center;
  color: #6c6c6c;
}

.solution-content h2 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size:20px !important;
  line-height: 30px;
  /* width: 694px; */
  /* height: 60px; */

  text-align: center;
}

/*  */
/*  */
/* card icon */
/*  */
/*  */

.practices-container h2{
  font-size:3vw;
  font-weight: 700;
  text-align: center;
  min-height: 20vh;
  margin-top: 3em;
}
.practices-container .row{
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.practices-card{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 250px;
  height: 250px;
  background: linear-gradient(to left, #fff 50%, #0085ff 50%) right;
  background-size: 250% 190%;
  transition: all 1.5s ease-out;
  border-radius: 10px;
  border: 0px;
  overflow: hidden;
  border-right: 0px !important;
  /* box-shadow: 5px  3px 5px 3px #F3F3F3; */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

}
.practices-card p{
  text-align: center;
  font-size: 16px;
  color: #6c6c6c;
}
.practices-card:hover p{
  color: #fff;
  transition: all .6s;
}
.practices-card:hover{
  background-position: left;
}

.practices-card svg{
width: 900px;
}

.practices-card:hover svg path#circle{
animation: rotateSvg .8s ease-in-out both;
transition: all .6s;
}

@keyframes rotateSvg {
  from{
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  
  }
  to{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  
  }
}
/* title-txt-2 */
.title-txt-2 {
  display: flex;
  flex-direction: column;
  /* align-items: ; */
  justify-content: center;
  min-height: 100vh;
}

.title-txt-2 p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;

  color: #000000;
  min-height: 20vh;
}

.solution-txt p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: justify;
  width: 80%;
  /* body text */

  color: #6C6C6C;
}

.image-card {
  min-height: 50vh;
}

.scrolled.slide-left2 {
  /* animation-delay: 7s; */
  animation: slide-come-left alternate 1s ease-in-out both;

}

@keyframes slide-come-left {
  0% {
    -webkit-transform: translateX(-900px);
    transform: translateX(-900px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.scrolled.slide-left3 {
  /* animation-delay: 7s; */

  animation: slide-come-left alternate 1.8s ease-in-out both;

}

.scrolled .slide-vertical {
  animation: slide-come-left alternate 1.15s ease-in-out both;
  transition: all .8s ease-in-out;
}

.scrolled .slide-vertical2 {
  animation: slide-come-left alternate 3.15s ease-in-out both;
  transition: all .8s ease-in-out;
}

.scrolled .slide-vertical3 {
  animation: slide-come-left alternate 5.15s ease-in-out both;
  transition: all .8s ease-in-out;
}

.scrolled .slide-vertical4 {
  animation: slide-come-left alternate 7.15s ease-in-out both;
  transition: all .8s ease-in-out;
}

.scrolled .slide-vertical5 {
  animation: slide-come-left alternate 9.15s ease-in-out both;
  transition: all .8s ease-in-out;
}



#sec h2 {
  font-size: 48;
  font-weight: 700;

}

#text-first {
  font-size: 70px;
  font-weight: 700;
}

.slideanim {
  visibility: hidden;
  visibility: visible\9;
  /*For old IE browsers IE6-8 */
}

.slideanim.slide {
  visibility: visible;
  animation: slide 1s;
}

.slideanim::after {
  /* useful when its child elements are float:left; */
  content: "";
  display: table;
  clear: both;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.line {
  /* position: absolute; */
  top: 0px;
  width: 100%;
  height: 50vh;
}

.scrolled.line path.line-dot {
  stroke-dasharray: 1000 !important;
  stroke-dashoffset: 1000 !important;
  animation: dash 6s linear forwards;
  transition: all 0.6s;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.scrolled.line .line-circle1,
.scrolled.line .line-circle3,
.scrolled.line .line-circle5 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s linear forwards;
  transition: 0.6s all;
}

.scrolled.line path.line-circle2,
.scrolled.line path.line-circle4,
.scrolled.line path.line-circle6 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 5s linear forwards;
  animation-delay: 1.4s;
  transition: all 0.6s;

}

.scrolled.line-number1,
.scrolled.line-text1,
.line-number3,
.scrolled.line-text3,
.line-number5,
.scrolled.line-text5 {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  transition: all 0.6s;
}

.scrolled.line-number2,
.scrolled.line-text2,
.line-number4,
.scrolled.line-text4,
.line-number6,
.scrolled.line-text6 {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  transition: all 0.6s;

}


@keyframes slideUp {

  0%,
  50% {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.6s;
  }

  60%,
  100% {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s;
  }
}

.scrolled.line-dot {
  /* fill: #000; */
  stroke-dasharray: 212;
  stroke-dashoffset: 212;
  animation: dash 0.5s linear forwards;
  transition: all 0.6s;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.solution-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-img svg {
  width: 90%;
}

.stack-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150vh;
}

.stack-container .row .stack-img {
  margin-top: 2em;
  min-height: 100vh;
}

.stack-img img {
  margin-top: 2em;
}

.top-button {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}


/* cube */
@media only screen and (min-width:300px) and (max-width: 600px) {

  html,
  body {
    overflow-x: hidden !important;
    font-size: 100%;
  }
  .py-2 .row .col-sm-12{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  a{
    font-size: 14px;
  }
  p{
    font-size: 18px !important;
  }
  .mb-2 a{
    font-size: 16px
  }
  .nav-link{
    font-size: 3vw;
  }

  #sub-title{
    font-size: 30px !important;
    line-height: 1.5em !important;
  }

  .company{
    font-size: 18px;
  }
.practices-container .row{
  display: flex;
  align-items: center;
  justify-content: center;
}
.practices-container .row .col-sm-12{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em;
}
  .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(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
  }

  .title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .title h2 {
    font-size: 40px;
    width: 350px;
    text-align: center;
  }

  #break{
    display:none !important;
  }

  .solution-content {
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .solution-content h1 {
    font-size: 26px !important;
    text-align: center;
    font-weight: 700;
  }

  .solution-content h2 {
    font-size: 18px !important;
    min-height: 10vh !important;
    text-align: center;
    font-weight: 600;
  }

  .solution-content p {
    font-size: 16px;
    min-height: 40vh !important;
  }

  .solution-img {
    min-height: 10vh;
  }

  #verticals,
  #heaer-stack {
    font-size: 30px !important;
    font-weight: 700;
  }

  #sec h2 {
    font-size: 24px;
    padding: 0px;
    margin: 0px;
    height: 0px !important;
  }

 .white a,
 .white2 a{
  font-size:14px !important;
 }

 a{
  font-size:14px !important;
}

  #sec {
    min-height: 100vh;
  }

  #sec ul li {
    margin-top: 3em;
  }

  .cards_landscape_wrap-2 .container-fluid .row {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }

  .cards_landscape_wrap-2 .container-fluid .row,
  .image-card {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }

  .sub-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
  }

  .sub-left h2 {
    font-size: 20px !important;
    text-align: center;
    width: 300px;
    margin-top: 1em;
  }

  .talk a {
    font-size: 14px;
    pad: 12px 42px !important;
    margin-bottom: 1em;
  }

  .py-5 .row .col-sm-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .py-2 .container-fluid .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer p {
    text-align: center;
  }


  .list-unstyled {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .list-unstyled li a {
    text-align: center;
  }

  .navbar {
    position: fixed !important;
    width: 100% !important;
  }

  .solution-img {
    display: none;
  }

  .roadmap svg {
    display: block;
 
    min-height: 100vh;
  }
  .py-2 .row .col-sm-12 p{
    font-size: 10px;
    text-align: center;
    color: #fff;
  }
  
  .company{
    font-size: 16px !important;
  }

}

.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)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='20' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}



.scrolled .path {
  stroke-dasharray: 100;
  animation: dash 5s linear;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}

@media screen and (min-width:600px) and (max-width:900px) {
  html,body{
    overflow-x: hidden;
  }
  p{
    font-size: 18px !important;
  }
  .mb-2 a{
    font-size: 16px
  }

  .company{
    font-size: 18px;
  }
  .practices-container .row{
    min-height: 30vh !important;
  }
  .practices-card{
    width: 200px;
    height: 200px;
  }
  .practices-card svg{
    width: 60px;
    height: 60px;
  }
  .hero-section .row .col-md-12{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section .row .col-md-12 h2{
    text-align: center;
  }

  .py-3 .col-md-12{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

}

@media only screen and (min-width:900px) and (max-width: 1200px) {
  html,body{
    overflow-x: hidden;
  }
  p{
    font-size: 18px !important;
  }
  .mb-2 a{
    font-size: 16px
  }

  .company{
    font-size: 18px;
  }
  .hero-section .row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section .row .col-md-12 h2{
    font-size: 50px;
    font-weight: 700;
  }
  #sec {
    padding: 50px 0;
    background: #fff;
    text-align: center;
    word-wrap: break-word;
    min-height: 50vh;
  
  }
  
  #sec h2 {
    font-weight: 700;
    font-size: 48px;
    min-height: 10vh;
  }
  
  #sec ul {
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    /* justify-content: space-evenly; */
    list-style: none;
  }
  
  #sec ul li {
    /* padding: 40px; */
    width: 200px;
    height: 200px;
  
    background: linear-gradient(to left, #fff 50%, #0085ff 50%) right;
    background-size: 250% 190%;
    transition: all 1.5s ease-out;
    border-radius: 10px;
    border: 0px;
    overflow: hidden;
    border-right: 0px !important;
    /* box-shadow: 5px  3px 5px 3px #F3F3F3; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-around;
    /* flex-wrap: wrap; */
    flex-direction: column;
    line-height: 0em;
  }
  
  #sec ul li .practices-icon svg path#circle {
    transition-duration: 0.8s;
    transition-property: transform;
  }
  
  #sec ul li:hover .practices-icon svg path#circle {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
  
  .practices-icon svg {
    /* top: 3em; */
    width: 60px !important;

   
  }
  
  #sec ul li:hover {
    /* box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); */
    background-position: left;
  }
  
  #sec ul li:hover p {
    color: #fff !important;
  }
  
  
  
  #sec ul li p {
    color: #a2a2a2;
    font-size: 10px;
    /* line-height: 26px; */
    transition: color 0.3s;
    text-align: center;
    margin-bottom: 10em;
  }
  
  #cards_landscape_wrap-2 {
    text-align: center;
    background: #F7F7F7;
    min-height: 70vh;
  }
  
  #cards_landscape_wrap-2 .container-fluid {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  
  #cards_landscape_wrap-2 a {
    text-decoration: none;
    outline: none;
  }
  
  #cards_landscape_wrap-2 .card-flyer {
    border-radius: 5px;
    width: 250px;
    height: 180px;
  }
  
  #cards_landscape_wrap-2 .card-flyer .image-box {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.50);
    border-radius: 5px;
    width: 100%;
  }
  
  #cards_landscape_wrap-2 .card-flyer .image-box img {
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -o-transition: all .9s ease;
    -ms-transition: all .9s ease;
    width: 100%;
    height: 200px;
  }
  
  #cards_landscape_wrap-2 .card-flyer:hover .image-box img {
    opacity: 0.7;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
  }
  
  #cards_landscape_wrap-2 .card-flyer .text-box {
    text-align: center;
  }
  
  #cards_landscape_wrap-2 .card-flyer .text-box .text-container {
    padding: 30px 18px;
  }
  
  #cards_landscape_wrap-2 .card-flyer {
    background: #FFFFFF;
    margin-top: 50px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.40);
  }
  
  #cards_landscape_wrap-2 .card-flyer:hover {
    background: #fff;
    box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.50);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 50px;
  }
  
  #cards_landscape_wrap-2 .card-flyer .text-box p {
    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000000;
    font-weight: 600;
  }
  
  #cards_landscape_wrap-2 .card-flyer .text-box h6 {
    margin-top: 0px;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Roboto Black', sans-serif;
    letter-spacing: 1px;
    color: #00acc1;
  }
  
.py-3 .col-md-12 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
  
}