/*** The new CSS Reset - version 1.4.5 (last updated 13.1.2022) ***/

/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
*{
	scroll-behavior: smooth;
}
/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]){
  display:none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]){
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

input[type="checkbox"],
input[type="radio"] {
  all: revert;
}

 input,
 textarea,
 select {
  all: revert;
 }
 button,
textarea,
input,
select{
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  box-shadow: none;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
  border: 0;
  padding: 0;
}
html,
p,
i,
b,
span,
a,
textarea,
select,
input{
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  line-height: 1.3;
  font-family: 'DM Sans', sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
h1,h2,h3,h4,h5,h6{
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
}
h2{
	font-size: 2.2rem;
	line-height: 1.2;
}
h3{
  font-size: 1.9rem;
  margin-bottom: 1.8rem;
}
h4 {
	font-size: 1.6rem;
}
p, i{
  color: #3e3e3e;
  font-weight: 400;
}
p{
  font-size: 1.2rem;
  line-height: 1.2;
  margin: .6rem 0;
  color: #151619;
}
i {
	position: relative;
	color: #54bd89;
	font-weight: 600;
	font-style: italic;
}
.caWrapper{
	width: 90%;
	margin: auto;
	max-width: 30rem;
}
mark {
  background-color: #46AC78;
  color: #FFF;
	padding-left: 5px;
	padding-right: 5px;
}
body > section{
	width: 100%;
	overflow: hidden;
}
/*Header
=======================*/
header{
	position: sticky;
	top: 0;
	background-color: #FFF;
	z-index: 10;
}
header .caMainLogo {
    width: 160px;
    display: inline-block;
    margin: 14px 0;
}
header nav ul li{
	display: none;
}
header nav ul li a {
  font-family: 'Ubuntu', sans-serif;
  display: block;
  border-radius: 100rem;
  text-align: center;
  color: #000;
  padding: 6px 15px;
  font-size: .9rem;
	transition: .3s ease all;
}
header nav ul li a:hover{
	color: #46ab78;;
}
header nav ul li:last-child{
	display: block;
}
header nav ul li:last-child a{
	font-weight: 600;
	border: 2px solid #46ab78;
	color: #46ab78;
}
header nav ul li:last-child a:hover{
	background-color: #46ab78;
	color: #FFF;
}
header .caWrapper > div{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/*Slider
=======================*/
.caMainSlider {
	padding: 80px 0;
  background-color: rgb(245 245 245 / 30%);
}
.caMainSlider small{
  color: #53B885;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
  display: block;
}
.caMainSlider h2{
	color: #FFF;
}
.caMainSlider p {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 15px 0 30px 0;
	opacity: 1;
	color: #fff;
}
.caMainSlider a{
  background-color: #46ab78;
  display: inline-block;
  border-radius: 100rem;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  transition: .3s ease all;
}
.caMainSlider a:hover{
	padding-right: 70px;
}
.caMainSlider a:hover::before{
	transform: translate(0, 0);
	border-radius: 100rem;
}
.caMainSlider a:hover::after{
	opacity: 1;
	transform: translate(-26px, 0);
}
.caMainSlider a span{
	font-size: 1.1rem;
  color: #FFF;
  font-family: 'Ubuntu', sans-serif;
  position: relative;
  z-index: 1;
}
.caMainSlider a::before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000;
	left: 0;
	top: 0;
	z-index: 0;
	transform: translate(100%, 0);
	transition: .3s ease all;
}
.caMainSlider a::after{
	content: "";
	display: block;
	position: absolute;
	width: 40px;
	height: 100%;
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center center;
	background-image: url(../img/mail.svg);
	right: 0;
	top: 0;
	z-index: 0;
	opacity: 0;
	transform: translate(0, 0);
	transition: .3s .1s ease all;
}
.caMainSlider .caImageContainer .caAnimHolder{
	position: relative;
  max-width: 38rem;
  margin: auto;
	opacity: 0;
}
.caMainSlider .caImageContainer .caAnimHolder::before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	border-radius: 100rem;
	opacity: .03;
}
.caMainSlider .caWrapper .caRow{
	position: relative;
	z-index: 5;
}
.caMainSlider .caImageContainer{
	width: 85%;
	margin: auto;
	position: relative;
}
.caMainSlider .caImageContainer .caPhone{
	position: absolute;
	left: 0;
	top: 0;
	animation: float 4s .3s ease-in-out infinite alternate;
	
}
.caMainSlider .caImageContainer .caAnimHolder > img:last-of-type{
	animation: float 4s ease-in-out infinite alternate;
}
.caMainSlider .caImageContainer .caAnimHolder .caLocation,
.caMainSlider .caImageContainer .caAnimHolder .caLocation::before,
.caMainSlider .caImageContainer .caAnimHolder .caLocation::after{
	width: 60px;
	height: 60px;
}
.caMainSlider .caImageContainer .caAnimHolder .caLocation img {
    width: 30px;
}
.caMainSlider .caContent{
	padding: 15px;
}
video {
	position: absolute;
	left: 50%;
	bottom: 0;
	min-width: 100%;
	height: 100%;
	transform: translateX(-50%);
}
.caMainSlider::before{
	content: "";
	display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
	z-index: 1;
	opacity: .9;
	background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}
/*Blast
=======================*/
.caBlast{
  padding: 80px 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../img/lines.png);
}
.caBlast .caIconContainer{
	width: 150px;
	margin: auto;
	position: relative;
}
.caBlast .caIconContainer::before{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	width: 70%;
	height: 70%;
	background-color: #f5f5f5;
	border-radius: 100rem;
}
.caBlast h5{
	font-size: 1.4rem;
	text-align: center;
	line-height: 1.3;
	width: 90%;
	margin: auto;
	max-width: 30rem;
}
.caBlast .caIconContainer img{
	transform: translatey(0px);
	animation: float 7s ease-in-out infinite;
	z-index: 4;
	position: relative;
}
.caBlast .caIconContainer img:last-child{
	animation: float2 6s ease-in-out infinite;
	width: 15px;
  left: 9%;
  bottom: 25%;
  z-index: 2;
}
.caBlast .caIconContainer img:nth-child(2){
	animation: float 4s ease-in-out infinite alternate;
	width: 25px;
  left: 0;
  right: 0;
  margin: auto;
  top: 15%;
  z-index: 5;
}
.caBlast .caIconContainer img:nth-child(3){
	animation: float2 5s ease-in-out infinite alternate;
	width: 10px;
  right: 12%;
  margin: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.caBlast .caIconContainer img:not(.caImage){
	position: absolute;
}
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
@keyframes float2 {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(10px);
	}
	100% {
		transform: translatey(0px);
	}
}

/*MainGoal
=======================*/
.caMainGoal {
    background-color: rgb(245 245 245 / 40%);
    padding: 80px 0;
		margin: 8rem 0;
}
.caMainGoal small{
  color: #53B885;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.caMainGoal img{
	width: 110px;
	margin-left: -5px;
}
/*Advantages
=======================*/
.caAdvantage{
	padding: 80px 0;
}
.caAdvantage h3{
	margin-bottom: 4rem;
	text-align: center;
}
.caAdvantage mark{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	color: #53B885;
}
.caAdvantage .caIconContainer{
	width: 90px;
	position: relative;
	margin: auto;
	margin-bottom: 10px;
}
.caAdvantage .caGrid > div{
	margin: auto;
	margin-bottom: 50px;
	max-width: 25rem;
}
.caAdvantage .caIconContainer img{
	position: relative;
	z-index: 5;
} 
.caAdvantage .caIconContainer::before{
    content: "";
    width: 85%;
    height: 85%;
    border-radius: 100rem;
    background-color: #f6f6f6;
    position: absolute;
    left: 20%;
    bottom: 20%;
    z-index: 1;
}
.caAdvantage .caIconContainer::after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 100rem;
    border: 1px dashed #e5e5e5;
    position: absolute;
    bottom: 20%;
    left: 20%;
    animation: rotate-animation 12s infinite linear;
    z-index: 1;
}
@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.caAdvantage h6{
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}
.caAdvantage p{
	text-align: center;
}
/*Benefits
=======================*/
.caBenefits .caImageContainer{
	position: relative;
}
.caLocation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: rgba(255,255,255,0.9);
  color: white;
  text-align: center;
  line-height: 100px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caLocation img {
  width: 46px;
}
.caLocation::after, .caLocation::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: #ff5f7a;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: grow 1.5s ease-in-out infinite;
          animation: grow 1.5s ease-in-out infinite;
}
.caLocation::after {
  background: rgba(255, 255, 255, 0.4);
}
.caLocation::after::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: #5f84ff;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: grow 1.5s ease-in-out infinite;
          animation: grow 1.5s ease-in-out infinite;
}
.caLocation::before {
  background: rgba(255, 255, 255, 0.6);
  -webkit-animation-delay: -.75s;
          animation-delay: -.75s;
}

@-webkit-keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

@keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
/*WBenefits
=======================*/
.caBenefits{
	padding: 40px 0;
}
.caBenefits h3{
	margin-top: 20px;
	margin-bottom: 25px;
}
.caBenefits mark {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  color: #53B885;
}
.caBenefits i{
	color: #3e3e3e;
  letter-spacing: -.5px;
}
.caBenefits li{
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
	font-size: 1.2rem;
}
.caBenefits li::before{
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -1px;
  background-repeat: no-repeat;
  background-size: contain;
	background-image: url(../img/arrow.png);
}


/* marquee div container */
.caSectionMarquee{
	padding: 60px 0;
}
.marquee,
.marque {
	padding: 15px 0;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background-color: #f5f5f5;
  display: flex;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}
.marquee span,
.marque span{
  color: #58B182;
  font-weight: 600;
}
.marquee i,
.marque i{
	width: 80px;
	height: 10px;
	display: inline-block;
	position: relative;
}
.marquee i::after,
.marque i::after{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -7px;
	margin: auto;
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/icon.svg);
}
.marquee h1,
.marque h1{
  font-size: 1rem;
  white-space: nowrap;
  font-weight: 500;
  font-family: 'DM Sans';
  padding: 0 20px;
}


/*Why trackpoint
=======================*/
.caWhyTrackpoint h2{
	margin-bottom: 20px;
}
.caWhyTrackpoint mark{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	color: #53B885;
}
.caWhyTrackpoint .caBlock {
  display: flex;
  gap: 10px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  align-items: center;
}
.caWhyTrackpoint .caBlock img{
  width: 60px;
  object-fit: contain;
}
.caWhyTrackpoint .caBlock p{
	font-size: 1.1rem;
}
.caWhyTrackpoint ul{
	padding-left: 20px;
}
.caWhyTrackpoint ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.2rem;
}
.caWhyTrackpoint ul li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 2px;
  border-radius: 100rem;
  border: 1px solid #eee;
}
.caWhyTrackpoint ul li::after {
	content: "";
  display: block;
  position: absolute;
  left: 7px;
  top: 9px;
  width: 6px;
  height: 6px;
  margin: auto;
  background-color: #46AC78;
  border-radius: 100px;
}
.caWhyTrackpoint .caImageContainer{
	padding: 30px 0;
	position: relative;
}
.caWhyTrackpoint .caImageContainer img{
	position: relative;
	z-index: 5;
}
.caWhyTrackpoint .caImageContainer::before {
  content: "";
  display: block;
  width: 90%;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100rem;
  border: 2px dashed #000;
  opacity: .05;
  padding-bottom: 90%;
  right: 0;
  z-index: 0;
  animation: rotate-animation 20s infinite linear;
}
.caWhyTrackpoint .caImageContainer::after {
    content: "";
    display: block;
    width: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    border-bottom: 1px dashed #000;
    opacity: .05;
    z-index: 0;
    animation: rotate-animation 20s infinite linear reverse;
    right: 0;
    bottom: 0;
}

/*Why trackpoint
=======================*/
.caSpecs{
	padding-top: 0;
}
.caSpecs h4{
	margin-bottom: 20px;
}
.caSpecs mark{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	color: #53B885;
}
.caSpecs .caSplitColumns{
	padding: 30px 0;
}
.caSpecs .caSplitColumns .caImageContainer{
	margin-bottom: 20px;
}
.caSpecs li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}
.caSpecs li::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/check.svg);
}

/*Integrations
=======================*/
.caIntegrations{
    padding: 70px 0;
}
.caIntegrations h3{
	text-align: center;
}
.caIntegrations mark{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	color: #53B885;
}
.caIntegrations p{    
  text-align: center;
  font-weight: 600;
  max-width: 40rem;
  margin: auto;
}

/*Process
=======================*/
.caProcess{
	padding: 70px 0;
}
.caProcess h3{
	text-align: center;
}
.caProcess mark{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	color: #53B885;
}
.caProcess .caIconContainer{
	position: relative;
	width: 80px;
}
.caProcess .caIconContainer img{
	position: relative;
	z-index: 5;
}
.caProcess .caIconContainer::before {
  content: "";
  display: block;
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 25px;
  background-color: #f1f1f1;
  z-index: 0;
  animation: rotate-animation 12s infinite linear;
  margin: auto;
  left: 0;
  right: 0;
  top: -5px;
}
.caProcess .caIconContainer::after {
	content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 18px;
  border: 1px solid #000;
  z-index: 0;
  animation: rotate-animation 15s infinite linear reverse;
  margin: auto;
  left: 0;
  right: 0;
  top: -5px;
  opacity: .1;
}
.caProcess .caImageContainer {
	max-width: 30rem;
	margin: auto;
  position: relative;
  margin-top: 20px;
  margin-bottom: 60px;
}
.caProcess .caImageContainer img{
	position: relative;
	z-index: 5;
}
.caProcess .caImageContainer div{
	position: relative;
}
.caProcess .caImageContainer > div .caLocation {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  transform: none;
  background: rgb(216 1 1 / 80%);
}
.caProcess .caImageContainer > div .caLocation::before {
    background: rgb(186 39 39 / 42%);
}
.caProcess .caImageContainer > div .caLocation::after{
    background: rgb(199 0 0 / 40%);
}
.caProcess .caImageContainer > div .caLocation img{
	filter: brightness(0);
	opacity: .3;
	width: 30px;
}
.caProcess .caImageContainer > div .caLocation::before,
.caProcess .caImageContainer > div .caLocation::after,
.caProcess .caImageContainer > div .caLocation{
	width: 70px;
	height: 70px;
}
.caProcess .caImageContainer > div::before{
	content: "";
  display: block;
  width: 90%;
  height: 90%;
  border-radius: 100rem;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 15%;
  margin: auto;
  background-color: #58B182;
  z-index: 0;
}
.caProcess ul{
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  max-width: 40rem;
}
.caProcess ul li{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
	float: left;
	width: 50%;
} 
.caProcess ul li span{
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  display: block;
  font-size: 1.2rem;
  display: block;
  text-align: center;
}
.caProcess .caBlock{
	margin-top: 60px;
}
/*Highlights
=======================*/
.caHighLights{
	padding: 80px 0;
}
.caHighLights h3{
	text-align: center;
}
.caHighLights mark{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	color: #53B885;
}
.caHighLights ul{
    max-width: 25rem;
    margin: auto;
}
.caHighLights ul li {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    position: relative;
    background-color: #FFF;
    border: 1px solid #f0f0f0;
}
.caHighLights ul li:last-child{
	background-color: #58B182;
	height: 145px;
}
.caHighLights ul li:last-child::before{
	content: "";
	position: absolute;
	width: 165px;
	height: 30px;
	left: 25px;
	bottom: 25px;
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/trackpointWhite.svg);
}
.caHighLights ul li:last-child::after {
	content: "";
  display: block;
  position: absolute;
  right: -45px;
  top: -20px;
  width: 190px;
  height: 190px;
  background-image: url(../img/iconWhite.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: .1;
}
.caHighLights ul li div{
	text-align: center;
}
.caHighLights ul li img{
	width: 40px;
	margin: auto;
  margin-bottom: 10px;
}
.caHighLights ul li b{
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.caHighLights mark{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	color: #53B885;
}


/*Clients
=======================*/
.caOurCLients {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.caOurCLients h3{
	text-align: center;
}
.caOurCLients p{
	  text-align: center;
    font-weight: 600;
    max-width: 32rem;
    margin: auto;
}
.caOurCLients mark{
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
	color: #53B885;
}
.caOurCLients .caImageContainer{
	width: 100px;
	position: absolute;
	z-index: 5;
}
.caOurCLients .caIconContainer{
	width: 40px;
	position: absolute;
	z-index: 5;
}

.caOurCLients .caLine {
    position: relative;
    width: 100%;
    height: 210px;
    margin-top: 50px;
}
.caOurCLients .caManager{
    left: calc(50% - 50px);
    top: 100px;
    width: 85px !important;
    animation: floating 7s ease-in-out infinite;
}
.caOurCLients .caMarket{
	right: 0;
	top: 0;
	width: 90px !important;
	animation: floating2 4s ease-in-out infinite alternate;
}
.caOurCLients .caTech{
	display: none;
}
.caDelivery{
	animation: floating 5s 2s ease-in-out infinite;
}
.caOurCLients .caSatisfaction{
	left: 35%;
	animation: floating2 4s ease-in-out infinite alternate;
}
.caOurCLients .caApproval {
  right: 20%;
  top: 100px;
  animation: floating 5s ease-in-out infinite alternate;
}
.caOurCLients .caFast{
    left: calc(50% - 60px);
    top: 150px;
    animation: floating2 4s ease-in-out infinite alternate;
}
@keyframes floating {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(15%);
	}
	100% {
		transform: translatey(0px);
	}
}
@keyframes floating2 {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(10%);
	}
	100% {
		transform: translatey(0px);
	}
}
.caLinesBg {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 350px;
  opacity: .06;
  z-index: 0;
}
.caOurCLients svg {
  height: 350px;
  width: 100vw;
  transform: rotate(-35deg);
}
.caOurCLients path {
  fill: none;
  stroke: #000;
  stroke-width: 0.5px;
  vector-effect: non-scaling-stroke;
}


/*CallTo
=======================*/
.caCallTo{
	margin: 50px 0;
}
.caCallTo .caContainer{
	background: linear-gradient(0deg, rgba(245,245,245,0) 0%, rgba(245,245,245,0.5) 100%);
	border-radius: 20px;
	border: 1px solid #e6e6e6;
  padding: 25px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0,0,0,0.1)
  backdrop-filter: blur(1px);
  position: relative;
}
.caCallTo .caContainer::before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: .3;
	background-image: url(../img/noise.png);
	z-index: 0;
}   
.caCallTo .caLogo{
	width: 180px;
}
.caCallTo p{
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    margin: 10px 0 30px 0;
}
.caCallTo ul li{
	display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}
.caCallTo ul li:last-child{
	margin-bottom: 0;
}
.caCallTo ul li img{
	width: 20px;
}
.caCallTo ul li i{
  width: calc(100% - 30px);
  color: #000;
  font-size: .9rem;
}
.caCallTo .caImageContainer{
	margin-top: 50px;
	position: relative;
	z-index: 5;
}
.caCallTo .caImageContainer img{
	margin-left: 30px;
	margin-bottom: -50px;
}
/*Footer
=======================*/
footer{
	position: relative;
	z-index: 5;
	background-color: #fafafa;
	padding: 40px 0;
}
footer .caDescription img{
	width: 130px;
}
footer .caDescription p{
	font-size: 1.1rem;
	max-width: 30rem;
}
footer .caDescription span{
	color: #53B885;
	font-weight: 600;
}
footer a{
	display: block;
	font-size: .9rem;
	transition: .3s ease all;
}
footer a:hover{
	color: #46ab78;
}
footer .caColumnsGroup > div{
	margin-top: 15px;
}
footer .caColumnsGroup ul li {
	margin-bottom: 7px;
	display: inline-block;
	margin-right: 10px;
}
footer .caColumnsGroup ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
}
footer .caColumnsGroup ol li img{
    width: 15px;
}
footer .caColumnsGroup ol li a{
  width: calc(100% - 20px);
  color: #000;
  font-size: .9rem;
  line-height: 1.2;
	transition: .3s ease all;
}
footer .caColumnsGroup ol li a:hover{
	color: #46ab78;
}
footer h6{
    margin-bottom: 10px;
    font-size: 1.1rem;
}
footer small{
  display: block;
  width: 90%;
  margin: auto;
  max-width: 30rem;
  border-top: 1px solid #dddd;
  margin-top: 20px;
  padding-top: 10px;
  font-weight: 600;
  font-size: 12px;
}
footer small span{
	font-weight: 600;
}

/*dec*/
#particles-js,
.caWaveContainer {
	display: none;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  height: 100%;
  width: 90%;
  margin: auto;
  border-left: 1px dashed black;
  border-right: 1px dashed black;
  left: 0;
  right: 0;
  top: 0;
  max-width: 30rem;
  opacity: .05;
  z-index: 0;
}
body::after {
  content: "";
  display: block;
  position: fixed;
  height: 100%;
  width: 1px;
  margin: auto;
  border-left: 1px solid black;
  left: 0;
  right: 0;
  top: 0;
  opacity: .05;
  z-index: 0;
}
section{
	position: relative;
	z-index: 5;
}


.caContact {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.caContact .caWrapper{
  position: relative;
  z-index: 10;
}
.caContact .caImgContainer {
    position: absolute;
    width: 30rem;
    right: -15rem;
    bottom: 0;
}
.caContact .caTitle {
    position: relative;
    margin-bottom: 1.5rem;
}
.caContact h4 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0;
    padding-top: 2.3rem;
}
.caContact p{
    margin-bottom: 2rem;
    width: 80%;
}
.caContact .caElems {
    margin-bottom: 3rem;
}
button,
textarea,
input{
		box-sizing: border-box;
		border: none;
		margin: 0;
		padding: 0;
		width: auto;
		box-shadow: none;
		/* inherit font & color from ancestor */
		color: inherit;
		font: inherit;
		/* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
		line-height: normal;
		/* Corrects font smoothing for webkit */
		-webkit-font-smoothing: inherit;
		-moz-osx-font-smoothing: inherit;
		/* Corrects inability to style clickable `input` types in iOS */
		-webkit-appearance: none;
		/* Remove excess padding and border in Firefox 4+ */
		border: 0;
		padding: 0;
}
.caContactForm label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #565656;
}
.caContactForm label span,
.caContactForm small span {
    color: #7a9c0c;
    font-weight: 600;
}
.caContactForm li{
	display: block;
	margin-bottom: .7rem;
}
.caContactForm li:last-child{
	margin-bottom: 0;
}
.caContactForm input, .caContactForm textarea {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid #efefef;
    box-shadow: 5px 0 10px rgb(0 0 0 / 4%);
}
.caContactForm textarea {
    min-height: 5rem;
}
.caContactForm small {
    font-size: .7rem;
    margin: 0.5rem 0;
    display: inline-block;
    color: #3e3c3c;
    padding: 0.1rem 0.5rem 0.5rem 0;
}
.caContactForm .caSubmit{
    display: block;
    clear: both;
    cursor: pointer;
}
.caSubmit{
	color: #FFF;
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border-radius: 100rem;
	font-size: 1rem;
	position: relative;
	overflow: hidden;
	transition: .3s ease-in-out all;
}
.caSubmit::before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #45ab78;
	top: 0;
	left: 0;
	border-radius: 8px; 
	transition: .3s ease-in-out all;
}
.caSubmit::after {
content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 50%;
	background-color: #FFF;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 3.8rem;
	opacity: .4;
	transition: .3s 0s ease all;
}
.caSubmit span {
	position: relative;
	display: block;
	padding-right: 3rem;
	font-family: 'Ubuntu', sans-serif;
	transition: .3s ease-in-out all;
}
.caSubmit .caIcon {
	margin: auto;
	width: 2rem;
	bottom: 0;
	display: block;
	height: 6rem;
	fill: #FFF;
	position: absolute;
	top: .15rem;
	right: 1rem;
	transition: .3s 0 ease all;
}

.caSubmit span {
	padding-right: 0;
}
.caSubmit:hover span {
	padding-right: 3rem;
}
.caSubmit::after {
	opacity: 0;
}
.caSubmit:hover::after{
	opacity: .4;
	transition: .3s .2s ease all;
}
.caSubmit .caIcon{
	-webkit-transform: translate(60%, 0);
	-moz-transform: translate(60%, 0);
	-ms-transform: translate(60%, 0);
	transform: translate(60%, 0);
	opacity: 0;
}
.caSubmit:hover .caIcon{
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	opacity: 1;
	transition: .3s .3s ease all;
}
.caSubmit:hover::before{
background-color: #000;
}

#message {  padding: 0px 40px 0px 0px; }
#mail-status {
	padding: 12px 20px;
	width: 100%;
	display:none; 
	font-size: 1em;
	font-family: "Georgia", Times, serif;
	color: rgb(40, 40, 40);
}
.error{background-color: #F7902D;  margin-bottom: 40px;}
.success{background-color: #48e0a4; }
.g-recaptcha {margin: 0 0 25px 0;}  



.caSpecs a{
  background-color: #46ab78;
  display: inline-block;
  border-radius: 100rem;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  transition: .3s ease all;
}
.caSpecs a:hover{
  padding-right: 70px;
}
.caSpecs a:hover::before{
  transform: translate(0, 0);
  border-radius: 100rem;
}
.caSpecs a:hover::after{
  opacity: 1;
  transform: translate(-26px, 0);
}
.caSpecs a span{
  font-size: 1.1rem;
  color: #FFF;
  font-family: 'Ubuntu', sans-serif;
  position: relative;
  z-index: 1;
}
.caSpecs a::before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  left: 0;
  top: 0;
  z-index: 0;
  transform: translate(100%, 0);
  transition: .3s ease all;
}
.caSpecs a::after{
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center center;
  background-image: url(../img/calendar_month.svg);
  right: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  transform: translate(0, 0);
  transition: .3s .1s ease all;
}



.caResponse {
backdrop-filter: blur(5px);
width: 100%;
height: 100vh;
position: fixed;
z-index: 99999;
background-color: rgba(0,0,0,0.9);
left: 0;
top: 0;
}
.caResponse .caContent{
background-color: #FFF;
border-radius: 0.9rem;
width: 90%;
margin: auto;
max-width: 25rem;
padding: 2rem;
position: absolute;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
left: 0;
right: 0;
}
.caResponse .caContent h6 {
	color: #151619;
	text-align: center;
	font-size: 1rem;
	margin-top: 0.5rem;
	font-weight: 400;
	line-height: 1.1;
	font-family: 'DM Sans', sans-serif;
}
.caResponse .caContent small {
	display: block;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	font-family: 'Ubuntu';
}
.caResponse .caContent .caIconCont{
	border-radius: 100rem;
	width: 6rem;
	margin: auto;
	box-sizing: border-box;
	padding: 1.2rem;
	margin-top: -5rem;
	position: relative;
	z-index: 5;
	filter: brightness(0) invert(1);
	transform: translateY(1.35rem);
}
.caResponse .caContent .caInfo{
margin-top: 3rem;
}
.caResponse a{
	display: block;
	text-align: center;
	color: #FFF;
	background-color: #46ab78;
	box-sizing: border-box;
	padding: 0.5rem 0.7rem;
	border-radius: 100rem;
	font-weight: 300;
	font-size: 1.1rem;
	transition: .3s ease all;
	font-family: 'Ubuntu';
	max-width: 15rem;
	margin: auto;
	margin-top: 1.5rem;
}
.caResponse a:hover{
background-color: #000;  
}

.pulsating-circle {
	position: absolute;
	left: 0;
	top: -2.5rem;
	width: 8rem;
	height: 8rem;
	right: 0;
	margin: auto;
	z-index: 1;
}
.pulsating-circle:before {
	content: "";
	position: relative;
	display: block;
	width: 200%;
	height: 200%;
	box-sizing: border-box;
	margin-left: -50%;
	margin-top: -50%;
	border-radius: 100rem;
	background-color: #000;
	opacity: .2;
-webkit-animation: pulse-ring 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
				animation: pulse-ring 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulsating-circle:after {
content: "";
position: absolute;
left: 0;
top: 0;
display: block;
width: 100%;
height: 100%;
background-color:  #8eb50e;
border-radius: 100rem;
-webkit-animation: pulse-dot 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
				animation: pulse-dot 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
0% {
	transform: scale(0.33);
}
80%, 100% {
	opacity: 0;
}
}

@keyframes pulse-ring {
0% {
	transform: scale(0.33);
}
80%, 100% {
	opacity: 0;
}
}
@-webkit-keyframes pulse-dot {
0% {
	transform: scale(0.8);
}
50% {
	transform: scale(1);
}
100% {
	transform: scale(0.8);
}
}
@keyframes pulse-dot {
0% {
	transform: scale(0.8);
}
50% {
	transform: scale(1);
}
100% {
	transform: scale(0.8);
}
}

.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-close {
	color: #fff !important;
}
.sl-overlay {
	background: #000 !important;
}
.sl-wrapper .sl-image img{
background-color: #fafafa !important;
}

.callToContact {
	background-color: transparent !important;
	border: 2px solid #151619;
	color: #151619;
	margin-left: 10px;
}
.caMainSlider .caTriggers{
	display: flex;
	gap: 10px;
}
.caMainSlider .callToContact {
	border: 2px solid #ffffff;
	color: #ffffff;
	margin: 0 !important;
}
.caMainSlider .callToContact span{
	color: #ffffff !important;
}
.caMainSlider a::before{
	background-color: #FFF !important;
}
.caMainSlider a::after{
	filter: invert(1);
}
.caMainSlider a:hover span{
	color: #000 !important;
}
.caActions{
	margin-top: 1.5rem;
}
.callToContact span{
	color: #151619 !important;
}
.callToContact:hover span{ 
	color: #FFF !important;
}
.callToContact::before{
	background-color: #151619 !important;
}
.callToContact::after{
	background-image: url(../img/mail.svg) !important;
}
.caContent{
	z-index: 5;
}
.caWaveContainer{
	z-index: 1;
}
.caClientsSection{
	padding-bottom: 20px;
}
.caClientsSection .caTitle {
	position: relative;
	margin-bottom: 1.5rem;
}
.caClientsSection h4 {
	font-size: 1.9rem;
	line-height: 1.2;
	margin: 0;
	padding-top: 2.3rem;
	text-align: center;
}
.caClientsSection p {
	width: 95%;
	text-align: center;
	margin: auto;
	margin-bottom: 3rem;
	max-width: 600px;
}
.caClientsLogos {
	display: flex;
	flex-wrap: wrap;
	max-width: 500px;
	margin: auto;
	justify-content: center;
}

.caClientsLogos li{
	width: 50%;
}
@media screen and (min-width: 600px) {
	.caWrapper{
		max-width: 1200px;
	}
	.caBenefits .caImageContainer{
		width: 50%;
		padding-right: 20px;
	}
	.caWhyTrackpoint .caImageContainer{
		padding: 0;
	}
	.caSplitColumns{
		display: flex;
		align-items: center;
		gap: 20px;
		position: relative;
	}
	.caSplitColumns > div{
		width: 50%;
		position: relative;
	}
	.caInvert > div:first-of-type{
		order: 2;
	}
		.caInvert > div:last-of-type{
		order: 1;
	}
	.caSpecs .caSplitColumns {
    padding: 25px 0;
	}
	.caManagement::before{
		content: "";
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		opacity: .6;
		position: absolute;
		background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/map.png);
    background-position: center right;
	}
	.caProductivity::before{
		content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/bg-02.png);
    background-position: center center;
    transform: rotate(180deg);
	}
	.caProcess ul li{
		flex-direction: row;
		align-items: center;
		gap: 20px;
	} 
	#particles-js {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .25;
    z-index: 0;
	}
	.caWaveContainer {
		display: block;
		position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	}
	.caWaves {
	  display: inline-block;
	  position: absolute;
	  width: 100%;
	  height: 100%;
	  left: 0;
	  right: 0;
	  transform: scale(.6) translate(-50%, -25%);
	  opacity: .1;
	}
	.caWaves div {
	  position: absolute;
	  border: 1px solid #000;
	  opacity: 1;
	  border-radius: 70% 60% 80% 50%;
	  animation: lds-ripple 10s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	}
	.caWaves div:nth-child(2) {
	  animation-delay: -0.5s;
	}
	.caWaves div:nth-child(3) {
	  animation-delay: -1s;
	}
	.caWaves div:nth-child(4) {
	  animation-delay: -1.5s;
	}
	.caWaves div:nth-child(5) {
	  animation-delay: -2s;
	}
	.caWaves div:nth-child(6) {
	  animation-delay: -2.5s;
	}
	.caWaves div:nth-child(7) {
	  animation-delay: -3s;
	}
	.caWaves div:nth-child(8) {
	  animation-delay: -3.5s;
	}
	.caWaves div:nth-child(9) {
	  animation-delay: -4s;
	}
	.caWaves div:nth-child(10) {
	  animation-delay: -4.5s;
	}
	.caWaves div:nth-child(11) {
	  animation-delay: -5s;
	}
	.caWaves div:nth-child(12) {
	  animation-delay: -5.5s;
	}
	.caWaves div:nth-child(13) {
	  animation-delay: -6s;
	}
	.caWaves div:nth-child(14) {
	  animation-delay: -6.5s;
	}
	.caWaves div:nth-child(15) {
	  animation-delay: -7s;
	}
	.caWaves div:nth-child(16) {
	  animation-delay: -7.5s;
	}
	.caWaves div:nth-child(17) {
	  animation-delay: -8s;
	}
	.caWaves div:nth-child(18) {
	  animation-delay: -8.5s;
	}
	.caWaves div:nth-child(19) {
	  animation-delay: -9s;
	}
	@keyframes lds-ripple {
	  0% {
	    top: 360px;
	    left: 360px;
	    width: 0;
	    height: 0;
	    opacity: 0;
	  }
	  4.9% {
	    top: 360px;
	    left: 360px;
	    width: 0;
	    height: 0;
	    opacity: 0;
	  }
	  5% {
	    top: 360px;
	    left: 360px;
	    width: 0;
	    height: 0;
	    opacity: 1;
	  }
	  100% {
	    top: 0px;
	    left: 0px;
	    width: 720px;
	    height: 720px;
	    opacity: 0;
	  }
	}
	.caHighLights ul {
    max-width: unset;
	}
	.caHighLights ul li {
    float: left;
    width: calc(50% - 10px);
	}
	.caHighLights ul li:nth-child(even){
		margin-left: 20px;
	}
	.caHighLights ul li:last-child{
		width: 100%;
	}
	.caHighLights ul li img {
    margin: unset;
    margin-bottom: 10px;
	}
	.caHighLights ul li div {
    text-align: unset;
	}
	.caHighLights ul li:last-child::after {
    background-position: 110% 50%;
	}
	.caProcess ul li span{
		text-align: left;
	}
	.caProcess{
		padding: 85px 0;
	}
	.caDelivery{
		width: 150px !important;
	}
	.caOurCLients .caManager{
    width: 130px !important;
	}
	.caOurCLients .caMarket{
		width: 100px !important;
	}
	.caOurCLients .caIconContainer {
    width: 50px;
	}
	.caOurCLients .caTech{
		display: none;
	}
	.caOurCLients .caFast {
    left: calc(50% - 70px);
	}
	.caLinesBg {
    bottom: 15px;
	}
	.caOurCLients .caLine {
    height: 250px;
	}
	.caHighLights ul::after {
	  content: "";
	  clear: both;
	  display: table;
	}
	body::before {
  	max-width: 1200px;
	}
	footer .caColumnsGroup {
    display: flex;
    gap: 20px;
	}
	footer .caColumnsGroup > div {
    margin-top: 30px;
    width: 33.33%;
	}
	footer .caColumnsGroup ul li{
		display: block;
	}
	footer small{
		max-width: 1200px;
		text-align: center;
	}
	.caWhyTrackpoint .caSplitColumns{
		padding-top: 120px;
	}
	.caWhyTrackpoint h3{
    position: absolute;
    top: -95px;
	}
	.caWhyTrackpoint .caBlock {
    gap: 4px;
	}
	.caWhyTrackpoint .caBlock p {
    font-size: 1.1rem;
    letter-spacing: -.5px;
	}
	.caMainSlider .caWrapper .caRow{
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	.caMainSlider .caImageContainer {
    width: 95%;
    margin: 0;
	}
	.caContact .caElems {
    max-width: 40rem;
    margin: auto;
	}
	.caContact p {
    width: 95%;
    text-align: center;
    margin: auto;
    margin-bottom: 3rem;
	}
	.caContact h4{
		text-align: center;
	}
	.caContact{
		padding-top: 0;
		padding-bottom: 6rem;
	}
	.caMainSlider .caImageContainer .caAnimHolder{
		opacity: 1;
	}
	.caMainSlider::before{
		background: #000 !important;
		opacity: .45;
	}
	.caMainSlider .caImageContainer .caAnimHolder::before {
		background-color: #fff;
		opacity: .05;
	}
	.caMainSlider .caTriggers {
    flex-direction: column;
    max-width: 15rem;
		gap: 15px;
	}
	.caMainSlider .caWrapper{
		display: none;
	}
	.caMainSlider video {
            position: relative;
        left: unset;
        bottom: unset;
        min-width: 100%;
        height: auto;
        transform: none;
        width: 100%;
	}
	.caMainSlider{
		padding: 0;
	}
	.caMainSlider::before{
		display: none;
	}
}
@media screen and (min-width: 700px) {
	html{
		font-size: 15px;
	}
	.caBlast {
    padding: 110px 0;
	}
	.caCallTo {
    margin: 90px 0 110px 0;
		overflow: unset;
	}
	.caCallTo .caContainer {
    padding: 60px 40px;
    position: relative;
    overflow: unset;
	}
	.caCallTo .caImageContainer {
    margin-top: 0;
	}
	.caCallTo .caImageContainer img {
    margin: 0 !important;
    position: absolute;
    bottom: -60px;
    right: -40px;
    border-radius: 20px;
    width: 60%;
    max-width: 430px;
	}
	.caCallTo .caSplitColumns > div{
		position: unset;
	}
	.caMainSlider .caImageContainer .caAnimHolder .caLocation,
	.caMainSlider .caImageContainer .caAnimHolder .caLocation::before,
	.caMainSlider .caImageContainer .caAnimHolder .caLocation::after{
		width: 70px;
		height: 70px;
	}
	.caMainSlider .caImageContainer .caAnimHolder .caLocation img {
	    width: 35px;
	}
	.caContactForm ul{
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}
	.caContactForm ul li{
		width: calc(50% - 10px);
	}
	.caContactForm li:last-child {
    width: 100%;
	}
	.caContact .caElems {
    max-width: 45rem;
	}
	.caClientsSection{
		padding-bottom: 70px;
	}

}
@media screen and (min-width: 800px) {
	.caGrid {
    display: flex;
    gap: 120px;
	}
	.caAdvantage h6,
	.caAdvantage p{
    text-align: left;
	}
	.caAdvantage .caIconContainer {
    margin: unset;
    margin-bottom: 10px;
	}
	.caAdvantage .caGrid > div{
		margin: 0;
		width: 33.33%;

	}
	.caHighLights ul li {
    float: left;
    width: calc(33% - 11px);
    margin-bottom: 0;
	}
	.caHighLights ul li:nth-child(even){
		margin-left: 0;
	}
	.caHighLights ul li:last-child{
		width: calc(33% - 11px);
	}
	.caHighLights ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	}
	.caHighLights{
		position: relative;
	}
	.caHighLights::before{
		content:"";
		background-color: #fafafa;
		position: absolute;
		right: 0;
		bottom: 0;
		width: 55%;
		height: 65%;
		z-index: 0;
	}
	.caDelivery {
    width: 18% !important;
	}
	.caOurCLients .caManager {
    width: 13% !important;
    left: 30%;
    top: 70px;
	}
	.caOurCLients .caSatisfaction {
    left: 20%;
    top: 65px;
    width: 5% !important;
	}
	.caOurCLients .caApproval {
    right: 40%;
    top: 100px;
    width: 8% !important;
	}
	.caOurCLients .caMarket {
    width: 15% !important;
    right: 20%;
    top: 100px;
	}
	.caOurCLients .caFast {
    left: unset;
    right: 15%;
    top: 30px;
	}
	.caOurCLients .caTech {
    display: block;
    right: 0;
    width: 12%;
    top: 30px;
    animation: floating2 4s 1s ease-in-out infinite;
	}
	.caAdvantage h3 {
    margin-bottom: 5rem;
	}
	footer .caWrapper{
		display: flex;
		gap: 40px;
	}
	footer .caColumnsGroup {
    display: flex;
    gap: 40px;
	}
	footer .caDescription p{
		font-size: 1rem;
		max-width: 19rem;
	}
	footer .caColumnsGroup > div {
    margin-top: 0;
    display: flex;
    flex-direction: column;
	}
	footer .caColumnsGroup > div:first-of-type{
		order: 3;
	}
	footer .caColumnsGroup ol li {
    margin-bottom: 10px;
	}
	.caMainSlider .caImageContainer .caAnimHolder .caLocation,
	.caMainSlider .caImageContainer .caAnimHolder .caLocation::before,
	.caMainSlider .caImageContainer .caAnimHolder .caLocation::after{
		width: 80px;
		height: 80px;
	}
	.caMainSlider .caImageContainer .caAnimHolder .caLocation img {
	    width: 40px;
	}
	.caSpecs{
		padding-top: 10rem;
	}
	.caClientsLogos {
    max-width: unset;
	}
	.caClientsLogos li {
    width: 25%;
	}
}
@media screen and (min-width: 900px) {
	html{
		font-size: 16px;
	}
	h3{
		font-size: 2.1rem;
	}
	.caMainGoal,
	.caAdvantage {
    padding: 100px 0;
	}
	.caBlast {
    padding: 120px 0;
    background-size: 800px;
	}
	.caBlast h5{
		font-size: 1.7rem;
		max-width: 33rem;
	}
	.caManagement::before {
    background-size: 75%;
	}
	.caWaves {
    transform: scale(.8) translate(-30%, -14%) !important;
	}
	.caProcess .caBlock {
    display: flex;
	}
	.caProcess ul {
    display: flex;
    flex-wrap: wrap;
    margin: unset;
    align-items: center;
    max-width: unset;
    width: 42%;
	}
	.caProcess ul:first-of-type li{
		flex-direction: row-reverse;
	}
	.caProcess ul:first-of-type li:nth-child(2),
	.caProcess ul:first-of-type li:nth-child(3){
		padding-right: 30px;
	}
	.caProcess ul:last-of-type li:nth-child(2),
	.caProcess ul:last-of-type li:nth-child(3){
		padding-left: 30px;
	}
	.caProcess ul li {
    width: 100%;
    gap: 15px;
    margin-bottom: 30px;
	}
	.caProcess ul li span{
		font-size: 1.1rem;
	}
	.caProcess .caImageContainer {
    max-width: unset;
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    width: 55%;
	}
	.caProcess .caIconContainer {
    width: 75px;
	}
	.caSpecs .caSplitColumns {
    padding: 10px 0;
	}
	.caWhyTrackpoint h3 {
    top: -115px;
	}
	.caWhyTrackpoint .caBlock img {
    width: 75px;
	}
	.caWhyTrackpoint .caBlock {
    gap: 15px;
    padding: 15px;
	}
	.caMainSlider .caImageContainer .caAnimHolder {
    transform: scale(.75);
  }
	.caMainSlider .caTriggers {
    flex-direction: row;
    max-width: unset;
    gap: 10px;
	}
	.caMainSlider .caImageContainer {
    width: 85%;
    margin: 0;
	}
}
@media screen and (min-width: 1024px) {
	html{
		font-size: 17px;
	}
	.caProcess ul {
    width: 35%;
	}
	.caOurCLients .caLine {
    height: 290px;
	}
	html::before {
    content: "";
    display: block;
    position: fixed;
    height: 100%;
    width: 50%;
    margin: auto;
    border-left: 1px dashed black;
    border-right: 1px dashed black;
    left: 0;
    right: 0;
    top: 0;
    max-width: 30rem;
    opacity: .065;
    z-index: 0;
	}
	.caSplitColumns {
	    gap: 3px;
	}
	.caOurCLients svg {
    height: 1000px;
    margin-top: -400px;
	}
	.caCallTo {
    margin: 130px 0;
	}
	footer .caWrapper {
    display: flex;
    gap: 70px;
    justify-content: space-between;
	}
	footer .caColumnsGroup {
    gap: 50px;
	}
	footer h6 {
    font-size: 1rem;
	}
	.caOurCLients {
    padding: 160px 0 100px 0;
	}
	.caWhyTrackpoint .caBlock p {
    font-size: 1.2rem;
    letter-spacing: 0;
	}
	header nav ul li {
    display: block;
	}
	header nav ul {
    display: flex;
	}
	header .caMainLogo {
    width: 180px;
    margin: 20px 0;
	}
	.caMainSlider {
		padding: 0;
		max-width: 1500px;
		margin: auto;
	}
	.caMainSlider .caWrapper .caRow > div{
		height: calc(100vh - 76px);
		display: flex;
		align-items: center;
	}
	.caMainSlider .caImageContainer .caAnimHolder .caLocation,
	.caMainSlider .caImageContainer .caAnimHolder .caLocation::before,
	.caMainSlider .caImageContainer .caAnimHolder .caLocation::after{
		width: 95px;
		height: 95px;
	}
	.caMainSlider .caImageContainer .caAnimHolder .caLocation img {
	  width: 50px;
	}
	video {
		transform: translateX(0) scale(1);
		left: 0;
	}
}
@media screen and (min-width: 1100px) {
	.caWaves {
    transform: scale(.8) translate(-30%, 0%) !important;
	}
}









/**Styling scrollable elements*/

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left .6s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right .6s ease-in-out both;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-2-11 23:32:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

