*, ::after, ::before {
  -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    border: none;
}
:focus {
    outline: -webkit-focus-ring-color auto 0px;
}
body {
   margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
	background-color: rgb(232, 232, 232, 0.5);
    color: #414141;
}
.wrapper-all {
  overflow-x: hidden;
}
img {
    max-width: 100%;
}
a {
    text-decoration: inherit;
    color: inherit;
}
ul {
  list-style: none;
}
article, aside, details, figcaption, figure, footer, header, main, nav, section  {
    display: inline-block;
    width: 100%;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.flex {
    display: flex;
}
.align-center {
	align-items: center;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.h2 {
    font-size: 24px;
    color: #252525;
	font-weight: bold;
    margin-bottom: 50px;
}
.h2 span {
    border-left: 5px solid #ffb607;
    padding-left: 15px;
}
.h3 {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 20px;
}
@media (min-width: 768px) {
    .h2 {
        font-size: 30px;
    }
}
.btn {
    background-color: #ffb607;
    box-shadow: 0px 0px 9px 0px rgba(0, 1, 5, 0.05);
    width: 246px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s;
	padding: 15px;
	cursor: pointer;
}
.btn:hover {
    background-color: #001534;
    color: #fff;
}
.btn.search {
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 0.8;
}
.btn.search img {
    margin-right: 10px;
}
.btn.search:hover {
   opacity: 1;
   color: #fff;
}
@media (max-width: 639px) {
    .btn {
        width: 100%;
		padding: 10px 15px;
    }
}

#header {
    color: #001534;
    font-size: 16px;
}
#header + .wrapper {
    margin-top: 30px;
	padding-bottom: 80px;
}
#header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav.menu {
    display: flex;
    width: 85%;
    justify-content: flex-end;
    position: relative;
    top: 0;
}
.nav.menu li {
    padding: 0 15px 10px;
    position: relative;
}
.nav.menu li:after {
    content: '';
    background-color: rgb(0, 21, 52);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 3px;
    transition: all 0.3s;
}
.nav.menu li.active:after,
.nav.menu li:hover:after {
    width: 45px;
}
.nav.menu li:last-child {
    padding-right: 15px;
}
@media (min-width: 768px) {	
	#header + .wrapper {
		margin-top: 85px;
		padding-bottom: 85px;
	}
}	
@media (max-width: 767px) {
    #header .row {
        margin: 0;
    }
    .wrapper {
        padding: 15px;
    }
}
#first-blocok {
    width: 100%;
    box-shadow: 0 0px 5px rgba(0, 21, 52, 0.5);
    padding: 10px 0;
	background: #fff;
}
#first-blocok .logo {
    width: 60px;
}
#first-blocok h1 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
}
#first-blocok h1 span{
    font-size: 48px;
    font-weight: bold;
}
#first-blocok .form-wrapper {
    display: flex;
}
#first-blocok .form-wrapper a:first-child {
    margin-right: 15px;
}
@media (max-width: 767px) {
	.nav-icon {
		min-width: 40px;
		min-height: 40px;
		width: 40px;
		height: 40px;
		position: relative;
		z-index: 600;
		cursor: pointer
	}
	.nav-icon span {
		width: 100%;
		height: 2px;
		position: absolute;
		display: block;
		-webkit-transform: scaleX(0.55);
		-ms-transform: scaleX(0.55);
		transform: scaleX(0.55);
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		background-color: #0e0f10;
		cursor: pointer;
	}
	.nav-icon span:nth-child(1) {
		top: 13px;
	}
	.nav-icon span:nth-child(2), .nav-icon span:nth-child(4) {
		top: 19px;
	}
	.nav-icon span:nth-child(3) {
		top: 25px;
	}
	
	.nav-icon.is-active span:nth-child(1) {
		-webkit-transform: translate3d(0, -12px, 0) scale(0.55);
		transform: translate3d(0, -12px, 0) scale(0.55);
		opacity: 0
	}

	.nav-icon.is-active span:nth-child(2) {
		-webkit-transform: rotate(-45deg) scale(0.55);
		-ms-transform: rotate(-45deg) scale(0.55);
		transform: rotate(-45deg) scale(0.55)
	}

	.nav-icon.is-active span:nth-child(3) {
		-webkit-transform: translate3d(0, 12px, 0) scale(0.55);
		transform: translate3d(0, 12px, 0) scale(0.55);
		opacity: 0
	}

	.nav-icon.is-active span:nth-child(4) {
		-webkit-transform: rotate(45deg) scale(0.55);
		-ms-transform: rotate(45deg) scale(0.55);
		transform: rotate(45deg) scale(0.55)
	}
	.nav.menu {
		display: block;
		width: 260px;
		position: fixed;
		top: 0;
		left: -100%;
		background: #fff;
		height: 100%;
		z-index: 1;
		padding: 25px 15px;
		box-shadow: 0 0px 5px rgba(0, 21, 52, 0.5);
		transition: all 0.3s;
	}
	.nav.menu.in {
		left: 0;
	}
	.nav.menu li {
		padding: 10px 20px 10px;
		width: 100%;
	}
	.nav.menu li:after {
		left: 20px;
		right: inherit;
	}
}
@media (max-width: 524px) {
    #first-blocok h1 {
        font-size: 24px;
    }
    #first-blocok h1 span{
        font-size: 36px;
    }
    #first-blocok .form-wrapper {
        flex-wrap: wrap;
    }
    #first-blocok .form-wrapper a:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
.comment-item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 9px 0px rgba(0, 1, 5, 0.09);
    padding: 20px;
    margin-bottom: 20px;
}
.comment-item:hover {
    box-shadow: 0px 4px 13px 0px rgba(156, 63, 72, 0.18);
}
.comment-item p {
    min-height: 80px;
}
.comment-but-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
}
.comment-user {
    font-weight: 600;
}
.comment-comp {
    font-weight: 600;
}
@media (max-width: 1199px) {
    .comment-but-time .btn {
        margin-right: 15px;
    }
}
@media (max-width: 524px) {
    .comment-item {
        padding: 15px;
    }
    .comment-but-time {
        flex-wrap: wrap-reverse;
    }
    .comment-but-time .btn {
        margin-right: 0;
        margin-top: 15px;
    }
}    
.last_orgs {
    padding: 50px 0;
}
.last_orgs h2 {
    font-size: 30px;
}
.last-orgs-item {
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 10px;
    height: 170px;
    padding: 15px 20px;
    box-shadow: 0px 0px 9px 0px rgba(0, 1, 5, 0.09);
}
.owl-nav.disabled {
    display: none;
}
.owl-nav .owl-prev {
    left: -30px;
    transform: scale(-1,1);
}
.owl-nav .owl-next {
    right: -30px;
}
.owl-stage-outer {
    overflow: hidden;
}
.last-orgs-item h3 {
    text-transform: uppercase;
    margin-bottom: 5px;
}

.last-orgs-item h2 {
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 1.17em;
}
.last-orgs-image {
    width: 100%;
    text-align: center;
}
.last-orgs-content {
    width: 180px;
}
.last-orgs-timer {
    display: flex;
    align-items: center;
    color: #969595;
}
.last-orgs-timer img {
    margin-right: 10px;
}
@media (min-width: 992px) { 
    .owl-nav>div {
        position: absolute;
        top: 75px;
    }
}
@media (max-width: 991px) {
    .last_orgs {
        padding: 50px 0 20px;
    }
    .owl-nav {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }
    .owl-nav>div {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 379px) {
    .last-orgs-item {
        height: auto;
        flex-wrap: wrap;
        padding: 25px;
        justify-content: center;
    }
    .last-orgs-image {
        margin-bottom: 30px;
        width: 100%;
    }
    .last-orgs-content {
        width: 100%;
    }
}
.last_rewiews {
    padding: 30px 0;
    display: flex;
}
.news-item {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 9px 0px rgba(0, 1, 5, 0.09);
    margin-bottom: 25px;
}
.news-item-image {
    overflow: hidden;
    height: 170px;
    display: flex;
    align-items: center;
	justify-content: center;
	padding: 15px;
}
.news-item-image img[src="/images/logo-capita.png"] {
	width: auto;
}
.news-item-cont {
    padding: 0px 20px 25px;
}
.news-item-cont .btn {
    width: 100%;
}
.news-item-text {
    margin-bottom: 20px;
}
.news-item-cont h3 {
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.last_rewiews .container {
		width: 100%;
	}
    .news-item {
        flex-wrap: wrap;
    }
    .news-item>div {
        width: 100%;
    }
	.news-item-image {
		height: auto;
	}
}
@media (max-width: 419px) {
    .news-item-image {
        height: auto;
    }
    .news-item-cont {
        padding: 15px;
    }
}
#body {
	padding-bottom: 25px;
	min-height: calc(100vh - 320px);
}
#breadcrumbs {
    padding: 20px 0;
    margin-bottom: 15px;
}
.full-article h1 {
	margin-bottom: 20px;
}
.page .wrapper .form-wrapper {
    margin-bottom: 20px;
}
.page .wrapper ol {
    padding-left: 15px;
}
.full-article .item-image {
	margin-bottom: 20px;
	display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    background: #272a3d;
}
.pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.pagination a {
	margin: 0 5px;
}
.fa-star {
    color: #ff8400;
}
.rewiews h2 {
	margin: 20px 0;
}
form input, 
form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(65, 71, 77, 0.5);
    margin: 10px 0;
   font-family: 'Roboto', sans-serif;
}
.comment {
    margin: 25px 0;
}
.comment h3 {
	text-transform: uppercase;
	margin-bottom: 10px;
}
.comment h3 span {
	margin-left: 15px;
	font-size: 14px;
}
@media (min-width: 992px) {
	.full-article .item-image {
		float: left;
		margin-right: 15px;
		width: 45%;
	}
}
@media (min-width: 1820px) {
	#body .full-article {
		min-height: calc(100vh - 346px);
	}
}
@media (max-width: 767px) {
	#breadcrumbs .row,
	#body .container>.row {
		margin: 0;
	}
}
.last-orgs-list-content .last-orgs-item {
	margin-bottom: 30px;
}
#searchForm {
	margin-bottom: 20px;
}
#searchForm .searchintro {
	margin: 10px 0;
}
input#search-searchword {
    border: 1px solid #232739;
    padding: 11px 15px;
    margin-right: 0px;
    margin: 0;
}
.result-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
	margin-bottom: 5px;
}
.result-text {
	margin-bottom: 15px;
}
#footer {
    width: 100%;
    background-color: #001534;
    font-size: 16px;
    color: rgba(250, 250, 250, 0.502);
    line-height: 1.2;
    padding: 33px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.up {
	background-color: rgb(255, 182, 7);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.up:hover {
    background-color: #0f0e4d;
}
@media (min-width: 768px) {
    .up {
        position: fixed;
        right: 15px;
        bottom: 40px;
    }
}
@media (min-width: 992px) {
    .up {
        right: 20px;
    }
}
@media (max-width: 767px) {
    #footer center {
        margin-bottom: 20px;
        width: 100%;
    }
}

.item-page ol li {
    list-style-position: inside;
}
.item-page p, .item-page ol, .item-page ul, .item-page h2{
    margin-bottom: 20px;
}
.item-page h3 {
    margin-bottom: 15px;
}

.item-page a {
    color: blue;
}
.item-page a:hover {
    text-decoration: underline;
}
/* .item-page p {
    text-indent: 15px;
} */

.djrv_single_review .djrv_user_rating {
float: none; }

.newsflash-title {
    margin-bottom: 15px;
}
.newsflash-image {
    margin-bottom: 15px;
}
.newsflash p {
    margin-bottom: 15px;
}
.inline-block {
	display: inline-block !important;
}

.mod_djreviews [class*="col"] {
	padding: 0 10px;
}
.djrv_review_message {
	margin-bottom: 10px;
}
.comment-comp {
	font-size: 18px;
	margin-bottom: 20px;
}
.djreviews+.description {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(65, 65, 65, 0.51);
}
.djrv_rating_avg {
	margin-bottom: 20px;
}
.djrv_rating_avg .djrv_item_rating {
	display: flex;
}
.djrv_rating_avg .djrv_stars {
    margin-top: -2px;
}
.djrv_item_rating {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(65, 65, 65, 0.51);
}
.djrv_review_form.djreviews {
	box-shadow: 0 2px 5px rgba(65, 65, 65, 0.51);
    padding: 15px;
    background: #fff;
}
.djrv_review_form.djreviews label {
    font-weight: bold;
}
.right_col .title {
	font-size: 20px;
    margin-bottom: 20px;
}
.search-results {
    background: #fff;
    padding: 15px;
    box-shadow: 0 1px 4px rgba(0, 21, 52, 0.5);
}
.result-category {
	display: none;
}
.grid-item { width: 200px; }
.djrv_rating_avg + .pull-left.item-image {
	display: none;
}
.description[itemprop="articleBody"] {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(65, 65, 65, 0.51);
    margin-bottom: 25px;
}
.description ul {
    list-style: disc;
    padding-left: 15px;
}
.news-list.row {
    display: flex;
    flex-wrap: wrap;
}
.pagination ul {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* General style */
.grid-gallery ul {
	list-style: none;
	padding: 0;
}

/* Grid style */
.grid-wrap {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 1em 0;
}

.grid {
	margin: 0 -10px;
}

.grid li {
	width: 25%;
	float: left;
	cursor: pointer;
	padding: 0 10px;
}

.grid figure {
	padding: 15px;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.grid li:hover figure {
	opacity: 0.7;
}

.grid figcaption {
	background: #e4e4e4;
	padding: 25px;
}

/* Slideshow style */
.slideshow {
	position: fixed;
	background: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.slideshow-open .slideshow {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.slideshow ul {
	width: 100%;
	height: 100%;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate3d(0,0,150px);
	transform: translate3d(0,0,150px);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.slideshow ul.animatable li {
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.slideshow-open .slideshow ul {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.slideshow li {
	width: 660px;
	height: 560px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -280px 0 0 -330px;
	visibility: hidden;
}

.slideshow li.show {
	visibility: visible;
}

.slideshow li:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.8);
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.slideshow li.current:after {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.3s, visibility 0s 0.3s;
	transition: opacity 0.3s, visibility 0s 0.3s;
}

.slideshow figure {
	width: 100%;
	height: 100%;
	background: #fff;
	border: 50px solid #fff;
	overflow: hidden;
}

.slideshow figcaption {
	padding-bottom: 20px;
}

.slideshow figcaption h3 {
	font-weight: 300;
	font-size: 200%;
}

/* Navigation */
.slideshow nav span {
	position: fixed;
	z-index: 1000;
	color: #59656c;
	text-align: center;
	padding: 3%;
	cursor: pointer;
	font-size: 2.2em;
}

.slideshow nav span.nav-prev,
.slideshow nav span.nav-next {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.slideshow nav span.nav-next {
	right: 0;
}

.slideshow nav span.nav-close {
	top: 0;
	right: 0;
	padding: 0.5em 1em;
	color: #31373a;
}

.icon:before,
.icon:after {
	font-family: 'fontawesome';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

span.nav-prev:before {
	content: "e601";
}

span.nav-next:before  {
	content: "e600";
}

span.nav-close:before {
	content: "e602";
}

/* Info on arrow key navigation */
.info-keys {
	position: fixed;
	top: 10px;
	left: 10px;
	width: 60px;
	font-size: 8px;
	padding-top: 20px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 1px;
	text-align: center;
}

.info-keys:before,
.info-keys:after {
	position: absolute;
	top: 0;
	width: 16px;
	height: 16px;
	border: 1px solid #fff;
	text-align: center;
	line-height: 14px;
	font-size: 12px;
}

.info-keys:before {
	left: 10px;
	content: "e603";
}

.info-keys:after {
	right: 10px;
	content: "e604";
}

/* Example media queries (reduce number of columns and change slideshow layout) */

@media screen and (max-width: 1199px) {
	/* responsive columns; see "Element sizing" on http://masonry.desandro.com/options.html */
	.grid li {
		width: 33.3%;
	}

	.slideshow li {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		margin: 0;
	}

	.slideshow li figure img {
		width: auto;
		margin: 0 auto;
		max-width: 100%;
	}

	.slideshow nav span,
	.slideshow nav span.nav-close {
		font-size: 1.8em;
		padding: 0.3em;
	}

	.info-keys {
		display: none;
	}

}

@media screen and (max-width: 991px) {
	.grid li {
		width: 50%;
	}
}

@media screen and (max-width: 639px) {
	.grid li {
		width: 100%;
	}
}

.djrv_single_review {
	width: 100%;
}

div#dj-classifieds {
    background: #fff;
    padding: 15px;
}

.login-style .body_center, .registration, .remind, .reset {
    max-width: 400px;
    margin: auto;
    background: #fff;
    padding: 25px;
    box-shadow: 0 3px 5px rgba(0, 21, 52, 0.5);
}
.control-group.remember {
    display: flex;
    align-items: center;
}
.remember #remember {
	width: 20px;
}
.login-style .btn,
.registration .btn,
.remind .btn,
.reset .btn {
	width: 100%;
	margin: 10px 0;
}

dl#system-message {
    background: #fff;
    padding: 15px;
    box-shadow: 0 1px 5px rgba(0, 21, 52, 0.5);
}

.login-style dl#system-message {
    background: inherit;
    padding: inherit;
    box-shadow: inherit;
	margin-bottom: 15px;
}

ul.menu.nav_djclassifieds {
    background: #fff;
}
.logout-button .btn[type="submit"] {
	width: 100%;
    padding: 0;
}
.dj_cf_search {
	background: #fff;
    padding: 15px;
}
.djcftheme-default .djrv_item_rating {
	box-shadow: inherit;
}

.class_reg .item-144 {
	display: none;
}

.mod_djcf_slider .items-content .item-box .item-box-in {
    background: #fff;
    display: inline-block;
    margin: 0 10px;
	box-shadow: 0px 0px 9px 0px rgba(0, 1, 5, 0.09);
	height: 100%;    
	padding: 0;
}
.mod_djclassifieds_items.mod_djcf_slider .items-outer {
    padding: 0 0px;
}
a.title_img {
    display: flex;
    height: 200px;
    overflow: hidden;
    align-items: flex-start;
    margin-bottom: 10px;
}
.mod_djclassifieds_items div.title a.title {
    padding: 0 15px 5px;
}
.mod_djclassifieds_items .date_cat {
    padding: 0 15px 5px;
}
.mod_djclassifieds_items .desc {
    padding: 0 15px 15px;
}
.mod_djclassifieds_items.mod_djcf_slider .items {margin: 0px 0 40px 0px;}
.mod_djcf_slider .djcf_slider_left {
    left: 45%;
    top: 93%;
}
.mod_djcf_slider .djcf_slider_right {
    right: 45%;
    top: 93%;
}
@media (max-width: 991px) {
	.mod_djcf_slider .items-cols3 .item-box {
		width: 50%;
	}
	.mod_djcf_slider .djcf_slider_left {
		left: 35%;
	}
	.mod_djcf_slider .djcf_slider_right {
		right: 35%;
	}
}
@media (max-width: 639px) {
	.mod_djcf_slider .items-cols3 .item-box {
		width: 100%;
	}
}
/*
     FILE ARCHIVED ON 19:30:56 Dec 26, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:57:13 Jul 25, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.417
  exclusion.robots: 0.037
  exclusion.robots.policy: 0.028
  esindex: 0.008
  cdx.remote: 32.806
  LoadShardBlock: 59.282 (3)
  PetaboxLoader3.datanode: 42.729 (4)
  load_resource: 103.614
  PetaboxLoader3.resolve: 100.677
*/