@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --color-primary: #fbc903;
    --color-secondary: #fbc903;
    --color-light: #575656;
    --color-light-100: #8c8c8c;
    --color-dark: #121212;
    --color-success: #1aa735;
    --color-gold: #FDCC0D;
    --color-bg-light: #dadada;
    --color-bg-light-100: #f9f9f9;
    --color-border-light: #ced4da;
    --color-border-light-100: #e1e1e1;
    --color-border-form-light: #dee2e6;
    
    --fs-xxs: .625rem;
    --fs-xs: .75rem;
    --fs-sm: .875rem;
    --fs-bs: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-xxl: 1.875rem;
	--fs-h1: 2.5rem;
	--fs-h2: 2rem;
	--fs-h3: 1.75rem;
    
    --line-height-bs: 1.5;
	
	--font-family-primary: "Open Sans";
    
    --rounded-bs: .25rem;
    --rounded-lg: .5rem;
    --rounded-xl: 875rem;
	
	--shadow-sm: 0 .125rem .25rem rgba($black, .075);
	--shadow-bs: 0px 0px 150px 0px rgba(87, 86, 86, 0.15);
	--shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
}


html,
body {
	height: 100%;
	color: #000;
}
a.text-light:focus, a.text-light:hover {
    color: inherit!important;
}
.container-page {
	position: relative;
	min-height: 100%;
}
.container-fluid {
    max-width: 1920px;
    margin: 0 auto;
}
footer {
	position: absolute;
	width: 100%;
	bottom: 0;
}
body {
    margin: 0 auto;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
* {
	box-sizing: border-box;
	outline: none!important;
	-webkit-appearance: none;
}
input[type="search"] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: searchfield;
	}
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: searchfield-cancel-button;
}
/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
img {
	max-width: 100%;
    height: auto;
}

.h2,
h2 {
    font-size: 2.125rem;
    font-weight: 700;
	margin-bottom: 3rem;
}
.h3, h3 {
    font-size: 1.5rem;
    font-weight: 700;
	margin-bottom: 2.5rem;
}
.h4, h4 {
    font-size: 1.375rem;
    font-weight: 700;
	margin-bottom: 2rem;
}
a:hover,
a {
	color: inherit;
	text-decoration: none;
}


.fill-primary {
    fill: var(--color-primary)!important;
}
.fill-secondary {
    fill: var(--color-secondary)!important;
}
.fill-white {
    fill: #fff!important;
}
.stroke-white {
    stroke: #fff!important;
}

.wysiwyg a *,
.wysiwyg a,
.search-result ul li:hover h2,
a.text-primary:focus,
a.text-primary:hover,
.text-primary { 
	color: var(--color-primary)!important;
}
.article.color-secondary .wysiwyg a *,
.article.color-secondary .wysiwyg a,
.btn-secondary.btn-border:focus,
.btn-secondary:not(.btn-border).text-secondary:hover,
a.text-secondary:hover,
.text-secondary { 
	color: var(--color-secondary)!important;
}
.breadcrumb-item+.breadcrumb-item::before,
.form-control,
.select2-dropdown .select2-results__option--highlighted[aria-selected=false],
.select2-dropdown ul .select2-results__option,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection .select2-selection__arrow i,
.select2-container--default .select2-selection .select2-selection__rendered,
.ui-datepicker td span, 
.ui-datepicker td a {
	color: #000!important;
}
.services .box:hover *,
.form-control:focus ~ .input-group-prepend .input-group-text,
.form-control:focus ~ .input-group-append .input-group-text,
.input-error .form-control:not(:focus) ~ .input-group-prepend .input-group-text,
.input-error .form-control:not(:focus) ~ .input-group-append .input-group-text,
.ui-datepicker-calendar .ui-state-active,
.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.wysiwyg table tr:first-of-type th,
.wysiwyg table tr:first-of-type td,
.text-white {
	color: #fff!important;
}
.text-darker {
	color: #545b62!important;
}
.ui-datepicker tbody td.ui-state-disabled span,
.text-light {
	color: var(--color-light)!important;
}
.text-light-100 {
	color: var(--color-light-100)!important;
}

a.bg-light:focus, 
a.bg-light:hover,
.bg-light-hover:hover,
.bg-light {
	background-color: var(--color-bg-light)!important;
}
.wysiwyg table tr:nth-of-type(odd),
.select2-dropdown .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__group,
.ui-datepicker thead,
.ui-datepicker-calendar .ui-state-hover,
.bg-light-100 {
	background-color: var(--color-bg-light-100)!important;
}
.services .box:hover:before,
.checkbox input:checked ~ .checkmark,
.form-control:focus ~ .input-group-prepend .input-group-text,
.form-control:focus ~ .input-group-append .input-group-text,
a.bg-primary:focus, a.bg-primary:hover,
.wysiwyg table tr:first-of-type,
.attachment-images .box a div:before,
.wysiwyg table tr:first-of-type,
.ui-datepicker-calendar .ui-state-active,
.radio .checkmark:after,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-results__option[aria-selected=true],
.bg-primary {
	background-color: var(--color-primary)!important;
}
.bg-primary-light {
    background-color: #e5fbff!important;
}
.article.color-secondary .wysiwyg table tr:first-of-type,
.articles.color-secondary hr,
.article.color-secondary hr,
a.bg-secondary:focus, 
a.bg-secondary:hover, 
.btn.bg-secondary:focus, 
.btn.bg-secondary:hover,
.bg-secondary {
	background-color: var(--color-secondary)!important;
}
.bg-dark {
	background-color: #000!important;
}
.services .box:hover hr,
.bg-white {
	background-color: #fff!important;
}
.bg-darker {
	background-color: #545b62!important;
}
.invalid-tooltip,
.bg-transparent {
	background-color: transparent!important;
}
.input-error .form-control:not(:focus) ~ .input-group-prepend .input-group-text,
.input-error .form-control:not(:focus) ~ .input-group-append .input-group-text {
    background-color: #dc3545!important;
}

.article-items.color-primary .item:hover,
.checkbox input:checked ~ .checkmark,
.select2-dropdown,
.select2-container--default.select2-container--open.select2-container--above .select2-selection,
.select2-container--default.select2-container--open.select2-container--below .select2-selection,
.input-error .form-control:focus,
.form-control:focus,
.form-control:focus ~ .input-group-prepend .input-group-text,
.form-control:focus ~ .input-group-append .input-group-text,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.border-primary { 
	border-color: var(--color-primary)!important;	
}
.article-items.color-secondary .item:hover,
.border-secondary {
	border-color: var(--color-secondary)!important;	
}
.wysiwyg table,
.wysiwyg table tr th, .wysiwyg table tr td,
.ui-datepicker thead,
.ui-datepicker tbody td,
.ui-datepicker tbody td.ui-state-disabled span,
.checkmark,
.input-error input:checked ~ .checkmark,
.select2-results__option,
.wysiwyg table, 
.wysiwyg table tr td,
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container .select2-selection,
.border-light {
	border-color: var(--color-border-light)!important;
}
.facebook-timeline .cff-item,
.border-lighter {
	border-color: #efefef!important;
}
.border-dark { 
	border-color: #000!important;
}
.border-darker {
	border-color: #747170!important;
}
.checkbox .checkmark:after {

    border-color: #fff!important;
}

.top-bar nav .box > ul > li:last-child > .item-text:hover,
.btn-primary.btn-border,
.btn-primary.btn-full:hover {
	box-shadow: 0 0px 0px 1px var(--color-primary) inset!important;
}
.btn-secondary.btn-border,
.btn-secondary.btn-full:hover {
	box-shadow: 0 0px 0px 1px var(--color-secondary) inset!important;

}
.top-bar nav .box > ul > li:last-child > .item-text,
.btn-primary.btn-full,
.btn-primary.btn-border:hover {
	box-shadow: 0 0px 0px 40px var(--color-primary) inset!important;
}
.btn-secondary.btn-full,
.btn-secondary.btn-border:hover {
	box-shadow: 0 0px 0px 40px var(--color-secondary) inset!important;
}
.btn-white.btn-full {
	box-shadow: 0 0px 0px 40px #fff inset!important;
}
.btn-white.btn-full:hover {
	box-shadow: 0 0px 0px 1px #fff inset!important;
}
.services .box:hover .btn {
    box-shadow: 0 0px 0px 1px #fff inset!important;
}

.input-error .form-control:not(:focus) ~ .input-group-prepend .input-group-text,
.input-error .form-control:not(:focus) ~ .input-group-append .input-group-text,
.input-error .checkbox .checkmark,
.input-error .form-control {
	border-color: #dc3545!important;
}

.shadow {
    box-shadow: var(--shadow-bs)!important;
}
.transition-01 {
	transition-duration: .1s!important
}
.transition-02 {
	transition-duration: .2s!important
}
.transition-03 {
	transition-duration: .3s!important
}
.transition-05 {
	transition-duration: .5s!important;
}
.o-hidden {
	overflow: hidden;
}
.border-1 {
	border-width: 1px!important;
}
.border-4 {
	border-width: 4px!important;
}
.border-solid {
	border-style: solid!important
}
.border-transparent {
	border-color: transparent!important
}
.modal-backdrop.show {
    opacity: .8;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single,
.select2-dropdown {
    border-radius: var(--rounded-bs);
}

.link-u:hover,
.link-nu {
	text-decoration: none!important;
}
.link-u,
.link-nu:hover {
	text-decoration: underline!important;
}
.container {
    max-width: 1230px;
}
.content-md {
    width: 990px;
}
.no-selected {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

.font-weight-semibold {
	font-weight: 600!important;
}
.wysiwyg table tr:first-of-type th,
.wysiwyg table tr:first-of-type td,
.wysiwyg table tr td:first-of-type,
strong,
bold {
	font-weight: 700!important;
}
.font-weight-extrabold {
	font-weight: 800!important;
}
.fs-xxs {
    font-size: var(--fs-xxs)!important;
}
.fs-xs {
    font-size: var(--fs-xs)!important;
}
small,
.fs-sm {
	font-size: var(--fs-sm)!important;
}
.fs-bs {
	font-size: var(--fs-bs)!important;
}
big,
.fs-lg {
	font-size: var(--fs-lg)!important;
}
.fs-xl {
	font-size: var(--fs-xl)!important;
}
.fs-xxl {
	font-size: var(--fs-xxl)!important;
}

.rounded {
    border-radius: var(--rounded-bs)!important;
}
.rounded-lg {
    border-radius: var(--rounded-lg)!important;
}

.delay-075s {
	animation-delay: .75s;
}


/****************************** INPUT, TEXTAREA, CHECKBOX, RADIO, SELECT ******************************/
textarea,  
input {   
	-webkit-appearance: none!important;
	-moz-appearance: none!important;
	appearance: none!important;
}
.select2-selection__placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: var(--color-light);
	opacity: 1;
}
textarea::-moz-placeholder,
input::-moz-placeholder {
	color: var(--color-light);
	opacity: 1;
}
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
	color: var(--color-light);
	opacity: 1;
}
textarea:-moz-placeholder,
input:-moz-placeholder {
	color: var(--color-light);
	opacity: 1;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}
.form-group.half {
	width: 49%;
}
.form-control {
	box-shadow: none!important;
	height: auto;
}
.input-file,
.form-control {
	padding: 8px 15px;
}
textarea.form-control {
	min-height: 110px;
} 
.input-search-wrapper .form-control:focus ~ .input-group-append button {
	border-color: var(--color-primary)!important;
}
.input-search-wrapper .input-group-append {
	margin-left: -2px;
}
.input-search-wrapper .input-group-append button {
	border-width: 1px;
	border-style: solid;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-check {
	display: block;
	position: relative;
	padding: 0 0 0 30px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	margin: 0;
}
.input-check  input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.input-check a {
	text-decoration: underline;
}
.input-check a:hover {
	text-decoration: none;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: transparent;
	border-width: 1px;
	border-style: solid;
	border-radius: var(--rounded-bs);
}
.input-check .checkmark:after {
	content: "";
	position: absolute;
	transition: .1s;
}
.radio .checkmark:after {
	width: 12px;
    height: 12px;
    top: 4px;
    left: 4px;
	transform: scale(0);
	border-radius: 50%;
}
.radio input:checked ~ .checkmark:after {
	transform: scale(1);
}
.checkbox .checkmark:after {
	left: 6px;
    top: 2px;
    width: 8px;
    height: 13px;
    border-style: solid;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg) scale(0);
}
.checkbox input:checked ~ .checkmark:after {
	transform: rotate(45deg) scale(1);
}

.select2 {
	width: 100%;
}
.select2-container {
	min-width: 140px;
	z-index: 10;
}
.select-100 .select2 {
	width: 100%;
}
.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
	height: auto;
}
.select2-container .select2-selection--single {
	padding: 6px 40px 6px 15px;	
}
.select2-container .select2-selection--single .select2-selection__rendered { 
	padding: 0;
}
.select2-search--dropdown .select2-search__field,
.select2-results__option {
    padding: 7px 15px; 
	line-height: 1.4;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
.select2-results__option:last-of-type {
	border: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	width: auto;
    height: auto;
    position: absolute;
    top: 0;
    right: 15px;
	padding: 9px 0;
}    
.select2-container--default .select2-selection--multiple:after,
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: "\f0d7";
	line-height: 0;
	display: inline-block;
	transition: .2s;
	position: relative!important;
}
.select2-container--default.select2-container--open .select2-selection--multiple:after,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
	transform: rotate(180deg);
}
.select2-container .select2-selection--multiple {
	padding: 3px 30px 7px 15px;
    min-height: 42px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	border-radius: 0;
	flex-wrap: nowrap;
	white-space: normal;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: flex-start;
	padding: 3px 5px;
	line-height: 1.2;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	margin-top: 6px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	order: 2;
	margin: 0 0 0 5px;
    font-size: 24px;
	line-height: 16px;
}
.select2-container--default .select2-selection--multiple:after {
	position: absolute!important;
	right: 15px;
	top: 21px;
}
.select2-search--dropdown {
	padding: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border-top: none;
	border-left: none;
	border-right: none;
}
.select2-container .select2-search--inline .select2-search__field {
	margin-top: 9px;
}
.select2-container--default .select2-results__group {
	padding: 5px 15px; 
}

.input-file input[type="file"] {
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
.input-file {
	cursor: pointer;
	transition: .2s;
}
.input-file .title {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-wrap: normal;
}

.input-group-text {
    min-width: 35px;
}
.input-group-text i {
    font-size: 14px;
}

.grecaptcha-badge {
	display: none;
}
/****************************** INPUT, TEXTAREA, CHECKBOX, RADIO, SELECT ******************************/



/********************** DATEPICKER ************************/
.ui-datepicker {
	width: 280px;
	height: auto;
	margin: 5px auto 0;
	font-family: "Open Sans", sans-serif!important;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	background-color: #fff;
	padding: 5px;
	z-index: 10!important;
}
.ui-datepicker th span {
	font-size: 10px;
}
.ui-datepicker a {
	text-decoration: none;
}
.ui-datepicker table {
	width: 100%;
	margin: 0;
}
.ui-datepicker tbody td,
.ui-datepicker thead {
	border-width: 1px;
	border-style: solid
}
.ui-datepicker-header {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 30px;
    border: none;
    padding: 10px 0!important;
}
.ui-datepicker-title {
	text-align: center;
}
.ui-datepicker th {
	text-transform: uppercase;
	font-size: 10px;
	padding: 5px 0;
}
.ui-datepicker tbody td {
    padding: 0;
    text-align: center;
}
.ui-datepicker td a {
	display: inline-block;
	width: 100%;
	transition: .1s;
}
.ui-datepicker td span, .ui-datepicker td a {
    display: block;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
}
.ui-datepicker-prev, .ui-datepicker-next {
	display: inline-block;
	width: 30px!important;
	height: 30px!important;
	text-align: center;
	cursor: pointer;
	line-height: 600%;
	overflow: hidden;
	top: 9px!important;
}
.ui-datepicker-prev {
	float: left;
	border-left: 3px solid #4b4b4b;
	border-bottom: 3px solid #4b4b4b;
	transform: scale(0.5) rotate(45deg);
	left: 0!important;
}
.ui-datepicker-next {
	float: right;
	border-right: 3px solid #4b4b4b;
	border-top: 3px solid #4b4b4b;
	transform: scale(0.5) rotate(45deg);
	right: 0!important;
}
.ui-datepicker .ui-datepicker-title select {
	padding: 2px 5px;
	margin: 1px;
}
.ui-datepicker-year {
	padding: 0 5px;
}
/********************** DATEPICKER ************************/


/********************** MODAL ************************/
.modal-header .close {
    right: 0;
    top: -2.25rem;
    cursor: pointer;
    opacity: 1!important;
    position: absolute;
    color: #fff;
}
/********************** MODAL ************************/


/********************** BUTTONS ************************/
.top-bar nav .box > ul > li:last-child > .item-text,
.btn {
	cursor: pointer;
    text-decoration: none!important;
	font-family: "Open Sans", sans-serif;
    padding: 11.5px 30px;
    font-weight: 700;
    font-size: .875rem;
    text-transform: uppercase;
    transition: .2s ease-in;
    border-radius: var(--rounded-bs);
}
.top-bar nav .box > ul > li:last-child > .item-text {
    padding: 11.5px 30px!important;
}
.btn i:not(.icon-after) {
	margin-right: .5rem;
}
.btn i.icon-after {
	margin-left: .5rem;
}
.top-bar nav .box > ul > li:last-child > .item-text,
.btn-secondary,
.btn-primary {
    border: none!important;
    background-color: transparent!important;
}
.top-bar nav .box > ul > li:last-child > .item-text,
.btn-primary.btn-full {
    color: var(--color-light)!important;        
}
.btn-primary.btn-border-1 {
    color: #000;
}
.btn-primary.btn-border-2 {
    color: #fff;
}
.btn-sm {
	padding: 7px 20px;
	font-size: 12px;
}
.btn-lg {
    padding: 16.5px 30px;
    font-size: 14px;
}
.btn-120 {
	min-width: 120px;
}
.btn-150 {
	min-width: 150px;
}
.btn-180 {
	min-width: 180px;
}
.btn-200 {
	min-width: 200px;
}
.btn i {
	font-size: 15px;
}
.btn-sm i {
	font-size: 13px;
}
/********************** BUTTONS ************************/






/****************************************** SEARCH RESULT ******************************************/
.search-result h1 {
	text-align: center;
}
.search-result .no-result span,
.search-result .text-search span {
	font-size: 18px;
}
.search-result ul li{
	list-style: none;
}
.search-result ul li h2 {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
}
.search-result .no-result {
	text-align: center;
}
/****************************************** SEARCH RESULT ******************************************/




/********************** UNIVERSAL ************************/
hr {
	width: 60px;
	height: 2px;
}
hr.lg {
    width: 90px;	
}
.article-full {
	width: 100%;
}

.table-responsive {
	overflow-x: auto;
}

.item-bs .img-wrapper:after,
.select2-container--default .select2-selection--multiple:after,
.select2-container--default .select2-selection--single .select2-selection__arrow:after,
footer  .menu ul li a:before,
.wysiwyg ul li:before,
.breadcrumb-item+.breadcrumb-item::before {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
}

.item-bs .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--rounded-bs);
}
.item-bs .img-wrapper:after {
    content: "\f424";
    background-color: rgba(0,0,0,.7);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 70%);
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fs-h2);
    border-radius: 50% 50% 0 0;
    transform: translateY(100%);
    transition: .3s ease-out;
}
.item-bs:hover .img-wrapper:after {
    transform: translateY(0);
    border-radius: 0;
}

.progressbar .circle {
	display: inline-block;
	position: relative;
}
.progressbar .circle canvas {
    position: absolute;
}
.progressbar .circle .text-wrapper {
	justify-content: center;
	align-items: center;
	width: 100%;
	top: -7px;
	bottom: 0;
    line-height: 1.2;
    font-weight: 600;
}
.progressbar .text-wrapper .number {
    color: var(--color-primary);
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
}
.progressbar .text-wrapper .title {
    font-size: var(--fs-bs);
    font-weight: 600;
    margin-bottom: .25rem;
}
.about-us .col:not(:first-child) .progressbar {
    margin-left: 3rem;
}
.about-us .col:not(:first-child) .progressbar .plus {
    display: none;
}
/********************** UNIVERSAL ************************/


/*********************************** LOADER ***********************************/
.preloader {
	width: 100%;
	height: 250px;
	text-align: center;
	align-items: center;
}
.preloader.hidden {
	display: none;
}
.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	z-index: 2;
}
.loader div {border:0;margin:0;width:40%;height:40%;position:absolute;border-radius:50%;animation:spin 2s ease infinite}

.loader :first-child{background:var(--color-primary);animation-delay:-1.5s}
.loader :nth-child(2){background:var(--color-primary);animation-delay:-1s}
.loader :nth-child(3){background:var(--color-primary);animation-delay:-0.5s}
.loader :last-child{background:var(--color-primary)}

@keyframes spin{
  0%,100%{transform:translate(0)}
  25%{transform:translate(160%)}
  50%{transform:translate(160%, 160%)}
  75%{transform:translate(0, 160%)}
}
/*********************************** LOADER ***********************************/


/********************** ARTICLE WIDGET ************************/
.widgets-sticky {
	top: 6rem;
}
.widget-articles .items-wrapper .item .border {
	width: 70px;
	height: 70px;
}
.widget-articles .items-wrapper .item .img {
	width: 68px;
	height: 68px;
	object-fit: cover;
}
.widget-articles .items-wrapper .item .title {
	transition: .2s;
}
.widget-articles .items-wrapper .item:hover .title {
	color: var(--color-primary);
}
.widget-articles .items-wrapper .item:last-child {
    margin-bottom: 0!important;
} 
/********************** ARTICLE WIDGET ************************/


/********************** ARTICLES ************************/
.article .img-main-wrapper .date {
    right: 0;
    bottom: 0;
    z-index: 1;
    border-bottom-right-radius: var(--rounded-bs);
    border-top-left-radius: var(--rounded-bs);
    line-height: 1.1; 
}

.backdrop-filter {
	backdrop-filter: blur(10px);
	background-color: rgba(0,0,0,.3);
}

.articles .item.default .part-img {
	min-height: 200px;
	max-height: 200px;
}
.articles .item h2,
.articles .item .part-text {
	transition: .2s;
}

.article-articles .button-group {
	text-align: center;
}
.wysiwyg img,
.wysiwyg table,
.wysiwyg ol,
.wysiwyg ul,
.wysiwyg p {
	margin: 0 0 1.5rem 0;
}
.wysiwyg p img {
    margin: 0;
}
.wysiwyg h2 {
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.wysiwyg h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.wysiwyg h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.wysiwyg a {
	text-decoration: underline;
}
.wysiwyg p a {
	display: inline-block;
	margin: 0;
}
.wysiwyg a:hover {
	text-decoration: none;
}
.wysiwyg ol,
.wysiwyg ul {
	padding: 0;
	text-align: left;
	margin-top: -.5rem;
}
.wysiwyg ol li ol,
.wysiwyg ul li ul {
	margin-top: 0;
	margin-bottom: 0;
} 
.wysiwyg ol li,
.wysiwyg ul li {
	margin-left: 30px;
	padding: 5px 0;
	position: relative;
}
.wysiwyg ul li {
	list-style: none;
}
.wysiwyg ul li:before {
	content: "\f105";
	left: -15px;
    top: 6px;
} 
.wysiwyg table {
	border-collapse: separate;
    border-spacing: 0;
	width: 100%!important;
	border: 0;
}
.wysiwyg table p {
	margin: 0;
}
.wysiwyg table h1,
.wysiwyg table h2,
.wysiwyg table h3,
.wysiwyg table h4,
.wysiwyg table h5,
.wysiwyg table h6 {
	margin: 0;
}
.wysiwyg table tr th,
.wysiwyg table tr td {
    padding: 10px 15px;
	text-align: center;
	border: 0;
	border-bottom-width: 1px;
	border-right-width: 1px;
	border-style: solid;
}
.wysiwyg table tr td:last-of-type {
	border-right: none;
}
.wysiwyg iframe {
	margin: 0 auto 20px;
	border: none;
	max-width: 100%;
    border-radius: var(--rounded-bs);
}

.search-box {
    margin-top: -55px;
    z-index: 1;
}
/********************** ARTICLES ************************/


/********************** ARTICLE PHOTO GALLERY ************************/
.photo-gallery .item-wrapper:first-child {
    align-self: flex-end;
    margin-left: 50px;
}
.photo-gallery .item-wrapper:first-child .item {
    margin-left: auto;
}
.photo-gallery .item-wrapper:first-child .img-wrapper {
    width: 220px;
    height: 230px;
}
.photo-gallery .item-wrapper:nth-child(2) .img-wrapper {
    width: 330px;
    height: 255px;
}
.photo-gallery .item-wrapper:nth-child(3) .item {
    margin-left: auto;
}
.photo-gallery .item-wrapper:nth-child(3) .img-wrapper {
    width: 330px;
    height: 220px;
}
.photo-gallery .item-wrapper:last-child .img-wrapper {
    width: 220px;
    height: 250px;
}
.photo-gallery .item .img {
    object-fit: cover;
    object-position: center;
}

.subpage-photo-gallery .photo-gallery-wrapper .row-photo-gallery-wrapper:not(:last-child) {
    margin-bottom: 3rem;
    /*padding-bottom: 3rem;*/
}
.article-photo-gallery .row-gallery-wrapper {}
/********************** ARTICLE PHOTO GALLERY ************************/


/********************** BREADCRUMB ************************/
.breadcrumb li a:not(.active):hover {
	text-decoration: underline;
}
.breadcrumb-item+.breadcrumb-item::before {
	position: relative!important;
	content: "\f105";
	font-size: 12px;
}
/********************** BREADCRUMB ************************/


/********************** SUBPAGE TOP ************************/
.subpage-header {
}
.subpage-header .rellax-wrapper {
    height: calc(100% + 50px)!important;
    top: -50px!important;
}
.subpage-header .rellax {
    object-fit: cover;
    object-position: center;
}
.subpage-header:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.3);
	backdrop-filter: blur(9px);
}
.subpage-header .container {
    z-index: 2;
}
.subpage-header h1 {
    color: #fff;
}
.subpage-header .content {
	min-height: 180px; 
}
/********************** SUBPAGE TOP ************************/


/********************** FORM SUBPAGE ************************/
.article-full .form-subpage {	
	width: 740px;
}
.form-subpage h1 {
	margin: 0 0 30px 0;
}
/********************** FORM SUBPAGE ************************/


/********************** ARTICLE FILES ************************/
.files {
	margin: 0 0 30px 0;
}
ul.attachment-files {
    padding: 0;
	margin: 0;
}
ul.attachment-files li {
    list-style: none;
    padding: 0 0 0 35px;
    line-height: 30px;
	background-size: 25px; 
	background-repeat: no-repeat;
	background-position: left center;
}
ul.attachment-files li a {
	text-decoration: underline;
	word-break: break-word;
}
ul.attachment-files li a:hover {
	text-decoration: none;
}

ul.attachment-files li.filetype-doc { background-image: url("/img/universal/icon-doc.svg"); }
ul.attachment-files li.filetype-xls { background-image: url("/img/universal/icon-xls.svg"); }
ul.attachment-files li.filetype-ppt { background-image: url("/img/universal/icon-ppt.svg"); }
ul.attachment-files li.filetype-pdf { background-image: url("/img/universal/icon-pdf.svg"); }
ul.attachment-files li.filetype-zip { background-image: url("/img/universal/icon-zip.svg"); }
ul.attachment-files li.filetype-rar { background-image: url("/img/universal/icon-rar.svg"); }
ul.attachment-files li.filetype-jpg { background-image: url("/img/universal/icon-jpg.svg"); }
ul.attachment-files li.filetype-png { background-image: url("/img/universal/icon-png.svg"); }
ul.attachment-files li.filetype-gif { background-image: url("/img/universal/icon-gif.svg"); }
ul.attachment-files li.filetype-unknown { background-image: url("/img/universal/icon-unknown.svg"); }
/********************** ARTICLE FILES ************************/


/********************** ARTICLE GALLERY ************************/
.attachment-images {
    overflow: hidden;
}
.attachment-images .box .col {
}
.attachment-images .item .img {
    object-fit: cover;
    object-position: center;
}
.attachment-images .item .img-wrapper:after {
    content: "\f424";
}
.blueimp-gallery > .indicator > li {
    width: 40px;
    height: 40px;
    background-size: cover;
    margin: 0 5px 0;
    border-radius: var(--rounded-bs);
    transition: .2s;
}
.blueimp-gallery > .title {
    text-shadow :none;
    background-color: rgba(0,0,0,0.8);
    top: 0;
    margin: 0;
    left: 0;
    right: 0;
	font-size: 13px;
	line-height: 1.4;
	opacity: 1;
}
.blueimp-gallery > .close {
    right: 15px;
    top: 10px;
    opacity: 1!important;
	font-size: 20px;
    background: transparent;
}
.blueimp-gallery > .arrow {
    opacity: 1;
    border: none;
    background: transparent;
    font-size: 30px;
	width: auto;
    height: auto;
}
.blueimp-gallery>.indicator>.active, .blueimp-gallery>.indicator>li:hover {
    border-color: var(--color-primary);
}
.blueimp-gallery > .prev {
	left: 10px;

}
.blueimp-gallery > .next {
	right: 10px;
}
body:last-child .blueimp-gallery > .play-pause {
    opacity: 1;
	bottom: 25px;
}
.blueimp-gallery,
.blueimp-gallery > .slides > .slide > .slide-content {
	-webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -ms-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    transition: opacity .2s linear;
}
/********************** ARTICLE GALLERY ************************/


/********************** GOUP ************************/
.goup {
    right: 40px;
    bottom: 40px;
    background-color: rgba(0,0,0,0.7);
    z-index: 40;
    width: 38px;
    height: 38px;
    cursor: pointer;
	transition: .1s;
	transform: scale(0);
}
.goup.active {
	transform: scale(1);
}
/********************** GOUP ************************/


/********************** FLASH MESSAGES ************************/
.invalid-tooltip {
	top: 0;
}

.flash-messages .alert p,
.flash-messages .alert h1,
.flash-messages .alert h2,
.flash-messages .alert h3,
.flash-messages .alert h4,
.flash-messages .alert h5,
.flash-messages .alert h6 {
	margin: 0;
	padding: 0;
}
.alert .close {
	font-size: 16px;
}
.alert p {
	margin: 0;
}
/********************** FLASH MESSAGES ************************/


/********************** ARTICLES ITEM ************************/
.article-items  .item {
    box-shadow: var(--shadow-bs);
    transition: .3s ease-in;
}
.article-items .item .img {
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
}
.article-items .item:hover {
    transform: translateY(-12px);
}
.item .box-date {
    position: absolute;
    right: 30px;
    bottom: -37px;
    background-color: var(--color-primary);
    color: var(--color-light);
    text-align: center;
    font-weight: 700;
    border-radius: var(--rounded-lg);
        
}
.item .box-date .day {
    line-height: 1.1;
}
/********************** ARTICLES ITEM ************************/


/********************** CONTACT ************************/
.contact .col-info .icon.fa-map-marker-alt {
    font-size: 16px;
}
.contact .col-info .icon {
	width: 15px;
    margin-top: 4px;
}
/********************** CONTACT ************************/


/********************** WIDGET LIMITING ************************/
.widget-limiting-wrapper {
    margin-top: -55px;
    padding-bottom: 6rem;
    z-index: 1;
}
.widget-limiting .icon {
    width: 90px;
	min-width: 90px;
}
/********************** WIDGET LIMITING ************************/


/********************** NEWS ************************/
.news {
    margin-top: -1rem;
}
/********************** NEWS ************************/


/********************** SAFE DRIVING ************************/
.safe-driving {
    background-image: url(../img/bg-safe-driving.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.safe-driving:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
}
.safe-driving .content-wrapper {
    z-index: 1;
}
/********************** SAFE DRIVING ************************/


/********************** ABOUT US ************************/
@keyframes btn-play-pulse {
    0% {
        box-shadow: 0 0 0 0px rgb(255 255 255 / 70%);
    }
    100% {
        box-shadow: 0 0 0 20px rgb(255 255 255 / 0%);
    }
}
.about-us .widget-counter {
    width: 700px;
    margin-left: -3rem;
    z-index: 1;
}

.btn-play-wrap {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn-play-wrap .btn-play {
    margin: 0;
    transition: all .5s ease;
}

.btn-play-wrap .btn-play i {
    cursor: pointer;
    text-align: center;
    font-size: 36px;
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    background-color: #fff;
    border-radius: 50%;
    line-height: 79px;
    padding-left: 8px;
    transition: all .5s ease;
    animation: btn-play-pulse 1.5s infinite;
}
.btn-play-wrap .btn-play:hover {
    transform: scale(1.2);
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}
.video-wrapper .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/********************** ABOUT US ************************/


/********************** TEAM ************************/
.team .item .img {
    width: 100px;
    height: 100px;
}
.team .item .icon {
    transition: .2s;
}
.team .item .icon:hover {
    color: var(--color-primary)!important;
}
/********************** TEAM ************************/


/********************** ACCORDION ************************/
.accordion .card .card-header .title span {
    transition: .2s;
}
.accordion .card .card-header .title {
    box-shadow: none!important;
}
.accordion .card .card-header .title:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    transition: .2s;
}
.accordion .card .card-header .card-click {
    cursor: pointer;
}
.card .card-header .card-click:hover,
.card .card-header .card-click[aria-expanded="true"] {
    color: var(--color-primary);
}
.accordion .card .card-header .card-click[aria-expanded="true"] .title:after {
    transform: rotateZ(180deg);
}
.accordion .card:last-child {
    border-bottom-width: 1px!important;
    border-style: solid!important;
}
/********************** ACCORDION ************************/


/********************** FOOTER ************************/
footer {
    font-size: 1rem;
}
footer .logo-main {
    width: 115px;
}
footer .logo-mindop .img {
    width: 270px;
}
footer .logo-ndsas .img {
    width: 140px;
}
footer .logo-budimex .img {
    width: 150px;
}
footer .social-links .icon {
    font-size: 2rem;
    color: var(--color-light);
    transition: .1s ease-in;
}
footer .social-links .icon:hover {
    color: var(--color-primary);
}
footer .menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
footer .menu li:not(:last-child) {
    margin-right: 1.5rem;
}
footer .menu li {
    list-style: none;
}
footer .menu li .item-text {
    font-size: 14px;
}
footer .menu li a:hover {
    text-decoration: underline;
}
/********************** FOOTER ************************/




@media only screen and (min-width: 576px)  {
    .safe-driving .wysiwyg ul {
        display: flex;
        flex-wrap: wrap;
    }
    .safe-driving .wysiwyg ul li {
        width: calc(50% - 30px);
        padding-right: .5rem;
    }
}


@media only screen and (min-width: 768px)  {}


@media only screen and (min-width: 992px)  {
    .widget-limiting .icon {
        min-width: 90px;
    }
    .responsible {
        background-attachment: fixed;
    }
	.article-text-wrapper {
		width: calc(100% - 370px);
	}
	.article-widgets {
		width: 370px;
	}
}


@media only screen and (min-width: 1200px)  {
    .wysiwyg iframe {
        width: 782px!important;
        height: 438px!important;
    }
}


@media only screen and (min-width: 1921px)  {}




