@import url(vazir.css);
@import url(remixicon.css);

/*===== Elements =====*/
* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:focus {
	outline: 0;
	border: none;
}

html,
body {
	font: normal 16px/1.6 vazir, sans-serif;
	color: #858d97;
	margin: 0;
	padding: 0;
}

body:before {
	content: '';
	position: fixed;
	top: 0;
	margin: 0;
	padding: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
	background: rgba(255, 255, 255, 1);
}

h1,
h2,
h3,
h4 {
	color: #082137;
}

h1 {
	font-size: 30px;
	line-height: 1.2;
}

p {
	color: #6d7889;
	text-align: justify;
}

p.small {
	font-size: 14px;
	text-align: right;
	color: #9399a6
}

a {
	color: #26304e;
	font-weight: normal;
	text-decoration: none;
	transition: all 300ms ease-out;
	outline: none;
}

a:hover {
	color: #000000;
}

section {
	margin: 0;
	padding: 0;
}

.inner {
	margin: 0 auto;
}

.clear {
	clear: both;
}

.relative {
	position: relative;
}

.rtl {
	direction: rtl;
}

.ltr {
	direction: ltr;
}

.center {
	justify-content: center;
}

.white {
	color: #ffffff;
}

.semi-transparent {
	opacity: 0.5;
}

section:before,
section:after {
	clear: both;
}

/*===== Classes =====*/
.wrapper {
	box-sizing: border-box;
	position: relative;
	margin: 0 auto;
}

.gradient {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 88vh;
	background-size: 100%;
	background-repeat: no-repeat;
}

.pink-purple {
	background: linear-gradient(to right, #f9e6e8, #eaaebd, #bc98cc, #a1afec, #cce4fb);
}

.green-blue {
	background: linear-gradient(to right, #e8fceb, #b4ebbd, #6aded5, #32cdeb, #cbeef5);
}

.orange-red {
	background: linear-gradient(to right, #ffe5be, #ffc56e, #ffa983, #ff9199, #fdccd0);
}

.skyblue-silvery {
	background: linear-gradient(to right, #ebf7ff, #abcfe9, #b9cfe9, #b9c4ca, #e5ecf0);
}

.sun-rise {
	background: linear-gradient(to right, #fffaf3, #f4e1c6, #b6d4c6, #85d0cc, #e9fefd);
}


.gradient:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 55%;
	bottom: -1px;
	/* to prevent draw black line while page get scroll */
	border: 0;
	background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.75) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.75) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.75) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

/*===== Background Animation =====*/
.circles {
	position: absolute;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
	height: 80vh;
	width: 100vw;
	overflow: hidden;
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	animation: animate 25s linear infinite;
	bottom: -150px;
}

.circles li:nth-child(1) {
	left: 25%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
}

.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.circles li:nth-child(6) {
	left: 75%;
	width: 110px;
	height: 110px;
	animation-delay: 3s;
}

.circles li:nth-child(7) {
	left: 35%;
	width: 150px;
	height: 150px;
	animation-delay: 7s;
}

.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
}

.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.circles li:nth-child(10) {
	left: 85%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate {

	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}

	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}

}

/*===== Background Animation =====*/
.header-container {
	position: relative;
	margin: 0 auto;
	z-index: 500;
}

.nav-trigger,
.nav-lang {
	position: relative;
	height: 103px;
	padding: 0;
}

.nav-trigger {
	display: none;
}

.menu-holder:before {
	content: '';
	position: absolute;
	width: 30%;
	height: 4px;
	border-radius: 2px;
	margin: 0 auto;
	background: #caccd1;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
}

.menu-holder {
	display: none;
	border-radius: 15px 15px 0 0;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 65vh;
	overflow-x: hidden;
	overflow-y: scroll;
	background: #ffffff;
	box-shadow: 0 -20px 20px 2px rgba(168, 176, 196, 0.2);
}

.menu-holder::-webkit-scrollbar {
	width: 0;
}

.dropdown-wrapper {
	position: relative;
}

.dropdown-menu-item:hover div {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

div.dropdown-menu:before {
	content: '';
	position: absolute;
	top: -40px;
	right: 0;
	background: transparent;
	height: 40px;
	width: 100%;
}

div.dropdown-menu {
	display: flex;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	background: #ffffff;
	padding: 20px;
	margin-top: 40px;
	border-radius: 10px;
	box-shadow: 0px 3px 5px rgba(217, 222, 228, 0.12);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	-webkit-transform: scale(0.8) translate(0, 4px);
	transform: translate(0, 6px);
	z-index: -100;
}

.dropdown-menu ul {
	list-style: none;
	padding: 0;
	z-index: 3;
	position: relative;
	display: flex;
	width: 100%;
	flex-direction: column;
}

.dropdown-menu ul li a {
	text-decoration: none;
	color: #000000;
	padding: 1rem;
	display: flex;
	flex-direction: column;
}

.dropdown-menu ul li a:hover {
	background: hsl(222, 79%, 98%);
	border-radius: 15px;
}

.dropdown-menu ul li a span {
	display: flex;
	align-items: center;
	padding-right: 30px;
	white-space: nowrap;
}

.dropdown-menu ul li a span .headline {
	position: relative;
	color: hsl(222, 60%, 25%);
	font-weight: bold;
	margin-bottom: 10px;
}

.dropdown-menu ul li a span.headline i {
	position: absolute;
	right: 0;
	padding-right: 15px;
	color: hsl(222, 79%, 60%);
}

.dropdown-menu ul li a span.subline {
	margin-top: 4px;
	color: hsl(222, 10%, 70%);
	font-size: 14px;
}

.nav-lang {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.dropdown {
	width: 80px;
	position: relative;
}

.dropdown select {
	display: none;
}

.dropdown>span {
	cursor: pointer;
	padding: 9px 16px;
	border-radius: 6px;
	display: block;
	position: relative;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0);
	transition: all .3s ease;
	text-align: right;
}

.dropdown>span>img {
	width: 20px;
	height: 20px;
}

.dropdown>span:before,
.dropdown>span:after {
	content: '';
	display: block;
	position: absolute;
	width: 8px;
	height: 2px;
	border-radius: 1px;
	top: 50%;
	right: 55px;
	background: rgba(255, 255, 255, 0.5);
	transition: all .3s ease;
}

.dropdown>span:before {
	margin-right: 4px;
	-webkit-transform: scale(0.96, 0.8) rotate(50deg);
	transform: scale(0.96, 0.8) rotate(50deg);
}

.dropdown>span:after {
	-webkit-transform: scale(0.96, 0.8) rotate(-50deg);
	transform: scale(0.96, 0.8) rotate(-50deg);
}

.dropdown ul {
	width: 180px;
	margin: 0;
	padding: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	max-height: calc(8 * 42px);
	top: 42px;
	left: 0;
	z-index: 1;
	right: 0;
	background: #ffffff;
	border-radius: 6px;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	-webkit-transform: scale(0.8) translate(0, 4px);
	transform: scale(0.8) translate(0, 4px);
	border: 1px solid #e4ecfa;
}

.dropdown ul li {
	opacity: 0;
	-webkit-transform: translate(6px, 0);
	transform: translate(6px, 0);
	transition: all .3s ease;
}

.dropdown ul li a {
	cursor: pointer;
	display: block;
	padding: 10px 16px;
	color: #99a3ba;
	text-decoration: none;
	outline: none;
	position: relative;
	transition: all .3s ease;
}

.dropdown ul li a:hover {
	color: #6c7486;
}

.dropdown ul li.active a {
	color: #6c7486;
	background: #f5f9ff;
}

/*.dropdown ul li.active a:before, .dropdown ul li.active a:after {
	content: '';
	display: block;
	width: 10px;
	height: 2px;
	position: absolute;
	left: 17px;
	top: 50%;
	opacity: 0;
	background: #99A3BA;
	transition: all .2s ease;
}

.dropdown ul li.active a:before {
	-webkit-transform: rotate(45deg) scale(1);
	transform: rotate(45deg) scale(1);
}

.dropdown ul li.active a:after {
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

.dropdown ul li.active a:hover:before, .dropdown ul li.active a:hover:after {
	opacity: 1;
}*/

.dropdown ul li:first-child a {
	border-radius: 6px 6px 0 0;
}

.dropdown ul li:last-child a {
	border-radius: 0 0 6px 6px;
}

.dropdown.filled>span {
	color: #fff;
}

.dropdown.open>span {
	border-color: rgba(255, 255, 255, 0.2);
}

.dropdown.open>span:before,
.dropdown.open>span:after {
	background: rgba(255, 255, 255, 1);
}

.dropdown.open>span:before {
	-webkit-transform: scale(0.96, 0.8) rotate(-50deg);
	transform: scale(0.96, 0.8) rotate(-50deg);
}

.dropdown.open>span:after {
	-webkit-transform: scale(0.96, 0.8) rotate(50deg);
	transform: scale(0.96, 0.8) rotate(50deg);
}

.dropdown.open ul {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1) translate(0, 12px);
	transform: scale(1) translate(0, 12px);
	transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

.dropdown.open ul li {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.dropdown.open ul li:nth-child(1) {
	transition-delay: 80ms;
}

.dropdown.open ul li:nth-child(2) {
	transition-delay: 160ms;
}

.dropdown.open ul li:nth-child(3) {
	transition-delay: 240ms;
}

.dropdown.open ul li:nth-child(4) {
	transition-delay: 320ms;
}

.dropdown.open ul li:nth-child(5) {
	transition-delay: 400ms;
}

.dropdown.open ul li:nth-child(6) {
	transition-delay: 480ms;
}

.dropdown.open ul li:nth-child(7) {
	transition-delay: 560ms;
}

.dropdown.open ul li:nth-child(8) {
	transition-delay: 640ms;
}

.dropdown.open ul li:nth-child(9) {
	transition-delay: 720ms;
}

.dropdown.open ul li:nth-child(10) {
	transition-delay: 800ms;
}

select.dropdown {
	padding: 9px 16px;
	border-radius: 6px;
	color: #3f4656;
	border: 1px solid rgba(47, 53, 69, 0.2);
	background: rgba(255, 255, 255, 0.15);
	line-height: 22px;
	font-size: 16px;
	font-family: inherit;
	-webkit-appearance: none;
}





.lang {
	display: none;
	position: absolute;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	top: 50%;
	left: 30px;
	height: 28px;
	width: 40px;
	padding: 2px;
	z-index: 5;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.15);
	border-radius: 5px;
	transition: all .2s linear
}

.lang img {
	width: 20px;
	height: 20px;
	transition: all .2s linear;
	display: block;
	transition: all .2s linear
}

.loader {
	width: 36px;
	margin-right: 4px;
	font-size: 0;
	text-align: center;
	display: none;
	flex-direction: row;
	justify-content: center;
	transition: all .2s linear
}

.lang-active .loader {
	display: flex;
}

.lang-active .lang img {
	display: none;
}


.loader .dot {
	width: 6px;
	height: 6px;
	background-color: #ffffff;
	border-radius: 50%;
}

.loader .dot:nth-child(1) {
	animation: loader 0.5s infinite alternate ease;
}

.loader .dot:nth-child(2) {
	animation: loader-right 0.5s infinite alternate ease;
}

@keyframes loader {
	0% {
		transform: translate3d(5px, 0, 0) scale(1);
		background-color: rgba(255, 255, 255, 0.9);
	}

	25% {
		background-color: rgba(255, 255, 255, 0.5);
	}

	100% {
		transform: translate3d(0, 0, 0) scale(.67);
		background-color: rgba(255, 255, 255, 0.2);
	}
}

@keyframes loader-right {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
		background-color: rgba(255, 255, 255, 0.9);
	}

	25% {
		background-color: rgba(255, 255, 255, 0.5);
	}

	100% {
		transform: translate3d(5px, 0, 0) scale(.67);
		background-color: rgba(255, 255, 255, 0.2);
	}
}

.trigger {
	display: none;
	position: absolute;
	top: 50%;
	right: 30px;
	height: 18px;
	width: 25px;
	z-index: 5;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.trigger span,
.trigger:after,
.trigger:before {
	position: absolute;
	background: #ffffff;
	border-radius: 4px;
	top: 9px;
	left: 0;
	right: 0;
	height: 3px;
	margin-top: -2px;
	transition: all .2s linear
}

.trigger:after,
.trigger:before {
	content: '';
	top: 2px
}

.trigger:after {
	top: 16px
}

.nav-active .trigger:after,
.nav-active .trigger:before {
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	left: 0;
	right: 0;
	background: #082137;
}

.nav-active .trigger:after {
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.nav-active .trigger span {
	opacity: 0
}


.top-container {
	background: radial-gradient(ellipse at right bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0.15) 100%);
	border-radius: 12px 12px 0 0;
	margin: 0 auto;
}

.middle-cointainer {
	/*background: linear-gradient(to bottom,#ffffff 0%,#ffffff 85%,#f8f9fd 85%,#f8f9fd 100%);*/
}

.down-container {
	/*background: linear-gradient(to bottom,#f8f9fd 0%,#f8f9fd 45%,#ffffff 45%,#ffffff 100%);*/
}

.footer-container {
	background: #f8f9fc;
}

.footer-ribbon-container {
	background: #f5f6f7;
}

.loading,
.terms {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.terms {
	background: rgba(0, 0, 0, 0.5);
}

.loading-holder,
.terms-holder {
	position: fixed;
	display: flex;
	flex-direction: row;
	align-content: center;
}

.logo-holder {
	margin-top: 50px;
	padding-right: 50px;
	display: flex;
	flex-direction: row;
	align-content: center;
	padding-left: 0;
}

.top-content {
	direction: rtl;
	margin-top: 75px;
	padding-right: 50px;
}

nav.navmenu {
	margin-top: 50px;
	display: flex;
	align-items: center;
	padding: 0;
	z-index: 10;
}

nav.navmenu>ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	padding: 0;
	font: 16px/1.2 vazir, sans-serif;
}

nav.navmenu>ul>li {
	position: relative;
	margin-left: 20px;
	padding-bottom: 10px;
}

nav.navmenu>ul>li:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.5);
	transition: all 500ms;
}


nav.navmenu>ul>li:last-child:hover:after {
	width: 0;
}

nav.navmenu>ul>li:hover:after {
	width: 100%;
}

nav.navmenu>ul>li:last-child {
	margin-left: 0;
}


.logo {
	/*background-image: linear-gradient(120deg, #34e0f0 0%, #b400ff 100%);*/
	border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
	width: 75px;
	height: 75px;
	animation: morphTranslate 3s linear infinite;
	transform-style: preserve-3d;
	outline: 1px solid transparent;
	will-change: border-radius;
	animation: fadeIn 500ms reverse;
}

.logo:before,
.logo:after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
	will-change: border-radius, transform, opacity;
	animation-delay: 200ms;
	background-image: linear-gradient(120deg, rgba(0, 67, 255, .55) 0%, rgba(0, 103, 255, .89) 100%);
}

.logo:before {
	animation: morphTranslate 3s linear infinite;
	opacity: .21;
	animation-duration: 1.5s;
}

.logo:after {
	display: flex;
	align-content: center;
	justify-content: center;
	flex-flow: wrap-reverse;
	animation: morph 3s linear infinite;
	animation-delay: 400ms;
	opacity: .89;
	content: url(../img/svg/icon-logo-brain.svg);
}

@keyframes morphTranslate {

	0%,
	100% {
		border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
		transform: translate3d(0, 0, 0) rotateZ(0.01deg);
	}

	34% {
		border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
		transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
	}

	50% {
		opacity: .89;
		transform: translate3d(0, 0, 0) rotateZ(0.01deg);
	}

	67% {
		border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
		transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
	}
}

@keyframes morph {

	0%,
	100% {
		border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
		transform: rotateZ(0.01deg);
	}

	34% {
		border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
		transform: rotateZ(0.01deg);
	}

	50% {
		opacity: .89;
		transform: rotateZ(0.01deg);
	}

	67% {
		border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
		transform: rotateZ(0.01deg);
	}
}

@keyframes fadeIn {
	100% {
		transform: scale(1.03);
		opacity: 0;
	}
}

.first-row {
	min-height: 800px;
}

.form .main-title,
.form .main-text {
	text-align: center;
}

.main-title .letter {
	display: inline-block;
	line-height: 1em;
	margin-left: 5px;
	opacity: 0;
}

.main-text {
	margin-top: 10px;
	padding-top: 0;
}

.main-items {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.main-items img {
	width: 42px;
	height: 42px;
}

.main-items .small {
	padding-right: 10px;
}

.widgets {
	position: absolute;
	left: -25px;
	top: 25px;
	width: 630px;
}

.widgets>div:first-child {
	margin-left: 0;
}

.widgets>div:nth-child(even) {
	margin-left: 0;
	margin-right: 0;
}

.widgets>div:last-child {
	margin-right: 0;
}

.widget h4,
.widget h5 {
	margin-top: 10px;
}

.column {
	width: 200px;
	display: flex;
	flex-direction: column;
	margin: 0 15px;
}

.middle {
	margin-top: 140px;
}

.end {
	margin-top: 295px;
}

.endcontact {
	margin-top: 195px;
}

.widget {
	width: 200px;
	height: 265px;
	background: #ffffff;
	border-radius: 10px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	-webkit-box-shadow: 20px 20px 20px 2px rgba(168, 176, 196, 0.05);
	-moz-box-shadow: 20px 20px 20px 2px rgba(168, 176, 196, 0.05);
	box-shadow: 20px 20px 20px 2px rgba(168, 176, 196, 0.05);
}

.get-started {
	display: flex;
	flex-direction: column;
	margin-top: 25px;
}

.button {
	border-radius: 50px;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font: 200 15px/1.4 vazir, sans-serif;
	height: 48px;
	margin-top: 10px;
	padding: 15px 30px !important;
	text-align: center;
	transition: all .3s ease 0s;
	-webkit-transition: all .3s ease 0s;
	outline: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.button:active {
	transform: scale(0.95);
}

.purple {
	background: #ff587e;
	line-height: 28.1px;
}

.orange {
	background: #fe6e5d;
	line-height: 28.1px;
}

.purple:hover,
.orange:hover,
.blue:hover {
	color: #ffffff;
}

.blue {
	background: #037ef3;
	line-height: 28.1px;
}

.green-login {
	justify-content: space-between;
	font: 400 15px/1.4 vazir, sans-serif;
	height: 48px;
	color: rgba(18, 173, 175, 1);
	background: rgba(26, 188, 190, 0.2);
}

a.button i {
	border-radius: 50%;
	width: 28px;
	background: transparent;
	height: 28px;
	background: url('../img/icon/moon.png') no-repeat center;
	animation: ripple 1s linear infinite;
}

a.button i img {
	width: 28px;
	height: 28px;
}

@keyframes ripple {
	0% {
		box-shadow: 0 0 0 0 rgba(18, 173, 175, 0.1), 0 0 0 20px rgba(18, 173, 175, 0.1), 0 0 0 40px rgba(18, 173, 175, 0.1), 0 0 0 60px rgba(18, 173, 175, 0.1);
	}

	100% {
		box-shadow: 0 0 0 20px rgba(18, 173, 175, 0.1), 0 0 0 40px rgba(18, 173, 175, 0.1), 0 0 0 60px rgba(18, 173, 175, 0.1), 0 0 0 80px rgba(18, 173, 175, 0);
	}
}

.green-login:hover {
	color: rgba(18, 173, 175, 1);
}

.chart-title:after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 0 0 5px;
	-moz-border-radius: 3.5px;
	-webkit-border-radius: 3.5px;
	border-radius: 3.5px;
	background: #90b3f5;
}

.arc-title:after,
.call-title:after {
	background: #f86f9b;
}

.line-title:after {
	background: #946ef9;
}

.bar-title:after,
.map-title:after {
	background: #10aecb;
}

.stat-title:after,
.support-title:after {
	background: #4e9eff;
}

.gauge .background {
	fill: #e9f1f6;
}

.gauge .value {
	fill: #162242;
	font-size: 1.5rem;
}

.gauge .state {
	fill: #475a6a;
	font-size: 0.9rem;
}

.gauge .scale {
	fill: #888888;
	font-size: 0.75rem;
}

.gauge .value tspan {
	font-size: 1rem;
}

.chart--bar-chart {
	margin-bottom: 50px;
}

.chart__bar {
	fill: #5ec0ff;
}

.chart__column {
	fill: #e6edf4;
}

.chart__line {
	fill: none;
	stroke-width: 2px;
}

.chart__axis path,
.chart__axis line {
	fill: none;
	stroke: #e6edf4;
	stroke-width: 1px;
}

.pie-chart .background {
	fill: #ffaacd;
}

.pie-chart .foreground {
	fill: #90b3f5;
}

.pie-chart .dummy {
	fill: none;
}

.pie-chart .circle {
	stroke: #90b3f5;
	stroke-width: 8px;
	fill: #fff;
}

.pie-chart .static {
	fill: #888888;
	font-size: 0.75rem;
}

.pie-chart .value {
	fill: #162242;
	font-size: 1.5rem;
}

.pie-chart .value tspan {
	font-size: 1rem;
}

.sec-two {
	position: relative;
}

.stack {
	width: 150px;
	height: 150px;
	position: relative;
	transform-style: preserve-3d;
}

.stack-layer {
	animation-name: float;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
	border-radius: 16px;
	width: 100px;
	height: 100px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%) rotateX(60deg) rotateZ(45deg);
}

.shadow {
	animation-name: cast;
	background-color: black;
	box-shadow: 0 0 48px 48px black;
	height: 38px;
	opacity: 0.2;
	top: 110px;
	width: 38px;
}

.twitter {
	/*	background: #1da1f2;
*/
	background: linear-gradient(to right, #b4ebbd, #6aded5, #32cdeb);
	opacity: 0.6;
}

.telegram {
	background: #0088cc;
	opacity: 0.6;
	top: 15px;
}

.facebook {
	background: #3b5998;
	opacity: 0.6;
	top: 30px;
}

.instagram {
	background: #c13584;
	opacity: 0.6;
	top: 45px;
}

.youtube {
	/*background: #ff0000;*/
	background: linear-gradient(to right, #eaaebd, #bc98cc, #a1afec);
	opacity: 0.6;
	top: 60px;
}

.two {
	-webkit-animation-delay: 100ms;
	animation-delay: 100ms;
}

.three {
	-webkit-animation-delay: 200ms;
	animation-delay: 200ms;
}

.four {
	-webkit-animation-delay: 300ms;
	animation-delay: 300ms;
}

.five {
	-webkit-animation-delay: 400ms;
	animation-delay: 400ms;
}

@keyframes float {
	50% {
		-webkit-transform: translate(-50%, -24px) rotateX(60deg) rotateZ(45deg);
		transform: translate(-50%, -12px) rotateX(60deg) rotateZ(45deg);
	}
}

@keyframes cast {
	50% {
		opacity: 0.08;
		-webkit-transform: scale(1.1) translateX(-50%) rotateX(60deg) rotateZ(45deg);
		transform: scale(1.1) translateX(-50%) rotateX(60deg) rotateZ(45deg);
	}
}

.clients-title {
	font-weight: normal;
	color: #082137;
	font-size: 14px;
	margin: 0 0 50px 0;
	text-align: center;
}

/*===== Clients SLider =====*/
.clients-slider:before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	pointer-events: none;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
	width: 8em;
	height: 100%;
}

.clients-slider:after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	pointer-events: none;
	background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
	width: 8em;
	height: 100%;
}

.clients-slider .slick-slide {
	overflow: hidden;
	outline: 0;
}

.clients-slider .slick-slide img {
	-webkit-filter: blur(1px);
	filter: blur(1px);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	opacity: 0.2;
}

.clients-slider .slick-slide .shine:before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.clients-slider .slick-slide {
	transform: scale(0.7, 0.7);
	transition: transform 0.3s;
}

.clients-slider .slick-slide.slick-center {
	transform: scale(1.4, 1.4);
}

.clients-slider .slick-slide.slick-center .shine:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

.clients-slider .slick-slide.slick-center img {
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
}

.clients-slider .slide {
	padding: 0 24px;
	outline: 0;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

/*===== Clients SLider =====*/

/*===== Clients =====*/
.clients-holder {
	margin-bottom: 50px;
	min-height: 150px;
}

.clients-holder .client {
	min-height: 85px;
	margin: 0 1rem 0 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.clients-holder .client img {
	opacity: 0.6;
	max-width: 150%;
}

/*===== Clients =====*/

.sec-three {
	padding-bottom: 50px;
	position: relative;
	margin-top: 75px;
}

.title-holder {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-bottom: 50px;
}

.title-holder h2 {
	text-align: right;
	margin: 0px;
}

/*===== Features =====*/
.features-holder {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	margin: 0px 0 50px 0;
}

.features {
	position: relative;
	border-radius: 6px 6px 0 0;
	margin: 15px;
	transition: all .15s ease-out;
}

.features:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 5px;
	background: #3db797;
	transition: width .3s ease-in-out;
}

.features:hover:after {
	width: 100%;
}

.features>div {
	display: flex;
	flex-direction: column;
	padding: 0 15px;
}

.features>div>h3 {
	margin: 0;
	text-align: right;
}

.features>div>p {
	font-size: 14px;
	direction: rtl;
	margin-bottom: 35px;
}

.features:hover {
	background: #ffffff;
	box-shadow: 0 30px 75px -15px rgba(217, 222, 228, 1), 0 25px 40px -20px rgba(217, 222, 228, 1);
}

.features:before {
	position: absolute;
	font-size: 180px;
	font-weight: 900;
	top: -80px;
	right: 0;
	background: -webkit-linear-gradient(rgba(227, 246, 251, 1) 0%, rgba(255, 255, 255, 0) 75%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/*.managers:before{
	content: '1';
	right: 15px
}

.consult:before{
	content: '2';
}

.media:before{
	content: '3';
}*/

.icon-holder {
	margin-top: 25px;
	display: inline-block;
	position: relative;
	border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
	transform: rotate(45deg);
	align-self: flex-end;
	margin-bottom: 20px;
	margin-left: 30px;
	width: 55px;
	height: 55px;
}

.icon-holder:after {
	position: absolute;
	display: flex;
	align-content: center;
	justify-content: center;
	flex-flow: wrap-reverse;
	/*transform: rotate(-45deg);*/
	z-index: 1;
}

.icon-managers {
	background-image: linear-gradient(120deg, rgba(255, 88, 126, 0.05) 0%, rgba(255, 194, 208, 0.2) 100%);
	animation: morph 6s linear infinite;
	animation-duration: 6s;
}

.icon-managers:after {
	top: 5px;
	right: 15px;
	width: 52px;
	height: 38px;
	content: url('../img/svg/icon-managers.svg');
}


.icon-consult {
	background-image: linear-gradient(120deg, rgba(38, 167, 250, 0.05) 0%, rgba(180, 224, 253, 0.2) 100%);
	animation: morph 6s linear infinite;
	animation-duration: 6s;
}

.icon-consult:after {
	top: 0px;
	right: 15px;
	content: url('../img/svg/icon-pr-consult.svg');
}


.icon-media {
	background-image: linear-gradient(120deg, rgba(168, 107, 233, 0.05) 0%, rgba(218, 183, 254, 0.2) 100%);
	animation: morph 6s linear infinite;
	animation-duration: 6s;
}

.icon-media:after {
	top: 7px;
	right: 10px;
	content: url('../img/svg/icon-media.svg');
}

/*===== Features =====*/

/*===== Keys =====*/
.subtitle {
	text-align: right;
	display: block;
	padding-right: 16px;
	font: 700 16px/1.25;
	position: relative;
	margin: 0 !important;
	letter-spacing: 1.2px;
}

.subtitle:before {
	content: '';
	position: absolute;
	bottom: 3px;
	right: 0;
	width: 10px;
	height: 2px;
	background: #26c195;
}

/*===== Keys =====*/
.sliderContainer {
	position: relative;
}

.sliderContainer:before {
	content: '';
	width: 250px;
	height: 250px;
	display: block;
	position: absolute;
	left: -15%;
	top: 15%;
	border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
	background: linear-gradient(to top, rgba(234, 174, 189, 0.05), rgba(188, 152, 204, 0.05), rgba(161, 175, 236, 0.05));
	animation-delay: 200ms;
	animation: morph 20s linear infinite;
}

.sliderContainer:after {
	content: '';
	width: 100px;
	height: 100px;
	display: block;
	position: absolute;
	right: -5%;
	bottom: -5%;
	border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
	background: linear-gradient(to right, rgba(180, 235, 189, 0.2), rgba(106, 222, 213, 0.2), rgba(50, 205, 235, 0.2));
	animation-delay: 200ms;
	animation: morph 4s linear infinite;
}

ul.nav {
	direction: rtl;
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin-bottom: 90px;
}

ul.nav li.nav-item {
	margin: 0 17px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid rgba(180, 224, 253, 0.2);
	background: #fff;
	position: relative;
	cursor: pointer;
	transition: background-color 0.25s ease;
	-webkit-transition: background-color 0.25s ease;
	-moz-transition: background-color 0.25s ease;
	-o-transition: background-color 0.25s ease;
}

ul.nav li.nav-item.active {
	background: rgba(180, 224, 253, 0.1);
	border: 2px solid rgba(180, 224, 253, 0.05);
}

ul.nav li.nav-item:hover,
ul.nav li.nav-item.active:hover {
	background: rgba(180, 224, 253, 0.1);
	border: 2px solid rgba(180, 224, 253, 0.05);
}

ul.nav li.nav-item.active:after {
	background: #26c195;
}

ul.nav li.nav-item:after {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #37383C;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: background-color 0.25s ease;
	-webkit-transition: background-color 0.25s ease;
	-moz-transition: background-color 0.25s ease;
	-o-transition: background-color 0.25s ease;
}

ul.nav li.nav-item:hover:after,
ul.nav li.nav-item:hover:after {
	background: #037ef3;
}

ul.nav li.nav-item:last-child i {
	display: none;
}

ul.nav li.nav-item i.progressBar {
	position: absolute;
	right: 49px;
	width: 140px;
	top: 15px;
	height: 2px;
	border-radius: 10px;
	overflow: hidden;
	background: rgba(180, 224, 253, 0.2);
	/*background: url('../img/svg/icon-dot.svg') 0px 50% / auto 2px repeat-x;*/
}

ul.nav li.nav-item i.progressBar .inProgress {
	background-color: rgb(44, 221, 159);
	width: 0%;
	height: 2px;
}

ul.nav li.nav-item span {
	display: block;
	padding-top: 24px;
	text-align: center;
	width: 170px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	transition: color .3s ease-in-out;
}

.sliderContainer .slick-list {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 0;
}

.slide-content {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: 0 15px;
}

.slide-content img {
	max-width: 100%;
}

/* Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	direction: rtl;
	width: 100%;
	padding: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	font-size: 26px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	text-align: center;
	color: #d0dce5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: color .5s ease-in-out;
}

.slick-dots li.slick-active button:before {
	color: rgb(44, 221, 159);
	/*font-size: 36px;*/
}

/*===  ===*/

.separator {
	height: 1px;
	background-color: rgba(244, 246, 249, 1);
	margin-bottom: 75px;
}

.semi-separator {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.15);
	margin-bottom: 35px;
}


.sec-four {
	padding-bottom: 50px;
	position: relative;
	padding-top: 35px;
}

.sec-four:before {
	content: '';
	width: 400px;
	height: 400px;
	display: block;
	position: absolute;
	right: -10%;
	top: 5%;
	border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
	background: linear-gradient(to top, rgba(180, 235, 189, 0.2), rgba(106, 222, 213, 0.2), rgba(50, 205, 235, 0.2));
	animation-delay: 200ms;
	animation: morph 20s linear infinite;
}

.sec-four:after {
	content: '';
	width: 100px;
	height: 100px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
	background: linear-gradient(to right, rgba(234, 174, 189, 0.05), rgba(188, 152, 204, 0.05), rgba(161, 175, 236, 0.05));
	animation-delay: 200ms;
	animation: morph 3s linear infinite;
}

.sec-four-title-holder {
	display: flex;
	flex-direction: row;
	direction: rtl;
	z-index: 1;
}

.btn-holder {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	margin-bottom: 50px;
	align-self: center;
}

/*=== Arrow Buttons ===*/
.slick-arrow {
	display: block;
	position: relative;
	width: 44px;
	height: 44px;
}

.slick-arrow.left {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.slick-arrow i {
	display: block;
	position: absolute;
	margin: -10px 0 0 -10px;
	width: 20px;
	height: 20px;
	left: 50%;
	top: 50%;
}

.slick-arrow i:before,
.slick-arrow i:after {
	content: '';
	width: 10px;
	height: 2px;
	border-radius: 1px;
	position: absolute;
	left: 50%;
	top: 50%;
	background: #26c195;
	margin: -1px 0 0 -5px;
	display: block;
	-webkit-transform-origin: 9px 50%;
	transform-origin: 9px 50%;
}

.slick-arrow i:before {
	-webkit-transform: rotate(-40deg);
	transform: rotate(-40deg);
}

.slick-arrow i:after {
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
}

.slick-arrow:before,
.slick-arrow:after {
	content: '';
	display: block;
	position: absolute;
	left: 1px;
	right: 1px;
	top: 1px;
	bottom: 1px;
	border-radius: 50%;
	border: 2px solid rgba(61, 183, 151, .12);
}

.slick-arrow svg {
	width: 44px;
	height: 44px;
	display: block;
	position: relative;
	z-index: 1;
	color: #26c195;
	stroke-width: 2px;
	stroke-dashoffset: 126;
	stroke-dasharray: 126 126 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.slick-arrow.animate svg {
	-webkit-animation: stroke 1s ease forwards .3s;
	animation: stroke 1s ease forwards .3s;
}

.slick-arrow.animate i {
	-webkit-animation: arrow 1.6s ease forwards;
	animation: arrow 1.6s ease forwards;
}

.slick-arrow.animate i:before {
	-webkit-animation: arrowUp 1.6s ease forwards;
	animation: arrowUp 1.6s ease forwards;
}

.slick-arrow.animate i:after {
	-webkit-animation: arrowDown 1.6s ease forwards;
	animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
	52% {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
		stroke-dashoffset: 0;
	}

	52.1% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
		stroke-dashoffset: 0;
	}

	100% {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
		stroke-dashoffset: 126;
	}
}

@keyframes stroke {
	52% {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
		stroke-dashoffset: 0;
	}

	52.1% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
		stroke-dashoffset: 0;
	}

	100% {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
		stroke-dashoffset: 126;
	}
}

@-webkit-keyframes arrow {

	0%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}

	23% {
		-webkit-transform: translateX(17px);
		transform: translateX(17px);
		opacity: 1;
	}

	24%,
	80% {
		-webkit-transform: translateX(-22px);
		transform: translateX(-22px);
		opacity: 0;
	}

	81% {
		opacity: 1;
		-webkit-transform: translateX(-22px);
		transform: translateX(-22px);
	}
}

@keyframes arrow {

	0%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}

	23% {
		-webkit-transform: translateX(17px);
		transform: translateX(17px);
		opacity: 1;
	}

	24%,
	80% {
		-webkit-transform: translateX(-22px);
		transform: translateX(-22px);
		opacity: 0;
	}

	81% {
		opacity: 1;
		-webkit-transform: translateX(-22px);
		transform: translateX(-22px);
	}
}

@-webkit-keyframes arrowUp {

	0%,
	100% {
		-webkit-transform: rotate(-40deg) scaleX(1);
		transform: rotate(-40deg) scaleX(1);
	}

	20%,
	80% {
		-webkit-transform: rotate(0deg) scaleX(0.1);
		transform: rotate(0deg) scaleX(0.1);
	}
}

@keyframes arrowUp {

	0%,
	100% {
		-webkit-transform: rotate(-40deg) scaleX(1);
		transform: rotate(-40deg) scaleX(1);
	}

	20%,
	80% {
		-webkit-transform: rotate(0deg) scaleX(0.1);
		transform: rotate(0deg) scaleX(0.1);
	}
}

@-webkit-keyframes arrowDown {

	0%,
	100% {
		-webkit-transform: rotate(40deg) scaleX(1);
		transform: rotate(40deg) scaleX(1);
	}

	20%,
	80% {
		-webkit-transform: rotate(0deg) scaleX(0.1);
		transform: rotate(0deg) scaleX(0.1);
	}
}

@keyframes arrowDown {

	0%,
	100% {
		-webkit-transform: rotate(40deg) scaleX(1);
		transform: rotate(40deg) scaleX(1);
	}

	20%,
	80% {
		-webkit-transform: rotate(0deg) scaleX(0.1);
		transform: rotate(0deg) scaleX(0.1);
	}
}

/*=== Arrow Buttons ===*/

.blog-slider {
	margin-bottom: 50px !important;
}

.blog-slider .slick-slide {
	margin: 0 15px;
}

.blog-slider .slick-list {
	padding: 10px;
}

.card {
	position: relative;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .05), 0 4px 6px 0 rgba(101, 112, 131, .05);
	transition: transform .25s ease, box-shadow .25s ease;
	-webkit-transition: -webkit-transform .25s ease, box-shadow .25s ease;
}

.card:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 5px;
	background: #3db797;
	transition: width .3s ease-in-out;
}

.card:hover:after {
	width: 100%;
}

.card:hover {
	/* change it to get animation */
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}


.card .img {
	height: 280px;
	background-size: cover;
	background-position: 50% 50%;
	outline: 2px solid rgba(255, 255, 255, 0.2);
	outline-offset: -10px;
}

.card .body {
	position: relative;
	padding: 25px 32px 80px;
	direction: rtl;
	min-height: 200px;
}

.card p {
	color: #58676d;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 30px;
}

.card span.subtitle {
	display: block;
	font: normal 13px/1.2 vazir, sans-serif;
	color: rgba(115, 141, 177, .5);
	margin-bottom: 5px !important;
}

.card h3 {
	font: bold 19px/1.38 vazir, sans-serif;
	margin: 0 0 10px 0;
	color: #47495a
}

.card .more {
	color: #1681dc;
	font: normal 16px/1.2 vazir, sans-serif;
	position: absolute;
	bottom: 34px;
	left: 31px;
	right: 30px;
}

.card:hover .more {
	color: #3db797;
}

/*===== =====*/
.demo-req {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 0 61px 0;
}

.btn-wrap {
	align-self: center;
	display: flex;
	flex-direction: column;
}

/*===== =====*/


/*===== =====*/
.form-row-holder {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.form-row-holder:first-child {
	margin-right: 0 !important;
}

.form-row-holder:last-child {
	margin-left: 0 !important;
}

.form-body .wrap {
	position: relative;
	background: rgba(255, 255, 255, 1);
	border-radius: 6px;
	padding: 25px;
	margin: 15px 0;
	transition: all .3s ease-in-out;
	border: 1px solid rgba(107, 117, 161, 0.15);
}

.form-body .wrap.filled {
	padding: 15px 25px 35px 25px;
}

.form-body .wrap .group.filled svg.validator {
	opacity: 1;
}

.form-body .wrap .group svg.validator {
	width: 20px;
	height: 20px;
	position: absolute;
	fill: none;
	opacity: 0;
}

.form-body .wrap .group svg.validator path,
.form-body .wrap .group svg.validator polyline {
	stroke: #d1d7e3;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.3s ease 0s;
}

.form-body .wrap .group svg.validator path {
	stroke-dasharray: 64;
	stroke-dashoffset: 127;
	transition: stroke-dasharray .8s ease .8s, stroke-dashoffset .8s ease .5s;
}

.form-body .wrap .group svg.validator polyline {
	stroke-dasharray: 18;
	stroke-dashoffset: 18;
	transition: stroke-dashoffset .5s ease 0s;
}

.form-body .wrap .group.success svg.validator path,
.form-body .wrap .group.success svg.validator polyline {
	stroke: #69DD95;
}

.form-body .wrap .group.success svg.validator path {
	stroke-dasharray: 46;
	stroke-dashoffset: 150;
	transition: stroke-dasharray .6s ease 0s, stroke-dashoffset .8s ease .3s, stroke .3s ease
}

.form-body .wrap .group.success svg.validator polyline {
	stroke-dashoffset: 0;
	transition: stroke-dashoffset .5s ease .6s, stroke .3s ease .6s;
}

.form-body .wrap .group {
	position: relative;
}

.form-body .wrap .group:before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 1px;
	background: #edf0f5;
	transition: all .3s ease-in-out;
	z-index: 1;
}

.form-body .wrap .group.active label {
	top: -15px;
	font-size: 12px;
}

.form-body .wrap .group.filled:before {
	width: 100%;
}

.form-body .wrap .group.error:before {
	width: 100%;
	background: #ff0000;
}

.form-body .wrap .group.filled label {
	opacity: 0;
}

.form-body .wrap .tips {
	position: absolute;
	bottom: 0;
	opacity: 0;
	padding: 0;
	font-size: 10px;
	transition: all 0.3s ease-in-out;
}

.form-body .wrap.filled .tips {
	opacity: 1;
	bottom: 10px;
}

.form-body .wrap .tips p {
	color: #a3b1c0;
	margin: 0;
}

.form-body .wrap label {
	position: absolute;
	top: 0;
	right: 0;
	transition: all 0.15s ease-in-out;
	pointer-events: none;
	font-size: 14px;
}

.form-body textarea:focus {
	outline: 0
}

.form-body textarea {
	font: normal 14px/1.2 vazir, sans-serif;
	border: 0;
	position: relative;
	display: block;
	width: 100%;
	padding: 6px 0;
	background: rgba(255, 255, 255, 0);
	resize: none;
	overflow: hidden;
}

.form-body input {
	font: normal 14px/1.2 vazir, sans-serif;
	border: 0;
	position: relative;
	display: block;
	width: 100%;
	padding: 6px 0;
	background: rgba(255, 255, 255, 0);
}

.form-body input:focus {
	outline: none;
}

/*===== =====*/


/*===== =====*/
.footer-contact {
	padding-top: 65px;
	margin-bottom: 75px;
	font: 14px/1.6 vazir, sans-serif;
}

.footer-contact .footer-logo {
	display: flex;
	align-items: flex-end;
}

.footer-contact .footer-logo img {
	width: 35%;
}

.footer-contact .address,
.footer-contact .email,
.footer-contact .phone {
	position: relative;
	padding-right: 24px;
	margin: 0;
}

.footer-contact .address:before,
.footer-contact .email:before,
.footer-contact .phone:before {
	content: '';
	opacity: 0.8;
	position: absolute;
	top: 4px;
	right: 0;
	width: 14px;
	height: 14px;
	margin-left: 10px;
	background-repeat: no-repeat;
	background-position: 0% 0%;
}

.footer-contact .address:before {
	background: url('../img/svg/location-pin.svg');
}

.footer-contact .email:before {
	background: url('../img/svg/envelope-icon.svg');
}

.footer-contact .phone:before {
	background: url('../img/svg/telephone-icon.svg');
}

.footer-bottom-body {
	padding: 25px 1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-top: 1px solid #e2e4ec;
}

.footer-bottom-body a {
	transition: color 0.5s ease;
}

.footer-bottom-body a:hover {
	color: #3db797;
}

.footer-bottom-body img {
	width: 100px;
	padding-left: 1rem;
}

.footer-bottom-body p span {
	margin-left: 25px;
}

.footer-bottom-body p {
	font: 12px/1.2 vazir, sans-serif;
}

.social {
	display: flex;
	flex-direction: row;
}

.social a:last-child {
	margin-left: 0;
}

.follow-buttons {
	display: flex;
	align-items: center;
}

.follow-button:before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	left: -1px;
	bottom: -1px;
	border-radius: 50%;
}

.follow-button {
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 21px;
	border-radius: 22px;
	display: flex;
	height: 32px;
	width: 32px;
	justify-content: center;
	transition: transform .25s ease;
	-webkit-transition: transform .25s ease;
	position: relative;
	margin-left: 30px;
	background: rgba(8, 33, 55, 0.5);
}

.follow-button:hover {
	transform: translateY(-2px);
}

.follow-twitter:before {
	background-image: url('../img/svg/twitter_mask_icon.svg');
}

.follow-twitter:hover {
	background: linear-gradient(to bottom, #1da1f2 0, #1da1f2 100%);
}

.follow-linkedin:before {
	background-image: url('../img/svg/linkedin_mask_icon.svg');
}

.follow-linkedin:hover {
	background: linear-gradient(to bottom, #0077b5 0, #00a0dc 100%);
}

.follow-instagram:before {
	background-image: url('../img/svg/instagram_mask_icon.svg');
}

.follow-instagram:hover {
	background: linear-gradient(to bottom, #833ab4 0, #e1306c 100%);
}

.follow-telegram:before {
	background-image: url('../img/svg/telegram_mask_icon.svg');
}

.follow-telegram:hover {
	background: linear-gradient(to bottom, #0088cc 0, #0088cc 100%);
}

/*===== Responsive ==== */

/* Extra Small (DOES NOT SUPPORTED) ----------- */
@media only screen and (max-width: 319px) {}

/* Smartphones (portrait) ----------- */
@media only screen and (min-width: 320px) and (max-width: 479px) {

	nav.navmenu>ul>li:after {
		width: 0;
	}

	nav.navmenu>ul>li:hover:after {
		width: 0;
	}

	nav.navmenu>ul>li.gray {
		background: hsl(222, 79%, 98%);
		font-weight: normal;
		color: rgba(0, 0, 0, 0.05);
	}

	nav.navmenu>ul>li i {
		visibility: hidden;
		opacity: 0;
		font-weight: normal;
	}

	.gradient {
		height: 44vh;
	}

	.widgets,
	.top-container nav.navmenu {
		display: none;
	}

	.top-container {
		margin-top: 103px;
	}

	.header-container {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}

	.logo-holder {
		flex-basis: 100%;
		max-width: 100%;
	}

	.sticker {
		transition: all 0.3s linear;
		background: rgba(255, 255, 255, 0);
	}

	.sticktop {
		background: rgba(255, 255, 255, 1);
		transition: all 0.3s linear;
		border-bottom: 1px solid rgba(170, 184, 211, 0.5);
	}

	.sticktop .trigger span,
	.sticktop .trigger:after,
	.sticktop .trigger:before {
		background: #082137;
	}

	.dropdown>span {
		display: none;
	}

	.sticktop .lang {
		background: rgba(8, 33, 55, 0.15);
	}

	.sticktop .lang img {
		opacity: 1;
	}

	.nav-trigger {
		display: block;
	}

	.trigger,
	.lang {
		display: flex;
	}

	/*.lang should be added to see language trigger buttton */
	.menu-holder nav.navmenu {
		flex-basis: 100%;
		max-width: 100%;
		margin-top: 25px;
	}

	.menu-holder nav.navmenu>ul {
		width: 100%;
	}

	.menu-holder nav.navmenu>ul>li {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		width: 100%;
		min-height: 85px;
		text-align: center;
		font-weight: bold;
	}

	.menu-holder nav.navmenu>ul>li a {
		font-weight: bold;
	}

	.navmenu a {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.navmenu a:active {
		background: rgba(0, 0, 0, 0.05);
	}

	.logo-holder {
		padding-right: 0px;
		justify-content: center;
	}

	.top-content {
		margin-top: 35px;
		padding: 0px;
	}

	.main-title {
		text-align: center;
		margin-bottom: 25px;
	}

	.main-text {
		text-align-last: center;
		margin-top: 30px;
	}

	.main-items {
		flex-direction: column;
		margin: 35px 0;
	}

	.main-items .small {
		padding: 0;
		text-align: center;
	}

	.main-items .small a {
		display: block;
	}

	.get-started {
		justify-content: center;
		align-items: center;
	}

	.get-started a.button,
	.demo-req a.button {
		min-width: 83.333%;
	}

	.green-login {
		justify-content: space-around;
	}

	.sec-two {
		margin-top: 50px;
	}

	.subtitle {
		text-align: center;
		padding: 0 15px;
	}

	.subtitle:before {
		background: rgba(255, 255, 255, 0);
	}

	.title-holder h2 {
		text-align: center;
	}

	.features-holder {
		flex-wrap: wrap;
	}

	.features>div>div {
		align-self: center;
	}

	.features>div>h3 {
		margin: 0;
		text-align: center;
	}

	.features>div>p {
		text-align-last: center;
	}

	ul.nav {
		display: none;
	}

	.btn-holder {
		display: none;
	}

	.slide-content {
		flex-direction: column;
		flex-wrap: wrap;
	}

	.slide-content h1 {
		font-size: 25px;
		text-align: center;
	}

	.slide-content p {
		text-align-last: center;
	}

	.sliderContainer:after {
		right: 0;
	}

	.sec-four:before {
		right: 0;
	}

	.card span.subtitle {
		text-align: right;
	}

	.card span.subtitle:before {
		background: #26c195;
	}

	.demo-req {
		justify-content: center;
		text-align: center;
		padding-bottom: 0px
	}

	.demo-req .btn-wrap {
		width: 100%;
	}

	.demo-req .text {
		margin-top: 15px;
	}

	.demo-req p {
		text-align: center;
	}

	.footer-contact {
		margin-bottom: 35px;
		padding-top: 25px;
	}

	.footer-contact>div {
		margin-bottom: 15px;
	}

	.footer-contact h4 {
		text-align: center;
	}

	.footer-contact p.address,
	.footer-contact p.email,
	.footer-contact p.phone {
		padding: 0;
		text-align: center;
	}

	.footer-contact .address:before,
	.footer-contact .email:before,
	.footer-contact .phone:before {
		display: none;
	}

	.social {
		justify-content: center;
	}

	.footer-bottom-body {
		flex-direction: column;
		align-items: center;
	}

	.footer-bottom-body img {
		margin-top: 15px;
	}

	.footer-bottom-body p {
		display: flex;
		flex-direction: column;
		text-align: center;
	}

	.footer-bottom-body p span {
		margin: 0 0 15px 0;
	}
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 480px) and (max-width: 767px) {

	/*.sticker{flex-direction: row-reverse;}*/
	.widgets {
		display: none;
	}

	.first-row {
		min-height: 650px;
	}

	.features-holder {
		flex-wrap: wrap;
	}

	.get-started {
		flex-direction: column;
		justify-content: center;
	}

	.get-started .button {
		max-width: 50%;
	}

	.green-login {
		margin-bottom: 85px;
	}

	.sec-three .title-holder {
		padding-right: 3rem
	}

	.demo-req {
		flex-direction: column;
		padding: 0;
	}

	.demo-req .text,
	.demo-req p {
		text-align: center;
	}

	.sec-four:before {
		right: 0;
	}

	ul.nav {
		display: none;
	}

	.sliderContainer:after {
		right: 0
	}

	.slide-content {
		flex-direction: column;
		flex-wrap: wrap;
	}

	.slide-content h1 {
		font-size: 25px;
		text-align: center;
	}

	.slide-content p {
		text-align-last: center;
	}

	.sliderContainer:after {
		right: 0;
	}
}

/* Tablets ----------- */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.widgets {
		left: 25px;
		width: auto;
	}

	.widgets .start,
	.widgets .end {
		display: none;
	}

	.widgets .middle {
		margin: 100px 0 0 0;
	}

	.end {
		display: none;
	}

	.features-holder {
		flex-wrap: wrap;
	}

	.features {
		margin: 0;
	}

	.sec-four:before {
		right: 0;
	}

	ul.nav {
		display: none;
	}

	.sliderContainer:after {
		right: 0
	}
}

/* Desktops and laptops and Tablets (landscape) ----------- */
@media only screen and (min-width: 992px) and (max-width: 1140px) {
	.gradient {
		height: 60vh;
	}

	.widgets {
		left: 25px;
	}

	.end {
		display: none;
	}

	ul.nav {
		display: none;
	}

	.sec-four:before {
		right: 0;
	}

	.sliderContainer:after {
		right: 0
	}
}

/* Large screens ----------- */
@media only screen and (min-width: 1141px) {}
