:root {
  --primary-color: #6aaeb6;
  --secondary-color: #3b8284;
  --light-color: #edeef7;
  --light-color-alt: #e9ecef;
  --dark-color: #2c445e;
  --contrast-color: #ff4655;
  --border-gray: #333333;
  --center-gray: #90949c;
  --outer-gray: #616771;
}

/* ============= GENERAL UTILITATING UTILITIES THAT MAY BE UTILIZED ============= */

button:focus,
a:focus,
a.btn:focus {
  outline: 0;
  -webkit-appearance: none;
  box-shadow: none;
}

button,
a,
a.btn,
.fa-angle-down {
  transition: all 0.6s ease;
}

button.owl-dot.active span,
button.owl-dot:hover span {
  background: var(--primary-color) !important;
}

h3.heading {
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 1.9rem;
}

.pg-active {
  color: var(--primary-color) !important;
}

.text-light-main {
  color: var(--light-color) !important;
}

.text-dark-main {
  color: var(--dark-color) !important;
}

/*============= ANIMATIONS =============*/

.os-animation{
	opacity: 0;
}
.os-animation.animated {
	opacity: 1;
}

/*============= HEADING KICKERS? =============*/

.heading-kicker {
  position: relative;
}

.heading-kicker::before,
.heading-kicker::after {
  width: 65px;
  height: 4px;
  top: 50%;
  background-color: var(--dark-color);
  content: "";
  position: absolute;
}

.heading-kicker::before { 
  right: -80px;
}

.heading-kicker::after {
 left: -80px;
}

.companies-heading > .heading-kicker::before,
.companies-heading > .heading-kicker::after,
.pricing-heading > .heading-kicker::before,
.pricing-heading > .heading-kicker::after,
#about .heading-kicker::before,
#about .heading-kicker::after {
  background-color: var(--light-color);
}

/*============= 3D BUTTON THEME =============*/

a.theme-btn {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: var(--light-color);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  padding: 0.6em 1em;
  background: var(--primary-color);
  border: 2px solid var(--dark-color);
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}
a.theme-btn::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--secondary-color);
  border-radius: inherit;
  box-shadow: 0 0 0 2px var(--dark-color);
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
a.theme-btn:hover {
  background: var(--primary-color);
  transform: translate(0, 0.25em);
  text-decoration: none;
}
a.theme-btn:hover::before {
  transform: translate3d(0, 0.5em, -1em);
}
a.theme-btn:active {
  transform: translate(0em, 0.75em);
  box-shadow: 0;
}
a.theme-btn:active::before {
  transform: translate3d(0, 0, -1em);
}

/*============= ALTERNATE BUTTON DESIGN =============*/

.alt-button {
  float: right;
  border-radius: 1rem;
  background-color: var(--dark-color);
  color: #f4f4f4;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.alt-button:hover {
  transform: scale(0.97);
  text-decoration: none;
  color: #f4f4f4;
}

/*============= SVG DIVIDERS =============*/

.custom-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
  transform: rotateY(180deg);
}

.custom-shape-divider .custom-shape-fill-alt {
  fill: var(--light-color-alt);
}

/*============= ARROW DIVIDERS =============*/

.arrow-down {
  position: relative;
  top: -10px;
	width: 0;
	height: 0;
	border-left: 3rem solid transparent;
	border-right: 3rem solid transparent;
	border-top: 3rem solid var(--light-color-alt);
	margin: 0 auto;
	display: block;
}