/*******************
Fonts
********************/
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
        url('../fonts/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Regular.woff') format('woff'),
        url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-RegularItalic.eot');
    src: local('Gilroy Regular Italic'), local('Gilroy-RegularItalic'),
        url('../fonts/Gilroy-RegularItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-RegularItalic.woff') format('woff'),
        url('../fonts/Gilroy-RegularItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBold.eot');
    src: local('Gilroy SemiBold'), local('Gilroy-SemiBold'),
        url('../fonts/Gilroy-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-SemiBold.woff') format('woff'),
        url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-SemiBoldItalic.eot');
    src: local('Gilroy SemiBold Italic'), local('Gilroy-SemiBoldItalic'),
        url('../fonts/Gilroy-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-SemiBoldItalic.woff') format('woff'),
        url('../fonts/Gilroy-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url('../fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Bold.woff') format('woff'),
        url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-BoldItalic.eot');
    src: local('Gilroy Bold Italic'), local('Gilroy-BoldItalic'),
        url('../fonts/Gilroy-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-BoldItalic.woff') format('woff'),
        url('../fonts/Gilroy-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBold.eot');
    src: local('Gilroy ExtraBold'), local('Gilroy-ExtraBold'),
        url('../fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-ExtraBold.woff') format('woff'),
        url('../fonts/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBoldItalic.eot');
    src: local('Gilroy ExtraBold Italic'), local('Gilroy-ExtraBoldItalic'),
        url('../fonts/Gilroy-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-ExtraBoldItalic.woff') format('woff'),
        url('../fonts/Gilroy-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

/********************
General
********************/
html {
  height: 100%;
}
body {
  min-height: 100%;
  min-width: 320px;
  font-family: 'Gilroy', sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.4;
  color: #000000;
  background-color: #f5f6f8;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Gilroy', sans-serif;
	font-weight: 800;
}
h1 {
	font-size: 30px;
}
h2 {
	font-size: 18px;
}
ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
a,
button {
	transition: all 0.3s;
}
a:hover {
	color: #ff5415;
	text-decoration: none;
}
img {
	max-width: 100%;
}
.d-none {
	display: none;
}
/*** Forms ***/
.form-group {
	margin-bottom: 20px;
}
.form-group-btn {
	margin-top: 40px;
}
.ajax_form .error {
	display: block;
	font-size: 14px;
	text-align: center;
}
input,
textarea {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 345px;
	height: 74px;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #000;
	background-color: #fff;
	border: none;
	border-radius: 10px;
}
input:focus,
textarea:focus {
	outline: none;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: bfc0ca;
}
input::-moz-placeholder { /* Firefox 19+ */
  color: bfc0ca;
}
input:-ms-input-placeholder { /* IE 10+ */
  color: bfc0ca;
}
input:-moz-placeholder { /* Firefox 18- */
  color: bfc0ca;
}
input:disabled {
	background-color: #f5f5f5;
}
textarea {
	width: 100%;
	min-height: 225px;
}
/* Buttons */
.btn {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	min-width: 116px;
	height: 37px;
	padding: 0 15px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	color: #ff5415;
	background-color: #ffe3d9;
	border: none;
	border-radius: 5px;
	transition: all .3s;
}
.btn:hover {
	color: #fff;
	background-color: #ff5415;
}
.btn-primary {
	background-color: #ff5415;
	color: #fff;
	border-radius: 12px;
}
.btn-primary:hover {
	background-color: #ff0000;
}

/*** FontAwesome ***/
.icon::before {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

/********************
Header
********************/
header {
	height: 90px;
	margin-bottom: 40px;
	background-color: #ffffff;
  	box-shadow: 0px 1px 35px 0px rgba(18, 31, 81, 0.05);
  	z-index: 999;
}
header > .container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
header .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 136px;
	height: 90px;
	background: #000;
}
header .logo img {
	width: 87px;
	height: 31px;
}
.header-user-area .if-login {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.header-user-area .user-block {
	display: flex;
	align-items: center;
}
.header-user-area .user-details .user-name,
.header-user-area .user-details .user-position {
	margin-bottom: 0;
	font-weight: 600;
	color: #000;
	text-align: right;
}
.header-user-area .user-details .user-name {
	font-size: 16px;
}
.header-user-area .user-details .user-position {
	font-size: 14px;
	color: #aaacb9;
}
.header-user-area .user-image {
	display: flex;
	justify-content: center;
	margin-top: auto;
	flex: 0 0 57px;
	width: 57px;
	height: 57px;
	margin-left: 14px;
	border: 2px solid #f4f5f7;
	border-radius: 50%;
	overflow: hidden;
	transition: all .3s;
}
.user-block:hover .user-image {
	border-color: #d7dbdf;
}
.header-user-area .user-image img {
	max-width: 57px;
	max-height: 57px;
}
.header-icon {
	width: 51px;
	height: 51px;
	background-color: #eceff3;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 9px;
}
.header-user-area .notifications {
	margin-left: 43px;
}
.header-user-area .logout {
	margin-left: 12px;
}
.header-icon-notifications {
	background-image: url("../img/icons/icon-notifications.png");
}
.header-icon-logout {
	background-image: url("../img/icons/icon-logout.png");
}
.header-icon:hover {
	background-color: #d7dbdf;
}
/*** Notifications ***/
.notification-list {
	position: absolute;
	display: none;
	z-index: 999;
	right: 0;
	top: 55px;
	width: 400px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0px 0px 15px 0px rgb(11 21 60 / 15%);
}
.notification-list a {
	display: block;
	position: relative;
	padding: 20px 40px;
}
.notification-list li {
	border-bottom: 1px solid #f2f3f6;
}
.notification-list li:last-child {
	border-bottom: none;
}
.notification-list li:first-child a {
	padding-top: 30px;
}
.notification-list li:last-child a {
	padding-bottom: 30px;
}
.notification-list li a:before {
	position: absolute;
	content: '';
	display: block;
	top: 13px;
	right: 13px;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #ff5d27;
}
.notification-list-item-title,
.notification-list-item-desc {
	transition: all .3s;
}
.notification-list-item-title {
	margin-bottom: 5px;
	font-weight: bold;
	color: #000;
}
.notification-list-item-desc {
	margin-bottom: 0;
	font-size: 14px;
	color: #000;
}
.notification-list a:hover .notification-list-item-title {
	color: #ff5d27;
}
.notification-list a:hover .notification-list-item-desc {
	color: #ff5d27;
}
.show {
	display: block;
}

/********************
Layout
********************/
.container {
	max-width: 1444px;
	padding-left: 0;
	padding-right: 0;
}
.main-wrapper {
	display: flex;
	flex-direction: row;
	padding-bottom: 50px;
}

/********************
Sidebar
********************/
.sidebar {
	width: 252px;
	margin-right: 58px;
}

/*** Main menu ***/
.main-nav-wrapper {
	position: relative;
	margin-bottom: 57px;
	padding: 46px 0 46px 29px;
	background: #fff;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}
.main-nav-wrapper:before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 3000px;
	height: 100%;
	background: #fff;
	box-shadow: 0px 1px 35px 0px rgba(18, 31, 81, 0.05);
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}
.main-nav li {
	margin-bottom: 20px;
}
.main-nav li:last-child {
	margin-bottom: 0;
}
.main-nav li a {
	display: flex;
	align-items: center;;
}
.main-nav li a .main-nav-item-img {
	width: 30px;
	height: 30px;
	margin-right: 19px;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
}
.main-nav li a span {
	font-weight: bold;
	color: #202020;
}
.main-nav li.active a,
.main-nav li a:hover {
	border-right: 3px solid #ff0000;
	transition: none;
}
.main-nav li.active a span,
.main-nav li a:hover span {
	color: #ff5415;
}
.main-nav li.active a .main-nav-item-img,
.main-nav li a:hover .main-nav-item-img {
	opacity: 1;
}
.mobile-menu-open,
.mobile-menu-close {
	display: none;
}

/*** Last news ***/
.last-news h3 {
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
}
.last-news-list li {
	margin-bottom: 24px;
}
.last-news-list li a {
	position: relative;
	display: block;
	padding: 30px 25px;
	color: #000;
	background-color: #fff;
  	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.08);
  	border-radius: 12px;
}
.last-news-list li a:hover {
	color: #ff6a39;
  	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.15);
}
.last-news-list a .title {
	z-index: 3;
	position: relative;
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
}
.last-news-list a:before {
	content: '';
	position: absolute;
	width: 83px;
	height: 34px;
	left: 46px;
	top: 20px;
	background-color: #eceff3;
	border-radius: 9px;
}
.last-news-list a:after {
	content: '. . .';
	font-size: 20px;
	font-weight: bold;
	position: absolute;
	right: 25px;
	bottom: 30px;
}
.last-news-list a .introtext {
	margin-bottom: 15px;
	font-size: 14px;
}
.last-news-list a .date {
	margin-bottom: 0;
	font-weight: bold;
	font-size: 14px;
}

/********************
Main
********************/
main {
	position: relative;
	width: calc(1444px - 252px - 58px);
	min-height: 800px;
	padding-top: 15px;
}
h1 {
	margin-bottom: 5px;
	text-transform: uppercase;
}
h2 {
	margin-bottom: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

/*** Breadcrumbs ***/
.breadcrumbs {
	display: flex;
	margin-bottom: 27px;
}
.breadcrumbs li {
	margin-right: 3px;
	margin-left: 3px;
}
.breadcrumbs li:first-child {
	margin-left: 0;
}
.breadcrumbs,
.breadcrumbs li a {
	font-size: 13px;
	font-weight: 600;
	color: #c2cad4;
	text-transform: lowercase;
}
.breadcrumbs li a:hover {
	color: #ff5415;
}

/*** Search Form ***/
.simplesearch-search-form {
	position: absolute;
	top: 20px;
	right: 0;
}
.simplesearch-search-form fieldset {
	position: relative;
}
.simplesearch-search-form input[type="text"] {
	width: 297px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: start;
	padding: 10px 25px;
	padding-right: 60px;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	color: #000;
	background-color: #fff;
	border-radius: 27.5px;
}
.simplesearch-search-form input[type="text"]:focus {
	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.15);
	outline: none;
}
.simplesearch-search-form input[type="submit"] {
	width: 41px;
	height: 41px;
	position: absolute;
	top: 7px;
	right: 9px;
	padding: 0;
	font-size: 0;
	background-color: #000;
	border-radius: 100%;
	background-image: url('../img/icons/icon-search.png');
	background-repeat: no-repeat;
	background-position: center;
	transition: all .3s;
}
.simplesearch-search-form input[type="submit"]:hover {
	background-color: #ff6a39;
}

/*** Pagination ***/
.pagination {
	display: flex;
	justify-content: center;
}
.pagination li:first-child,
.pagination li:nth-child(2),
.pagination li:nth-last-child(2),
.pagination li:last-child {
	display: none;
}
.pagination li {
	margin-left: 6px;
	margin-right: 6px;
}
.pagination li a {
	font-size: 18px;
	font-weight: 600;
	color: #000;
}
.pagination li a:hover,
.pagination li.active a {
	color: #ff5c26;
}

/*** Categories menu ***/
.categories-menu {
	display: inline-flex;
	height: 55px;
	margin-bottom: 44px;
	background-color: #eceff3;
	border-radius: 55px;
}
.categories-menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 50px;
	height: 55px;
	font-size: 14px;
	font-weight: 600;
	color: #202020;
}
.categories-menu li.active a,
.categories-menu li a:hover {
	font-weight: bold;
	color: #ff5415;
	background-color: #fff;
	box-shadow: 0px 0px 25px 0px rgba(29, 33, 63, 0.1);
	border-radius: 55px;
}
.categories-menu-hover {
	font-weight: bold;
    background-color: #ff5415;
    box-shadow: 0px 0px 25px 0px rgb(29 33 63 / 10%);
    border-radius: 55px;
    transition: all .3s;
}
.categories-menu-hover li:not(.active) a {
	color: #fff;
}

/*** Subcategories menu ***/
.subcategories-menu {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 56px;
}
.subcategories-menu li {
	margin-bottom: 13.5px;
	margin-right: 13.5px;
}
.subcategories-menu li a {
	position: relative;
	display: flex;
	justify-content: start;
	width: 216px;
	height: 105px;
	padding: 15px 23px;
	background-color: #fff;
	border-radius: 12px;
}
.subcategories-menu li:last-child {
	margin-right: 0;
}
.subcategories-menu li a span {
	margin-top: auto;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 600;
	color: #202020;
	transition: all .3s;
}
.subcategories-menu li a .subcategories-item-img,
.subcategories-menu li a .subcategories-item-img-hover {
	position: absolute;
	top: 13px;
	right: 16px;
	width: 32px;
	height: 32px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 1;
	transition: all .3s;
}
.subcategories-menu li a .subcategories-item-img-hover {
	opacity: 0;
}
.subcategories-menu li.active a,
.subcategories-menu li a:hover {
  box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.15);
}
.subcategories-menu li.active a span,
.subcategories-menu li a:hover span {
	color: #ff5415;
}
.subcategories-menu li.active a .subcategories-item-img-hover,
.subcategories-menu li a:hover .subcategories-item-img-hover {
	opacity: 1;
}
.subcategories-menu li.active a .subcategories-item-img,
.subcategories-menu li a:hover .subcategories-item-img {
	opacity: 0;
}

/*** Employees list ***/
.employees-list {
	display: flex;
	flex-wrap: wrap;
}
.employees-list > li {
	display: flex;
	width: 548px;
	min-height: 225px;
	margin-right: 38px;
	margin-bottom: 33px;
	background-color: #fff;
  	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.07);
  	border-radius: 12px;
	overflow: hidden;
  	transition: all .3s;
}
.employees-list > li:hover {
  	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.15);
}
.employees-list > li:nth-child(2n) {
	margin-right: 0;
}
.employees-list > li .employee-item-img {
	position: relative;
	flex: 0 0 230px;
	width: 230px;
	height: 225px;
	overflow: hidden;
}
.employees-list > li .employee-item-img img {
	transition: all .3s;
}
.employees-list > li:hover .employee-item-img img {
	transform: scale(1.05);
}
.employees-list > li .employee-item-img .label-new {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 7px;
	background-color: #ff5b19;
	color: #fff;
	border-top-left-radius: 5px;
	font-weight: 500;
	font-size: 12px;
}
.employees-list .employee-item-body {
	padding: 20px 30px;
	padding-bottom: 5px;
	font-weight: 600;
}
.employees-list p {
	margin-bottom: 0;
}
.employees-list .employee-item-name {
	margin-bottom: 18px;
	font-size: 17px;
	text-transform: uppercase;
}
.employees-list .employee-item-department {
	margin-bottom: 5px;
	font-size: 11px;
	text-transform: uppercase;
}
.employees-list .employee-item-position {
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: bold;
}
.employee-item-contacts li {
	font-size: 10px;
}
.employee-item-contacts li span,
.employee-item-contacts li a {
	font-size: 15px;
}
.employee-item-contacts li a {
	color: #ff5415;
	border-bottom: 1px solid transparent;
}
.employee-item-contacts li a:hover {
	border-bottom-color: #ff5415;
}

/*** Employees subcategories ***/
.sub2categories-menu {
	margin-bottom: 56px;
}
.sub2categories-item {
	margin-bottom: 12px;
}
.sub2categories-item a {
	display: flex;
	align-items: center;
	min-height: 66px;
	padding: 10px 48px;
	font-size: 16px;
	font-weight: 600;
	color: #000;
  	border-radius: 10px;
  	background-color: rgb(255, 255, 255);
  	box-shadow: 0px 5px 35px 0px rgba(29, 33, 63, 0.05);
}
.sub2categories-item a:hover {
	color: #ff5415;
  	box-shadow: 0px 5px 35px 0px rgba(29, 33, 63, 0.15);
}


/*** Documents list ***/
.documents-list li {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 105px;
	margin-bottom: 15px;
	padding: 20px 50px 20px 90px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.07);
}
.documents-list li p.document-name {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 600;
}
.documents-list li:before {
	content: '';
	position: absolute;
	left: 35px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: url('../img/icons/icon-document.png') no-repeat center;
}
.documents-list li:hover {
	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.15);
}
.documents-list li .btn-open {
	margin-left: auto;
}
.documents-list li .btn-download {
	/*margin-left: 15px;*/
	margin-left: auto;
}

/********************
Article
********************/

/*** Article ***/
.back-to-category-link {
	display: flex;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: #000;
}
.article {
	margin-bottom: 58px;
	padding: 55px 65px;
	padding-bottom: 22px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 5px 35px 0px rgba(29, 33, 63, 0.05);
}
.article h2 {
	margin-bottom: 20px;
	font-size: 30px;
	font-weight: bold;
}
.article .introtext {
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: 600;
}
.article ul {
	margin-bottom: 20px;
	padding-left: 20px;
	list-style-type: disc;
}
.slick-prev,
.slick-next {
	width: 30px;
	height: 30px;
	z-index: 50;
}
.slick-prev:before,
.slick-next:before {
	color: #fff;
	font-size: 30px;
	opacity: 0.5;
	transition: all .3s;
}
.slick-prev {
	left: 15px;
}
.slick-next {
	right: 15px;
}
.slick-prev:hover:before,
.slick-next:hover:before {
	opacity: 0.7;
}
.article-gallery {
	margin-left: -65px;
	margin-right: -65px;
	margin-bottom: 30px;
}

/********************
News
********************/
.news-list li {
	display: flex;
	height: 131px;
	margin-bottom: 19px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 5px 35px 0px rgba(29, 33, 63, 0.05);
	overflow: hidden;
	transition: all .3s;
}
.news-list li:hover {
	box-shadow: 0px 5px 35px 0px rgba(29, 33, 63, 0.15);
}
.news-list li .news-list-item-img {
	flex: 0 0 187px;
	width: 187px;
	height: 131px;
	overflow: hidden;
}
.news-list li .news-list-item-img img {
	width: 100%;
	height: auto;
	transition: all .3s;
}
.news-list li:hover .news-list-item-img img {
	transform: scale(1.05);
}
.news-list li .news-list-item-body {
	flex: 1;
	padding: 30px 40px;
}
.news-list li .news-list-item-body .title {
	margin-bottom: 10px;
	font-weight: bold;
	text-transform: uppercase;
}
.news-list li .news-list-item-body .description {
	margin-bottom: 0;
	font-size: 14px;
}
.news-list li .news-list-item-footer {
	display: flex;
	flex-direction: column;
	padding: 23px 26px 15px 0;
	flex: 0 0 142px;
	width: 142px;
}
.news-list li .news-list-item-date {
	font-size: 12px;
	font-weight: 600;
	text-align: right;
}
.news-list li a.btn {
	margin-top: auto;
}

/********************
Mainpage
********************/
#home h1 {
	margin-bottom: 15px;
}
.intro-block {
	position: relative;
	max-width: 790px;
	margin-bottom: 80px;
	padding: 35px 45px;
	font-size: 16px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 5px 35px 0px rgba(29, 33, 63, 0.05);
}
.intro-block .btn-main-site {
	position: absolute;
	width: 210px;
	height: 55px;
	bottom: 0;
	right: 70px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background-color: #ff5d27;
	transform: translateY(50%);
	border-radius: 27.5px;
}
.intro-block .btn-main-site:hover {
	background-color: #ff7547;
}

/********************
Simple Page
********************/
.content {
	padding: 55px 65px;
  	background-color: rgb(255, 255, 255);
  	border-radius: 10px;
  	box-shadow: 0px 5px 35px 0px rgba(29, 33, 63, 0.05);
}

/********************
Search result page
********************/
.simplesearch-results {
    font-weight: bold;
}
.simplesearch-result h3,
.simplesearch-result h3 a {
    color: #ff5415;
    font-weight: 600;
}
.simplesearch-result h3 a:hover {
    text-decoration: underline;
}

/*******************
Authorization
********************/
#login {
	height: 100vh;
	display: flex;
	flex-direction: column;
}
#login header {
	margin-bottom: 0;
}
#login .main-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 0;
}
#login h1 {
	margin-bottom: 25px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
}
#login .btn-login {
	width: 100%;
	height: 65px;
}
#login .form-group-btn {
	margin-bottom: 20px;
}
#login .login-form-errors {
	margin-bottom: 0;
}
#login .password-recovery {
	text-align: right;
}
#login .password-recovery a {
	font-size: 14px;
	font-weight: bold;
	color: #ff5415;
	border-bottom: 1px solid transparent;
}
#login .password-recovery a:hover {
	border-bottom-color: #ff5415;
}
#login .login-form-wrapper {
	max-width: 345px;
}
#login .loginFPFieldset .loginFPLegend {
	margin-bottom: 25px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
}

/********************
Projects
********************/

/*** Projects list ***/
.projects-list {
	display: flex;
	flex-wrap: wrap;
}
.projects-list li {
	width: 348px;
	margin-right: 45px;
	margin-bottom: 37px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.07);
	overflow: hidden;
	transition: all .3s;
}
.projects-list li:nth-child(3n) {
	margin-right: 0;
}
.projects-list li .projects-list-item-img {
	height: 231px;
	overflow: hidden;
	transition: all .3s;
}
.projects-list li .projects-list-item-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 20px;
}
.projects-list li .projects-list-item-name {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}
.projects-list li .btn-read-more {
	margin-left: 35px;
}
.projects-list li:hover {
	box-shadow: 0px 0px 15px 0px rgba(11, 21, 60, 0.15);
}
.projects-list li:hover .projects-list-item-img {
	transform: scale(1.05);
}

/*** Project ***/
.project-subcategory {
	font-size: 18px;
	font-weight: bold;
}
.article .project-spec {
    margin-bottom: 0;
	list-style: none;
	padding-left: 0;
	font-size: 18px;
	font-weight: 600;
}
.project-spec span {
	font-size: 24px;
	font-weight: bold;
}
.project-main {
    margin-bottom: 35px;
    padding: 55px;
}
.project-main h2 {
	margin-bottom: 10px;
}
.project-compound {
	margin-bottom: 33px;
}
.article .project-compound-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.project-compound-list li {
	flex: 0 0 calc(33% - 80px);
	width: calc(33% - 80px);
	margin-right: 120px;
	margin-bottom: 33px;
}
.project-compound-list li:nth-child(3n) {
	margin-right: 0;
}
.project-compound-list li .number-of {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 135px;
  	height: 66px;
  	margin-bottom: 17px;
  	font-size: 36px;
  	font-weight: bold;
  	color: #ff602c;
	background-color: rgb(255, 227, 217);
	border-radius: 9px;
}
.project-compound-list li .name {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 16px;
}

/********************
Misc
********************/

/*** Scroll to top button ***/
#scrollToTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	display: inline-block;
	width: 50px;
	height: 50px;
	text-align: center;
	background-color: #FF9800;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	transition: background-color .3s, opacity .5s, visibility .5s;
}
#scrollToTop::before {
  content: "\f062";
	font-family: "Font Awesome 5 Free";
	font-size: 2em;
  font-weight: 900;
	line-height: 50px;
	color: #fff;
}
#scrollToTop:hover {
	background-color: #333;
	cursor: pointer;
}
#scrollToTop:active {
	background-color: #555;
}
#scrollToTop.show {
	opacity: 1;
	visibility: visible;
}

/********************
Modal
********************/
.modal {
	max-width: 479px;
	padding: 65px 80px;
	border-radius: 12px;
}
.modal h3 {
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
}
.modal .desc {
	margin-bottom: 45px;
	font-weight: 600;
	text-align: center;
}
.modal input {
	width: 319px;
}
.modal .btn {
	width: 210px;
	height: 55px;
	border-radius: 27.5px;
	margin-left: auto;
	margin-right: auto;
}
.modal textarea {
	padding: 25px;
	background-color: #f5f5f5;
}

/********************
Footer
********************/
footer {
	display: flex;
	align-items: center;
	height: 101px;
	color: #fff;
	background-color: #000000;
}
footer > .container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: auto;
	width: 136px;
	height: 90px;
	background: #000;
}
footer .logo img {
	width: 87px;
	height: 31px;
}
footer .copyrights {
	margin-bottom: 0;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
}

/********************
Media
********************/
@media (max-width: 1400px) {
	.header-user-area {
		padding-right: 15px
	}
	.breadcrumbs {
		flex-wrap: wrap;
		max-width: 650px;
	}
	.last-news {
		padding-left: 15px
	}
	.news-list li {
		height: auto;
	}
	#home h1{
		margin-bottom: 40px;
	}
	footer .container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.projects-list li:nth-child(3n) {
		margin-right: 45px;
	}
}
@media (max-width: 1199px) {
	.main-wrapper {
		flex-wrap: wrap;
	}
	main {
		width: 100%;
		order: 1;
		padding-left: 40px;
		padding-right: 40px;
		padding-top: 110px;
	}
	.sidebar {
		width: 100%;
		order: 2;
	}
	header {
		margin-bottom: 35px;
	}
	.main-nav-wrapper {
		position: fixed;
		width: 252px;
		left: -252px;	
		z-index: 998;
		transition: all .3s;
		box-shadow: 0px 10px 35px 0px rgb(0 0 0 / 30%);
	}
	.main-nav li a {
		width: 223px
	}
	.main-nav-wrapper .mobile-menu-open:hover,
	.main-nav-wrapper .mobile-menu-close:hover {
		cursor: pointer;
	}
	.main-nav-wrapper .mobile-menu-toogle {
		position: absolute;
		display: block;
		top: 20px;
		right: -67px;
		width: 68px;
		height: 54px;
		background-color: #fff;
		padding: 14px 18px 14px 21px;
		border-top-right-radius: 8px;
		border-bottom-right-radius: 8px;
  		box-shadow: 0px 3px 10px 0px rgba(11, 21, 60, 0.1);
	}
	.main-nav-wrapper .mobile-menu-toogle span {
		display: block;
		width: 100%;
		height: 3px;
		margin-bottom: 9px;
		background-color: #000;
	}
	.showmenu {
		left: 0;
		transition: all .3s;
	}
	.showmenu .mobile-menu-toogle {
		box-shadow: none;
		transition: all .3s;
	}
	.showmenu .mobile-menu-toogle span:last-child {
		display: none;
		transition: all .3s;
	}
	.showmenu .mobile-menu-toogle span:first-child {
		transform: rotate(45deg) translate(10px, 7px);
		transition: all .3s;
	}
	.showmenu .mobile-menu-toogle span:nth-child(2) {
		transform: rotate(-45deg) translate(1px, 1px);
		transition: all .3s;
	}
	.simplesearch-search-form {
		right: 15px
	}
}
@media (max-width: 991px) {
	header,
	header .logo {
		height: 75px;
	}
	header {
		margin-bottom: 25px;
	}
	#home h1 {
		margin-bottom: 15px;
	}
	.project-compound-list li {
		flex: 0 0 calc(50% - 60px);
    	width: calc(50% - 60px);
    	margin-right: 60px;
	}
	.project-compound-list li:nth-child(2n) {
		margin-right: 0;
	}
	.project-compound-list li:nth-child(3n) {
		margin-right: 60px;
	}
}
@media (max-width: 767px) {
	.header-user-area .notifications {
		margin-left: 12px;
	}
	.employees-list > li {
		margin-right: 0;
	}
	.news-list li {
		flex-direction: column;
	}
	.news-list li .news-list-item-img {
		flex: 0 0 100%;
		width: 100%;
		text-align: center;
	}
	.news-list li .news-list-item-body {
		padding-bottom: 15px;
	}
	.news-list li .news-list-item-footer {
		flex: 0 0 100%;
		width: 100%;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding-top: 0;
	}
	.news-list li .news-list-item-date {
		margin-left: 40px
	}
	.sidebar {
		margin-right: 0;
		padding-left: 40px;
		padding-right: 40px;
	}
	.last-news {
		padding-left: 0;
	}
	.content,
	.article {
		padding: 30px;
	}
	.article-gallery {
		margin-left: -30px;
		margin-right: -30px;
	}
	.article h2 {
		font-size: 22px;
	}
	.article .project-spec {
		font-size: 16px;
	}
	.project-spec span {
		font-size: 20px;
	}
	.documents-list li {
		padding-left: 70px;
		padding-right: 25px;
	}
	.documents-list li:before {
		left: 25px;
	}
	.documents-list li p.document-name {
		margin-right: 15px;
		font-size: 16px;
	}
}
@media (max-width: 575px) {
	header .logo {
		width: 90px;
		margin-right: 15px;
	}
	header .logo img {
		width: 55px;
		height: 18px;
	}
	main {
		padding-left: 15px;
		padding-right: 15px;
	}
	.projects-list {
		justify-content: center;
	}
	.projects-list li {
		margin-right: 0;
	}
	.employees-list {
		justify-content: center;
	}
	.employees-list > li {
		flex: 0 0 254px;
		width: 254px;
		flex-direction: column;
		padding-bottom: 30px;
	}
	.employees-list > li .employee-item-img {
		flex: 0 0 auto;
		width: auto;
		text-align: center;
	}
	.employees-list > li .employee-item-img .label-new {
		right: 50%;
		transform: translateX(50%);
		border-top-right-radius: 5px;
	}
	.employee-item-body {
		
	}
	.sidebar {
		padding-left: 15px;
		padding-right: 15px;
	}
	.header-user-area .user-details .user-name {
		font-size: 12px;
		font-weight: bold;
		line-height: 1.1;
	}
	.header-user-area .user-details .user-position {
		display: none;
	}
	.subcategories-menu li {
		flex: 0 0 calc(50% - 13.5px);
		width: calc(50% - 13.5px);
		margin-right: 13.5px;
	}
	.subcategories-menu li:nth-child(2n) {
		margin-right: 0
	}
	.subcategories-menu li a {
		width: auto;
	}
	.pagination {
		margin-bottom: 40px
	}
	.projects-list li:nth-child(3n) {
		margin-right: 0
	}
	.article h2 {
		font-size: 18px;
	}
	.article .project-spec {
		font-size: 14px;
	}
	.project-spec span {
		font-size: 18px;
	}
	.project-compound-list li {
		flex: 0 0 100%;
		width: 100%;
		text-align: center;
		margin-right: 0;
	}
	.project-compound-list li:nth-child(3n) {
   		margin-right: 0;
	}
	.project-compound-list li .number-of {
		margin-left: auto;
		margin-right: auto;
	}
	.sub2categories-item a {
		padding: 10px 20px;
	}
	.subcategories-menu,
	.sub2categories-menu {
		margin-bottom: 30px;
	}
	.categories-menu li a {
		padding: 0 40px;
	}
}