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

.text-justify {
	text-align: justify;
}

section{
	scroll-margin-top: 100px;
}

.heading-order{
    order: -1;
}

header.main-header {
	position: sticky;
	top: 0;
	background: white;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.4s ease;
}

.nav-link.active {
  /* font-weight: 700; */
  color: var(--accent-color) !important;
}

.nav-link.active::after {
  width: 100%;
}


.ap-ico {
	font-size: 20px;
	margin-right: 5px;
}

.video-round-text svg {
	/* position: absolute; */
	/* left: 0; */
	/* top: 0; */
	/* width: 100%; */
	/* height: 100%; */
	-webkit-animation-name: rotate;
	-moz-animation-name: rotate;
	-ms-animation-name: rotate;
	-o-animation-name: rotate;
	animation-name: rotate;
	-webkit-animation-duration: 30s;
	-moz-animation-duration: 30s;
	-ms-animation-duration: 30s;
	-o-animation-duration: 30s;
	animation-duration: 30s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-o-animation-timing-function: linear;
	animation-timing-function: linear;
}


@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
	}

	100% {
		-webkit-transform: rotate(720deg);
		-moz-transform: rotate(720deg);
	}
}

.service-item:hover span img {
	transform: rotateY(360deg);
}

.service-item {
	transition: all linear 0.4s;
}

.service-item:hover {
	transform: translateY(-10px);
	box-shadow: 0px 2px 5px 2px #beb9b9a1;
}

.star-glow i {
	color: gold;
	font-size: 16px;
}

.testimonial-item:hover .author-content {
	transition: all linear 0.3s;
}

.testimonial-item:hover i {
	transition: all linear 0.4s;
}

.testimonial-item:hover i {
	transform: rotateY(180deg);
}

.testimonial-item:hover .author-content {
	transform: translateY(-5px);
}

.testimonial-item-content p::before,
.testimonial-item-content p::after {
	/* content: "\""; */
	font-size: 24px;
}

.testimonial-item-content p::before {
	content: "“";
	padding-right: 5px;
}

.testimonial-item-content p::after {
	content: "”";
	padding-left: 5px;
}

.facts-counter-item{
	transition: all linear 0.3s;
}
.facts-counter-item:hover{
	transform: translateY(-6px);
}
.facts-counter-item img{
	transition: all linear 0.4s;
}
.facts-counter-item:hover img{
	transform: rotateY(180deg);
}


/* sticky sidebar */
.aon-scrolling-nav {
    position: fixed;
    top: 50%;
    right: 0px;
    list-style: none;
    z-index: 99;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.aon-scrolling-nav li {
    width: 34px;
    height: 34px;
    line-height: 36px;
    position: relative;
    background: var(--accent-color);
    margin: 3px 2px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    display: flex;
}

.aon-scrolling-nav li a {
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
}

.aon-scrolling-nav li a i {
    font-size: 18px;
}

.aon-scrolling-nav li span {
    opacity: 0;
    position: absolute;
    top: 4px;
    right: 100%;
    line-height: 1;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 10px;
    border-radius: 3px;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.aon-scrolling-nav li span:before {
    rotate: 180deg;
    content: "";
    position: absolute;
    top: 10px;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 5px 4px 0;
    border-color: transparent var(--accent-color) transparent transparent;
}

.aon-scrolling-nav li:hover {
    overflow: visible;
    background: var(--accent-color);
}

.aon-scrolling-nav li.active {
    overflow: visible;
    background: #d02f82;
}

.aon-scrolling-nav li:hover span {
    opacity: 1;
    right: 120%;
}

.aon-scrolling-nav li.actives span {
    opacity: 1;
    right: 120%;
}

/* ------------------------------------------------- */
