@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Blinker', sans-serif;
  transition: all 0.3s;
}
:root {
  --blue-color: #6e50ff;
  --white-color: #ffffff;
  --mako-700: #474a53;
  --mirage-950: #191f2f;
}
body {
  background: #0e1422;
}
ul {
  margin: 0;
  padding: 0;
}
a {
  display: inline-block;
  text-decoration: none;
}
.cust-primary {
  background: var(--blue-color);
  color: var(--white-color);
  border: 1px solid var(--blue-color);
  border-radius: 30px;
  padding: 10px 20px;
}
.cust-secondary {
  background: var(--mako-700);
  color: var(--white-color);
  border: 1px solid var(--mako-700);
  border-radius: 30px;
  padding: 10px 20px;
}
.cust-primary:hover {
  background: transparent;
  border-color: var(--blue-color);
}
.cust-secondary:hover {
  background: transparent;
  border-color: var(--mako-700);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  background: -webkit-linear-gradient(45deg, #bcb3ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1,
.h1 {
  font-size: 50px;
  line-height: 57px;
  font-weight: 600;
}
h2,
.h2 {
  font-size: 40px;
  line-height: 47px;
  font-weight: 600;
}
h3,
.h3 {
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
}
.section-head p {
  font-size: 26px;
  line-height: 33px;
  color: var(--white-color);
  letter-spacing: 0.04em;
}

.py-80 {
  padding: 80px 0;
}
.pt-80 {
  padding: 80px 0 0;
}
.mt-60 {
  margin-top: 60px;
}
.bg-mirage {
  background: var(--mirage-950);
}

/*** 

====================================================================
Navigation bar
====================================================================

 ***/
.hero-section {
  background: radial-gradient(
    31.89% 74.1% at 12.82% 35.02%,
    #292d36 0%,
    #0a0e19 100%
  );
}

/*** 

====================================================================
Navigation bar
====================================================================

 ***/

.navigation {
  position: sticky;
  z-index: 99;
  width: 100%;
}
.navigation.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}
nav .wrapper {
  position: relative;
  max-width: 1320px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.logo a {
  max-width: 195px;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
}
.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a.active {
  color: var(--blue-color);
}
.nav-links li a .fa-angle-down,
.nav-links li .mobile-item .fa-angle-down {
  margin-left: 10px;
}
.nav-links li:hover .fa-angle-down {
  transform: rotate(180deg);
  transition: all 0.3s;
}
.nav-links li a:hover {
  background: #3a3b3c;
}
.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background-color: rgb(36, 37, 38, 0.5);
  backdrop-filter: blur(10px);
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.row .mega-links li {
  padding: 0 20px;
}
.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover {
  color: #f2f2f2;
}
.wrapper .main-menu .btn {
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .main-menu .btn a,
.wrapper .btn a {
  color: var(--white-color);
}
.wrapper .main-menu .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

nav input {
  display: none;
}

/*** 

====================================================================
Banner section
====================================================================

 ***/

.banner-content p {
  font-size: 20px;
  line-height: 27px;
  color: var(--white-color);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.banner-content .cust-primary,
.banner-content .cust-secondary {
  font-size: 20px;
  line-height: 27px;
  border-radius: 10px;
  padding: 15px 30px;
}

/*** 

====================================================================
logo slider section
====================================================================

 ***/
.owl-carousels .owl-stage {
  display: flex;
  align-items: center;
  gap: 30px;
}
.owl-carousels .owl-dots {
  display: none !important;
}
/*** 

====================================================================
offers section
====================================================================

 ***/

.offers,
.industry,
.key-features,
.side-sections {
  border-radius: 50px;
}
.offer-section .card {
  background-color: transparent;
  overflow: hidden;
}

.card p,
.cust-card p,
.address {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white-color);
}
.offer-section .card:hover img {
  transform: scale(1.1);
}
.offer-section .card:hover .card-head img {
  transform: rotate(45deg);
  transition: all 0.3s;
}

/*** 

====================================================================
service section
====================================================================

 ***/

.service-section .cust-card {
  background: linear-gradient(297.12deg, #212c4f 12.99%, #10182b 91.89%);
  border-radius: 16px;
}

/*** 

====================================================================
cta section
====================================================================

 ***/

.cta {
  background: url(./images/cta-bg.png) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}

.cta-content p {
  font-size: 40px;
  line-height: 47px;
  color: var(--white-color);
}

.cta-content p span {
  color: #bcb3ff;
}

/*** 

====================================================================
testimonials section
====================================================================

 ***/

.testimonials-wrapper .owl-dots {
  display: none !important;
}
.testimonials-wrapper {
  position: relative;
}
.inner-page-wrapper.testimonials-wrapper {
  background: 0 0;
}
.inner-page-wrapper.testimonials-wrapper .owl-nav {
  position: absolute;
  right: 0;
  top: -30px;
  z-index: 99;
}

.testimonials-wrapper .owl-nav {
  position: absolute;
  right: 0;
  top: -80px;
  z-index: 99;
}

.testimonials-wrapper .owl-next,
.testimonials-wrapper .owl-prev {
  position: relative;
  height: 38px;
  width: 38px;
  line-height: 33px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  margin-left: 10px;
  display: inline-block;
  border: 2px solid #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonials-wrapper.style-two .owl-next,
.testimonials-wrapper.style-two .owl-prev {
  color: #444;
  border-color: #444;
}

.testimonial-block {
  position: relative;
}

.testimonial-block .inner-box .content {
  position: relative;
  border-radius: 10px;
}
.testimonial-block .inner-box .content i {
  font-size: 45px;
  font-style: italic;
  color: #bcb3ff;
  opacity: 50%;
}
.testimonial-block .inner-box .content .author-info {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  color: var(--white-color);
}

.testimonial-block .inner-box .content .text {
  position: relative;
  margin-top: 20px;
  color: var(--white-color);
  font-size: 22px;
  line-height: 29px;
}
.testimonials-wrapper .owl-nav .owl-next {
  right: auto;
}

.testimonials-wrapper .owl-theme .owl-nav [class*='owl-'] {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  border-color: var(--blue-color) !important;
  color: var(--blue-color) !important;
  background: 0 0;
}
.client-img img {
  height: 100%;
  width: 100%;
  background: #d9d9d9;
  border-radius: 10px;
}

/*** 

====================================================================
footer section
====================================================================

 ***/

.social a {
  width: 30px;
  height: 30px;
  background: var(--white-color);
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue-color);
  border: 1px solid var(--white-color);
}

.social a:hover {
  background: none;
  color: var(--white-color);
}
.web-links ul li a {
  color: var(--white-color);
  font-size: 22px;
  line-height: 29px;
  margin-bottom: 10px;
}
.web-links ul li a:hover {
  color: var(--blue-color);
}
.copyright {
  font-size: 24px;
  line-height: 31px;
  color: var(--white-color) !important;
}

/*** 

====================================================================
challanges section
====================================================================

 ***/

.challanges,
.side-img-wrap,
.list-section {
  background: url(./images/verbix-analytics/challanges-background.png) no-repeat
    center;
  background-size: cover;
  background-attachment: fixed;
}
.side-sections p {
  font-size: 20px;
  line-height: 27px;
  color: var(--white-color);
}

/*** 

====================================================================
faq section
====================================================================

 ***/

.accordion-header {
  -webkit-text-fill-color: initial;
}
.accordion-item {
  background: var(--mirage-950);
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 6px;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--white-color);
}
.accordion-button:not(.collapsed),
.accordion-button {
  background: var(--mirage-950);
  font-size: 22px;
  line-height: 31px;
  color: var(--white-color);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(./images/verbix-analytics/minus.png);
}
.accordion-body {
  font-size: 18px;
  line-height: 35px;
  color: var(--white-color);
  font-weight: 100;
}
.accordion-body a {
  color: var(--blue-color) !important;
  font-weight: 600;
}
.accordion-button::after {
  background-image: url(./images/verbix-analytics/plus.png);
}

/*** 

====================================================================
Contact Us page
====================================================================

 ***/

.contact-banner {
  padding: 120px 0;
  position: relative;
}
.contact-banner .banner-content {
  width: 50%;
  margin: 0 auto;
}
.contact_back_pattern {
  position: absolute;
  bottom: 0;
  right: 60px;
}
.contact-form-section {
  background-color: #0e1422;
}
.contact-form {
  padding-top: 50px;
}
.contact-form form {
  width: 80%;
  margin: 0 auto;
}
.contact-form label {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
  margin-bottom: 15px;
}
.contact-form .row .col-md-6,
.contact-form .row .col-md-12 {
  margin-bottom: 30px;
}
.contact-form label span.required {
  color: #f00;
  font-weight: 600;
  padding-left: 5px;
}
.contact-form input,
.contact-form textarea {
  display: block;
  border-radius: 8px;
  border: 1px solid #4c5983;
  background: linear-gradient(180deg, #202b4d 0%, #161f38 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  height: auto;
  width: 100%;
  padding: 15px;
  color: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #fff;
}
.contact-submit-btn {
  margin-top: 50px;
  text-align: center;
}
.contact-submit-btn button {
  border-radius: 8px;
  background: #6e50ff;
  padding: 15px 40px;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.78px;
  margin: 0;
}

#contactUSFormError {
  text-align: center;
  margin-bottom: 10px;
}

.errorMessage {
  color: #ff0000 !important;
}

.successMessage {
  color: #289f2b !important;
  text-align: center;
  margin-bottom: 10px;
}

.overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 72%);
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transform: translate(-50%, -50%);
  text-align: center;
}

/*** 

====================================================================
side-img-wrap section
====================================================================

 ***/

.side-img-div {
  padding: 30px;
  border: 1px solid #bcb3ff;
  background: linear-gradient(297deg, #212c4f 12.99%, #10182b 91.89%);
  border-radius: 10px;
}
.side-img-div p {
  color: var(--white-color);
  font-size: 20px;
  line-height: 27px;
}

/*** 

====================================================================
side-img-wrap section
====================================================================

 ***/

.list-wrap {
  color: var(--white-color);
  font-size: 24px;
  line-height: 31px;
}

/*** 

====================================================================
About Us page
====================================================================

 ***/

.ab-banner-section .banner-content {
  width: 75%;
}
.ab-banner-section.banner-content p {
  font-weight: 300;
}
.commitment-section {
  border-radius: 18px;
  background: #191f2f;
}
.section-head p.com-text {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.6px;
  margin: 30px 0 55px 0;
}
.cta-abt-banner {
  background: url(./images/cta-back.png) no-repeat center;
  background-size: cover;
}
.cta-abt-banner .row {
  align-items: center;
}
.cta-abt-banner .row .col-md-3 {
  padding: 0;
}
.cta-abt-banner .row .col-md-3 .cta-abt-box {
  padding: 0 20px;
  text-align: center;
  border-right: 2px solid rgba(225, 225, 225, 0.4);
}
.cta-abt-banner .row .col-md-3:last-child .cta-abt-box {
  border-right: 0;
}
.cta-abt-box h1 {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #bcb3ff 0%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 40px;
  margin: 0 0 25px 0;
}
.cta-abt-box h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.8px;
  margin: 0;
  -webkit-text-fill-color: #fff;
}
.foundational-section {
  border-radius: 18px;
  background: #191f2f;
}
.foundational-section .col-md-5 {
  padding-right: 60px;
}
.foundational-section .section-head h2 {
  background: linear-gradient(180deg, #bcb3ff 0%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.foundational-section .section-head p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.6px;
  line-height: 30px;
}
.foundational_box {
  padding: 0 30px;
  border-left: 4px solid #ffffff2e;
}
.foundational-section .col-lg-7 .row .col-md-6:last-child,
.foundational-section .col-lg-7 .row .col-md-6:nth-child(3) {
  margin-top: 30px;
}
.foundational_box h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1.2px;
  background: linear-gradient(180deg, #bcb3ff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  line-height: normal;
}
.foundational_box p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 0.6px;
  min-height: 80px;
}
.journey-section {
  background-color: #0e1422;
  padding: 40px 90px 0 90px;
  text-align: center;
}
.journey-box {
  padding: 60px;
  background: url(./images/journey_back.png) no-repeat center;
  background-size: cover;
  border-radius: 18px 18px 0 0;
}
.journey-section .section-head h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.4px;
  margin: 0 0 15px 0;
}
.journey-section .section-head {
  width: 60%;
  margin: 0 auto;
}
.journey-section .section-head p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  margin: 0 0 30px 0;
}
.get-started-btn {
  border-radius: 8px;
  background: #6e50ff;
  font-size: 40px;
  font-weight: 600;
  padding: 17px 50px;
  line-height: normal;
  text-shadow: none;
  letter-spacing: 1.6px;
}

.cust-card .card-list.key-features-list{
  padding-left: 18px;
}

.cust-card .card-list .card-text{
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.cust-card .card-list .card-text::marker{
  color: #D6D1FF;
  font-size: 16px;
}

.pricing-section-wrap{
  background-color: #191F2F;
  padding: 60px 100px;
  border-radius: 10px;
}

.pricing_content_inner{
  background-color: #242B3F;
  padding: 24px;
  border-radius: 10px;
  margin: 22px 0;
}

.pricing_content_inner h3{
  color: #fff;
  letter-spacing: 1px;
  background: 0;
  -webkit-text-fill-color: unset;
  font-weight: 400;
}

.pricing_content_inner .price-span{
  background: linear-gradient(90deg, #FFFFFF 0%, #BCB3FF 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 40px;
  font-weight: 700;
}

.pricing_content_inner p{
  font-size: 20px;
  font-weight:  400;
  color: #ffffff;
  margin: 0;
}

.pricing-section-wrap .connect_btn{
  background-color: #CBC5FF;
  border: 1px solid #CBC5FF;
  box-shadow: none;
  color: #202B4D;
  font-size: 20px;
  line-height: 27px;
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 700;
  transition: all .4s ease-in-out;
  border-radius: 4px;
}

.pricing-section-wrap .connect_btn:hover{
  color: #fff;
  background-color: transparent;
  border: 1px solid #CBC5FF;
  transition: all .4s ease-in-out;
}

.pricing-section-wrap span{
  color: #fff;
  font-size: 20px;
}




/* Effortless Voice */

.voice_agents_sec {
  margin: 50px 0;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
}

.voice_agents_sec h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
}

.voice_agents_sec p {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.card_box {
  padding: 20px;
  border-radius: 10px;
}

.voice_agents_sec .card_box span {
  color: #fff;
  font-size: 20px;
  line-height: normal;
  text-align: center;
  display: block;
  margin-top: 15px;
}

.btn.show_more {
  background: #6e50ff;
  color: #fff;
  border: 1px solid #6e50ff;
  border-radius: 30px;
  padding: 10px 20px;
}

.btn.show_more:hover,
.btn.show_more:active,
.btn.show_more:focus-visible {
  color: #fff;
  border: 1px solid #6e50ff;
}

/* 04-04-25 */

.playBtnWrapper {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 1px solid #bcb3ff;
  padding: 2px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

.play-btn button {
  background: #6e50ff;
  border: 1px solid #6e50ff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.voice_agents_sec ul li {
  list-style: none;
}

.voice_agents_sec_block.hidden {
  display: none;
}

/* SOUND WAVE */

.playBtnWrapper .sound-wave {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}

.playBtnWrapper .bar {
  animation-name: wave-lg;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  background: #6e50ff;
  margin: 0 1.5px;
  height: 10px;
  width: 1px;
}

.playBtnWrapper .bar:nth-child(-n+7),
.playBtnWrapper .bar:nth-last-child(-n+7) {
  animation-name: wave-md;
}

.playBtnWrapper .bar:nth-child(-n+3),
.playBtnWrapper .bar:nth-last-child(-n+3) {
  animation-name: wave-sm;
}

@keyframes wave-sm {
  0% {
      opacity: 0.35;
      height: 10px;
  }

  100% {
      opacity: 1;
      height: 25px;
  }
}

@keyframes wave-md {
  0% {
      opacity: 0.35;
      height: 15px;
  }

  100% {
      opacity: 1;
      height: 50px;
  }
}

@keyframes wave-lg {
  0% {
      opacity: 0.35;
      height: 15px;
  }

  100% {
      opacity: 1;
      height: 70px;
  }
}

/* LOADER */

#loading-bar-spinner.loading-spinner {
  left: 50%;
  margin-left: -12px;
  top: 50%;
  margin-top: -12px;
  position: absolute;
  z-index: 19 !important;
  animation: loading-bar-spinner 400ms linear infinite;
}

#loading-bar-spinner.loading-spinner .spinner-icon {
  width: 25px;
  height: 25px;
  border: solid 2px transparent;
  border-top-color: #fff !important;
  border-left-color: #fff !important;
  border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0% {
      transform: rotate(0deg);
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

/* IMG */

.user-icon {
  width: 100%;
  height: 100%;
  position: relative;
}

.user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* IMG OUTER WAVES */

.waves-block{
    position: absolute;
    top: 50%;
    transform: translate(10%, -50%);
    width: 120px;
    height: 120px;
    left: -50%;
    right: 0;
    margin: auto;
    z-index: -1;
}

.waves {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 5px solid #b3b1bd;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.wave-4 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@keyframes waves {
  0% {
      -webkit-transform: scale(0.2, 0.2);
      transform: scale(0.2, 0.2);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
      opacity: 0.9;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
      -webkit-transform: scale(0.9, 0.9);
      transform: scale(0.9, 0.9);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

/* BAR SPINNER */

.bar-spinner {
  margin: 0 auto;
  width: 60px;
  height: 60px;
}

.bar-spinner>div {
  background: #fff;
  height: 100%;
  width: 4px;
  display: inline-block;
  margin-left: 0;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.bar-spinner>div:first-of-type {
  margin-left: 0;
}

.bar-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.bar-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.bar-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.bar-spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
      -webkit-transform: scaleY(0.25);
  }

  20% {
      -webkit-transform: scaleY(0.5);
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
      transform: scaleY(0.25);
      -webkit-transform: scaleY(0.25);
  }

  20% {
      transform: scaleY(0.5);
      -webkit-transform: scaleY(0.5);
  }
}




/* MEDIA QUERY */
@media (max-width:576px) {
  body {
      height: auto;
  }
}

.btn.schedule_demo_btn{
  background-color: #d7505b;
  border: 1px solid #d7505b;
  margin-right: 8px;
}

.btn.schedule_demo_btn:hover{
  background-color: transparent;
  border: 1px solid #d7505b;
}