.container-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	max-height: none;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
	z-index: 0;
}
.col-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
	z-index: -1;
}

/* DEFAULT SETTINGS */
.def-box-field {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.def-count-field,
.def-icon-field,
.def-video-field,
.def-image-field,
.def-images-field,
.def-text-field {
	margin-bottom: 1rem;
}
.def-buttons-field {
	margin-bottom: 0rem;
}
.def-boxes-layout-0 .def-count-field,
.def-boxes-layout-0 .def-icon-field,
.def-boxes-layout-0 .def-video-field,
.def-boxes-layout-0 .def-image-field,
.def-boxes-layout-0 .def-images-field,
.def-boxes-layout-0 .def-text-field {
	margin-bottom: 0;
}
.def-boxes-layout-1 .def-text-field {
	margin-bottom: 0;
}
.def-boxes-layout-2 .def-count-field,
.def-boxes-layout-2 .def-icon-field,
.def-boxes-layout-2 .def-video-field,
.def-boxes-layout-2 .def-image-field,
.def-boxes-layout-2 .def-images-field {
	margin-bottom: 0;
}
.def-boxes-layout-3 .def-count-field,
.def-boxes-layout-3 .def-icon-field,
.def-boxes-layout-3 .def-video-field,
.def-boxes-layout-3 .def-image-field,
.def-boxes-layout-3 .def-images-field,
.def-boxes-layout-3 .def-text-field {
	margin-bottom: 0;
}

/* Overlays */
.bg-overlay-white, .bg-overlay-dark { z-index:0; }
.bg-overlay-white::before, .bg-overlay-dark::before {
	content:'';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	opacity: .25;
	z-index: 0;
	transition: opacity .2s ease-in;
	-webkit-transition: opacity .2s ease-in;
	background: var(--white);
}
.bg-overlay-dark::before {
  	background: var(--dark);
}


html {
	font-size: 16px;
  overflow-x:hidden;
}

/* z-indexes */
.z-index-n1 { z-index:-1; }
.z-index-0 { z-index:0; }
.z-index-1 { z-index:1; }
.z-index-2 { z-index:2; }
.z-index-3 { z-index:3; }

.offcanvas-menu #main {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}
.scroll-down-container {
  position: absolute;
  bottom: 16rem;
  left: 0;
  z-index: 999;
	pointer-events: none;
}
.scroll-down {
	font-size: 1.25rem;
	pointer-events: auto;
	cursor: pointer;
}

.btn:focus,
select:focus,
.custom-control-label:focus,
.custom-control-label:hover,
.custom-control-label:hover:before,
.custom-control-label:hover:after,
.custom-control-label:focus:before,
.custom-control-label:focus:after,
.custom-control-input:checked ~ .custom-control-label::before,
.custom-control-input:focus ~ .custom-control-label::before,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  box-shadow: none !important;
  outline:none !important;
}
.image-box { overflow: hidden; }
.image-box[data-lazy-class="loaded"] { opacity: 0; }
.image-box.loaded[data-lazy-class="loaded"] {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Side navigation */
ul.side-dots {
	position: fixed;
	list-style-type: none;
  padding:0;
  margin:0;
	top: 50%;
	left: 2rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 1;
}
ul.side-dots::before {
	content:'';
	position: absolute;
	width:2px;
	height:100%;
	top:0;
	left:calc(50% - 1px);
	opacity: .15;
	background-color: var(--dark);
	transform: all .2s ease-in-out;
	-webkit-transform: all .2s ease-in-out;
}
ul.side-dots.change-color::before {
	background-color: var(--lighter);
}
ul.side-dots li {
	position: relative;
	display: block;
	padding:0;
	margin:.5rem 0;
}
ul.side-dots li .dot {
	position: relative;
	display: block;
	width: 1rem;
	height: 1rem;
	padding: 0.3rem;
	border-radius: 0.5rem;
	background-color: var(--light);
	background-clip: content-box;
	border: 1px solid transparent;
}
ul.side-dots li:hover .dot, ul.side-dots li.active .dot {
	position: relative;
	display: block;
	width: 1rem;
	height: 1rem;
	border-radius: .5rem;
	background-color: var(--light);
	border: 1px solid var(--light);
}

/* Breadcrumb */
.breadcrumb-container {
	position: absolute;
	left: auto;
	top: 0;
	z-index: 999;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
	align-items: center;
  padding: 0rem;
  margin-bottom: 0;
  background-color: transparent;
	font-size: .85rem;
	letter-spacing: .04em;
	text-transform: normal;
}
.text-white .breadcrumb-item > a:not(.btn) { color: #fff !important; }
.breadcrumb-item:hover > a, .breadcrumb-item:last-child > a { color: var(--primary) !important; }
.breadcrumb-item { transition: none; }
.text-white .breadcrumb-item:hover > a, .text-white .breadcrumb-item:last-child > a { color: #fff !important; }
.breadcrumb-item+.breadcrumb-item::before {
	display: inline-block;
  padding-right: .5rem;
  color: var(--primary);
	font-weight: 400 !important;
	font-family: 'Font Awesome 6 Pro';
  content: "\f105";
	-webkit-text-stroke-width: none !important;
	-webkit-text-stroke-color: rgba(255,255,255,0);
}
.breadcrumb-item+.breadcrumb-item { padding-left: .5rem; }
.text-white .breadcrumb-item+.breadcrumb-item::before { color: var(--primary) !important; }

/* Delays */
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-4 { animation-delay: .5s; }
.delay-5 { animation-delay: .6s; }
.delay-6 { animation-delay: .7s; }
.delay-7 { animation-delay: .8s; }
.delay-8 { animation-delay: .9s; }
.delay-9 { animation-delay: 1s; }
.delay-10 { animation-delay: 1.1s; }
.delay-11 { animation-delay: 1.2s; }
.delay-12 { animation-delay: 1.3s; }
.delay-13 { animation-delay: 1.4s; }
.delay-14 { animation-delay: 1.5s; }
.delay-15 { animation-delay: 1.6s; }
.delay-16 { animation-delay: 1.7s; }
.delay-17 { animation-delay: 1.8s; }
.delay-18 { animation-delay: 1.9s; }
.delay-19 { animation-delay: 2.0s; }
.delay-20 { animation-delay: 2.1s; }
/* Delays end*/

/* Custom paddings */
.default-p, .py-default { padding-top: 8rem; padding-bottom: 8rem;  }
.pt-default { padding-top: 8rem; }
.pb-default { padding-bottom: 8rem; }

/* Images */
.inside-text a[href*="/data/uploadHTML"], .inside-text img { max-width: 100%; }
.inside-text a[href*="/data/uploadHTML"] > img { width: 100%; }
.image-box > img { opacity: 0; }
.image-box > img.loaded {
	animation: fadeIn .2s;
	animation-fill-mode: forwards;
}
.image-box > img, .video-box > img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.image-box.ratio-auto > img {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    height: auto;
    max-height: none;
    max-width: none;
}

.bg-red{
	background-color: #F89A81;
}

.bg-green{
	background-color: #96C18B;
}

.bg-blue{
	background-color: #95DAF7;
}

.bg-purple{
	background-color: #B79CC9;
}



/* Videos */
.btn-play::before {
	content:'\f04b';
	position: absolute;
	top: calc(50% - 24px);
	left: calc(50% - 24px);
	width: 48px;
	height: 48px;
	font-family: 'Font Awesome 6 Sharp';
	font-size: 48px;
	font-weight: 900;
	line-height: 1em;
	opacity: .75;
	z-index: 1;
	color: #fff;
	pointer-events: none;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
	text-shadow: 0 0 1.5rem rgba(0,0,0,.25);
}
.btn-play:hover:before { opacity: 1; }

/* Custom styles */
.col-fifth, .col-seventh, .col-eight, .col-ninth, .col-tenth, .col-eleventh, .col-sm-fifth, .col-sm-seventh, .col-sm-eight, .col-sm-ninth, .col-sm-tenth, .col-sm-eleventh, .col-md-fifth, .col-md-seventh, .col-md-eight, .col-md-ninth, .col-md-tenth, .col-md-eleventh, .col-lg-fifth, .col-lg-seventh, .col-lg-eight, .col-lg-ninth, .col-lg-tenth, .col-lg-eleventh, .col-xl-fifth, .col-xl-seventh, .col-xl-eight, .col-xl-ninth, .col-xl-tenth, .col-xl-eleventh {
	position: relative;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
}
.stretched-link {
	/*position: relative;*/
	display: inline-block;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	position: relative;
}
/* List */
.text-field ul {
  position: relative;
  display: block;
  list-style-type: none;
  padding-left:0;
  margin-top: 1rem;
}
.text-field ul li {
  position: relative;
  display: block;
  padding:0 0 0.5rem 1.5rem;
	break-inside: avoid;
}
.text-field ul li:last-child { padding-bottom: 0; }
.text-field ul li::before {
  content:'\f111';
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: auto;
  height: auto;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 700;
  font-size: 0.5rem;
	line-height: 1.2em;
	color: var(--dark);
}
.text-white .text-field ul li::before { color: inherit; }
a {
}
a:hover {
	text-decoration: none;
}
/*[class*="col-"], .col {
	padding-top: 1rem;
	padding-bottom: 1rem;
}*/
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked + .slider {
	background-color: #28a745;
}
input:focus + .slider {
	box-shadow: 0 0 1px #28a745;
}
input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}
/*.input-group-sm > .form-control:not(textarea), .input-group-sm > .custom-select {
	height: calc(1.5em + 1rem + 2px);
}*/
/* Backgrounds */
 .text-white ::placeholder {
 color: #fff !important;
}
.text-white ::placeholder {
 color: #fff !important;
}

.text-white .form-control {
	border-color: #fff !important;
}

.text-white .form-row button{
	background-color: #fff !important;
	color: #000 !important;
	transition: all .2s ease-in-out;
	border: 1px solid #000 !important;
}

.text-white .form-row button:hover{
	background-color: #000 !important;
	color: #fff !important;
	border: 1px solid #fff !important;
}


.bg-positive {
	background-color: #ffffff !important;
}
.bg-negative {
	background-color: #ff6209 !important;
	color: #fff !important;
}
.bg-normal {
	background-color: #f0f5ff !important;
}
/*.bg-negative h1, .bg-negative .h1, .bg-negative h2, .bg-negative .h2, .bg-negative h3, .bg-negative .h3, .bg-negative h4, .bg-negative .h4, .bg-negative h5, .bg-negative .h5,  .text-white h1, .text-white .h1, .text-white h2, .text-white .h2, .text-white h3, .text-white .h3, .text-white h4, .text-white .h4, .text-white h5, .text-white .h5 {
	color: inherit !important;
}*/
.bg-complementary {
	background-color: #87efef !important;
}
/* Backgrounds */


/* BTN */
.mixitup-control-active {
	position: relative;
}
.mixitup-control-active span {
	z-index: 2;
	position: relative;
}
[id*="filters-"] fieldset .control {
	transition: color .2s ease-in;
	-webkit-transition: color .2s ease-in;
}
[id*="filters-"] fieldset .control.btn.btn-outline-primary:hover, .control.btn.btn-outline-primary.mixitup-control-active {
	color: #fff;
}
[id*="filters-"] fieldset .control.btn.btn-outline-secondary:hover, .control.btn.btn-outline-secondary.mixitup-control-active {
	background:var(--primary);
	color: #fff;
}
/*.btn-sm, .btn-group-sm > .btn {
	padding: .25rem .5rem;
	font-size: .875rem;
	line-height: 1.5;
	border-radius: .2rem;
}
.btn {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	border-radius: 5px;
}
.input-group .btn {
	padding: .375rem .75rem;
	font-size: 1rem;
	border-radius: 5px;
}
.form-control {
	border-radius: 5px;
}*/
/* BTN */
/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}
.slider.round:before {
	border-radius: 50%;
}
/* Form */
::-webkit-input-placeholder {
 direction: rtl;
}
fieldset.form-group {
	position: relative;
	margin: 0;
}
/* fieldset.form-group.contact-form label {
	position: absolute;
	top: 0.5rem;
	left: .5rem;
	transition: all .2s ease-in-out;
	cursor: text;
	font-size: 1rem;
	padding: 0 1rem;
	margin: 0;
	background: #fff;
	width: auto;
	height: auto;
	pointer-events: none;
	color: #999;
}
fieldset.form-group.contact-form label [class*="fa-"] {
	font-size: 80%;
}
fieldset.form-group.contact-form.focused label {
	color: #999;
	top: -0.75rem;
	background: white;
	font-size: .8rem;
} */
/* Form end */
/* Loader */
.overlay-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1029;
	background: #fff;
}
.loader, .loader:after {
	border-radius: 50%;
	width: 2.4rem;
	height: 2.4rem;
}
.loader {
	margin: auto;
	font-size: 0.2rem;
	position: absolute;
	top: calc(50% - 1.2rem);
	left: calc(50% - 1.2rem);
	text-indent: -9999em;
	border-top: 1.1em solid rgba(0,3,33, 0.2);
	border-right: 1.1em solid rgba(0,3,33, 0.2);
	border-bottom: 1.1em solid rgba(0,3,33, 0.2);
	border-left: 1.1em solid #000321;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
@keyframes load8 {
 0% {
 -webkit-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
/* Loader end */

/* Scroll top */
.scroll-top {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .2s ease-in;
	-webkit-transition: opacity .2s ease-in;
}
.scroll-top [class*="fa-"] {
	font-size: 1rem;
	position: relative;
}
.scroll-top:hover {
	opacity: .85;
}
.scroll-top:hover [class*="fa-"] {
	-webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
  top: 0.5rem;
}
/* Scroll top end */

/* Icons */
[class*="icon-"] {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
}
.icon-16, .icon-16 > svg {
  width: 32px;
  height: 32px;
}
.icon-32, .icon-32 > svg {
  width: 32px;
  height: 32px;
}
.icon-48, .icon-48 > svg {
  width: 48px;
  height: 48px;
}
.icon-56, .icon-56 > svg {
  width: 56px;
  height: 56px;
}
.icon-64, .icon-64 > svg {
  width: 64px;
  height: 64px;
}
.icon-72, .icon-72 > svg {
  width: 72px;
  height: 72px;
}
.icon-80, .icon-80 > svg {
  width: 80px;
  height: 80px;
}
.icon-96, .icon-96 > svg {
  width: 96px;
  height: 96px;
}
.icon-128, .icon-128 > svg {
  width: 128px;
  height: 128px;
}
.icon-16:not(.scroll-button) [class*="fa-"] {	font-size: 16px; }
.icon-32:not(.scroll-button) [class*="fa-"] {	font-size: 24px; }
.icon-48:not(.scroll-button) [class*="fa-"] {	font-size: 32px; }
.icon-64:not(.scroll-button) [class*="fa-"] {	font-size: 48px; }
.icon-96:not(.scroll-button) [class*="fa-"] {	font-size: 64px; }
.icon-128:not(.scroll-button) [class*="fa-"] {	font-size: 72px; }
.icon-auto:not(.scroll-button) [class*="fa-"] { font-size: calc(10vw + 10vh + 5vmin); }
/* Icons end */

/* Settings */
/* #main {
	padding-top: 108px;
}*/
section {
  position: relative;
	padding: 0rem 0;
  background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow-x: clip;
	overflow-y: visible;
}
.bg-image-fixed { background-attachment: fixed; }
.bg-image-left-top { background-size: 100% auto; background-position: left top; }
.bg-image-left-center { background-size: 100% auto; background-position: left center; }
.bg-image-left-bottom { background-size: 100% auto; background-position: left bottom; }
.bg-image-center-top { background-size: 100% auto; background-position: center top; }
.bg-image-center-center { background-size: 100% auto; background-position: center; }
.bg-image-center-bottom { background-size: 100% auto; background-position: center bottom; }
.bg-image-right-top { background-size: 100% auto; background-position: right top; }
.bg-image-right-center { background-size: 100% auto; background-position: right center; }
.bg-image-right-bottom { background-size: 100% auto; background-position: right bottom; }

section:first-of-type.pt-0 {
	padding: 0 0 0rem 0;
}
.container-fluid, .container {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/*clip-path: padding-box;*/
}
.navbar-brand svg {
	position: relative;
	display: block;
	width: 217px;
	height: 42px;
}
textarea:focus, input:focus {
	box-shadow: none;
	outline: none;
}
.line-height-small {
	line-height: .75;
}
.footer-logo svg {
	position: relative;
	display: block;
	width: 125px;
	height: 35px;
	top: 3px;
}
.text-white a:not(.btn) {
	color: inherit !important;
}
.font-0 {
	font-size: 0 !important;
}
[class*="col-"] {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
[class*="col-"].fixed-bg, [class*="container-"].fixed-bg {
	background-attachment: fixed;
}
.center-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.bg-none {
	background: none !important;
}
.card-text {
	clear: both;
	margin-top: .5em;
}
.meta {
	font-size: 1em;
	color: rgba(0,0,0,.4);
}
/* Settings end */

/* Font sizes */
/*.topTitle h2, .topTitle .h2 {
	font-size: 3rem;
	font-weight: 300;
}*/
/* Font sizes end */

/* Image settings */
.bg-fixed {
	background-attachment: fixed;
}
.bg-fixed > .image-box {
	background-attachment: fixed;
}
.image-box {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.product-image-box {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
.image-box.ratio-auto {
	height: auto;
	padding-bottom: 0;
}
.image-box.ratio-stretched {
	width: 100%;
    min-height: 56.25%;
    aspect-ratio: 4/3;
    height: 100%;
}
.image-box.ratio-4-3 {
	padding-bottom: 75%
}
.image-box.ratio-16-9 {
	padding-bottom: 56.25%
}
.image-box.ratio-1-1 {
	padding-bottom: 100%
}
.image-box.ratio-9-16 {
	padding-bottom: 156.25%
}
.image-box.ratio-3-4 {
	padding-bottom: 133.333%
}
.image-box.vh25 {
	height: 25vh;
	padding: 0;
}
.image-box.vh33 {
	height: 33vh;
	padding: 0;
}
.image-box.vh50 {
	height: 50vh;
	padding: 0;
}
.image-box.vh66 {
	height: 66vh;
	padding: 0;
}
.image-box.vh75 {
	height: 75vh;
	padding: 0;
}
.image-box.vh100 {
	height: 25vh;
	padding: 0;
}
:not(.image-box)[class*="ratio-"]::after {
	content: '';
	display: block;
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}
:not(.image-box).ratio-4-3::after {
	padding-bottom: 75%;
}
:not(.image-box).ratio-16-9::after {
	padding-bottom: 56.25%;
}
:not(.image-box).ratio-1-1::after {
	padding-bottom: 100%;
}
:not(.image-box).ratio-9-16::after {
	padding-bottom: 156.25%;
}
:not(.image-box).ratio-3-4::after {
	padding-bottom: 133.333%;
}

@media (max-width: 992px) {
	.no-lg-img > .card-body{
		display: block!important;
		position: relative!important;
		
	}

	.no-lg-img::after {
		padding-bottom: 0!important;
	}


	
}

.imageBluriness
{
	position: absolute;
	left: 0;
	top: 5%;
	-webkit-filter: blur(30px);
	filter: blur(30px);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='30');
	transform: scale(85%);
	opacity: 0.7;
	z-index: 0;
}
.blurImage > img:not(.imageBluriness) {
	position: relative;
	z-index: 1;
}

/* Image settings end */

/* Video settings */
.video-holder {
	position: absolute;
	width: 100%;
	min-height: 100%;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
	overflow: hidden;
	will-change: transform, opacity, filter;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-repeat: no-repeat;
}
.video-holder video {
	position: absolute;
	display: block;
	z-index: -1;
	top: 50%;
	left: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	min-width: 100%;
  	transform: translate(-50%,-50%);
  	-webkit-transform: translate(-50%,-50%);
}
.video-holder.p-overlay::after, .video-holder.n-overlay::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,.25);
	z-index: 0;
}
.video-holder.n-overlay::after {
	background: rgba(18,64,102,0.75);
}
/* Video settings end */

/* Parallax */
.parallax-holder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}
.parallax-scene {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}
.parallax-scene div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.parallax-scene div div {
	position: absolute;
	width: 120%;
	height: 120%;
	top: -10%;
	left: -10%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.parallax-holder.p-overlay::after, .parallax-holder.n-overlay::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,0.7);
	z-index: 0;
}
.parallax-holder.n-overlay::after {
	background: rgba(0,0,0,0.7);
}
/* Parallax end */


/* Counting */
[class*="count-number-cover-"] {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: transparent;
}

[class*="count-number-cover-"] > svg.svg-w-100 {
	position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    margin: 0 auto;
    overflow: visible;
}
[class*="count-number-cover-"] > svg.svg-w-60 {
	width: 60%;
    height: 60%;
    max-width: 60%;
    max-height: 60%;
}
[class*="count-number-cover-"] > svg circle.bg-bar {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: var(--primary);
    opacity: .25;
    stroke-width: 1.15rem;
}
.text-white [class*="count-number-cover-"] > svg circle.bg-bar {
    stroke: var(--white);
}
[class*="count-number-cover-"] > svg circle.bar {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: var(--primary);
    stroke-width: 1.15rem;
    stroke-dasharray: 0, 1000;
    stroke-dashoffset: 0;
    transition: stroke-dasharray 1s ease;
}

[class*="count-number-cover-"] .num {
  position: relative;
  height: 100%;
}

[class*="count-number-cover-"] .num div, [class*="count-number-cover-"] .num > div {
  line-height: 1em;
  margin-bottom: 0;
  max-width: 100%;
}

/* Accordion */
.accordion-item > .accordion-header > .accordion-button[aria-expanded="true"] > .row > [class*="fa-angle-down"]::before { content: '\f106'}
.accordion-item > .accordion-header > .accordion-button[aria-expanded="true"] > .row > [class*="fa-circle-"]::before { color:#ed1846 }

/* Positions */
.left-0 {
	left: 0;
}
.right-0 {
	right: 0;
}
.top-0 {
	top: 0;
}
.bottom-0 {
	bottom: 0;
}
.top-170 {
	top: 170px;
}
/* Positions */


/* Lightbox */
[data-toggle="lightbox"] {
	cursor: pointer;
}

/* Lightbox end */

/* To Admin*/
a.toAdminBox {
	position: fixed;
	bottom: 15px;
	left: 15px;
	width: 32px;
	height: 32px;
	text-align: left;
	z-index: 100000;
	display: inline-block;
	background-color: rgba(255,102,0,1);
	border: 1px solid rgba(255,102,0,1);
	padding: 5px;
	cursor: pointer;
	color: rgba(255,255,255,1) !important;
	border-radius: 5px;
	line-height: 1.3;
	transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	-ms-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}
a.toAdminBox:hover {
	padding: 6px;
	bottom: 14px;
	left: 14px;
	width: 34px;
	height: 34px;
}
a.toAdminBox + #main::before {
	transition: background .2s ease-in;
	-o-transition: background .2s ease-in;
	-ms-transition: background .2s ease-in;
	-moz-transition: background .2s ease-in;
	-webkit-transition: background .2s ease-in;
}
a.toAdminBox + #main::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: rgba(0,3,33,0);
	z-index: 1;
	pointer-events: none;/*border: 1px solid #f60;*/
}
a.toAdminBox:hover + #main::before {
	height: 100%;
	background: rgba(0,3,33,0.2);
}
.toAdminItem-wrapper {
	position: sticky;
	top: calc( 100vh - 32px );
	left: 50%;
	width: 0;
	height: 0;
	z-index: 100000;
	display: block;
	visibility: hidden;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	transition: opacity .2s ease-in;
	-o-transition: opacity .2s ease-in;
	-ms-transition: opacity .2s ease-in;
	-moz-transition: opacity .2s ease-in;
	-webkit-transition: opacity .2s ease-in;
}
.goToAdminRightNow:hover .toAdminItem-wrapper {
	display: block;
	visibility: visible;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}
a.toAdminItem {
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	text-align: left;
	z-index: 100000;
	display: inline-block;
	background-color: rgba(23,23,23,1);
	border: 1px solid rgba(43,43,43,1);
	padding: 5px;
	cursor: pointer;
	color: rgba(255,255,255,1) !important;
	transform: translate(-50%, -50%);
	line-height: 1.3;
	border-radius: 4px;
}
.toAdminItem-wrapper ~ .row > div::before {
	transition: background .2s ease-in;
	-o-transition: background .2s ease-in;
	-ms-transition: background .2s ease-in;
	-moz-transition: background .2s ease-in;
	-webkit-transition: background .2s ease-in;
}
.toAdminItem-wrapper ~ .row > div {
	position: relative;
}
.goToAdminRightNow > .row::before {
	content: "";
	position: absolute;
	bottom: 1px;
	left: 1px;
	width: calc( 100% - 2px );
	height: 0%;
	background: rgba(255,102,0,0);
	z-index: 1;
	pointer-events: none;
	border: 0px solid rgba(43,43,43,0);
	border-bottom: 1px solid rgba(43,43,43,0);
	transition: background .2s ease-in, border .2s ease-in;
	-o-transition: background .2s ease-in, border .2s ease-in;
	-ms-transition: background .2s ease-in, border .2s ease-in;
	-moz-transition: background .2s ease-in, border .2s ease-in;
	-webkit-transition: background .2s ease-in, border .2s ease-in;
	z-index: 999;
}
.toAdminItem-wrapper:hover + .row::before {
	height: calc( 100% - 2px );
	background: rgba(255,102,0,0.5);
	border: 0px solid rgba(43,43,43,1);
}
.bg-negative .toAdminItem-wrapper:hover + .row::before {
	background: rgba(255,255,255,0.5);
}
.goToAdminRightNow:hover .toAdminItem-wrapper + .row::before {
	border-bottom: 1px solid rgba(43,43,43,1);
}
.toAdminBox svg {
	position: relative;
	width: 95px;
	height: 20px;
}
.toAdminBox svg path {
	fill: #ffffff;
}
/* To Admin end*/

/* Clear */
.clear-left {
	clear: left;
}
.clear-right {
	clear: right;
}
/* Clear end*/

/* Custom cols */
.col-fifth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc 20%;
	flex: 0 0 20%;
	max-width: 20%
}
.col-seventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14.286%;
	flex: 0 0 14.286%;
	max-width: 14.286%
}
.col-eighth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
	max-width: 12.5%
}
.col-ninth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 11.111%;
	flex: 0 0 11.111%;
	max-width: 11.111%;
}
.col-tenth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10%;
	flex: 0 0 10%;
	max-width: 10%;
}
.col-eleventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 9.0909%;
	flex: 0 0 9.0909%;
	max-width: 9.0909%;
}
/* Custom cols end */

/* Heights */
.min-vh-100 {
	min-height: 100vh!important;
}
.min-vh-75 {
	min-height: 75vh!important;
}
.min-vh-50 {
	min-height: 50vh!important;
}
.min-vh-33 {
	min-height: 33.333vh!important;
}
.min-vh-25 {
	min-height: 25vh!important;
}
.py-default:not(.py-0):not(.p-0) .row.min-vh-100 {
	min-height: calc(100vh - var(--default-offset-double)) !important;
}
.py-default:not(.py-0):not(.p-0) .row.min-vh-75 {
	min-height: calc(75vh - var(--default-offset-double)) !important;
}
.py-default:not(.py-0):not(.p-0) .row.min-vh-50 {
	min-height: calc(50vh - var(--default-offset-double)) !important;
}
.py-default.pt-0 .row.min-vh-100, .py-default.pb-0 .row.min-vh-100 {
	min-height: calc(100vh - var(--default-offset)) !important;
}
.py-default.pt-0 .row.min-vh-75, .py-default.pb-0 .row.min-vh-75 {
	min-height: calc(75vh - var(--default-offset)) !important;
}
.py-default.pt-0 .row.min-vh-50, .py-default.pb-0 .row.min-vh-50 {
	min-height: calc(50vh - var(--default-offset)) !important;
}
/* Heights end */

/* Widths */
.w-auto {
	width: auto !important;
}
.max-width-220 { max-width: 220px; }
/* Widths end */

/* Carousel */
.carousel-fade .carousel-item, .carousel-indicators li {
	transition: opacity .8s ease-in !important;
	-o-transition: opacity .8s ease-in !important;
	-ms-transition: opacity .8s ease-in !important;
	-moz-transition: opacity .8s ease-in !important;
	-webkit-transition: opacity .8s ease-in !important;
}
.carousel-control-next, .carousel-control-prev { opacity: .75; }
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover { opacity: 1; }
.carousel-control-next::after, .carousel-control-prev::after {
	content: '\f105';
	position: absolute;
	top: calc(50% - 24px);
	left: calc(50% - 24px);
	width: 48px;
	height: 48px;
	font-family: 'Font Awesome 6 Sharp';
	font-size: 48px;
	font-weight: 200;
	line-height: 1em;
	display: inline-block;
	color: var(--dark);
	opacity: 1 !important;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}
.carousel-control-prev::after {
	content: '\f104';
}
.carousel-control-next.text-white::after, .carousel-control-prev.text-white::after {
	color: var(--white);
}

.carousel-item {
	background-size: cover;
}
.bg-position-top {
	background-position: top center;
}
.bg-position-center {
	background-position: center center;
}
.bg-position-bottom {
	background-position: bottom center;
}
/* Carousel end */

/* Tiny slider new */
.tns-controls {
    position: static;
    width: 100%;
    margin: 0 auto;
    bottom: 0;
}
.tns-controls > [data-controls="prev"], .tns-controls > [data-controls="next"] {
	position: absolute;
    top: calc(50% - 1.5rem);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	margin:0;
	padding:0;
    width: 1.5rem;
    text-align: center;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}
.tns-controls > [data-controls="prev"]:focus, .tns-controls > [data-controls="next"]:focus {
	border: none;
    outline: none;
    background: none;
}
.tns-controls > [data-controls="prev"] {
	left: 0;
}
.tns-controls > [data-controls="next"] {
	right: 0;
}
.tns-controls > [data-controls] > i {
	font-size: 2rem;
}

/* Tiny slider content */
[id*="slides-"].tns-inner { overflow: hidden; }
[class*="list-cover-"] .tns-item {
	opacity: .3;
	transition: opacity .2s ease-in;
	-webkit-transition: opacity .2s ease-in;
}
[class*="list-cover-"] .tns-item.tns-slide-active { 
	opacity: 1; 
}
[class*="list-cover-"] .tns-item, [class*="list-cover-"] .tns-item *, [class*="list-cover-"] .tns-item .stretched-link::after {
	pointer-events: none !important;
}
[class*="list-cover-"] .tns-item.tns-slide-active, [class*="list-cover-"] .tns-item.tns-slide-active *, [class*="list-cover-"] .tns-item.tns-slide-active .stretched-link::after {
	pointer-events:auto !important;
}
[data-tns-overflow="0"] [id*="slides-"].tns-inner {
	margin: 0 4rem !important;
}
[data-tns-overflow="1"] [id*="slides-"].tns-inner {
	margin: 0 4rem 0 0 !important;
	padding: 0 0 0 4rem !important;
}
[data-tns-overflow="2"] [id*="slides-"].tns-inner {
	margin: 0 0 0 4rem !important;
	padding: 0 4rem 0 0 !important;
}
[data-tns-overflow="3"] [id*="slides-"].tns-inner {
	margin: 0 !important;
	padding: 0 4rem !important;
}
[data-tns-overflow="0"] .tns-controls > [data-controls="prev"] {
	left: 1.5rem;
}
[data-tns-overflow="0"] .tns-controls > [data-controls="next"] {
	right: 1.5rem;
}
[data-tns-overflow="3"] .tns-controls > [data-controls="prev"]{
	
	left: 1.5rem;
}
[data-tns-overflow="3"] .tns-controls > [data-controls="next"] {
	right: 1.5rem;
}
[data-tns-overflow="1"] .tns-controls > [data-controls="prev"] {
	right: 1.5rem;
	left: auto;
	top: calc(50% - 1.5rem);
}
[data-tns-overflow="1"] .tns-controls > [data-controls="next"] {
	right: 1.5rem;
	top: calc(50% + 1.5rem);
}
[data-tns-overflow="2"] .tns-controls > [data-controls="prev"] {
	left: 1.5rem;
	top: calc(50% - 1.5rem);
}
[data-tns-overflow="2"] .tns-controls > [data-controls="next"] {
	left: 1.5rem;
	right: auto;
	top: calc(50% + 1.5rem);
}
@media (min-width: 576px) {
	[data-tns-overflow="0"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 512px) / 2) !important;
	}
	[data-tns-overflow="1"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 512px) / 2) 0 0 !important;
		padding: 0 0 0 calc((100vw - 512px) / 2) !important;
	}
	[data-tns-overflow="2"] [id*="slides-"].tns-inner {
		margin: 0 0 0 calc((100vw - 512px) / 2) !important;
		padding: 0 calc((100vw - 512px) / 2) 0 0 !important;
	}
	[data-tns-overflow="3"] [id*="slides-"].tns-inner {
		padding: 0 calc((100vw - 512px) / 2) !important;
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 512px) / 2 - 1.5rem);
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 512px) / 2 - 1.5rem);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="prev"]{
		
		left: calc((100vw - 512px) / 4);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 512px) / 4);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="prev"] {
		right: calc((100vw - 512px) / 4);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 512px) / 4);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 512px) / 4);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="next"] {
		left: calc((100vw - 512px) / 4);
	}
}
@media (min-width: 768px) {
	[data-tns-overflow="0"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 684px) / 2) !important;
	}
	[data-tns-overflow="1"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 684px) / 2) 0 0 !important;
		padding: 0 0 0 calc((100vw - 684px) / 2) !important;
	}
	[data-tns-overflow="2"] [id*="slides-"].tns-inner {
		margin: 0 0 0 calc((100vw - 684px) / 2) !important;
		padding: 0 calc((100vw - 684px) / 2) 0 0 !important;
	}
	[data-tns-overflow="3"] [id*="slides-"].tns-inner {
		padding: 0 calc((100vw - 684px) / 2) !important;
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 684px) / 2 - 1.5rem);
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 684px) / 2 - 1.5rem);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 684px) / 4);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 684px) / 4);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="prev"] {
		right: calc((100vw - 684px) / 4);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 684px) / 4);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 684px) / 4);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="next"] {
		left: calc((100vw - 684px) / 4);
	}
}
@media (min-width: 992px) {
	[data-tns-overflow="0"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 888px) / 2) !important;
	}
	[data-tns-overflow="1"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 888px) / 2) 0 0 !important;
		padding: 0 0 0 calc((100vw - 888px) / 2) !important;
	}
	[data-tns-overflow="2"] [id*="slides-"].tns-inner {
		margin: 0 0 0 calc((100vw - 888px) / 2) !important;
		padding: 0 calc((100vw - 888px) / 2) 0 0 !important;
	}
	[data-tns-overflow="3"] [id*="slides-"].tns-inner {
		padding: 0 calc((100vw - 888px) / 2) !important;
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 888px) / 2 - 1.5rem);
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 888px) / 2 - 1.5rem);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="prev"]{
		
		left: calc((100vw - 888px) / 4);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 888px) / 4);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="prev"] {
		right: calc((100vw - 888px) / 4);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 888px) / 4);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 888px) / 4);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="next"] {
		left: calc((100vw - 888px) / 4);
	}
}
@media (min-width: 1280px) {
	.tns-controls > [data-controls="prev"], .tns-controls > [data-controls="next"] {
		width: 3rem;
	}
	[data-tns-overflow="0"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 1140px) / 2) !important;
	}
	[data-tns-overflow="1"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 1140px) / 2) 0 0 !important;
		padding: 0 0 0 calc((100vw - 1140px) / 2) !important;
	}
	[data-tns-overflow="2"] [id*="slides-"].tns-inner {
		margin: 0 0 0 calc((100vw - 1140px) / 2) !important;
		padding: 0 calc((100vw - 1140px) / 2) 0 0 !important;
	}
	[data-tns-overflow="3"] [id*="slides-"].tns-inner {
		padding: 0 calc((100vw - 1140px) / 2) !important;
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 1140px) / 2 - 3rem);
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 1140px) / 2 - 3rem);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="prev"]{
		
		left: calc((100vw - 1140px) / 4 - 1.5rem);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 1140px) / 4 - 1.5rem);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="prev"] {
		right: calc((100vw - 1140px) / 4 - 1.5rem);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 1140px) / 4 - 1.5rem);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 1140px) / 4 - 1.5rem);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="next"] {
		left: calc((100vw - 1140px) / 4 - 1.5rem);
	}
}
@media (min-width: 1420px) {
	[data-tns-overflow="0"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 1280px - .25%) / 2) !important;
	}
	[data-tns-overflow="1"] [id*="slides-"].tns-inner {
		margin: 0 calc((100vw - 1280px - .5%) / 2) 0 0 !important;
		padding: 0 0 0 calc((100vw - 1280px - .5%) / 2) !important;
	}
	[data-tns-overflow="2"] [id*="slides-"].tns-inner {
		margin: 0 0 0 calc((100vw - 1280px) / 2 - .25%) !important;
		padding: 0 calc((100vw - 1280px) / 2 - .25%) 0 0 !important;
	}
	[data-tns-overflow="3"] [id*="slides-"].tns-inner {
		padding: 0 calc((100vw - 1280px) / 2 - .25%) !important;
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 1280px) / 2 - 3rem);
	}
	[data-tns-overflow="0"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 1280px) / 2 - 3rem);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="prev"]{
		
		left: calc((100vw - 1280px) / 4 - 1.5rem);
	}
	[data-tns-overflow="3"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 1280px) / 4 - 1.5rem);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="prev"] {
		right: calc((100vw - 1280px) / 4 - 1.5rem);
	}
	[data-tns-overflow="1"] .tns-controls > [data-controls="next"] {
		right: calc((100vw - 1280px) / 4 - 1.5rem);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="prev"] {
		left: calc((100vw - 1280px) / 4 - 1.5rem);
	}
	[data-tns-overflow="2"] .tns-controls > [data-controls="next"] {
		left: calc((100vw - 1280px) / 4 - 1.5rem);
	}
}

.tns-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1rem auto 0 auto;
	max-width: 1280px;
	padding: 0 .75rem;
}
.tns-nav > [aria-controls]:focus {
	box-shadow: none;
}
.tns-nav > [aria-controls] {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	padding: 0.25rem;
	margin: 0 0.25rem;
	border-radius: 50%;
	background: transparent;
	outline: 1px solid var(--dark) !important;
	border: 1px solid var(--white);
	box-shadow: none;
}
.tns-nav > .tns-nav-active {
	background: var(--dark-hover);
}

/* Tiny slider
.tns-nav {
	text-align: center;
	margin-top: 1rem;
	padding: 0.25rem;
}
.tns-nav > [aria-controls]:focus {
	box-shadow: none;
}
.tns-nav > [aria-controls] {
	width: 1rem;
	height: 1rem;
	padding: 0.25rem;
	margin: 0 0.25rem;
	border-radius: 50%;
	background: transparent;
	outline: 1px solid var(--dark) !important;
	border: 1px solid var(--white);
	box-shadow: none;
}
.tns-nav > .tns-nav-active {
	background: var(--dark-hover);
}
.row.slider-cover {
  position: relative;
  margin: 0 -1rem;
  width: calc(100% + 2rem);
}
.row > .tns-outer {
  width: 100%;
  margin: 0 auto;
}
.customize-tools {
	position: static;
	width: 100%;
	margin: 0 auto;
}
[id*="customize-controls-"] {
	position: static;
	width: 100%;
	height: 100%;
	bottom: 0;
}
[id*="customize-controls-"] .prev, [id*="customize-controls-"] .next {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 4rem;
	color: #fff;
	text-align: center;
	cursor: pointer;
}
[id*="customize-controls-"] .prev [class*="fa-"], [id*="customize-controls-"] .next [class*="fa-"] {
  position: relative;
  display: inline-block;
  top: auto;
  right: auto;
  left: auto;
  font-size: 3rem;
  padding: 0.645rem;
  transition: all .2s ease-in;
  -webkit-transition: all .2s ease-in;
}
[id*="customize-controls-"] .prev {
	left: -3rem;
}
[id*="customize-controls-"] .next {
	right: -3rem;
}
[id*="customize-controls-"] [aria-disabled="true"].prev, [id*="customize-controls-"] [aria-disabled="true"].next { color: #bdc5c9 !important; }
[id*="customize-controls-"] .prev:focus, [id*="customize-controls-"] .next:focus { outline: none !important; }*/
/* Tiny slider end */

/* InfoSlider */
.info-slider {
	overflow: hidden;
}
.info-slider > [id*="info-slider-"] > .tns-ovh {
  padding: 0;
	margin-bottom: 1rem;
}
[id*="info-slider-"] .tns-controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: auto;
}
[id*="info-slider-"] .tns-controls [data-controls="prev"], [id*="info-slider-"] .tns-controls [data-controls="next"] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--dark);
	color: var(--white);
	outline: none;
	border: none;
}
[id*="info-slider-"] .tns-controls [data-controls="prev"]:hover, [id*="info-slider-"] .tns-controls [data-controls="next"]:hover { background-color: var(--dark-hover); }
[id*="info-slider-"] .tns-controls [data-controls="next"] { margin-left: .5rem; }
[id*="info-slider-"] .tns-controls [data-controls="prev"]::before, [id*="info-slider-"] .tns-controls [data-controls="next"]::before {
	content: '\f104';
	display: inline-block;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 400;
	font-size: 1.25rem;
	color: inherit;
}
[id*="info-slider-"] .tns-controls [data-controls="next"]::before { content: '\f105'; }
/* InfoSlider end */§

/* Gallery slider */
.gallery-slider {
	overflow: hidden;
}
.gallery-slider > [id*="gallery-slider-"] > .tns-ovh {
  padding: 0;
	margin-bottom: 1rem;
}
[id*="gallery-slider-"] .tns-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	margin: var(--offset-3) 0;
}
[id*="gallery-slider-"] .tns-controls [data-controls="prev"], [id*="gallery-slider-"] .tns-controls [data-controls="next"] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--dark);
	color: var(--white);
	outline: none;
	border: none;
}
[id*="gallery-slider-"] .tns-controls [data-controls="prev"]:hover, [id*="gallery-slider-"] .tns-controls [data-controls="next"]:hover { background-color: var(--dark-hover); }
[id*="gallery-slider-"] .tns-controls [data-controls="next"] { margin-left: .5rem; }
[id*="gallery-slider-"] .tns-controls [data-controls="prev"]::before, [id*="gallery-slider-"] .tns-controls [data-controls="next"]::before {
	content: '\f104';
	display: inline-block;
	font-family: 'Font Awesome 6 Pro';
	font-weight: 400;
	font-size: 1.25rem;
	color: inherit;
}
[id*="gallery-slider-"] .tns-controls [data-controls="next"]::before { content: '\f105'; }
/* InfoSlider end */


.px-15px {
	padding-left: 15px;
	padding-right: 15px;
}

/* Offset extra */
.px-extra {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Custom content breaking points */

@media (min-width: 575.98px) {
/*.container {
	max-width: 100%;
}*/
/* Custom cols */
.col-sm-fifth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc 20%;
	flex: 0 0 20%;
	max-width: 20%
}
.col-sm-seventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14.286%;
	flex: 0 0 14.286%;
	max-width: 14.286%
}
.col-sm-eight {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
	max-width: 12.5%
}
.col-sm-ninth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 11.111%;
	flex: 0 0 11.111%;
	max-width: 11.111%;
}
.col-sm-tenth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10%;
	flex: 0 0 10%;
	max-width: 10%;
}
.col-sm-eleventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 9.0909%;
	flex: 0 0 9.0909%;
	max-width: 9.0909%;
}
/* Custom cols end */

  /* Heights */
.min-vh-sm-100 {
	min-height: 100vh!important;
}
.min-vh-sm-75 {
	min-height: 75vh!important;
}
.min-vh-sm-50 {
	min-height: 50vh!important;
}
.min-vh-sm-33 {
	min-height: 33.333vh!important;
}
.min-vh-sm-25 {
	min-height: 25vh!important;
}
/* Heights end */

  /* Widths */
.w-sm-auto {
	width: auto !important;
}
/* Widths end */

	/* Positions */
.position-sm-absolute {
	position: absolute !important;
}
/* Positions */

.navbar-expand-sm .nav-item {
	display: inline-block !important;
	margin-left: 1rem;
}
.navbar-expand-sm .navbar-collapse {
	max-width: none;
	position: relative;
	right: auto;
	top: auto;
	padding: 0;
	background: none;
}
.navbar-expand-sm .navbar-nav ul, .navbar-expand-sm .navbar-nav ul ul, .navbar-expand-sm .navbar-nav ul ul ul {
	position: absolute;
	top: auto;
	width: 220px;
}
.navbar-expand-sm #top-nav.navbar-nav ul, .navbar-expand-sm #top-nav.navbar-nav ul ul, .navbar-expand-sm #top-nav.navbar-nav ul ul ul {
	position: absolute;
	top: auto;
	width: auto;
}
.navbar-expand-sm .has-submenu:hover > .submenu {
	max-height: 100vh;
	transition: max-height 0.25s ease-in;
	-webkit-transition: max-height 0.25s ease-in;
	overflow: visible;
}
.navbar-expand-sm .has-submenu:hover > .submenu > li {
	opacity: 1;
	transition: opacity 0.3s ease-in;
	-webkit-transition: opacity 0.3s ease-in;
}
.navbar-expand-sm .submenu-toggler::after {
	border-top: 0.3em solid transparent;
	border-right: 0;
	border-bottom: 0.3em solid transparent;
	border-left: 0.3em solid;
}
}

@media (min-width: 767.98px) {
/*.container {
	max-width: 100%;
}*/
/* Custom cols */
.col-md-fifth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc 20%;
	flex: 0 0 20%;
	max-width: 20%
}
.col-md-seventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14.286%;
	flex: 0 0 14.286%;
	max-width: 14.286%
}
.col-md-eight {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
	max-width: 12.5%
}
.col-md-ninth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 11.111%;
	flex: 0 0 11.111%;
	max-width: 11.111%;
}
.col-md-tenth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10%;
	flex: 0 0 10%;
	max-width: 10%;
}
.col-md-eleventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 9.0909%;
	flex: 0 0 9.0909%;
	max-width: 9.0909%;
}
/* Custom cols end */

  /* Heights */
.min-vh-md-100 {
	min-height: 100vh!important;
}
.min-vh-md-75 {
	min-height: 75vh!important;
}
.min-vh-md-50 {
	min-height: 50vh!important;
}
.min-vh-md-33 {
	min-height: 33.333vh!important;
}
.min-vh-md-25 {
	min-height: 25vh!important;
}
/* Heights end */

  /* Widths */
.w-md-auto {
	width: auto !important;
}
/* Widths end */

.navbar-expand-md .nav-item {
	display: inline-block !important;
	margin-left: 1rem;
}
.navbar-expand-md .navbar-collapse {
	max-width: none;
	position: relative;
	right: auto;
	top: auto;
	padding: 0;
	background: none;
}
.navbar-expand-md .navbar-nav ul, .navbar-expand-md .navbar-nav ul ul, .navbar-expand-md .navbar-nav ul ul ul {
	position: absolute;
	top: auto;
	width: 220px;
}
.navbar-expand-md #top-nav.navbar-nav ul, .navbar-expand-md #top-nav.navbar-nav ul ul, .navbar-expand-md #top-nav.navbar-nav ul ul ul {
	position: absolute;
	top: auto;
	width: auto;
}
.navbar-expand-md .has-submenu:hover > .submenu {
	max-height: 100vh;
	transition: max-height 0.25s ease-in;
	-webkit-transition: max-height 0.25s ease-in;
	overflow: visible;
}
.navbar-expand-md .has-submenu:hover > .submenu > li {
	opacity: 1;
	transition: opacity 0.3s ease-in;
	-webkit-transition: opacity 0.3s ease-in;
}
.navbar-expand-md .submenu-toggler::after {
	border-top: 0.3em solid transparent;
	border-right: 0;
	border-bottom: 0.3em solid transparent;
	border-left: 0.3em solid;
}

}

@media (min-width: 991.98px) {
/*.container {
	max-width: 100%;
}*/
/* Custom cols */
.position-lg-absolute { position: absolute !important; }
.default-lg-p { padding: 8rem 0 !important; }
.pt-lg-default { padding-top: 8rem !important; }
.pb-lg-default { padding-bottom: 8rem !important; }
.left-lg-0 { left:0; }
.col-lg-fifth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc 20%;
	flex: 0 0 20%;
	max-width: 20%
}
.col-lg-seventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14.286%;
	flex: 0 0 14.286%;
	max-width: 14.286%
}
.col-lg-eight {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
	max-width: 12.5%
}
.col-lg-ninth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 11.111%;
	flex: 0 0 11.111%;
	max-width: 11.111%;
}
.col-lg-tenth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10%;
	flex: 0 0 10%;
	max-width: 10%;
}
.col-lg-eleventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 9.0909%;
	flex: 0 0 9.0909%;
	max-width: 9.0909%;
}
/* Custom cols end */

  /* Heights */
.min-vh-lg-100 {
	min-height: 100vh!important;
}
.min-vh-lg-75 {
	min-height: 75vh!important;
}
.min-vh-lg-50 {
	min-height: 50vh!important;
}
.min-vh-lg-33 {
	min-height: 33.333vh!important;
}
.min-vh-lg-25 {
	min-height: 25vh!important;
}
/* Heights end */

  /* Widths */
.w-lg-auto {
	width: auto !important;
}
/* Widths end */

.navbar-expand-lg .nav-item {
	display: inline-block !important;
	margin-left: 1rem;
}
.navbar-expand-lg .navbar-collapse {
	max-width: none;
	position: relative;
	right: auto;
	top: auto;
	padding: 0;
	background: none;
}
.navbar-expand-lg .navbar-nav ul, .navbar-expand-lg .navbar-nav ul ul, .navbar-expand-lg .navbar-nav ul ul ul {
	position: absolute;
	top: auto;
	width: 220px;
}
.navbar-expand-lg #top-nav.navbar-nav ul, .navbar-expand-lg #top-nav.navbar-nav ul ul, .navbar-expand-lg #top-nav.navbar-nav ul ul ul {
	position: absolute;
	top: auto;
	width: auto;
}
.navbar-expand-lg .has-submenu:hover > .submenu {
	max-height: 100vh;
	transition: max-height 0.25s ease-in;
	-webkit-transition: max-height 0.25s ease-in;
	overflow: visible;
}
.navbar-expand-lg .has-submenu:hover > .submenu > li {
	opacity: 1;
	transition: opacity 0.3s ease-in;
	-webkit-transition: opacity 0.3s ease-in;
}
.navbar-expand-lg .submenu-toggler::after {
	border-top: 0.3em solid transparent;
	border-right: 0;
	border-bottom: 0.3em solid transparent;
	border-left: 0.3em solid;
}
}

@media (min-width: 1140px) {
/*.container {
	max-width: 100%;
}*/
/* Custom cols */
.col-xl-fifth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc 20%;
	flex: 0 0 20%;
	max-width: 20%
}
.col-xl-seventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14.286%;
	flex: 0 0 14.286%;
	max-width: 14.286%
}
.col-xl-eight {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
	max-width: 12.5%
}
.col-xl-ninth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 11.111%;
	flex: 0 0 11.111%;
	max-width: 11.111%;
}
.col-xl-tenth {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10%;
	flex: 0 0 10%;
	max-width: 10%;
}
.col-xl-eleventh {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 9.0909%;
	flex: 0 0 9.0909%;
	max-width: 9.0909%;
}
/* Custom cols end */

  /* Heights */
.min-vh-xl-100 {
	min-height: 100vh!important;
}
.min-vh-xl-75 {
	min-height: 75vh!important;
}
.min-vh-xl-50 {
	min-height: 50vh!important;
}
.min-vh-xl-33 {
	min-height: 33.333vh!important;
}
.min-vh-xl-25 {
	min-height: 25vh!important;
}
/* Heights end */

  /* Widths */
.w-xl-auto {
	width: auto !important;
}
/* Widths end */

.navbar-expand-xl .nav-item {
	display: inline-block !important;
	margin-left: 1rem;
}
.navbar-expand-xl .navbar-collapse {
	max-width: none;
	position: relative;
	right: auto;
	top: auto;
	padding: 0;
	background: none;
}
.navbar-expand-xl .navbar-nav ul, .navbar-expand-xl .navbar-nav ul ul, .navbar-expand-xl .navbar-nav ul ul ul {
	position: absolute;
	top: auto;
	width: 220px;
}
.navbar-expand-xl #top-nav.navbar-nav ul, .navbar-expand-xl #top-nav.navbar-nav ul ul, .navbar-expand-xl #top-nav.navbar-nav ul ul ul {
	position: absolute;
	top: auto;
	width: auto;
}
.navbar-expand-xl .has-submenu:hover > .submenu {
	max-height: 100vh;
	transition: max-height 0.25s ease-in;
	-webkit-transition: max-height 0.25s ease-in;
	overflow: visible;
}
.navbar-expand-xl .has-submenu:hover > .submenu > li {
	opacity: 1;
	transition: opacity 0.3s ease-in;
	-webkit-transition: opacity 0.3s ease-in;
}
.navbar-expand-xl .submenu-toggler::after {
	border-top: 0.3em solid transparent;
	border-right: 0;
	border-bottom: 0.3em solid transparent;
	border-left: 0.3em solid;
}
}

@media (min-width: 1199.98px) {
/*.container {
	max-width: 1280px;
}*/
}

@media (min-width: 1407.98px) {
}
/* Custom content breaking points end*/
/* Cookies */
.termsfeed-com---palette-light .cc-pc-container {
  background: #fff;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}
.termsfeed-com---pc-dialog .cc-cp-body-tabs-item-link, .termsfeed-com---pc-dialog .cc-cp-body-content-entry-text {
  font-size: .7143rem !important;
  font-family: inherit;
  letter-spacing: normal;
}
.termsfeed-com---palette-light.termsfeed-com---nb {
  background-color: #fff !important;
  color: #1d1d1b !important;
  box-shadow: 0 0.5rem 2rem rgb(0 0 0 / 30%) !important;
}
.termsfeed-com---nb .cc-nb-main-container {
  padding: 2rem !important;
  font-family: 'Montserrat', sans-serif;
}
.termsfeed-com---nb-simple {
  max-width: 480px !important;
}
.termsfeed-com---nb .cc-nb-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
}
.termsfeed-com---nb .cc-nb-text {
  font-size: .7143rem !important;
}
.termsfeed-com---palette-light .cc-nb-reject, .termsfeed-com---palette-light .cc-nb-okagree, .termsfeed-com---palette-light .cc-cp-foot-save, .termsfeed-com---pc-dialog input[type="checkbox"].cc-custom-checkbox:checked+label:before {
  background-color: #e20947 !important;
}
.termsfeed-com---palette-light .cc-pc-head-lang select {
  color: #1d1d1b  !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.termsfeed-com---palette-light .cc-nb-changep { background: none !important; color: #666 !important; }
/* Custom styles end */


/* Update */
[class*="col"].strict-height {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.strict-height-cover { padding: 1rem; }
[class*="col"].strict-height > .strict-height-cover, [class*="col"].strict-height > .strict-height-cover, .card.strict-height > .card-body, .card.strict-height > .card-body.top-0 {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
	width: 100%;
	max-height: 100%;
	overflow-x: clip;
	z-index: 999;
}
[class*="col"].strict-height > .strict-height-cover.top-50, .card.strict-height > .card-body.top-50 {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
[class*="col"].strict-height > .strict-height-cover.top-100, .card.strict-height > .card-body.top-100 {
	top: 100%;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
}

/* Contact Form Slider */
.contact-form-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.form-slides {
  width: 100%;
  overflow: hidden;
}

.form-slide {
  width: 100%;
  padding: 1rem;
  transition: transform 0.3s ease-in-out;
}

.form-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}

#dotaznik{
	min-height: 100vh;
}

.questionare-form{
	height: 50vh;
	
}

.form-slider-controls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

.form-slider-controls button:hover {
  color: var(--primary);
}

.form-slider-controls button:disabled {
  color: var(--gray-400);
  cursor: not-allowed;
}

.text-white .form-slider-controls button {
  color: var(--white);
}

.text-white .form-slider-controls button:hover {
  color: var(--white);
  opacity: 0.8;
}

.text-white .form-slider-controls button:disabled {
  color: var(--gray-600);
}
