/* Animation */
[class^=_fadeIn], [class*=_fadeIn] {
	opacity: 0;
	transition: all ease-out 1s;
}
._fadeIn {
	transform: none;
	transition: all ease-out 3s;
}
._fadeInLeft {transform: translate3d(-100%, 0, 0)}
._fadeInRight {transform: translate3d(50%, 0, 0)}
._fadeInUp {transform: translate3d(0, 50%, 0)}
._fadeInDown {transform: translate3d(0, -100%, 0)}
.animated[class^=_fadeIn],
.animated[class*=_fadeIn] {opacity: 1 !important}
.animated._fadeIn,
.animated._fadeInLeft,
.animated._fadeInRight,
.animated._fadeInUp,
.animated._fadeInDown {transform: translate3d(0, 0, 0) !important}
.delay__faster {transition-delay: 0.5s !important}
.delay__fast {transition-delay: 0.8s !important}
.delay__slow {transition-delay: 1.8s !important}
.delay__slower {transition-delay: 2.5s !important}
.delay-1s {transition-delay: 1s !important}
.delay-2s {transition-delay: 2s !important}
.delay-3s {transition-delay: 3s !important}
.delay-4s {transition-delay: 4s !important}
.delay-5s {transition-delay: 5s !important}
/* Heading */
.heading {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 1px solid #f1f1f1;
	border-bottom: 2px solid var(--dark, #212529);
	margin-bottom: 0;
}
.heading__title {
    position: relative;
    width: fit-content;
    width: -moz-max-content;
    min-width: 150px;
    margin: 0;
    padding: 0 10px;
	line-height: 45px;
}
.heading__subtitle {
	font-size: .8em;
	font-weight: 400;
	opacity: .7;
	padding-left: 15px;
	text-transform: none;
}
ul.heading__links {
	display: flex;
	margin-bottom: 0;
}
ul.heading__links li {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.heading__links a {
    color: #848788;
	padding: 0 10px;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: all 200ms ease-in-out;
}
ul.heading__links li + li a {
	border-left: 1px solid #e0e0e0;
}
.heading .heading__title i {
	font-size: .8em;
	margin-right: .3em !important;
}
ul.ux-scroll li a span {margin-right: .2em;}
.ux-menu--mobile_tab {display: none}

/* Heading Tech */
.heading--tech {
	border: 1px;
	border-top: 3px solid var(--primary);
	line-height: 21px;
	overflow: visible;
}
.heading--tech .heading__title  {
	background: var(--primary);
	color: #fff;
}
.heading--tech .heading__title:before {
    content: '';
    position: absolute;
    left: 80%;
    top: -9px;
    height: 8px;
    width: 145px;
    border-bottom: 6px solid var(--primary);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
	z-index: 9;
}
.heading--tech .heading__title:after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 45px solid transparent;
  border-left: 20px solid var(--primary);
  border-top: 0px solid transparent;
  border-right: 0 solid transparent;
  position: absolute;
  top: 0px;
  right: -20px;
}
.heading--tech .heading__title  a {
    line-height: 30px;
}
@media screen and (max-width: 850px) {
ul.ux-scroll {display: none;}
.ux-menu--mobile_tab {
	padding: 12px;
	transition: all 0.25s ease-in-out;
	cursor: pointer;
	display: block;
}
ul.heading__links {
	display: none;
	position: absolute;
	flex-direction: column;
	width: 100%;
	top: calc(100% + 2px);
	z-index: 99;
	background: #fff;
	box-shadow: var(--post-shadow, 0 1px 2px #959595);
	padding: 10px 0;
}
ul.heading__links li {width: 100%}
ul.heading__links li a {
	color: #777 !important;
	border: 0;
	margin: 0;
	border-radius: 0;
	display: block;
	text-align: left;
	border: none !important;
}
}

/* NEW Section */
.ux-shape-divider--top.ux-shape-divider--style-custom {
    transform: rotate(0);
}
.ux-shape-divider.ux-shape-divider--flip-x svg {
    transform: translateX(-50%) rotateX(180deg);
}
.ux-shape-divider.ux-shape-divider--flip.ux-shape-divider--flip-x svg {
    transform: translateX(-50%) rotateY(180deg) rotateX(180deg) ;
}

/* Fancybox */
html.with-fancybox {
    overflow: hidden !important;
}

img[data-fancybox],
.fancybox {
    cursor: pointer;
}
.fancybox-by-id {
    position: relative;
    margin: 0 auto;
    box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, .15);
}
.fancybox__content p:last-of-type{
    margin-bottom: 0;
}
.has-iframe .fancybox__content { padding: 0; }
.f-thumbs__slide__button {
    max-width: unset;
}
.fancybox__content>.f-button.is-close-btn {
    top: 0 !important;
    right: 0 !important;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    color: #999;
    transition: all 0.5s;
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
}
.fancybox__content>.f-button.is-close-btn:hover{
    transform: rotate(180deg);
}
.fancybox__caption {
	position: absolute;
	bottom: 20px;
	background: rgba(36, 40, 54, .75);
	border-radius: 4px;
	padding: 10px 20px;
	z-index: 99;
}
@media screen and (min-width: 650px) {
.fancybox__content>.f-button.is-close-btn {
    margin: 0;
    color: #fff;
    padding: 0;
    background: rgba(143, 143, 143, 0.5607843137);
    border-radius: 50px;
    top: 2px;
    right: 2px;
    overflow: hidden;
    top: -20px !important;
    right: -20px !important;
}
}
/* FullPage.js */
.fp-section.fp-table, .fp-slide.fp-table {
    padding: 0 !important;
}
#fullpage .section .section-bg {
    transform: translate3d(0px, 0px, 0px) !important;
}
#fullpage .section .section-content {
    z-index: 0 !important;
}
.fp-watermark {
  display: none;
}
#fp-nav {
  width: 150px;
}
#fp-nav>ul {
  position: relative;
}
#fp-nav>ul::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 1px;
  height: calc(100% - 50px);
  background: var(--white);
  transform: translateY(-50%);
  opacity: 0.8;
}
#fp-nav ul li {
  margin: 0;
  height: 48px;
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
}
#fp-nav ul li a {
  width: 100%;
  height: 100%;
}
#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span,
#fp-nav ul li:hover a span,
#fp-nav ul li a span {
  background: var(--white);
  height: 7px;
  width: 7px;
  left: 0;
  margin: 0;
  transform: translateY(-50%);
  z-index: 1;
}
#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span,
#fp-nav ul li:hover a span {
  background: var(--color-secondary);
}
#fp-nav ul li a span+span::after {
  position: absolute;
  content: "";
  left: -6px;
  top: 50%;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--color-secondary);
  transition: all 0.4s;
  opacity: 0;
}
#fp-nav ul li a.active span+span::after,
#fp-nav ul li:hover a.active span+span::after,
#fp-nav ul li:hover a span+span::after {
  opacity: 1;
}
#fp-nav ul li .fp-tooltip {
  top: 50%;
  font-style: italic;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  transition: all 0.3s;
  width: auto;
  padding: 0;
  padding-left: 50px;
  transition: all 0.3s;
  transform: translateY(-50%);
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav ul li a.active + .fp-tooltip {
  padding-left: 20px;
  transition: all 0.3s;
}
@media (max-width: 849px) {
  #fp-nav {
    display: none;
  }
}