﻿@charset "UTF-8";

:root {
	--font-family: Vazir;
	--primary-color: #06f;
	--primary-color-hover: #0054d3;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0 40px;
}

hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	resize: none;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

*,
*:focus,
*:before,
*:after {
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
	font-family: Vazir;
	src: url('../font/Vazir.eot');
	src: url('../font/Vazir.eot?#iefix') format('embedded-opentype'),
		url('../font/Vazir.woff2') format('woff2'),
		url('../font/Vazir.woff') format('woff'),
		url('../font/Vazir.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

html,
body {
	height: 100%;
}

body {
	color: #444;
	direction: rtl;
	font: 14px/1.4 var(--font-family), tahoma;
	scroll-behavior: smooth;
}

.container-wrap {
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
}

.hide {
	display: none;
}

.right {
	float: right;
}

.left {
	float: left;
}

.block {
	display: block;
}

ul {
	list-style: none;
	padding: 0;
}

a {
	background: transparent;
	color: #0f60b0;
	outline: 0;
	text-decoration: none;
}

.form a:hover {
	color: #02aab0;
	text-decoration: underline;
}

hr {
	border: 0;
	border-bottom: 1px dashed #ccc;
	background: white;
}

hr:after {
	content: "";
	display: table;
	clear: both;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
	line-height: 0;
}

.clearfix:after {
	clear: both;
}

.container:after {
	content: "";
	display: table;
	clear: both;
}

/*----------------------------------------*\
    Animation effects
\*----------------------------------------*/
.animated .visible {
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 0.7s;
	-moz-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.animated-elm {
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
	}

	80% {
		-webkit-transform: translateX(-10px);
	}

	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-moz-transform: translateX(30px);
	}

	80% {
		-moz-transform: translateX(-10px);
	}

	100% {
		-moz-transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		transform: translateX(30px);
	}

	80% {
		transform: translateX(-10px);
	}

	100% {
		transform: translateX(0);
	}
}

.animated .bounceInLeft.visible {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
	}

	80% {
		-webkit-transform: translateX(10px);
	}

	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}

	60% {
		opacity: 1;
		-moz-transform: translateX(-30px);
	}

	80% {
		-moz-transform: translateX(10px);
	}

	100% {
		-moz-transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}

	60% {
		opacity: 1;
		transform: translateX(-30px);
	}

	80% {
		transform: translateX(10px);
	}

	100% {
		transform: translateX(0);
	}
}

.animated .bounceInRight.visible {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
	}

	80% {
		-webkit-transform: translateY(10px);
	}

	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes bounceInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}

	60% {
		opacity: 1;
		-moz-transform: translateY(-30px);
	}

	80% {
		-moz-transform: translateY(10px);
	}

	100% {
		-moz-transform: translateY(0);
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px);
	}

	60% {
		opacity: 1;
		transform: translateY(-30px);
	}

	80% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(0);
	}
}

.animated .bounceInUp.visible {
	-webkit-animation-name: bounceInUp;
	-moz-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		-moz-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}

.animated-elm.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.animated .visible.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

@-webkit-keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.animated .visible.fade {
	-webkit-animation-name: fade;
	animation-name: fade;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.animated .visible.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.animated .visible.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

/*----------------------------------------*\
    Header
\*----------------------------------------*/
.header {
	background-color: #f9f9f9;
	border-top: 4px solid #656b71;
	position: relative;
}

.dpk-logo {
	margin-left: auto;
}

.dpk-logo .figure {
	margin: 0;
}

.dpk-logo img {
	height: 60px;
}

.navigation {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.navigation ul>li {
	border-top: 4px solid transparent;
	margin: -4px 1px 0;
	overflow: hidden;
	position: relative;
}

.navigation ul>li:hover {
	overflow: visible;
}

.navigation ul>li a {
	position: relative;
	display: block;
	padding: 15px 20px;
	border: none !important;
	color: #313b45;
	cursor: pointer;
}

.navigation ul li a:hover,
.navigation ul li.current a {
	color: var(--primary-color);
}

.navigation ul li a:hover {
	background-color: #f2f2f2;
}

.navigation ul li.current {
	background-color: #f2f2f2;
	border-top-color: #265d90;
}

.nav-sticky {
	display: none;
	position: fixed;
	top: -125px;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #f6f6f6;
	border-top: 4px solid #656b71;
	height: 60px;
	z-index: 99;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
	filter: alpha(opacity=25);
	-moz-opacity: 0.25;
	opacity: 0.25;
	-webkit-transition: top .2s ease-in-out;
	-moz-transition: top .2s ease-in-out;
	transition: top .2s ease-in-out;
}

.nav-sticky.show {
	top: 0;
}

.admin-menu .nav-sticky.show {
	top: 26px;
}

.nav-sticky .navigation ul>li a {
	padding: 18px 14px 15px;
	height: 56px;
}

.nav-sticky .dpk-logo {
	padding: 7px 0 0 20px;
	width: 181px;
}

.nav-sticky .navigation ul>li:hover:before {
	height: 108%;
}

.nav-sticky .navigation {
	position: static !important;
}

.btn-collapsible {
	background-color: #eee;
	border: 1px solid #ddd;
	outline: none;
	padding: 8px;
	position: absolute;
	top: 35px;
	right: 15px;
}

.btn-collapsible:hover {
	background-color: #e2e2e2;
}

.btn-collapsible .icon-bar {
	background-color: #666;
	display: block;
	height: 2px;
	width: 22px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}

.btn-collapsible .icon-bar+.icon-bar {
	margin-top: 4px;
}

/*----------------------------------------*\
    FOR ALL SLIDES
\*----------------------------------------*/
.slide {
	background-attachment: fixed;
	height: 100%;
	width: 100%;
	position: relative;
}

@-webkit-keyframes button {
	0% {
		bottom: 15px;
	}

	100% {
		bottom: 0;
	}
}

@keyframes button {
	0% {
		bottom: 15px;
	}

	100% {
		bottom: 0;
	}
}

.path-frontpage #block-dpk-slide1 a.button {
	background: url("../images/sprite.png") no-repeat;
	display: block;
	height: 45px;
	width: 45px;
	margin-left: -21px;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 99;
	-webkit-animation: button 1s alternate infinite;
	animation: button 1s alternate infinite;
}

.path-frontpage #block-dpk-slide1 a.button:hover {
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
}

.titlebar {
	padding-top: 50px;
	text-align: center;
}

.titlebar h1 {
	border-bottom: 1px solid #444;
	color: #444;
	display: inline-block;
	font-size: 30px;
	margin-bottom: 25px;
	padding: 0 15px 12px;
	position: relative;
}

.titlebar h1:after {
	background-color: #444;
	border: 5px solid #fff;
	bottom: -7px;
	content: " ";
	height: 13px;
	left: 46%;
	position: absolute;
	width: 13px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.titlebar.gray h1:after {
	border: 5px solid #f6f6f6;
}

.subtitle-paragraph {
	color: #777;
	font-size: 19px;
	margin: 0 auto;
	text-align: center;
}

/*----------------------------------------*\
    slide1
\*----------------------------------------*/
#slide1 {
	display: none;
	height: 550px;
	color: #fff;
	overflow: hidden;
	position: relative;
	z-index: 89;
}

#slide1 .owl-carousel .owl-stage-outer {
	width: 100%;
	height: 550px;
}

.slide-overlay {
	background: url('../images/pattern.png') repeat 0 0;
}

.main-slider-wrap {
	height: 550px;
}

.main-slider-wrap .slide-overlay {
	height: 550px;
}

.main-slider-wrap .slide-item {
	height: 550px;
	background-color: #404040;
	position: relative;
	color: white;
	width: 100%;
	overflow: hidden;
}

.main-slider-wrap .container {
	position: relative;
	height: 550px;
}

.main-slider-wrap .slide-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 550px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 100%;
}

.main-slider-wrap .slide-item-1 .slide-bg {
	background-image: url('../images/slider/main_top_bg.jpg');
}

.main-slider-wrap .slide-item-2 .slide-bg {
	background-image: url('../images/slider/image2.jpg');
}

.main-slider-wrap .slide-image {
	visibility: hidden;
	width: 45%;
	position: absolute;
	right: 0;
	bottom: -40px;
}

.main-slider-wrap .slide-image img {
	display: block;
}

.slider-button {
	background: var(--primary-color);
	color: #fff;
	display: inline-block;
	font-size: 14px;
	line-height: 38px;
	height: 40px;
	padding: 0 20px;
	text-align: center;
	text-indent: 0;
	visibility: hidden;
	position: absolute;
	bottom: -410px;
}

.slider-button.btn-1 {
	right: 0;
}

.slider-button:hover {
	background: var(--primary-color-hover);
}

.main-slider-wrap h1,
.main-slider-wrap h2,
.main-slider-wrap h3 {
	visibility: hidden;
	margin-right: -30px;
}

.main-slider-wrap h1 {
	font-size: 30px;
}

.main-slider-wrap h2 {
	font-size: 25px;
}

.main-slider-wrap h3 {
	font-size: 15px;
}

.main-slider-wrap .slide-content {
	position: absolute;
	right: 0;
	top: 0;
}

.main-slider-wrap .slide-item-1 .slide-content {
	padding: 180px 0 0;
	text-align: center;
	width: 100%;
}

.main-slider-wrap .slide-item-2 .slide-content {
	text-align: right;
	right: 50%;
	width: 50%;
	top: 100px;
}

.main-slider-wrap .slide-item-2 h3.job-text {
	color: #0051cb;
	font-size: 14px;
	margin-top: 12px;
}

.main-slider-wrap .slide-item-1 h1 {
	font-size: 46px;
	line-height: 40px;
}

.main-slider-wrap .slide-item-1 h1 span {
	color: #cc7229;
	font-size: 65px;
}

.main-slider-wrap .slide-item-2 h1 {
	color: #2f2f2f;
	margin-bottom: 0;
}

.main-slider-wrap .slide-item-2 h2 {
	color: #1b9cff;
	margin-bottom: 20px;
}

.main-slider-wrap .slide-item-2 h3 {
	color: #333;
}

.main-slider-wrap .active .slide-content h1,
.main-slider-wrap .active .slide-content h2,
.main-slider-wrap .active .slide-content h3 {
	visibility: visible;
	margin-right: 0;
}

.main-slider-wrap .active .slide-content h1 {
	transition: .5s ease-in 1.2s;
	-webkit-transition: .5s ease-in 1.2s;
	-moz-transition: .5s ease-in 1.2s;
}

.main-slider-wrap .active .slide-content h2 {
	transition: .5s ease-in 1.5s;
	-webkit-transition: .5s ease-in 1.5s;
	-moz-transition: .5s ease-in 1.5s;
}

.main-slider-wrap .active .slide-content h3 {
	transition: .5s ease-in 1.8s;
	-webkit-transition: .5s ease-in 1.8s;
	-moz-transition: .5s ease-in 1.8s;
}

.main-slider-wrap .active .slide-image {
	bottom: 0;
	visibility: visible;
	transition: .7s ease-in 1s;
	-webkit-transition: .7s ease-in 1s;
	-moz-transition: .7s ease-in 1s;
}

@-webkit-keyframes sliderButton {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
		bottom: -50px;
		transition: .2s ease 1.9s;
		-webkit-transition: .2s ease 1.9s;
		-moz-transition: .2s ease 1.9s;
		opacity: 1;
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
		bottom: -80px;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		bottom: -70px;
		opacity: 1;
	}
}

@keyframes sliderButton {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
		bottom: -50px;
		transition: .2s ease 1.9s;
		-webkit-transition: .2s ease 1.9s;
		-moz-transition: .2s ease 1.9s;
		opacity: 1;
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
		bottom: -80px;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		bottom: -70px;
		opacity: 1;
	}
}

.active .slider-button {
	visibility: visible;
	-webkit-animation-name: sliderButton;
	animation-name: sliderButton;
	-webkit-animation-duration: 0.6s;
	animation-duration: 0.6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.active .slider-button.btn-1 {
	-webkit-animation-delay: 2.3s;
	animation-delay: 2.3s;
}

.main-slider-wrap .animated .slide-content {
	visibility: hidden;
}

.main-slider-wrap .animated .slide-content h1,
.main-slider-wrap .animated .slide-content h2,
.main-slider-wrap .animated .slide-content h3 {
	visibility: hidden;
	margin-right: 20px;
	transition: 1.4s;
	-webkit-transition: 1.4s;
	-moz-transition: 1.4s;
}

.main-slider-wrap .animated .slide-image {
	bottom: -20px;
	visibility: hidden;
	transition: 1.4s;
	-webkit-transition: 1.4s;
	-moz-transition: 1.4s;
}

.active .animated .slider-button {
	bottom: -90px;
	visibility: hidden;
	transition: 1.4s;
	-webkit-transition: 1.4s;
	-moz-transition: 1.4s;
}

.main-slider-wrap .owl-nav {
	line-height: 1;
	width: 100%;
	position: absolute;
	top: 35%;
}

.main-slider-wrap .owl-nav>div {
	background: url("../images/sprite.png") no-repeat -59px -201px;
	height: 91px;
	width: 42px;
	overflow: hidden;
	text-indent: 99px;
	position: absolute;
	left: 70px;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
}

.main-slider-wrap .owl-nav .owl-prev {
	background-position: -104px -201px;
	left: auto;
	right: 70px;
}

.main-slider-wrap:hover .owl-nav>div {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	-moz-opacity: 0.2;
	opacity: 0.2;
	transition-delay: 0;
}

/*----------------------------------------*\
    slide2
\*----------------------------------------*/
#slide2 {
	height: auto;
	z-index: 88;
}

.view-about-blocks .view-content .image {
	width: 120px;
	margin: 0 auto 14px;
	height: 130px;
}

.view-about-blocks .view-content img {
	display: block;
	width: 100%;
}

.view-about-blocks .view-content>.col {
	float: right;
	margin-bottom: 40px;
	padding: 45px 20px 0;
}

.view-about-blocks .body {
	line-height: 22px;
	text-align: justify;
}

.view-about-blocks .body h6 {
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 15px;
	text-align: center;
}

.colleagues {
	padding-bottom: 50px;
}

.colleagues-wrapper {
	position: relative;
	padding: 0;
	width: 100%;
	margin: 0 auto;
	display: block;
}

.colleagues .figure {
	margin: 0;
	line-height: 0;
}

.colleagues .isotope-item {
	overflow: hidden;
	padding: 2px;
	width: 159px;
	position: relative;
}

.colleagues-item {
	position: relative;
}

.colleagues .figure img {
	height: auto;
	min-height: 159px;
}

.colleagues .title {
	color: #095295;
	border-bottom: 1px solid #eee;
	margin-bottom: 12px;
	padding-bottom: 8px;
	font-size: 18px;
}

.colleagues-slider {
	padding-bottom: 75px;
}

#filters {
	margin: 20px auto 30px;
	text-align: center;
	display: block;
	float: none;
	z-index: 2;
	position: relative;
}

#filters li {
	background-color: #f7f7f7;
	color: #222;
	cursor: pointer;
	display: inline-block;
	font-size: 15px;
	margin: 4px;
	padding: 10px 14px;
}

#filters li:hover,
#filters li.active {
	background-color: #095295;
	color: #fff;
}

.colleagues-effect .isotope,
.colleagues-effect .isotope .isotope-item {
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8s;
	transition-duration: 0.8s;
}

.isotope {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	-ms-transition-property: height, width;
	transition-property: height, width;
}

.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-ms-transition-property: -ms-transform, opacity;
	transition-property: transform, opacity;
}

.colleagues-item__detail {
	background: rgba(0, 0, 0, .5);
	cursor: default;
	padding: 5px;
	text-align: center;
	position: absolute;
	top: 0;
	bottom: 159px;
	right: 0;
	left: 0;
}

.colleagues-item__txt {
	color: #fff;
	display: inline-block;
	font: 15px/24px Vazir;
	margin: 90px auto 0;
	max-width: 159px;
	padding-top: 100px;
	position: relative;
}

.colleagues-item__post {
	font-size: 12px;
}

.colleagues-item:hover .colleagues-item__detail {
	bottom: 0;
}

.colleagues-item:hover .colleagues-item__txt {
	padding-top: 0;
}

.view-id-ctg_groups.view-display-id-block_1 .view-content>h3 {
	display: none;
}

.view-id-ctg_groups.view-display-id-block_1 .isotope-item {
	margin: 0 5px 10px;
	padding: 0 32px 12px 10px;
	width: 24%;
}

.view-id-ctg_groups.view-display-id-block_1 .view-content.isotope {
	display: none;
}

.colleagues-effect .view-id-ctg_groups.view-display-id-block_1 .view-content.isotope {
	display: block;
}

.isotope-item__inner {
	background: #fafafa;
	border: 1px solid #e1e1e1;
	float: left;
	height: 90px;
	width: 100%;
	padding: 18px 44px 18px 12px;
	position: relative;
}

.isotope-item__inner:hover {
	background: #095295;
	border-color: #095295;
}

.isotope-item__image {
	background-color: #fff;
	border: 7px solid #fff;
	height: 74px;
	width: 74px;
	overflow: hidden;
	text-align: center;
	position: absolute;
	top: 7px;
	right: -37px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.isotope-item__image img {
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.isotope-item__inner:hover h3,
.isotope-item__inner:hover span {
	color: #fff;
}

.isotope-item__inner h3 {
	color: #444;
	font-size: 15px;
	margin-top: 0;
}

.isotope-item__inner span {
	color: #7d7d7d;
	display: block;
	font-size: 12px;
	line-height: 21px;
}

.stretch-over-container {
	border-top: 5px solid rgba(229, 229, 218, 0.5);
	display: none;
}

.universe-wrap {
	background: url("../images/univers-bg.jpg") repeat center 0;
	height: 200px;
}

.universe-wrap .pattern-wrap {
	background: url("../images/pattern-cube.png") repeat 0 0;
	height: inherit;
}

.horizontal-grey-lines {
	background: url("../images/horizontal-lines.png") repeat-x 0 90px;
}

.universe-wrap .section-title {
	color: #fff;
	float: right;
	font-size: 40px;
	line-height: 20px;
	padding-top: 56px;
}

.universe-wrap .section-title span {
	display: block;
	font-size: 22px;
	line-height: 3;
}

.universe-wrap .ch-second-grid:after {
	clear: both;
}

.universe-wrap .ch-second-grid {
	display: inline;
	list-style: outside none none;
	margin: 0;
	text-align: center;
	width: 100%;
}

.universe-wrap .ch-second-grid li {
	display: inline-block;
	height: 120px;
	width: 120px;
	margin: 35px 24px 0 0;
}

.universe-wrap .ch-second-grid li:first-child {
	margin: 35px 0 0;
}

.universe-wrap .ch-second-grid:after,
.universe-wrap_circle-text:before {
	content: "";
	display: table;
}

.universe-wrap_circle-text {
	background: rgba(232, 232, 221, 0.5);
	border: 3px solid #e8e8dd;
	box-shadow: 0 0 0 10px rgba(232, 232, 221, 0.2);
	cursor: default;
	height: 100%;
	overflow: hidden;
	width: 100%;
	position: relative;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.universe-wrap_circle-text span {
	color: #162a43;
	font-size: 20px;
	left: 0;
	padding-top: 45px;
	position: absolute;
	right: 0;
	text-shadow: 0 1px 0 #e8e8dd;
}

.universe-wrap .ch-second-info {
	background: none repeat 0 0 #212c43;
	display: block;
	height: inherit;
	overflow: hidden;
	width: inherit;
	position: absolute;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.universe-wrap .ch-second-info span {
	color: #e8e8dd;
	text-shadow: 0 1px 0 #162a43;
}

.universe-wrap_circle-text:hover {
	box-shadow: 0 0 0 0 rgba(232, 232, 221, 0.2);
}

.universe-wrap_circle-text:hover .ch-second-info {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}

.universe-wrap_circle-text:hover>span {
	display: none;
}

/*----------------------------------------*\
    slide3
\*----------------------------------------*/
#slide3 {
	/* background-color: #f6f6f6; */
	z-index: 87;
}

.products article {
	margin: 0 auto;
	width: 77%;
}

.products .owl-responsive-480 article {
	width: 50%;
}

/* .products .item_box {
	border: 1px solid #e8e8e8;
	cursor: pointer;
	height: 245px;
  	width: 245px;
	position: relative;
	background: #fff;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
} */

.products .item_box:before {
	background: #2d76b8;
	bottom: -1px;
	content: "";
	left: -1px;
	pointer-events: none;
	position: absolute;
	right: -1px;
	top: -1px;
	z-index: 1;
	transform: scale(1.4);
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.products .item_box:hover:before,
.products .item_box:focus:before,
.products .item_box:active:before,
.products .item_box.active:before,
.products .item_box.selected:before {
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
}

.products .item_box:hover h4,
.products .item_box:hover .item_content:before {
	color: #fff;
}

.products .item_content {
	position: relative;
	z-index: 3;
}

.products h4 {
	line-height: 26px;
	padding: 0 25px 5px;
	text-align: center;
	color: #3c80be;
	font-size: 16px;
	height: 52px;
	overflow: hidden;
}

.products .product-img {
	height: 100px;
	margin-bottom: 40px;
	padding: 22px 0;
}

.products article img {
	margin: 0 auto;
}

/*----------------------------------------*\
    slide4
\*----------------------------------------*/
#slide4 {
	z-index: 86;
}

.mod-newsflash-adv {
	position: relative;
	text-align: center;
}

/* .mod-newsflash-adv:before {
	background: none repeat 0 0 #e8e8e8;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 150px;
	width: 100%;
} */

.mod-newsflash-adv .row-fluid {
	margin: 0 auto;
	width: 170px;
}

.mod-newsflash-adv .item {
	background: #fff;
	border: 1px solid #e8e8e8;
	padding: 0;
	position: relative;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.mod-newsflash-adv .item:before {
	background: #3c80be;
	bottom: 0;
	content: "";
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	transform: scale(1.4);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.mod-newsflash-adv .item:after {
	clear: both;
	content: "";
	display: block;
}

.mod-newsflash-adv .item:hover:before,
.mod-newsflash-adv .item:focus:before,
.mod-newsflash-adv .item:active:before,
.mod-newsflash-adv .item.active:before,
.mod-newsflash-adv .item.selected:before {
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
}

.mod-newsflash-adv .item .item_content {
	padding-top: 28px;
	height: 168px;
}

.mod-newsflash-adv .item .img {
	height: 60px;
}

.mod-newsflash-adv .item .img img {
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.mod-newsflash-adv .item h6 {
	color: #444;
}

.mod-newsflash-adv .item:hover h6 {
	color: #fff;
}

.mod-newsflash-adv h6 .item_title_wrap {
	display: block;
	font-size: 14px;
	padding: 10px 22px 0;
	width: 100%;
	position: relative;
	z-index: 3;
}

.customers-slider .owl-stage-outer {
	padding: 65px 0;
}

/*----------------------------------------*\
    slide5
\*----------------------------------------*/
#slide5 {
	z-index: 85;
}

.cooperation {
	background-color: #f6f6f6;
}

.cooperation .md-trigger {
	color: #8ac4da;
	cursor: pointer;
}

.cooperation-parallex {
	height: 460px;
	text-align: center;
	color: #fff;
	background: url('../images/employ.jpg') fixed no-repeat 50% 100% !important;
	background-size: cover !important;
}

.cooperation-parallex .slide-overlay {
	height: 460px;
}

.cooperation-parallex .figure {
	padding: 65px 0 0;
	font-size: 18px;
}

.cooperation-parallex .figure .image {
	max-width: 100px;
	margin: 0 auto 35px;
}

.cooperation-slider {
	padding-bottom: 50px;
}

#modal-cooperation {
	width: 500px;
}

/*----------------------------------------*\
    slide6
\*----------------------------------------*/
#slide6 {
	z-index: 84;
}

.contact-wrap {
	padding: 75px 0 94px;
}

.contact-wrap .right {
	float: none;
}

.contact-wrap .right .webform-client-form .form-item,
.contact-wrap .right .webform-client-form .form-actions {
	display: block;
}

.contact-info-box {
	color: #777;
	line-height: 28px;
}

.contact-info-box h3 {
	color: #444;
	font-size: 19px;
	margin: 5px 0 24px;
}

.contact-info-box .info {
	margin-bottom: 25px;
}

.contact-info-box .contact-item {
	margin: 15px 0;
}

.contact-info-box .contact-item .icon {
	background: url("../images/sprite.png") no-repeat;
	border: 1px solid #8a8a8a;
	width: 37px;
	height: 37px;
	float: right;
	position: relative;
	margin-left: 15px;
	position: relative;
	z-index: 9;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.contact-info-box .contact-item:hover .icon {
	background-color: #3c80be;
	border-color: #3c80be;
}

.contact-info-box .address .icon {
	background-position: -81px 10px;
}

.contact-info-box .call .icon {
	background-position: -81px -56px;
}

.contact-info-box .email .icon {
	background-position: -81px -119px;
}

.contact-info-box .address:hover .icon {
	background-position: -81px -22px;
}

.contact-info-box .call:hover .icon {
	background-position: -81px -88px;
}

.contact-info-box .email:hover .icon {
	background-position: -81px -152px;
}

.contact-info-box .contact-item .block {
	padding-top: 6px;
}

.contact-wrap .webform-client-form .form-textarea {
	height: 250px;
	overflow: auto;
	vertical-align: top;
}

.page-footer {
	background-color: #eee;
	border-top: 1px solid #ddd;
	margin-top: 35px;
	padding: 26px 0;
}

.page-footer .left,
.page-footer .right {
	float: none;
	margin-top: 14px;
}

.page-footer .left a {
	font-size: 12px;
}

.page-footer .left a:hover {
	color: #0d79e5;
}

.page-footer .left a:last-child:before {
	color: #bbb;
	content: "|";
	padding: 0 4px 0 8px;
	vertical-align: text-bottom;
}

/*----------------------------------------*\
	innerPage
\*----------------------------------------*/
.not-front .field-type-image {
	float: right;
	margin-left: 15px;
}

.field-name-body {
	padding-top: 20px;
}

/*----------------------------------------*\
	Go top
\*----------------------------------------*/
#go-top {
	border: none;
	display: none;
	height: 35px;
	width: 35px;
	position: fixed;
	left: 20px;
	bottom: 40px;
	z-index: 99;
}

#go-top span {
	background: url("../images/sprite.png") no-repeat -12px -57px;
	display: block;
	height: 35px;
	width: 35px;
}

#go-top:hover span {
	background-position: -12px -94px;
}

/*----------------------------------------*\
	webform
\*----------------------------------------*/
.form-text,
.form-select,
.form-textarea,
.form-email,
.form-tel {
	background: #fff;
	border: 1px solid #aaa;
	color: #747474;
	display: block;
	font: 14px Vazir;
	width: 100%;
	outline: none;
	margin-bottom: 12px !important;
	padding: 7px 10px;
}

.webform-client-form .webform-submit {
	background: #252525 url("../images/sprite.png") no-repeat 45px -292px;
	border: none;
	display: block;
	outline: none;
	margin-bottom: 12px;
	text-indent: -9999em;
	overflow: hidden;
	font-size: 0;
	height: 55px;
	width: 150px;
	box-shadow: none;
}

.form-text:focus,
.form-textarea:focus,
.form-email:focus,
.form-tel:focus {
	border-color: #6baacc;
	color: #333;
}

.webform-client-form-36 .ajax-progress-throbber {
	display: none !important;
}

.webform-client-form .form-item,
.webform-client-form .form-actions {
	position: relative;
	margin: 0;
}

.webform-component-textarea .grippie {
	display: none;
}

.webform-client-form .form-item .required-error {
	position: absolute;
	top: 13px;
	left: 15px;
	font-size: 11px;
	z-index: 99;
	color: #dc3c3f;
}

.webform-client-form .form-item-error .form-text,
.webform-client-form .form-item-error .form-textarea {
	border: 1px solid #dc3c3f;
}

/*----------------------------------------*\
	Owl Carousel - Animate Plugin
\*----------------------------------------*/
#slide1 .owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.main-slider-wrap .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel.owl-loaded,
.owl-carousel.owl-loading {
	display: block;
}

.owl-carousel .owl-refresh .owl-item {
	display: none;
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-item img {
	display: block;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: initial;
	-moz-user-select: initial;
	-ms-user-select: initial;
	user-select: initial;
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.view-display-id-block .owl-controls {
	height: 75px;
	width: 72px;
	margin: 0 auto;
}

.owl-nav>div {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.view-display-id-block .owl-nav>div {
	background: url("../images/sprite.png") no-repeat 7px -143px;
	border: 1px solid #095295;
	display: block;
	float: left;
	height: 32px;
	width: 32px;
	overflow: hidden;
	text-indent: 99px;
}

.view-display-id-block .owl-nav .owl-prev {
	background-position: -31px -143px;
	float: right;
}

.view-display-id-block .owl-nav>div:hover {
	background-color: #095295;
	background-position: 7px -184px;
}

.view-display-id-block .owl-nav .owl-prev:hover {
	background-position: -31px -184px;
}

.view-display-id-block .owl-nav .disabled {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	-moz-opacity: 0.3;
	opacity: 0.3;
}

.md-modal {
	height: auto;
	width: 80vw;
	max-width: 630px;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 2000;
}

.md-modal .content img {
	background-color: #fff;
	border: 1px solid #ddd;
	clear: both;
	float: right;
	height: 125px;
	width: 220px;
	margin-left: 20px;
	padding: 1px;
}

.md-show {
	visibility: visible;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show~.md-overlay,
.md-overlay.show-modal,
#modal-cooperation .md-overlay {
	visibility: visible;
}

.md-content {
	background: #fff;
	margin: 0 auto;
	position: relative;
}

.md-content h3 {
	background: #095295;
	color: #fff;
	font-size: 18px;
	padding: 10px 20px;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.md-content .content {
	font-size: 14px;
	min-height: 170px;
	padding: 0 20px 15px;
	text-align: justify;
}

.md-content .md-close {
	position: absolute;
	top: 11px;
	left: 20px;
}

.md-effect-1 .md-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.md-modal .webform-component-file {
	margin-bottom: 10px;
	text-align: right;
}

.md-modal .webform-component-file label {
	color: #444;
	cursor: text;
	font-size: 13px;
	position: absolute;
	top: 5px;
	right: 15px;
	z-index: 2;
}

.md-modal .webform-component-file .form-managed-file {
	display: inline-block;
}

.md-modal .webform-component-file .form-managed-file:before {
	content: "";
	background: #d7eafa;
	width: 165px;
	height: 36px;
	position: absolute;
	top: 1px;
	right: 0;
	z-index: 1;
}

.md-modal .webform-component-file .form-managed-file .form-file {
	opacity: 0;
	height: 36px;
	width: 165px;
	position: absolute;
	top: 0;
	z-index: 3;
}

.md-modal .webform-component-file .form-managed-file .file {
	position: absolute;
	top: 8px;
	left: 0;
}

.md-modal .webform-component-file .form-managed-file .file-icon {
	border: none;
	float: left;
	height: auto;
	width: auto;
	padding: 4px 3px 0 0;
}

.md-modal .webform-component-file .form-managed-file .file a {
	direction: ltr;
	display: block;
	font-size: 11px;
	width: 160px;
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.md-modal .webform-component-file .form-managed-file .form-submit {
	background: none;
	border: 1px solid #aaa;
	box-shadow: 0 1px 2px #ddd;
	height: 35px;
	padding: 0 10px;
	position: absolute;
	top: 1px;
	right: 170px;
}

.md-modal .webform-component-file .form-managed-file .form-submit:hover {
	border-color: #999;
}

.md-modal .webform-component-file .description {
	color: #444;
	line-height: 22px;
	margin: 10px 0 20px;
}

.md-modal .webform-component-file .form-managed-file div.messages {
	margin-top: 50px;
}

/*----------------------------------------*\
    Job
\*----------------------------------------*/
.job-items {
	margin-top: 10px;
}

.job-items li {
	background-color: #fff;
	box-shadow: 0px 0px 0px 1px #0000000f, 0px 1px 1px -.5px #0000000f, 0px 3px 3px -1.5px #0000000f, 0px 6px 6px -3px #0000000f, 0px 12px 12px -6px #0000000f, 0px 24px 24px -12px #0000000f;
	margin: 10px 0;
	padding: 15px;
	position: relative;
}

.job-items li:hover {
	border-color: #ddd;
}

.job-items li h3 {
	color: var(--primary-color);
	font-size: 16px;
	margin-bottom: 20px;
	text-align: center;
}

.job-items li .body {
	color: #444;
	font-size: 13px;
	line-height: 20px;
}

.job-items li .bullet {
	color: #bbb;
	font: 700 15px arial;
	margin-left: 3px;
	vertical-align: bottom;
}

.job-items li .text-right {
	text-align: right;
}

.job-items li .text-left {
	text-align: left;
}

.job-button {
	background: var(--primary-color);
	color: #fff !important;
	display: block;
	font-size: 18px;
	width: 220px;
	line-height: 48px;
	margin: 30px auto 0;
	text-align: center;
}

.job-button:hover {
	background: var(--primary-color-hover);
}

/*----------------------------------------*\
	other styles
\*----------------------------------------*/
.btn-collapsible,
.form-text,
.form-select,
.form-textarea,
.form-email,
.form-tel,
.webform-client-form .webform-submit,
.view-display-id-block .owl-nav>div,
.md-modal .webform-component-file .form-managed-file .form-submit,
.slider-button,
#filters li,
.job-items li,
.md-content,
.md-modal .webform-component-file .form-managed-file:before,
.job-button {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.form-text,
.form-select,
.form-textarea,
.form-email,
.form-tel,
.webform-client-form .webform-submit,
.navigation ul>li:before,
.navigation ul>li:after,
.slider-button,
#filters li,
.colleagues-item__detail,
.colleagues-item__txt,
.isotope-item__inner,
.universe-wrap_circle-text,
.universe-wrap .ch-second-info,
.products .item_box:before,
.mod-newsflash-adv .item:before,
.view-display-id-block .owl-nav>div,
.job-button,
.contact-info-box .contact-item .icon,
#go-top span {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}

.open-modal-txt {
	color: #369;
	cursor: pointer;
	font-size: 16px;
}

.open-modal-txt:hover {
	color: #d60;
	border-bottom: 1px dotted #d60;
}

h2.status {
	background-color: #77d4dd;
}

#better-messages-default div.status {
	border-color: #77d4dd;
}

#better-messages-default a.message-close {
	width: 56px;
}

.hidden,
.path-frontpage #block-dpk-slide1 a.button,
.main-slider-wrap .slide-image,
.main-slider-wrap h1,
.main-slider-wrap h2,
.main-slider-wrap h3,
.main-slider-wrap .animated .slide-content h1,
.main-slider-wrap .animated .slide-content h2,
.main-slider-wrap .animated .slide-content h3,
.main-slider-wrap .animated .slide-image,
.main-slider-wrap .owl-nav>div,
.colleagues-item__detail,
.universe-wrap .ch-second-info,
.products .item_box:before,
.mod-newsflash-adv .item:before,
.owl-carousel.owl-loading,
.owl-carousel.owl-hidden,
.md-overlay,
.md-effect-1 .md-content {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

.visible,
.path-frontpage #block-dpk-slide1 a.button,
.nav-sticky.show,
.main-slider-wrap .active .slide-content h1,
.main-slider-wrap .active .slide-content h2,
.main-slider-wrap .active .slide-content h3,
.main-slider-wrap .active .slide-image,
.main-slider-wrap:hover .owl-nav>div:hover,
.colleagues-item:hover .colleagues-item__detail,
.universe-wrap_circle-text:hover .ch-second-info,
.products .item_box:hover:before,
.products .item_box:focus:before,
.products .item_box:active:before,
.products .item_box.active:before,
.products .item_box.selected:before,
.mod-newsflash-adv .item:hover:before,
.mod-newsflash-adv .item:focus:before,
.mod-newsflash-adv .item:active:before,
.mod-newsflash-adv .item.active:before,
.mod-newsflash-adv .item.selected:before,
.md-show~.md-overlay,
.md-overlay.show-modal,
#modal-cooperation .md-overlay,
.md-show.md-effect-1 .md-content {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

button.md-close {
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	font: bold 21px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
	opacity: .8;
	outline: none;
	padding: 0;
}

button.md-close:hover {
	opacity: 1;
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}

	.header {
		background-color: #fff;
	}

	.navigation {
		float: left;
		max-height: inherit;
		overflow: visible;
		transition: none;
	}

	.navigation ul>li {
		float: right;
	}

	.navigation ul>li a {
		padding: 42px 10px 40px;
	}

	.navigation ul>li:before,
	.navigation ul>li:after {
		position: absolute;
		display: block;
		width: 100%;
		left: 0;
		pointer-events: none;
		content: "";
	}

	.navigation ul>li:before {
		height: 0px;
		background: #f2f2f2;
		bottom: 0;
	}

	.navigation ul>li:hover:before {
		height: 103.5%;
		bottom: 0;
		border-top: 4px solid #265d90;
		margin-top: -4px;
	}

	.navigation ul>li:after {
		height: 100%;
		background: #265d90;
		top: -104%;
	}

	.navigation ul>li:hover:after {
		height: 1px;
		width: 100%;
		top: 100%;
	}

	.nav-sticky {
		display: block;
	}

	.btn-collapsible {
		display: none;
	}

	#slide1 {
		display: block;
	}

	.isotope {
		padding-left: 42px;
	}

	.stretch-over-container {
		display: block;
	}

	.universe-wrap .ch-second-grid {
		padding-right: 20px;
	}

	.products h4 {
		height: 70px;
		line-height: 23px;
	}

	.job-items li {
		float: right;
		height: 227px;
		width: 31.3%;
		margin: 10px 1%;
		padding: 10px 1% 0;
	}

	.job-items li:nth-child(4),
	.job-items li:nth-child(6) {
		height: 95px;
		margin-bottom: 15px;
	}

	.job-items li:nth-child(5),
	.job-items li:nth-child(7) {
		height: 125px;
		margin: 112px -32.3% 10px 1%;
	}

	.job-items .tags-wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 7px;
	}

	.job-items .tags-wrapper div {
		border-radius: 6px;
		background-color: #eee;
		padding: 5px 15px 3px;
	}

	.job-items h6 {
		font-size: 13px;
		margin: 3px 0;
	}

	.job-items h6~h6 {
		margin-top: 15px;
	}

	.webform-client-form .webform-submit {
		background-position: 57.6% -292px;
		width: 100%;
	}

	.page-footer .left,
	.page-footer .right {
		margin-top: 0;
	}

	.page-footer .left {
		float: left;
	}

	.page-footer .right {
		float: right;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}

	.navigation ul>li a {
		font-size: 16px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.nav-sticky .navigation ul>li a {
		padding-right: 20px;
		padding-left: 20px;
	}

	.view-about-blocks .view-content>.col {
		width: 25%;
		padding: 45px 20px 0;
	}

	.isotope {
		padding-left: 72px;
	}

	.universe-wrap .ch-second-grid {
		padding-right: 50px;
	}

	.universe-wrap .ch-second-grid li {
		height: 127px;
		width: 127px;
		margin-right: 70px;
	}

	.products h4 {
		height: 52px;
		line-height: 26px;
	}

	.contact-wrap .right {
		float: right;
		width: 50%;
	}

	.webform-client-form .webform-submit {
		background-position: 63.5% -292px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}

	.isotope {
		padding-left: 0;
	}

	.universe-wrap .ch-second-grid {
		padding-right: 163px;
	}

	.webform-client-form .webform-submit {
		background-position: 60.4% -292px;
	}
}

/*----------------------------------------*\
	other pages
\*----------------------------------------*/
#page {
	min-height: 500px;
	padding: 20px 0;
}

#page h2.page-title {
	border-bottom: 1px solid #ddd;
	font-size: 18px;
	margin-bottom: 30px;
	padding-bottom: 6px;
}

#page h2.page-title>span {
	border-bottom: 1px solid #0d79e5;
	color: #0f60b0;
	padding: 5px;
}

#page input[type="submit"],
#page button {
	background-color: var(--primary-color);
	border: none;
	color: #fff;
	min-width: 70px;
	padding: 8px 15px;
}

#page input[type="submit"]:hover,
#page button:hover {
	background-color: var(--primary-color-hover);
}

section.content.colleagues {
	display: none
}

/**************************************
new
**************************************/
.d-flex {
	display: flex;
}

.justify-between {
	justify-content: space-between;
}

.form-submit {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	color: #fff;
	padding: 7px 18px;
}

.form-submit:hover {
	background-color: var(--primary-color-hover);
}

.flexslider {
	background-color: transparent;
	border-color: transparent;
}

#slide3,
#block-dpk-mhswlatparagraf,
#block-dpk-views-block-slider-products-block-1,
#block-dpk-hmkarybama {
	background-color: #f6f6f6;
}

.layout-container {
	background-color: #eee;
	border-top: 4px solid #656b71;
}

.layout-container>header {
	background-color: #fff;
}

header .region-header {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	margin: 0 auto;
}

#block-dpk-site-branding {
	margin-left: auto;
}

#block-dpk-hmkaryparagraf,
#block-dpk-aytmhayastkhdamy {
	background-color: #f6f6f6;
}

#block-dpk-aytmhayastkhdamy {
	padding-bottom: 40px;
}

.view-slider-products,
.view-slider-customers {
	padding: 45px 0 20px;
}

.view-slider-products .flexslider .slides li {
	border: 1px solid #e8e8e8;
	cursor: pointer;
	position: relative;
	background: #fff;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	text-align: center;
	padding: 25px;
}

.view-slider-customers .flexslider .slides li {
	text-align: center;
}

.view-slider-products .flexslider .slides li .views-field-field-image,
.view-slider-customers .flexslider .slides li .views-field-field-image {
	height: 100px;
	margin-bottom: 40px;
	padding: 22px 0;
}

.view-slider-customers .flexslider .slides li .views-field-field-image {
	margin-bottom: 0;
}

.view-slider-products .flexslider .slides li .views-field-field-image img,
.view-slider-customers .flexslider .slides li .views-field-field-image img {
	margin: 0 auto;
	width: auto;
}

/* Flexslider RTL */
/* .flexslider {
	direction: rtl
}

.carousel li {
	margin-right: 5px
}

.flex-direction-nav a:before {
	content: '\f002'
}

.flex-direction-nav a.flex-next:before {
	content: '\f001'
}

.flex-direction-nav .flex-prev {
	left: auto;
	right: -50px
}

.flex-direction-nav .flex-next {
	right: auto;
	left: -50px;
	text-align: left
}

.flexslider:hover .flex-direction-nav .flex-prev {
	opacity: 0.7;
	left: auto;
	right: 10px
}

.flexslider:hover .flex-direction-nav .flex-next {
	opacity: 0.7;
	right: auto;
	left: 10px
}

.flex-pauseplay a {
	left: auto;
	right: 10px
}

@media screen and (max-width: 860px) {
	.flex-direction-nav .flex-prev {
		left: auto;
		right: 10px
	}

	.flex-direction-nav .flex-next {
		right: auto;
		left: 10px
	}
} */

/* /Flexslider RTL */
.flex-direction-nav a:before {
	font-size: 30px;
}

.view-slider-products .views-field-title,
.view-slider-customers .views-field-title {
	color: #3c80be;
}

#block-dpk-hmkaryparagraf-2 {
	display: none;
}

.contact-region {
	padding-top: 30px;
}

@media (max-width: 767px) {
	.contact-region {
		flex-direction: column;
	}
}

#block-dpk-adrs h2 {
	margin-bottom: 30px;
}

#block-dpk-adrs p {
	padding-right: 42px;
	position: relative;
}

#block-dpk-adrs p::before {
	background: url("../images/sprite.png") no-repeat -83px 8px;
	border: 1px solid #8a8a8a;
	border-radius: 50%;
	content: "";
	height: 32px;
	width: 32px;
	position: absolute;
	top: -10px;
	right: 0;
}

#block-dpk-adrs p:nth-child(2)::before {
	background-position: -84px -57px;
	top: 7px;
}

#block-dpk-adrs p:nth-child(3)::before {
	background-position: -83px -121px;
	top: 9px;
}

#block-dpk-webform .form-submit {
	background: #252525 url("../images/icon-mail.png") no-repeat 50% 50%;
	border: none;
	border-radius: 4px;
	display: block;
	outline: none;
	margin-bottom: 12px;
	text-indent: -9999em;
	overflow: hidden;
	font-size: 0;
	height: 55px;
	width: 100%;
	box-shadow: none;
}

#block-dpk-webform .form-submit:hover {
	background-color: #353535;
}

#block-dpk-webform-2 {
	display: none;
}

.sticky-menu {
	border-top: 4px solid #656b71;
	position: sticky;
	top: 0;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 100;
}

.menu-container {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.menu-link {
	padding: 26px 20px;
	margin: 0 10px;
	color: #333;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.menu-link:hover {
	color: var(--primary-color);
}

.menu-link.active {
	color: var(--primary-color);
}

.indicator {
	position: absolute;
	bottom: 0;
	height: 3px;
	background-color: var(--primary-color);
	transition: all 0.3s ease;
	border-radius: 3px;
	width: 0;
	left: 0;
}

section.slide {
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

section#part1 {
	padding: 0;
}

section#part1,
section#part3,
section#part5 {
	background-color: #f6f6f6;
}

section#part2,
section#part4,
section#part6 {
	background-color: #fff;
}

#block-dpk-hmkarybama {
	padding-bottom: 30px;
}

#webform-submission-form-cooperation-add-form .form-type-webform-document-file input.form-file {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 5px;
}

#webform-submission-form-cooperation-add-form .form-type-webform-document-file input[data-drupal-selector="edit-upload-cv-remove-button"] {
	background-color: #b00;
	border-color: #b00;
	padding: 2px 7px;
}

#webform-submission-form-cooperation-add-form .form-type-webform-document-file input[data-drupal-selector="edit-upload-cv-remove-button"]:hover {
	background-color: #ab0303;
	border-color: #ab0303;
}

#webform-submission-form-cooperation-add-form .form-type-webform-document-file .webform-element-description {
	line-height: 1.8;
}


/* .flexslider {
	direction: ltr !important;
}
.flexslider .slides {
	direction: rtl !important;
} */


/* .flexslider {
	direction: rtl !important;
}
.flexslider .slides {
	direction: ltr !important;
} */


#block-dpk-views-block-slideshow-block-1 .flexslider {
	border: 0;
	margin-bottom: 0;
}

#block-dpk-views-block-slideshow-block-1 .slides {
	position: relative;
}

#block-dpk-views-block-slideshow-block-1 .slides,
#block-dpk-views-block-slideshow-block-1 .slides img {
	max-height: 550px;
}

#block-dpk-views-block-slideshow-block-1 .slides li,
#block-dpk-views-block-slideshow-block-1 .slides li>img,
#block-dpk-views-block-slideshow-block-1 .slides li>.container {
	height: 550px;
}

#block-dpk-views-block-slideshow-block-1 .slides li>img {
	position: absolute;
	z-index: 0;
}

#block-dpk-views-block-slideshow-block-1 .slides li>.container {
	position: relative;
	z-index: 1;
}

#block-dpk-views-block-slideshow-block-1 .slides li>.container>* {
	position: absolute;
}

#block-dpk-views-block-slideshow-block-1 .flex-direction-nav a::before {
	content: none;
}

#block-dpk-views-block-slideshow-block-1 .flex-direction-nav .flex-next,
#block-dpk-views-block-slideshow-block-1 .flex-direction-nav .flex-prev {
	background: url(../images/sprite.png) no-repeat -59px -201px;
	height: 91px;
	width: 42px;
	overflow: hidden;
	text-indent: 99px;
	position: absolute;
	top: 45%;
	left: 70px;
	transition: .2s;
	-webkit-transition: .2s;
}

#block-dpk-views-block-slideshow-block-1 .flex-direction-nav .flex-next {
	background-position: -104px -201px;
	left: auto;
	right: 70px;
}

#block-dpk-views-block-slideshow-block-1 .flex-control-nav {
	bottom: 10px;
	z-index: 3;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	border-color: #3fa4d3;
	box-shadow: 0 0 0 0.2rem rgba(18, 146, 207, 0.25);
	outline: 0 none;
}