/*
file:	Cascading Style Sheet
year:	2022
author:	CREW 803
email:	info@crew803.com
site:	www.crew803.com
*/

@charset "utf-8";

/* General HTML Styles */

:root {
	--white: #ffffff;
	--black: #000000;
	--darkblue: #0014b4;
	--blue: #006eb4;
	--green: #00b4a0;
}

* {
	box-sizing: border-box;
}

i, i:before {
	transition: all .2s linear;
}

.material-icons {
	transition: all .2s linear;
}

html {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	margin: 0;
	padding: 0;
	background: url("../img/cover-background.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}

div, span, p, em, a, strong, time, tr, th, td, dt, dd, label, input, select, button, textarea, option, iframe, ul, li, font, h1, h2, h3, h4, h5, h6 {
	font-family: "Mukta", Arial, Tahoma, Calibri, Verdana, sans-serif;
	font-size: 18px;
	color: rgba(0,0,0,0.85);
	font-weight: 400;
	text-decoration: none;
}
h1	{
	color: #464646;
	font-size: 24px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h2	{
	color: #464646;
	font-size: 22px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h3	{
	color: #464646;
	font-size: 20px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h4	{
	color: #464646;
	font-size: 19px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h5	{
	color: #464646;
	font-size: 18px;
	font-weight: normal;
	display: block;
	padding: 0;
}
h6	{
	color: #464646;
	font-size: 17px;
	font-weight: normal;
	display: block;
	padding: 0;
}
p {
	margin: 0;
	padding: 0 0 20px;
}
em {
	font-size: 20px;
	color: rgba(0,0,0,0.95);
	margin: 0;
	font-weight: 600;
	padding: 0 0 20px;
	font-style: normal;
	display: block;
}
strong {
	font-weight: bold;
}
a {
	font-size: 18px;
	color: var(--blue);
	font-weight: 700;
	text-decoration: none;
	transition: all .3s linear;
}
a:hover {
	font-size: 18px;
	color: var(--darkblue);
	text-decoration: none;
}

fieldset {
	width: auto;
	border: 0;
}
legend {
	color: #494949;
	font-size: 16px;
	font-weight: normal;
	padding: 0 5px;
}
input {
	background-color: #f2f2f2;
	border: 1px solid #c2c2c2;
	font-size: 13px !important;
	margin: 3px 0;
	padding: 5px;
	outline: none !important;
}
input:hover {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
input:focus {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
select {
	font-size: 13px !important;
	background-color: #f2f2f2;
	border: 1px solid #c2c2c2;
	padding: 3px 3px;
	outline: none !important;
}
select:hover {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
select:focus {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
option {
	font-size: 13px !important;
	background-color: transparent !important;
	padding: 0 5px;
	outline: none !important;
}
textarea {
	font-size: 13px !important;
	background-color: #f2f2f2;
	border: 1px solid #c2c2c2;
	padding: 5px;
	height: 150px;
	margin: 3px 0;
	outline: none !important;
}
textarea:hover {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}
textarea:focus {
	background-color: #f4f4f4;
	border: 1px solid #c4c4c4;
	outline: none !important;
}

/*wrapper*/

.wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.wrapper a, img {
	outline: none !important;
}

.wrapper a:hover, a:visited, a:active,
.wrapper input, .wrapper input:hover, .wrapper input:focus, .wrapper input:active, .wrapper input:visited {
	outline: none !important;
}

:focus {
	outline: none;
}
::-moz-focus-inner {
	border:0;
}

/*to top jQuery*/

#toTop {
	background: url("../img/ui.totop.png") no-repeat left top;
	z-index: 999999;
}

#toTopHover {
	background: url("../img/ui.totop.png") no-repeat left -40px;
}

.slicknav_menu {
	display: none;
}

/*header*/

header {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
	background: #fff;
}

header section {
	width: 1200px;
	margin: 0 auto;
	/*padding: 22px 20px 23px;*/
	padding: 22px 10px 23px;
	display: table;
}

/*logo*/

.logo {
	width: auto;
	float: left;
	/*margin: 0 75px 0 0;*/
	margin: 0 40px 0 0;
}

.logo img {
	height: 80px;
	display: flex;
}

/*main navigation*/

header nav {
	float: left;
	padding: 25px 0;
	/*margin: 0 40px 0 0;*/
	margin: 0 30px 0 0;
}

header nav ul {
	list-style: none;
}

header nav ul li {
	float: left;
	margin: 0 20px 0 0;
	position: relative;
}

header nav ul li:last-of-type {
	margin: 0;
}

header nav ul li a {
	font-size: 18px;
	color: var(--black);
	font-weight: 600;
	margin: 0;
	padding: 0;
	display: block;
}

header nav ul li a:hover, header nav ul li a.active {
	font-size: 18px;
	color: var(--darkblue);
	text-decoration: underline;
}

/*main navigation second level*/

header nav ul li ul {
	width: 270px;
	position: absolute;
	left: -20px;
	top: 30px;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	transition: all .3s linear;
	opacity: 0;
	visibility: hidden;
	z-index: 500;
}

header nav ul li:hover ul {
	opacity: 1;
	visibility: visible;
}

header nav ul li ul li {
	width: 100%;
	float: none;
	display: table;
	border-bottom: 1px solid rgba(0,0,0,0.75);
}

header nav ul li ul li:last-of-type {
	border: none;
}

header nav ul li ul li a {
	font-size: 16px;
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
	padding: 9px 20px 11px;
	background: var(--blue);
}

header nav ul li ul li a:hover, header nav ul li ul li a.active {
	font-size: 16px;
	color: var(--darkblue);
	background: var(--white);
	text-decoration: none;
}

/*main navigation third level*/

header nav ul li ul li ul,
header nav ul li:hover ul li ul {
	opacity: 0;
	visibility: hidden;
	top: 0;
	left: 270px;
}

header nav ul li ul li {
	position: relative;
}

header nav ul li ul li:hover ul {
	opacity: 1;
	visibility: visible;
}

header nav ul li ul li ul li {
	border-color: rgba(0,0,0,0.20);
}

header nav ul li ul li ul li a {
	color: var(--blue);
	font-weight: 500;
	text-transform: none;
	background: var(--white);
}

header nav ul li ul li ul li a:hover, header nav ul li ul li ul li a.active {
	color: var(--white);
	background: var(--green);
	text-decoration: none;
}

/*header contacts*/

.header_contacts {
	width: auto;
	float: left;
	padding: 17px 0;
	/*margin: 0 40px 0 0;*/
	margin: 0 30px 0 0;
}

.header_contacts a {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
	padding: 9px 20px;
	background: var(--green);
	border-radius: 2px;
}

.header_contacts a:hover {
	font-size: 16px;
	color: #fff;
	background: var(--blue);
}

.header_contacts span {
	font-size: 24px;
	color: #000;
	display: inherit;
	border-right: 1px solid #000;
	padding: 10px 10px 11px;
}

.header_contacts a,
.header_contacts span {
	float: left;
}

/*header social*/

.header_social {
	width: auto;
	float: left;
	padding: 24px 0;
}

.header_social ul {
	list-style: none;
}

.header_social ul li {
	float: left;
	margin: 0 10px 0 0;
}

.header_social ul li:last-of-type {
	margin: 0;
}

.header_social ul li a {
	display: flex;
}

.header_social ul li img {
	height: 32px;
	transition: all .3s linear;
}

.header_social ul li img:hover {
	opacity: 0.5;
}

/*header line pattern*/

.header_line_pattern {
	margin: 0 auto;
	display: table;
}

.header_line_pattern img {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: flex;
}

/*main container*/

.main_container {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

/*services featured home*/

.services_featured_home {
	width: 100%;
	margin: 0 0 40px;
	padding: 80px 0;
	display: table;
	background: #fff;
}

.services_featured_home section {
	width: 1200px;
	margin: 0 auto;
	padding: 0;
	display: table;
}

.services_featured_home article {
	width: 380px;
	float: left;
	margin: 0 30px 0 0;
	padding: 35px 30px 40px;
	border-radius: 2px;
}

.services_featured_home article:nth-of-type(3n) {
	margin: 0;
}

.services_featured_home article:nth-of-type(1) {
	background: var(--green);
}

.services_featured_home article:nth-of-type(2) {
	background: var(--blue);
}

.services_featured_home article:nth-of-type(3) {
	background: var(--darkblue);
}

.services_featured_home article h1 {
	margin: 0 0 18px;
	padding: 0;
	line-height: 38px;
	overflow: hidden;
	height: 74px;
}

.services_featured_home article h1, .services_featured_home article h1 a {
	font-size: 32px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}

.services_featured_home article h1 a:hover {
	font-size: 32px;
	color: #fff;
	text-decoration: underline;
}

.services_featured_home article em {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	margin: 0 0 15px;
	padding: 0;
	line-height: 22px;
	overflow: hidden;
	height: 111px;
}

.services_btn_more {
	margin: 0;
	padding: 0;
	display: table;
}

.services_btn_more span {
	font-size: 36px;
	color: #fff;
	display: block;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

/*slider content*/

.slider_content {
	width: 100%;
	margin: 0 0 40px;
	padding: 80px 0 152px;
	display: table;
	background: #fff;
}

.slider_content section {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.bx-wrapper {
	margin: 0 auto !important;
}

.bx-wrapper .bx-pager {
	padding: 0;
	width: auto;
}

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
	bottom: 70px;
	right: inherit;
	left: inherit;
	height: 14px;
	margin: 0 auto;
	padding: 0;
	display: table;
	position: relative;
}

.bx-wrapper .bx-viewport {
	border: none;
	background: none;
	left: 0;
	box-shadow: none;
}

.bxslider {
	list-style: none;
	padding: 0;
	margin: 0;
	display: table;
}

.bx-wrapper img {
	margin: 0;
	padding: 0;
	width: 100%;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: transparent;
	box-shadow: 0 0 0 2px #fff;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #fff;
	border: none;
	border-radius: 500em;
	-webkit-border-radius: 500em;
	margin: 0 10px;
	width: 10px;
	height: 10px;
	box-sizing: border-box;
}

.bx-wrapper .bx-controls-direction a {
	z-index: 99;
	margin-top: 0 !important;
	top: inherit;
	bottom: -80px;
}

.bx-wrapper .bx-prev {
	width: 48px !important;
	height: 48px !important;
	background: url("../img/controls_slider.png") no-repeat 0 0 !important;
	opacity: 1;
	left: 45%;
}

.bx-wrapper .bx-prev:hover {
	background: url("../img/controls_slider.png") no-repeat 0 -48px !important;
	opacity: 1;
}

.bx-wrapper .bx-next {
	width: 48px !important;
	height: 48px !important;
	background: url("../img/controls_slider.png") no-repeat -48px 0 !important;
	opacity: 1;
	right: 45%;
}

.bx-wrapper .bx-next:hover {
	background: url("../img/controls_slider.png") no-repeat -48px -48px !important;
	opacity: 1;
}

/*about cnt homepage*/

.about_cnt_homepage {
	width: 100%;
	margin: 0;
	padding: 65px 0 80px;
	display: table;
	background: #fff;
}

.about_cnt_homepage article {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.about_cnt_homepage article h1 {
	margin: 0;
	padding: 0;
}

.about_cnt_homepage article h1, .about_cnt_homepage article h1 a {
	font-size: 34px;
	color: var(--blue);
	font-weight: 700;
}

.about_cnt_homepage article h1 a:hover {
	font-size: 34px;
	color: var(--darkblue);
}

.about_cnt_homepage article em {
	font-size: 20px;
	color: rgba(0,0,0,0.85);
	font-weight: 600;
	margin: 0 0 5px;
	padding: 0;
	line-height: 26px;
}

.about_cnt_homepage article p {
	font-size: 18px;
	color: rgba(0,0,0,0.75);
	font-weight: 400;
	margin: 0;
	padding: 0;
	line-height: 22px;
}

/*footer*/

footer {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
	background: #fff;
}

.footer_line_bck_full {
	width: 100%;
	height: 40px;
	display: table;
	background: linear-gradient(to right, var(--blue), var(--green));
	margin: 0 0 56px;
}

/*footer top cnt*/

.footer_top_cnt {
	width: 1200px;
	margin: 0 auto;
	padding: 0 0 50px;
	display: table;
}

.footer_top_cnt em {
	font-size: 14px;
	color: rgba(0,0,0,0.60);
	font-weight: 400;
	margin: 0 0 15px;
	padding: 0 25%;
	text-align: center;
	line-height: 18px;
}

.footer_top_cnt div {
	width: auto;
	margin: 0 auto;
	display: table;
}

.footer_top_cnt div p {
	font-size: 18px;
	color: #000;
	font-weight: 500;
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}

.footer_top_cnt div p a {
	font-size: 18px;
	color: #000;
	font-weight: 500;
}

.footer_top_cnt div p a:hover {
	font-size: 18px;
	color: var(--darkblue);
}

/*footer copyright*/

.footer_copyright {
	width: 100%;
	margin: 0;
	padding: 37px 0;
	display: table;
	background: var(--blue);
}

.footer_copyright section {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.footer_copyright p {
	font-size: 16px;
	color: rgba(255,255,255,0.85);
	font-weight: 600;
	margin: 0;
	padding: 0;
	float: left;
}

.footer_copyright p:last-of-type {
	float: right;
}

.footer_copyright p a {
	font-size: 16px;
	color: rgba(255,255,255,0.85);
	font-weight: 600;
}

.footer_copyright p a:hover {
	font-size: 16px;
	color: rgba(255,255,255,1);
}



/*BASIC CSS*/

.main_container nav {
	width: 240px;
	float: left;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 3px;
	box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.30);
}

.main_container nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.main_container nav ul li {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.main_container nav ul li:last-of-type {
	border: none;
}

.main_container nav ul li a {
	font-size: 15px;
	color: rgba(0,0,0,0.85);
	font-weight: 600;
	margin: 0;
	padding: 11px 15px;
	display: block;
	position: relative;
}

.main_container nav ul li a:hover,
.main_container nav ul li a.active {
	font-size: 15px;
	color: #fff;
	background: var(--red);
}

.main_container nav ul li:first-child a {
	border-radius: 3px 3px 0 0;
}

.main_container nav ul li:last-child a {
	border-radius: 0 0 3px 3px;
}

.main_container nav ul li a span.material-icons {
	font-size: 18px;
	color: var(--black);
	vertical-align: middle;
	margin: -2px 5px 0 0;
}

.main_container nav ul li a:hover span.material-icons,
.main_container nav ul li a.active span.material-icons {
	color: var(--white);
}

/*main subcategories*/

.main_container nav ul li ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

.main_container nav ul li ul li a {
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	padding: 9px 15px;
	background: var(--white);
	border-radius: 0 !important;
}

.main_container nav ul li ul li a:hover,
.main_container nav ul li ul li a.active {
	font-size: 13px;
	color: #000;
	background: var(--blue);
}

.main_container nav ul li ul li:first-child a {
	border-radius: 0;
}

.main_container nav ul li ul li:last-child a {
	border-radius: 0;
}

/*jquery accordion menu*/

#accordion ul {
	display: none;
}

#accordion a {
	cursor: pointer;
}

/*contact form*/

.contact_form {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.contact_form dl {
	width: 100%;
	margin: 0;
	padding: 0;
	clear: both;
	display: table;
}

.contact_form div {
	width: 310px;
	float: left;
	margin: 0 20px 20px 0;
	padding: 0;
}

.contact_form div.cnt_form_div_note {
	width: 100%;
	float: none;
	margin: 0 0 15px;
}

.contact_form div:nth-of-type(2n) {
	margin-right: 0;
}

.contact_form dd div {
	width: auto;
	float: none;
	margin: 0;
}

.contact_form dt {
	width: 100%;
	display: table;
	margin: 0;
	padding: 0 !important;
}

.contact_form dt label {
	font-size: 16px;
	color: rgba(0,0,0,0.85);
	font-weight: 600;
	margin: 0;
	padding: 0 0 10px 5px;
	display: block;
	cursor: text;
}

.contact_form dd {
	width: 100% !important;
	display: table;
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
}

.buttons_action input[type="reset"] {
	background: #a5a5a5 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	border: 1px solid #a5a5a5 !important;
	padding: 11px 30px 12px !important;
	font-size: 12px !important;
	color: #fff !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	float: left;
	width: auto !important;
	cursor: pointer !important;
	text-transform: uppercase !important;
	transition: all .2s linear !important;
	margin: 0 5px 0 0 !important;
}

.buttons_action input[type="reset"]:hover, .buttons_action input[type="reset"]:focus {
	font-size: 12px !important;
	color: #fff !important;
	background: #a5a5a5 !important;
	border: 1px solid #a5a5a5 !important;
	opacity: 1;
}

.buttons_action input[type="submit"] {
	background: var(--blue) !important;
	border: 1px solid var(--blue) !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	padding: 11px 30px 12px !important;
	font-size: 12px !important;
	color: #fff !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	float: left;
	width: auto !important;
	cursor: pointer !important;
	text-transform: uppercase !important;
	transition: all .2s linear !important;
	margin: 0 !important;
}

.buttons_action input[type="submit"]:hover, .buttons_action input[type="submit"]:focus,
.buttons_action input[type="submit"]:valid:hover, .buttons_action input[type="submit"]:valid:focus {
	font-size: 12px !important;
	color: #fff !important;
	background: var(--darkblue) !important;
	border: 1px solid var(--darkblue) !important;
	opacity: 1;
}

.contact_form dl a {
	color: var(--blue);
}

.contact_form dd input, .contact_form dd textarea, .contact_form dd select {
	width: 100%;
	max-width: 100%;
	padding: 13px 15px 14px;
	margin: 0 !important;

	background: linear-gradient(#ffffff, #fafafa) !important;
	background: -webkit-linear-gradient(#ffffff, #fafafa) !important;
	border-radius: 0 !important;
	border: 1px solid #cdcdcd !important;
	box-shadow: none !important;

	transition: all .3s linear;
	color: #2d2d2d;
	font-size: 14px !important;
	font-weight: 500;
	opacity: 1;
}

.contact_form dd input:hover, .contact_form dd input:focus, .contact_form dd input:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd textarea:hover, .contact_form dd textarea:focus, .contact_form dd textarea:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd select:hover, .contact_form dd select:focus, .contact_form dd select:active {
	background: #fff !important;
	border: 1px solid #a5a5a5 !important;
	box-shadow: none !important;
}

.contact_form dd textarea {
	min-height: 120px;
	max-height: 120px;
	resize: none;
}

.contact_form div dd .formInfo:nth-child(2) {
	position: absolute;
	right: 5px;
	top: -22px;
}

.contact_form dd select {
	padding: 8px 10px 10px;
}

.contact_form dd input[type="file"] {
	padding: 7px 10px 7px;
}

/*invalid input*/

.contact_form dd input:invalid:focus, .contact_form dd select:invalid:focus, .contact_form dd textarea:invalid:focus {
	border: 1px solid #e10f0f !important;
}

.contact_form dd input:valid:focus, .contact_form dd select:valid:focus, .contact_form dd textarea:valid:focus {
	border: 1px solid #179d0a !important;
}

.formInfo {
	margin: 0;
	color: #C20E24;
	font-size: 18px;
	cursor: help;
}

.FormButton{
	width: auto!important;
}

.CaptchaInput {
	float:left;
	width:70px !important;
}

#CaptchaImg2 {
	margin: 7px 0 0 5px;
	border: 1px solid #b4b4b4;
}

.contact_form dd img{
	border: none;
}

#reload_ecaptcha_contact{
	border: none;
}

.contact_form dd.buttons_action {
	padding: 20px 0 0 !important;
}

.contact_form dd div p {
	font-size: 13px;
	color: #555;
	font-weight: normal;
	margin: 0 0 8px;
	padding: 0;
	display: block;
}

.error_content {
	color: #2d2d2d !important;
	margin: 20px 0;
}

.msg_content {
	color: #2d2d2d !important;
	margin: 20px 0;
}

/*sorter*/

.sorter {
	width: 100%;
	margin: 0 0 30px;
	padding: 10px 15px;
	display: table;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.sorter h1 {
	font-size: 14px;
	color: #000;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	padding: 4px 15px 0 0;
	text-align: left;
	float: left;
}

.sorter h1 > span {
	font-size: 24px;
	color: var(--black);
	vertical-align: middle;
	margin: -2px 0 0 10px;
}

.sorter form {
	width: auto;
	float: right;
	margin: 0;
	padding: 0;
}

.sorter form div {
	width: auto;
	float: left;
	margin: 0 15px 0 0;
	padding: 0;
}

.sorter form div:last-of-type {
	margin: 0;
}

.sorter form label {
	font-size: 12px;
	color: #414141;
	font-weight: 500;
	margin: 0;
	padding: 6px 10px 6px 0;
	float: left;
	cursor: text;
}

.sorter ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
}

.sorter ul li {
	width: auto;
	float: left;
	margin: 0 5px 0 0;
}

.sorter ul li:last-of-type {
	margin: 0;
}

.sorter form input[type="submit"] {
	font-size: 10px !important;
	color: #2d2d2d;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	padding: 7px;
	background: transparent;
	border: 1px solid #cdcdcd;
	border-radius: 0;
	transition: all .3s linear;
	opacity: 1;
	width: auto;
	float: left;
	cursor: pointer;
}

.sorter form input[type="submit"]:hover,
.sorter form input[type="submit"]:focus,
.sorter form input[type="submit"].active {
	font-size: 10px !important;
	color: var(--black);
	background: var(--blue);
	border: 1px solid var(--blue);
}

/*paging content*/

.paging_content {
	width: 100%;
	margin: 0;
	padding: 40px 0 0;
	display: table;
}

.paging_content .paging, .paging_content .paging_info {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	display: table;
}

.paging_content .paging p {
	font-size: 13px;
	color: #555;
	font-weight: 400;
	text-transform: uppercase;
	margin: 12px 10px 0 0;
	padding: 0;
	float: left;
}

.paging_content .paging span {
	font-size: 12px;
	color: #555;
	font-weight: 400;
	margin: 0;
	padding: 0;
	float: left;
}

.paging_content .paging a, .paging_content .paging span {
	font-size: 11px;
	color: #414141;
	font-weight: 700;
	margin: 0 -1px 0 0;
	padding: 12px 15px;
	float: left;
	background: linear-gradient(#f5f5f5, #f0f0f0);
	background: -webkit-linear-gradient(#f5f5f5, #f0f0f0);
	border: 1px solid #d7d7d7;
	cursor: pointer;
	transition: all .3s linear;
}

.paging_content .paging span:first-of-type {
	border-radius: 0;
}

.paging_content .paging a:last-of-type {
	border-radius: 0;
}

.paging_content .paging a:hover, .paging_content .paging a:focus, .paging_content .paging a.active,
.paging_content .paging span:hover, .paging_content .paging span:focus, .paging_content .paging span.active {
	font-size: 11px;
	color: #000;
	background: #fff;
	border: 1px solid #d7d7d7;
}

.paging_content .paging_info {
	font-size: 12px;
	color: #555;
	font-weight: 500;
	padding: 8px 0 0 90px;
}

/*basic site inner content*/

.basic_site_inner_content {
	width: 100%;
	margin: 0;
	padding: 40px 0 60px;
	display: table;
	background: #fff;
}

.basic_site_inner_content section {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.basic_site_inner_content article {
	width: 100%;
	margin: 0;
	padding: 0;
	display: table;
}

.basic_site_inner_content h1 {
	font-size: 34px;
	color: var(--blue);
	font-weight: 800;
	margin: 0;
	padding: 0;
}

.basic_site_inner_content h2 {
	font-size: 28px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.basic_site_inner_content h3 {
	font-size: 24px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.basic_site_inner_content figure {
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.12);
	border-radius: 0;
	
	float: left;
	margin: 0 30px 30px 0;
	padding: 0;
}

.basic_site_inner_content figure img {
	vertical-align: middle;
	text-align: center;
}

.basic_site_inner_content em {
	line-height: 26px;
}

.basic_site_inner_content p {
	line-height: 24px;
}

.basic_site_inner_content article p,
.basic_site_inner_content article span,
.basic_site_inner_content article p span,
.basic_site_inner_content article em {
	font-family: "Mukta", Arial, Tahoma, Calibri, Verdana, sans-serif !important;
}

.basic_site_inner_content article ul {
	padding-left: 20px;
}

/*basic site inner content contact*/

.basic_site_inner_content_contact {
	width: 100%;
	margin: 0;
	padding: 40px 0 60px;
	display: table;
	background: #fff;
}

.basic_site_inner_content_contact section {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.basic_site_inner_content_contact article {
	width: 500px;
	float: left;
	margin: 0;
}

.basic_site_inner_content_contact h1 {
	font-size: 34px;
	color: var(--blue);
	font-weight: 800;
	margin: 0;
	padding: 0;
}

.basic_site_inner_content_contact h2 {
	font-size: 28px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.basic_site_inner_content_contact h3 {
	font-size: 24px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.right_column_contact {
	width: 640px;
	float: right;
	margin: 50px 0 0;
}

.basic_site_inner_content_contact iframe {
	width: 100%;
	height: 480px;
	border: none;
	outline: none;
	margin: 60px 0 0;
}

.basic_site_inner_content_contact .grecaptcha-logo iframe {
	width: inherit;
	height: inherit;
	border: inherit;
	margin: inherit;
}

.basic_site_inner_content_contact em {
	line-height: 26px;
}

.basic_site_inner_content_contact p {
	line-height: 24px;
}

/*services container*/

.services_container {
	width: 100%;
	margin: 0;
	padding: 40px 0 60px;
	display: table;
	background: #fff;
}

.services_container section {
	width: 1200px;
	margin: 0 auto;
	display: table;
}

.services_container h1 {
	font-size: 34px;
	color: var(--blue);
	font-weight: 800;
	margin: 0;
	padding: 0;
}

.services_container h2 {
	font-size: 28px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.services_container h3 {
	font-size: 24px;
	color: #000;
	font-weight: 600;
	margin: 0;
	padding: 0 0 5px;
}

.services_container em {
	line-height: 26px;
}

.services_container p {
	line-height: 24px;
}

.services_container figure {
	display: table-cell;
	overflow: hidden;
	vertical-align: middle;
	text-align: center;
	background: transparent;
	border: none;
	
	float: left;
	margin: 0 30px 30px 0;
	padding: 0;
}

.services_container figure img {
	vertical-align: middle;
	text-align: center;
}

.send_request_btn {
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	margin: 15px 0;
	padding: 9px 20px;
	background: var(--darkblue);
	border-radius: 2px;
	display: table;
}

.send_request_btn:hover {
	font-size: 18px;
	color: #fff;
	background: var(--blue);
}

.send_request_btn span {
	font-size: 22px;
	color: #fff;
	vertical-align: middle;
	margin: -3px 10px 0 0;
}

.services_container section article p,
.services_container section article span,
.services_container section article p span,
.services_container section article em {
	font-family: "Mukta", Arial, Tahoma, Calibri, Verdana, sans-serif !important;
}

.services_container section article ul {
	padding-left: 20px;
}

.services_container section article p b,
.services_container section article p b span {
	font-weight: bold;
}




/*ecms gallery box*/

.ecms_gallery_box {
	width: 100%;
	float: none;
	display: table;
	margin: 30px 0 0;
	padding: 22px 0 0;
	border-top: 1px dashed #a5a5a5;
}

.ecms_gallery_box h1,
.ecms_gallery_box h2 {
	font-size: 22px;
	color: #000;
	font-weight: 500;
	text-transform: none;
	margin: 0;
	padding: 0 0 10px;
}

.ecms_gallery_box h1:before,
.ecms_gallery_box h2:before {
	content: "\e413";
	font-family: "Material Icons";
	font-size: 24px;
	color: var(--darkblue);
	font-weight: normal;
	margin: -2px 10px 0 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}

.ecms_gallery_box p {
	font-size: 16px;
	text-decoration: none;
	margin: 0;
	padding: 0;
}

.ecms_gallery_box a {
	width: 22.9%;
	float: left;
	margin: 30px 30px 0 0;
	padding: 0;
	position: relative;
}

.ecms_gallery_box a:nth-of-type(4n) {
	margin-right: 0;
}

.ecms_gallery_box a img {
	width: 100%;
	/*height: 100%;*/
	margin: 0;
	padding: 0;
	display: flex;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.15);
}

.ecms_gallery_box em {
	font-size: 16px;
	color: rgba(0,0,0,0.80);
	font-weight: 500;
	margin: 0;
	padding: 15px 0 0;
	line-height: 22px;
	overflow: hidden;
	height: 60px;
}

/*download*/

.document_category {
	width: 100%;
	margin: 40px 0 0;
	padding: 25px 20px 20px;
	clear: both;
	display: table;
	background: linear-gradient(#f2f2f2, #f0f0f0);
	background: -webkit-linear-gradient(#f2f2f2, #f0f0f0);
	border: 1px solid #e0e0e0;
	border-radius: 0;
}

.document_category h1,
.document_category h2 {
	font-size: 22px;
	color: #000;
	font-weight: 500;
	text-transform: none;
	margin: 0;
	padding: 0 0 20px;
}

.document_category h1:before,
.document_category h2:before {
	content: "\ebbd";
	font-family: "Material Icons";
	font-size: 24px;
	color: var(--darkblue);
	font-weight: normal;
	margin: -2px 10px 0 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}

.document_category ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: table;
	width: 100%;
}

.document_category ul li {
	width: 31.4%;
	margin: 0 30px 30px 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
}

.document_category ul li:nth-of-type(3n) {
	margin-right: 0;
}

.document_category ul li img, .document_category ul li a {
	display: inline-block;
	vertical-align: middle;
}

.document_category ul li img {
	max-height: 38px;
	margin: 0 5px 0 0;
	padding: 0;
}

.document_category ul li a {
	font-size: 16px;
	color: var(--black);
	font-weight: 500;
	margin: 0;
	padding: 0;
	line-height: 22px;
	overflow: hidden;
	max-height: 67px;
	max-width: 85%;
}

.document_category ul li a:hover {
	font-size: 16px;
	color: var(--darkblue);
}

/*hist and social*/

.hist_and_social {
	width: 100% !important;
	margin: 40px 0 0 !important;
	padding: 0 !important;
	clear: both;
	display: table;
	background: none !important;
	border-radius: 0 !important;
}

.hist_and_social .social_toolbar_inside {
	width: auto;
	float: right;
	margin: 4px 0;
	padding: 0;
}

.social_toolbar_inside ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: table;
}

.social_toolbar_inside ul li {
	float: left;
	margin: 0 5px 0 0;
	padding: 0;
}

.social_toolbar_inside ul li.label {
	font-size: 13px;
	font-weight: 600;
	margin: 6px 10px 0 0 !important;
}

.social_toolbar_inside ul li:last-of-type {
	margin: 0;
}

.social_toolbar_inside ul li a {
	display: flex;
}

.social_toolbar_inside ul li img {
	max-height: 32px;
	margin: 0;
	padding: 0;
	transition: all .3s linear;
	border-radius: 0;
	opacity: 1;
}

.social_toolbar_inside ul li img:hover {
	opacity: 0.75;
}

#hist {
	width: auto;
	float: left;
	margin: 0;
	padding: 0;
}

.ecms_gallery_box #hist {
	float: none;
	clear: both;
	display: table;
	padding-top: 30px;
}

#hist a {
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	margin: 0;
	padding: 10px 15px;
	display: table;
	background: var(--blue);
	border-radius: 0;
}

#hist a:hover {
	font-size: 14px;
	color: #fff;
	background: var(--black);
}

#hist a span {
	font-size: 22px;
	color: #fff;
	vertical-align: middle;
	margin: -3px 5px 0 0;
}

#hist a:hover span {
	color: #fff;
}



/*FANCYBOX*/

.fancybox-skin {
	background: #fff !important;
}

.fancybox-lock {
	overflow: inherit !important;
}






