@charset "UTF-8";

/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */
html {
  font-size: 10px;
}

@media only screen and (max-width:400px) {
  html {
    font-size: 9.444444444444444px;
  }

}

html,
body {
  height: 100%;
}

body {
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.778;
  color: #545454;
  margin: 0;
  padding: 0;
}


/* -------------------------------------------------------------------
 * ## links
 * ------------------------------------------------------------------- */
a {
  color: #0A66C8;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #000000;
}

a:hover,
a:active {
  outline: 0;
}



/* ===================================================================
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #121619;
  z-index: 800;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  padding: 0;
  display: inline-block;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

#loader > div {
  content: "";
  background: #0A66C8;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

#loader > div:nth-of-type(1) {
  left: 15px;
}

#loader > div:nth-of-type(3) {
  left: -15px;
}

/* dots jump */
.dots-jump > div {
  -webkit-animation: dots-jump 1.2s infinite ease;
  animation: dots-jump 1.2s infinite ease;
  animation-delay: 0.2s;
}

.dots-jump > div:nth-of-type(1) {
  animation-delay: 0.4s;
}

.dots-jump > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }

}

@keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }

}

/* dots fade */
.dots-fade > div {
  -webkit-animation: dots-fade 1.6s infinite ease;
  animation: dots-fade 1.6s infinite ease;
  animation-delay: 0.4s;
}

.dots-fade > div:nth-of-type(1) {
  animation-delay: 0.8s;
}

.dots-fade > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }

}

@keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }

}

/* dots pulse */
.dots-pulse > div {
  -webkit-animation: dots-pulse 1.2s infinite ease;
  animation: dots-pulse 1.2s infinite ease;
  animation-delay: 0.2s;
}

.dots-pulse > div:nth-of-type(1) {
  animation-delay: 0.4s;
}

.dots-pulse > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

}

@keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

}


/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
  Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 700;
  font-size: 18px;
  height: auto;
  line-height: 24px;
  padding: 12px 24px;
  color: #000000;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  background-color: #d6d6d6;
  border: 0.2rem solid #d6d6d6;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #c2c2c2;
  border-color: #c2c2c2;
  color: #000000;
  outline: 0;
}

/* button primary
 * ------------------------------------------------- */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
  background: #0A66C8;
  border-color: #0A66C8;
  color: #ffffff;
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
  background: #063566;
  border-color: #063566;
}

/* button modifiers
 * ------------------------------------------------- */
.btn.full-width,
button.full-width {
  width: 100%;
  margin-right: 0;
}

.btn--medium,
button.btn--medium {
  height: 6.4rem !important;
  line-height: 6rem !important;
}

.btn--large,
button.btn--large {
  height: 6.8rem !important;
  line-height: 6.4rem !important;
}

.btn--stroke,
button.btn--stroke {
  background: transparent !important;
  border: 0.2rem solid #000000;
  color: #000000;
}

.btn--stroke:hover,
button.btn--stroke:hover {
  background: #000000 !important;
  border: 0.2rem solid #000000;
  color: #ffffff;
}

.btn--pill,
button.btn--pill {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
  border-radius: 1000px !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.btn.btn--white {
  background: #fff;
  color: #0d65c8;
  border: #fff;
}
/* ===================================================================
 * # header styles
 *
 * ------------------------------------------------------------------- */
.s-header {
  z-index: 600;
  width: 100%;
  height: 78px;
  background-color: transparent;
  position: absolute;
  top: 24px;
}

.s-header > .row {
  max-width: 1300px;
  height: 78px;
  position: relative;
  display: flex;
  align-items: center;
}

.s-header.sticky {
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
}


/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */

.header-logo a {
  display: flex;
  padding: 0;
  outline: 0;
  border: none;
}

.header-logo img {
  width: 160px;
}


/* -------------------------------------------------------------------
 * ## navigation
 * ------------------------------------------------------------------- */
.header-nav-wrap {
  font-weight: 600;
 flex: 1;
}

.header-nav-wrap .header-main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  list-style: none;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0;
}

.header-nav-wrap .header-main-nav li {
  display: inline-block;
  padding-left: 0;
  margin: 0px 20px;
}

.header-nav-wrap .header-main-nav li a {
  display: block;
  line-height: 78px;
  color: #333;
  outline: none;
  position: relative;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
  Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 18px;
  font-weight: 400;

}

.header-nav-wrap .header-main-nav li a:hover,
.header-nav-wrap .header-main-nav li a:focus {
  color: #0A66C8;
}

.header-nav-wrap .header-main-nav li.current a {
  color: #0A66C8;
}

.header-nav-wrap .header-cta {

}

.header-nav-wrap .header-cta__btn {
  margin: 0;
  display: block;
}


/* -------------------------------------------------------------------
 * ## menu trigger
 * ------------------------------------------------------------------- */
.header-menu-toggle {
  display: none;
  height: 42px;
  width: 42px;
  line-height: 42px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .2rem;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  right: 40px;
  top: 18px;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #ffffff;
}

.header-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: -1px;
  right: auto;
  bottom: auto;
  background-color: #0e1113;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: absolute;
  left: 9px;
  top: 50%;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  left: 0;
}

.header-menu-toggle span::before {
  top: -9px;
}

.header-menu-toggle span::after {
  bottom: -9px;
}

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: #0e1113;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}


/* -------------------------------------------------------------------
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1400px) {
  .header-nav-wrap .header-cta {
    right: 20px;
  }

}

@media only screen and (max-width:800px) {
  .s-header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
  }

  .s-header > .row {
    width: 100%;
    padding: 0 !important;
  }

  .header-logo {
    margin: 5px 0 0 24px;
    left: 44px;
  }

  .header-nav-wrap {
    display: none;
    height: auto;
    width: 100%;
    background-color: #ffffff;
    padding: 64px 44px 72px;
    text-align: left;
    position: absolute;
    top: 78px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
  }

  .header-nav-wrap .header-main-nav {
    display: block;
    font-size: 12px;
    padding-left: 0;
    margin: 0;
    height: auto;
  }

  .header-nav-wrap .header-main-nav li {
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
  }

  .header-nav-wrap .header-main-nav li a {
    padding: 18px 0;
    line-height: 18px;
  }

  .header-nav-wrap .header-cta {
    display: block;
    position: static;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    margin-top: 4.8rem;
  }

  .header-nav-wrap .header-cta__btn {
    display: block;
    width: fit-content;
    text-align: center;
    line-height: 1.8;
  }

  .header-menu-toggle {
    display: block;
  }


  .s-image-row {
    flex-direction: column;
  }

  .s-image-row.reversed{
    flex-direction: column-reverse;
  }
  .s-image-row-left,.s-image-row-right{
    width: 100%;
    text-align: left !important;
  }
  .s-image-row-left img, .s-image-row-right img{
    width: 100%;
  }
  .s-tabs {
    display: flex;
    flex-direction: column-reverse;
}
.s-ourclient-logo-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    overflow: auto;
}
}

@media only screen and (max-width:400px) {
  .header-logo {
    left: 40px;
  }

  .header-nav-wrap {
    padding: 40px 40px 64px;
  }

  .header-menu-toggle {
    right: 36px;
  }

}


/* -------------------------------------------------------------------
 * make sure the menu is visible on larger screens
 * ------------------------------------------------------------------- */
@media only screen and (min-width:801px) {
  .header-nav-wrap {
    display: flex !important;
    align-items: center;
  }

}



/* ===================================================================
 * # home
 *
 * ------------------------------------------------------------------- */
.s-home {
  display: table;
  width: 100%;
  min-height: 788px;
  background-color: transparent;
  position: relative;
}

.s-home::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
  background-color: #ffffff;
}

.s-home .shadow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  background: linear-gradient(180deg, rgba(10, 102, 200, 0.00) 0%, rgba(10, 26, 200, 0.05) 100%);
}

.no-js .s-home {
  background: #ffffff;
}
.home-content__animated-text{
  overflow: hidden;
  height: 75px;
}


.home-content__animated-text > li, .home-content__animated-text > ul { display: inline; }

.home-content__animated-text-textSlider {
  overflow: visible !important;
  text-align: left;
  display: inline;
  position: relative;
  height: 16px;
}

.home-content__animated-text-textSlider .adj {
  white-space: nowrap;
  list-style: none;
  position: absolute;
  line-height: 1.4;
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);

}

.adj.color0{
  background: -webkit-linear-gradient(0deg,#FEE411, #FEDB16, #FEC125, #FE983D, #FE5F5E, #EF526F, #9000DC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.adj.color1{
  background: #1877F2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.adj.color2{
  background: -webkit-linear-gradient(0deg,#4285F4 40px, #EA4335 41px, #EA4335 70px, #FBBC05 71px, #FBBC05 95px, #4285F4 96px,#4285F4 120px,#34A853 121px, #34A853 139px, #EA4335 0) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.home-content__animated-text-textSlider .slide-in {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home-content__animated-text-textSlider .slide-out {
  -webkit-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mobile-home-section {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 140px;
    padding: 0px 32px;
}

.show-in-mobile {
    display: none;
}

.hide-in-mobile {
    display: block;
}

/* -------------------------------------------------------------------
 * ## home content
 * ------------------------------------------------------------------- */
.home-content {
  z-index: 4;
  display: table-cell;
  vertical-align: bottom;
  padding-top: 24.8rem;
  width: 100%;
  position: relative;
}

.home-content h1 {
  font-family: DM_Serif_Display;
  font-size: 54px;
  color: #212529;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  line-height: 1.4;
}

.home-content h3 {
  color: #343A40;
  margin-top: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}

.home-content__main {
  position: relative;
  padding-bottom: 9.6rem;
  max-width: 1300px;
}

.home-content__left {
  width: calc(100% - (580px + 80px));
}

.home-content__right {
  z-index: 500;
  width: 580px;
  position: absolute;
  right: 0;
  top: 0;
}

.home-content__right img {
  vertical-align: bottom;
  margin-top: -5.2rem;
}


/* -------------------------------------------------------------------
 * ## home button section
 * ------------------------------------------------------------------- */
.home-content__btn-wrap {
  margin-top: 32px;
}

.home-content__btn-wrap .home-content__btn {
  display: block;
  width: fit-content;
  padding: 14px 52px;
}

.home-appstore-button-wrapper{
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.home-appstore-btn {
  width: 172px;
  margin-right: 16px;
}
.home-playstore-btn {
  width: 172px;
}


/* -------------------------------------------------------------------
 * ## home social
 * ------------------------------------------------------------------- */
.home-content__social {
  list-style: none;
  margin: 0;
  font-size: 10px;
  line-height: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: absolute;
  right: calc(40px + (5.6rem/2));
  top: 50%;
  -webkit-transform: rotate(-90deg) translate3d(50%, 0, 0);
  -ms-transform: rotate(-90deg) translate3d(50%, 0, 0);
  transform: rotate(-90deg) translate3d(50%, 0, 0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.home-content__social li {
  display: inline;
  margin-right: 6px;
}

.home-content__social li:last-child {
  margin-right: 0;
}

.home-content__social a {
  color: rgba(255, 255, 255, 0.3);
}

.home-content__social a:hover,
.home-content__social a:hover,
.home-content__social a:active {
  color: #ffffff;
}
.whatsapp-floating-button {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 99;
  max-width: 100px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-floating-button>a {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* animate .home-content__main
 * ------------------------------------------------------------------- */
html.ss-preload .home-content__main {
  opacity: 0;
}

html.ss-loaded .home-content__main {
  animation-duration: 2s;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

html.no-csstransitions .home-content__main {
  opacity: 1;
}


/* -------------------------------------------------------------------
 * ## home animations
 * ------------------------------------------------------------------- */

/* fade in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 150%, 0);
    -ms-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 150%, 0);
    -ms-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

/* fade out */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -150%, 0);
    -ms-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
  }

}

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -150%, 0);
    -ms-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
  }

}

/* -------------------------------------------------------------------
 * responsive:
 * home
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1700px) {
  .home-content h1 {
    font-size: 54px;
  }

  .home-content h3 {
    width: 100%;
  }

  .home-content__main {
    max-width: 1200px;
  }

}

@media only screen and (max-width:1600px) {
  .home-scroll__text {
    display: none;
  }

}

@media only screen and (max-width:1500px) {
  .home-content {
    padding-top: 192px;
  }

  .home-content h1 {
    font-size: 54px;
  }

  .home-content h3 {
    font-size: 2.2rem;
  }

  .home-content__main {
    max-width: 1140px;
  }

  .home-content__left {
    width: calc(100% - (570px + 60px));
  }

  .home-content__right {
    width: 570px;
  }

}

@media only screen and (max-width:1400px) {
  .home-content h1 {
    font-size: 48px;
  }

  .home-content h3 {
    font-size: 2.1rem;
    width: 90%;
  }

  .home-content__left {
    width: calc(100% - (550px + 80px));
  }

  .home-content__right {
    width: 550px;
    right: 40px;
  }
  .adj.color2{
    background: -webkit-linear-gradient(0deg,#4285F4 36px, #EA4335 37px, #EA4335 60px, #FBBC05 61px, #FBBC05 84px, #4285F4 85px,#4285F4 108px,#34A853 109px, #34A853 121px, #EA4335 0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

}

@media only screen and (max-width:1300px) {
  .home-content {
    padding-top: 20rem;
  }

  .home-content h1 {
    font-size: 42px;
  }

  .home-content h3 {
    font-size: 1.9rem;
  }

  .home-content__left {
    width: calc(100% - (530px + 90px));
  }

  .home-content__right {
    width: 530px;
    right: 50px;
  }
  .adj.color2{
    background: -webkit-linear-gradient(0deg,#4285F4 32px, #EA4335 33px, #EA4335 52px, #FBBC05 53px, #FBBC05 74px, #4285F4 75px,#4285F4 98px,#34A853 99px, #34A853 107px, #EA4335 0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  .home-content__animated-text{
    height: 64px;
  }


}

@media only screen and (max-width:989px) {
  .s-home {
    display: block;
    overflow: hidden;
    min-height: 740px;
  }

  .home-content {
    display: block;
  }

  .home-content br {
    display: none;
  }

  .home-content h1 {
    font-size: 54px;
    padding-top: 0;
  }

  .home-content h3 {
    font-size: 2.4rem;
    width: 100%;
  }

  .home-content__main {
    max-width: 600px;
    padding-bottom: 68rem;
    text-align: center;
  }

  .home-content__left {
    width: 100%;
  }

  .home-content__right {
    top: 100%;
    right: auto;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    margin-top: -64rem;
  }

  .home-content__right img {
    margin-top: 0;
  }
  .home-content__btn-wrap .home-content__btn{
    margin: 0 auto;
  }
  .home-appstore-button-wrapper{
    justify-content: center;
  }
  .flexed-row{
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
  }
  .adkrity-sharktank-image {
    margin-top: 32px;
}

.adkrity-bottom-cta .s-section-title.left {
    text-align: center;
}
.home-content__animated-text-textSlider .adj{
  width: 240px;
  text-align: center;
}
.adj.color2{
  background: -webkit-linear-gradient(0deg,#4285F4 40px, #4285F4 0) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.home-content__animated-text{
  height: 75px;
}
}

@media only screen and (max-width:900px) {
  .home-content {
    padding-top: 16.8rem;
  }

  .home-content h1 {
    font-size: 54px;
  }

  .home-content h3 {
    font-size: 2.2rem;
  }

  .home-content__main {
    max-width: 500px;
  }

  .home-content__social {
    right: calc(30px + (5.6rem/2));
  }

  .home-scroll {
    right: 3rem;
  }

}

@media only screen and (max-width:800px) {
  .home-content h1 {
    font-size: 54px;
  }

  .home-content h3 {
    font-size: 2.1rem;
  }

  .home-content__right {
    width: 480px;
  }
  .show-in-mobile {
    display: block;
}

.hide-in-mobile {
    display: none;
}

}

@media only screen and (max-width:700px) {
  .home-content h1 {
    font-size: 42px;
  }

  .home-content h3 {
    font-size: 2rem;
  }

  .home-content__social,
  .home-scroll {
    display: none;
  }

}

@media only screen and (max-width:600px) {
  .home-content h1 {
    font-size: 42px;
  }

  .home-content h3 {
    font-size: 1.8rem;
  }

  .home-content__main {
    padding-bottom: 40rem;
    padding-left: 35px;
    padding-right: 35px;
  }

  .home-content__right {
    width: 400px;
    margin-top: -36rem;
  }

  .home-content__btn-wrap {
    margin-top: 4rem;
  }
  .home-content__animated-text {
    overflow: hidden;
    height: 58px;
}
.home-content__btn-wrap .home-content__btn {
  padding: 16px 16px;
  font-size: 16px;
}
.s-card-v3 {
  padding: 16px !important;
}

.s-tabs-nav {
  padding-right: 0px !important;
}

.s-card-v3>.s-card-title {
  margin-left: 24px !important;
  line-height: 28px;
}

.s-card-v3>.s-card-description {
  margin-left: 24px !important;
  line-height: 24px;

}
.s-card-v3 .s-card-count {
    font-size: 24px !important;
    top: 16px;
    left: 16px;
}
.testimonial-card-block {
    margin: 0px;
    padding: 24px 24px;
}

.testimonial-card-content {
    font-size: 14px;
    line-height: 24px;
    margin-top: 16px;
}

.footer-row {
    text-align: center;
}

.footer-col1 {
    padding-right: 0px;
}

.footer-col1-description {
    max-width: 100%;
}

.footer-subscription-wrapper {
    width: 100%;
    justify-content: center;
}



.footer-logo>img {
    max-width: 100px;
    margin-bottom: 0px;
}

.footer-row>div {
    margin-bottom: 16px;
}

.footer-title {
    margin-bottom: 0px;
}
.s-card-wrapper {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.flexed-row {
    padding-bottom: 0px !important;
}
.s-section.large {
    padding: 0px 0px !important;
}

.s-section {
    padding: 32px 0px !important;
}

.s-section-title > .btn {
    margin-top: 16px;
    display: inline-block;
}
.s-ourclient-logo {
  flex: none;
}
}

@media only screen and (max-width:500px) {
  .home-content {
    padding-top: 10rem;
  }

  .home-content h1 {
    font-size: 32px;
  }

  .home-content__main {
    padding-bottom: 32rem;
  }

  .home-content__right {
    width: 360px;
    margin-top: -28rem;
  }

}

@media only screen and (max-width:400px) {
  .home-content {
    padding-top: 10.2rem;
  }

  .home-content h1 {
    font-size: 32px;
  }

  .home-content__main {
    padding-bottom: 28rem;
    padding-left: 25px;
    padding-right: 25px;
  }

  .home-content__right {
    width: 300px;
    margin-top: -24rem;
  }

  .home-content__btn-wrap .home-content__btn {
    width: 100%;
  }

}

@media only screen and (max-width:350px) {
  .home-content__right {
    width: 280px;
  }

}

.s-section{
  padding: 60px 0px;
  background: #fff;
  width: 100%;
  color: #212529;
}
.s-section.padding-none{
  padding: 0px !important;
}
.s-section.bg-transparent{
  background: transparent;
}
.s-section.large{
  padding: 50px 0px;
}
.s-section.bg-irish{
  background-color: #5D5FEF;
  color: #fff;
}
.s-section.bg-blue{
  color: #fff;
  background-image: url('../images/bg-looper-blue.png');
  background-size: cover;
}
.s-section.bg-looper{
  background-image: url('../images/Looper-BG.png');
  background-size: cover;
}
.s-section-title
{
  font-family: DM_Serif_Display;
  font-size: 48px;
  line-height: 1.4;
  width: 100%;
  margin-bottom: 64px;
  font-weight: 700;
}
.s-section-title>span {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  display: block;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
  Helvetica, Arial, "Lucida Grande", sans-serif;
  padding: 0px 4px;
  max-width: 900px;
}
.s-section-title.center{
  text-align: center;
}
.s-section-title.left{
  text-align: left;
}
.s-ourclient-logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s-ourclient-logo>img {
  max-height: 60px;
  width: auto;
}

.s-ourclient-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px;
  min-width: 72px;
}

.s-card-wrapper {
  display: flex;
  justify-content: center;
  margin-left: -32px;
  margin-right: -32px;
  flex-wrap: wrap;
}

.s-card-v1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 56px 32px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid #CED4DA;
  background: #FFF;
  max-width: 360px;
  margin: 0px 32px;
  color: #212529;
  text-align: center;
  min-width: 280px;
  margin-bottom: 32px;
}

.s-card-icon {
  max-width: 120px;
  margin-bottom: 24px;
}

.s-card-title {
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 16px;
}

.s-card-description {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 16px;
}

.s-card-action {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  color: #0A66C8;
}
.s-image-row {
  display: flex;
  align-items: center;
}

.s-image-row-left {
  flex: 1;
  text-align: right;
}
.s-image-row-left img,.s-image-row-right img{
  margin-bottom: -8px;
}
.s-image-row-right {
  flex: 1;
  text-align: left;
}
.s-card-v1.type-2 {
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: center;
  justify-content: flex-start;
}

.s-card-v1.type-2>.s-card-icon {
  max-width: 60px;
  margin-bottom: 0px;
  margin-right: 24px;
}

.s-card-v1.type-2 .s-card-count {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.s-card-v1.type-2 .s-card-description {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #343A40;
  margin-bottom: 0px;
}
.s-card-v2 {
  padding: 40px;
}

.s-card-v2 .s-card-title {
  text-align: inherit;
  font-size: 36px;
}

.s-card-v2 .s-card-description {
  text-align: inherit;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 8px;
}

.s-card-v2 .s-card-action {
  text-align: inherit;
  font-size: 18px;
  line-height: 32px;
}

.s-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.s-tabs-nav {
  flex: 2;
  padding-right: 32px;
}

div#tabs-content {
  flex: 1;
  min-width: 40% !important;
}

.s-card-v3 {
  background: #fff;
  color: #212529;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  flex: 1 0 0;
  text-align: left;
  border-radius: 16px;
  background: #FFF;
  margin-bottom: 24px;
  border-left: 6px solid #fff;
  position: relative;
}
.active .s-card-v3 {
  border-left: 6px solid #212529;
}
.s-card-v3 .s-card-count {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: absolute;
}

.s-card-v3>.s-card-title {
  margin-left: 60px;
  text-align: left;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 600;
}

.s-card-v3>.s-card-description {
  text-align: left;
  margin-left: 60px;
  margin-bottom: 0px;
}

.testimonial-card-block {
  display: flex;
  padding: 42px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 540px;
  margin: 0px 32px;
  border-radius: 16px;
background: rgba(10, 102, 200, 0.04);
}

.testimonial-card-img {
  width: 50px;
  margin-right: 16px;
}
.testimonial-card-header {
  display: flex;
  align-items: center;
}

.testimonial-card-name {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}

.testimonial-card-designation {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #6c757d;
}

.testimonial-card-content {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-top: 24px;
}
.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 32px;
}
ul.faq .q {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  border-top: 1px solid #DEE2E6;
  padding-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}
ul.faq li{

  padding-right: 32px;
}
ul.faq .q:first-child {
  border-top: 0px solid #DEE2E6;
}
.faq li.a {
  color: #343A40;
  display: none;
  margin-bottom: 16px;
  margin-top: -12px;
  font-size: 16px;
  position: relative;
}
ul.faq .q img.arrow {
  position: absolute;
  max-width: 16px;
  top: 30px;
  right: 4px;
  transform: rotate(180deg);
}
ul.faq .q.open img.arrow {
  transform: rotate(0deg);
}
.flexed-row {
  display: flex;
}

.adkrity-bottom-cta {
  padding: 60px;
  color: #fff;
}

.adkrity-sharktank-image {
  flex: none;
  max-width: 420px;
  background-image: url('../images/adkrity-sharktank.jpg');
  background-size: cover;
}
.adkrity-sharktank-image > img{
  visibility: hidden;
}
.footer-row {
  display: flex;
  justify-content: space-between;
}

.footer-col1 {
  flex: 2;
  padding-right: 20px;
}

.footer-col2 {
  flex: 1;
}

.footer-col3 {
  flex: 1;
}

.footer-logo>img {
  max-width: 140px;
  margin-bottom: 12px;
}

.footer-col1-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 8px;
}

.footer-col1-description {
  color: #495057;
  font-size: 14px;
  max-width: 320px;
}

.footer-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 16px;
}
ul.footer-links>li>a {
  color: #495057;
  font-size: 14px;
  max-width: 320px;
  line-height: 32px;
}
.footer-subscription-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.footer-subscription-wrapper>input.input {
  border-radius: 8px 0px 0px 8px;
  border: 1px solid #CED4DA;
  border-right: 0px;
  padding: 16px 16px;
}

.footer-subscription-wrapper>button {
  background: #0d65c8;
  border-color: #0d65c8;
  color: #fff;
  font-weight: 500;
  border-radius: 0px 8px 8px 0px;
}
.footer hr {
  background: #DEE2E6;
  height: 1px;
  width: 100%;
  border: 0px;
  margin: 24px 0px;
}
section.s-section.footer {
    background: #0a66c81a;
}
@media screen and (max-width: 767px) {

  .footer-row {
    flex-direction: column;
}

.footer-row>div {
    margin-bottom: 32px;
}
}
@media screen and (max-width: 576px) {
    .adkrity-bottom-cta{
        padding: 24px !important;
    }
    .row {
    width: auto;
    padding-left: 16px !imporatant;
    padding-right: 16px !imporatant;}
.s-section-title>span {
    font-size: 16px;
    line-height: 24px;
}
  section.s-section.footer>.row {
    padding-left: 12px;
    padding-right: 12px;
  }
  .s-card-v1.type-2 {
    padding: 16px 24px;
}
.s-card-icon {
    max-width: 80px;
}
.s-section-title {
    font-size: 28px;
    margin-bottom: 24px;
    font-family: DM_Serif_Display;
    padding-top: 20px;
    padding-bottom: 24px;
    margin-bottom: 0px;
}
.s-card-title {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 500;
}

.s-card-action {
    font-size: 16px;
}
.s-card-v1 {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
}


.s-card-v2 .s-card-title {
    font-size: 24px;
    margin-bottom: 4px;
}

.s-card-v2 .s-card-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
}

.s-card-v2 .s-card-action {
    font-size: 16px;
}

.s-card-v2 {
    text-align: center;
    padding: 16px;
    padding-bottom: 32px;
}
.footer-col1-description {
  max-width: 100%;
}
}

.adkrity-copyrite-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adkrity-copyrite {
  color: #212529;
  font-size: 14px;
  line-height: 24px;
}

.adkrity-socialmedia {
  display: flex;
  align-items: center;
}

.adkrity-socialmedia>a {
  padding: 4px 8px;
}
.adkrity-socialmedia>a>img {
  width: 18px;
}
.book-demo-button {
  bottom: 16px;
  right: 16px;
  z-index: 999;
  position: fixed;
  border-radius: 36px;
}
.book-demo-button>a {
    color: #fff;
}

.jquery-modal.blocker.current {
    z-index: 1000;
}
.login_form input {
  border-radius: 8px;
  border: 1px solid #CED4DA;
  padding: 8px 10px;
}
.login_form p {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.login_form {
  display: block;
}

.btn.btn--primary.demo-submit {
    width: fit-content;
    margin-left: auto;
    padding: 6px 16px;
    margin-top: 24px;
}

.login_form>h3 {
    margin-bottom: 16px;
    color: #0a66c8;
}
.login_form>h3>span {
    color: #545454;
    font-weight: 500;
    font-size: 14px;
    display: block;
    max-width: 90%;
    line-height: 22px;
}
