:root {
    --first_color: #a48572;
    --second_color: #38573e;
    --third_color: #003838;
	--accent-color: #38573e;
	--accent-secondary-color: #8F6F5B;
	--accent-secondary-color2: rgba(0, 56, 56, .8);
    --hover_color:#4A4A4A;
    --bg_color: #F5F2F0;
    --bg_color2: #E9E3DD;
    --bg_color3: #d1c3b8;
    --text_color:#2C221C;
    --text_color2:#fbf9f5;
	--accent-font: "Stack Sans Headline", sans-serif;
	--default-font: "Poppins", sans-serif;
	--error-color: rgb(230, 87, 87);
	--divider-color: #00000024;
}

html, body { overflow-x:hidden;min-height:100%; }
body { position: relative; font-family: var(--default-font); font-size: 16px; font-weight: 400; line-height:30px; color: var(--text_color); background: var(--bg_color); }
::-webkit-scrollbar-track{ background-color: var(--bg_color3); border-left: 1px solid var(--bg_color3); }
::-webkit-scrollbar{ width: 7px; background-color: var(--bg_color3); }
::-webkit-scrollbar-thumb{ background: var(--first_color); }
::selection{ color: var(--bg_color2); background-color: var(--hover_color); filter: invert(1); }
b,strong,th { font-weight: 700 !important; }
a               { color: var(--text_color); }
a:hover         { color: var(--first_color); }
a, a:hover { text-decoration:none;-webkit-transition: all 0.15s ease-in; -moz-transition: all 0.15s ease-in; -o-transition: all 0.15s ease-in; transition: all 0.15s ease-in; }
p { line-height: 1.6em; margin-bottom: 1.5em; }
.cursor { cursor: pointer; }
textarea { resize: none; }
picture { display:block; }
img {max-width:100%;height: auto!important;background-position:  center;background-repeat:  no-repeat;background-size:  cover;}
.bg-1 { background-color:var(--bg_color) !important; }
.bg-2 { background-color:var(--bg_color2) !important; }
.bg-image { position: absolute; z-index:0; top:0; right:0; bottom:0; left:0; }
.bg-image .bg-pattern { position: absolute; z-index:0; top:0; right:0; bottom:0; left:0;
opacity: 0.15;
background: repeating-linear-gradient(
    45deg,
    var(--bg_color3),
    var(--bg_color3) 30px,
    var(--bg_color2) 30px,
    var(--bg_color2) 50px
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    #000 50%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 50% at 20% 60%,
    #000 60%,
    transparent 100%
  );
}
.bg-image .bg-pattern2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: radial-gradient(var(--bg_color3) 2px, var(--bg_color) 2px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 100% 40%,
    #000 50%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 100% 50%,
    #000 60%,
    transparent 100%
  );
}
.bg-image .bg-pattern3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity:.5;
  pointer-events: none;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 19px,
      rgba(75, 85, 99, 0.08) 19px,
      rgba(75, 85, 99, 0.08) 20px,
      transparent 20px,
      transparent 39px,
      rgba(75, 85, 99, 0.08) 39px,
      rgba(75, 85, 99, 0.08) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 19px,
      rgba(75, 85, 99, 0.08) 19px,
      rgba(75, 85, 99, 0.08) 20px,
      transparent 20px,
      transparent 39px,
      rgba(75, 85, 99, 0.08) 39px,
      rgba(75, 85, 99, 0.08) 40px
    ),
    radial-gradient(
      circle at 20px 20px,
      rgba(164, 133, 114, .3) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 40px 40px,
      rgba(164, 133, 114, .3) 2px,
      transparent 2px
    );
  background-size:
    40px 40px,
    40px 40px,
    40px 40px,
    40px 40px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    #000 50%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 50% at 20% 60%,
    #000 60%,
    transparent 100%
  );
}
.bg-image picture { position: absolute; top:0; right:0; bottom:0; left:0;object-fit: cover; }
.bg-image picture img { width:100%;height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; top: 0; -webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.bg-image.image-half-right picture { width:50%;left: auto; }
.bg-image.image-third-right picture { width:33%;left: auto; }
.bg-image.image-half-left picture { width:50%;right: auto; }
.bg-image.image-third-left picture { width:33%;right: auto; }
.bg-img .container { z-index:2; }
.table td, .table th { border-top: 1px solid var(--divider-color); }

.text-primary { color: var(--first_color) !important; }
.text-secondary { color: var(--second_color) !important; }
.text-success { color: #63a414; }
.badge-primary { background-color: var(--first_color) !important; }

.btn-default{ position: relative;cursor:pointer; display: inline-block; font-size: 16px; font-weight: 600; line-height: 1em; text-transform: capitalize; background: var(--first_color); color: var(--accent-secondary-color); border-radius: 5px; padding: 15px 20px; border: none; transition: all 0.5s ease-in-out; position: relative; z-index: 1; }
.btn-default::after{ content: ""; position: absolute; top: 0; bottom: 0; left: 50%; right: 50%; opacity: 0; background: var(--first_color); border-radius: 5px; transition: all 0.4s ease-in-out; z-index: -1; }
.btn-default:hover, .btn-default:focus{ background-color: var(--third_color);color:var(--text_color); }
.btn-default:hover::after{ left: 0; right: 0; opacity: 1; }
.btn-default.btn-highlighted{ border: 1px solid var(--first_color); background: transparent; color: var(--first_color); padding: 15px 20px; }
.btn-default.btn-highlighted:hover{ color: var(--accent-secondary-color); }
.btn-default.btn-highlighted:hover::after{ background: var(--first_color); }
.btn-default.btn-xs { font-size: 14px; line-height: 1em;border-radius: 5px; padding: 8px 15px; }

.btn-primary {position:relative;z-index:2;background-color:transparent !important;border:0 !important;color: var(--bg_color);overflow: hidden;border-radius: 3px !important;}
.btn-primary:hover, .btn-primary:focus { color: #fff; }
.btn-primary:after {content: '';position: absolute;bottom: 0;left: 0;right:0;top:0;background-color: var(--first_color);transition: all .3s;z-index: -2;}
.btn-primary:before {content: '';position: absolute;bottom: 0;left: 0;width: 0%;height: 100%;background-color: var(--third_color);transition: all .3s;z-index: -1;}
.btn-primary:hover:before { width: 100%; }

.btn-secondary {position:relative;z-index:2;background-color:transparent !important;border:0 !important;color:var(--bg_color);overflow: hidden;border-radius: 3px !important;}
.btn-secondary:hover, .btn-secondary:focus { color: var(--text_color); }
.btn-secondary:after {content: '';position: absolute;bottom: 0;left: 0;right:0;top:0;background-color: var(--third_color);transition: all .3s;z-index: -2;}
.btn-secondary:before {content: '';position: absolute;bottom: 0;left: 0;width: 0%;height: 100%;background-color: var(--first_color);transition: all .3s;z-index: -1;}
.btn-secondary:hover:before { width: 100%; }

.btn-outline-primary { border-color: var(--first_color);color: var(--first_color) !important; }
.btn-outline-primary:hover, .btn-outline-primary:focus { border-color: var(--first_color);background-color: var(--first_color);color: #fff !important; }

.btn-success {
    background-color: #63a414;
    border-color: #63a414;
    color: #fff;
}
.btn-success:hover, .btn-success:focus {
    background-color: #568E11;
    border-color: #568E11;
    color: white;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6  { font-family:var(--accent-font);font-weight: 600; font-style: normal;color:var(--text_color);line-height: 1.2em; }
h1, .h1 { font-size:2.5em;margin-bottom:20px; }
h1 span, h2 span, h3 span, h4 span, h5 span, .h1 span, .h2 span, .h3 span, .h4 span, .h5 span  { color:var(--first_color); }
h2, .h2 { font-size:2em;margin-bottom:15px; }
h2.text-written, .h2.text-written { font-size:3em;margin-bottom:15px; }
h3, .h3 { font-size:2em;margin-bottom:15px; }
h3.text-written, .h3.text-written { font-size:3em;margin-bottom:15px; }
h4, .h4 { font-size:1.75em;margin-bottom:15px; }
h5, .h5 { font-size:1.5em;margin-bottom:15px; }
h5.text-written, .h5.text-written { font-size:2em;margin-bottom:15px; }
h6, .h6 { font-size:1.25em;margin-bottom:15px; }

.btn { font-weight:700 !important;text-transform:uppercase;font-size:14px;border-radius:3px;outline:0px !important;box-shadow:0 0 0px rgba(0,0,0,0) !important;-webkit-transition: all 0.15s ease-in;-moz-transition: all 0.15s ease-in;-o-transition: all 0.15s ease-in;transition: all 0.15s ease-in;}
.btn-sm { font-size:14px !important;padding:.25rem 1.0rem; }
.border-radius { border-radius:8px; }
.border-radius-xl { border-radius:16px; }
.border-radius-xs { border-radius:6px; }
.box-shadow { box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.2), 0 0px 20px 0 rgba(0, 0, 0, 0.19); }
.alert { border-left-width: 8px; border-radius: 0 4px 4px 0; }
.alert-info {
  color: var(--text_color);
  background-color: rgba(185, 172, 162, .25);
  border-color: var(--fourth_color);
}
.form-group {margin-left: 0px!important;margin-bottom:10px;float: left;width: 100%;}
.control-label { text-align:left !important;font-weight:400;padding-top:0px !important; }
.form-control { border:1px solid rgba(163, 163, 163, 0.8) !important; border-radius:5px;background-color:#fff;height: calc(2.25rem + 12px);color:var(--text_color); }
.form-control.xs { border-radius:3px;height: calc(2.25rem + 1px); }
.form-control:focus { outline: none !important;box-shadow: 0 0 0px #ffffff;background-color:#fff;color:var(--text_color); }
select.form-control.is-valid, .was-validated select.form-control:valid { background-position: center right calc(2.5rem / 2); }
select.form-control.is-invalid, .was-validated select.form-control:invalid { background-position: center right calc(2.5rem / 2); }

.required { color:#CC0000; }
section { float:left;position:relative;width:100%; }
.container { width: auto;max-width: 1600px;position: relative; }
.container.wide { max-width: 1800px; }

@media screen and (min-width:1200px) {
    body { font-size:18px;line-height:30px; }
    h1, .h1 { font-size:3.0em;margin-bottom:30px; }
    h1.title { font-size:3.5em; }
    h2, .h2 { font-size:2.5em;margin-bottom:20px; }
    h3, .h3 { font-size:2.25em;margin-bottom:20px; }
}
@media screen and (max-width:1100px) {
    body { font-size:16px;line-height:28px; }
}
@media screen and (min-width: 992px) {
    .btn:not(.btn-sm):not(.dropdown-toggle) { padding: 0.75rem 1.75rem; }
    .btn:not(.btn-sm):not(.dropdown-toggle) i { padding:0 5px;font-size: 1.0rem; }
}
@media screen and (max-width: 992px) {
    .btn { font-size: 14px !important;padding: 0.75rem 1.25rem; }
    .btn-sm { font-size: 14px !important;padding:.25rem 1.0rem; }
    h2.text-written, .h2.text-written { font-size:2em; }
    h3.text-written, .h3.text-written { font-size:2em; }
}
@media screen and (max-width: 768px) {
    body { font-size:16px;line-height:25px; }
    .row:not(.no-gutters) { margin-right: -5px; margin-left: -5px; }
    .row:not(.no-gutters) > [class^="col-"], .row:not(.no-gutters) > [class^=" col-"] { padding-right: 5px; padding-left: 5px; }
}
@media screen and (max-width: 576px) {
    body { font-size:16px;line-height:25px; }
    .btn { font-size: 14px;padding:.25rem .5rem; }
    .form-control { font-size:1rem; }

    h1, .h1 { font-size:1.5em;margin-bottom:15px; }
    h2, .h2 { font-size:1.375em;margin-bottom:10px; }
    h2.text-written, .h2.text-written { font-size:1.75em;margin-bottom:10px; }
    h3, .h3 { font-size:1.25em;margin-bottom:10px; }
    h3.text-written, .h3.text-written { font-size:1.75em;margin-bottom:10px; }
    h4, .h4 { font-size:1.125em;margin-bottom:10px; }
    h5, .h5 { font-size:1.0em;margin-bottom:10px; }
    h6, .h6 { font-size:1.0em;margin-bottom:10px; }
}

/* HEADER */
header * {-webkit-transition: all 0.15s ease-in; -moz-transition: all 0.15s ease-in; -o-transition: all 0.15s ease-in; transition: all 0.15s ease-in;}
header {position: fixed;float:left;z-index:99;width:100%;padding: 0;margin:0;top: 0;max-width: 100%;background-color:var(--bg_color); }
header #nav {position:relative;z-index:10;margin:0;border:0;padding:0px;min-height: 0;background-color:transparent;border-radius:0;}
header .container2 { padding:0; }
header .navbar-toggler2 { display:none;position:absolute !important;opacity:1 !important;z-index:30;cursor:pointer;font-size:20px;top:15px;left:-55px;width:40px;height:40px;line-height:35px;border:0px solid var(--first_color) !important;background-color: var(--first_color)!important;color: var(--bg_color);border-radius:4px;outline:0px !important; }
header .navbar-toggler2 .fa-bars { }
header .navbar-toggler2 .fa-times {display:none;color: var(--bg_color)!important;}
header .navbar-nav  { width:100%;margin:0;padding: 0 0px;background-color:transparent; }
header .navbar-nav > li { margin:0;position:relative;padding:0; }
header .navbar-nav > li > a { margin: 0;border-radius:0px !important;background-color:transparent;color:var(--second_color);font-size: 16px;border-bottom: 2px solid transparent;margin:0 10px;padding: 10px 0px !important;font-weight:500; }
header .navbar-nav > li.active > a { border-bottom: 2px solid var(--first_color);position:relative; }
header .navbar-nav > li.active a:hover,
header .navbar-nav > li.active a:focus,
header .navbar-nav > li > a:focus,
header .navbar-nav > li > a:hover {
    background: transparent;color: var(--second_color);border-bottom: 2px solid var(--first_color);
}
header .dropdown-menu { background-color: transparent !important;margin:-1px 0 0 0;padding:  0;width: 100%;border-radius: 5px; border:0;overflow:hidden;}
header .dropdown:hover .dropdown-menu { display: table;padding-top:15px; }
header .dropdown-menu a { position:relative;margin: 0;border-radius:0px !important;color:#fff;font-size: 15px;border-bottom: 0px !important;padding: 10px 15px;background-color: var(--second_color);font-weight:500; }
header .dropdown-menu a:hover { border:0!important; color:var(--bg_color) !important; background-color:var(--first_color) !important; }
header .navbar-brand { padding:10px 0;margin:0;width:100%;max-width:240px; }
header .navbar-brand:hover { }
header .navbar-brand img { width: 100%; }
header #navbarHeader img#logo3 {display:none;margin-bottom:25px;width:100%;max-width: 180px;margin:0 auto 25px 0;}

@media screen and (max-width:1400px) {
    header .navbar-brand { max-width:200px; }
    header #nav { border:0; }
    header .navbar-nav > li { padding:0px; }
    header .navbar-nav > li > a {font-size:18px;padding: 10px 5px !important;}
}
@media screen and (min-width:992px){
    header.onScroll { position:fixed;z-index:11;top:0;bottom:auto;background-color:var(--bg_color2); }
    header.onScroll .navbar, header.onScroll #nav { background-color:var(--bg_color2); }
    header.onScroll .navbar-nav > li { margin:0px; }
    header.onScroll .navbar-nav > li > a {  }
    header.onScroll .navbar-brand { max-width: 210px; }
}
@media screen and (min-width:1200px){
    header .navbar-nav > li .dropdown-menu a:first-child { border-radius: 7px 7px 0 0 !important; }
    header .navbar-nav > li .dropdown-menu a:last-child { border-radius:0 0 7px 7px !important; }
}
@media screen and (max-width:1200px){
    header * {-webkit-transition: all 0s ease-in; -moz-transition: all 0s ease-in; -o-transition: all 0s ease-in; transition: all 0s ease-in;}
    header { position:fixed;z-index:11;top:0;bottom:auto;  }
    header #nav { min-height:50px;margin: 0 0 0 0px !important;}
    header #navbarHeader {position: fixed;z-index:20;top:0;right:-320px;bottom:0;width:320px;background-color:var(--bg_color2);display:block !important;padding:15px;-webkit-animation: slideInLeft .15s;animation: slideInLeft .15s;}
    header #navbarHeader.open { right:0px;/*width:auto;left:0;*/-webkit-animation: slideInRight .15s; animation: slideInRight .15s;background-color:var(--bg_color2) !important; }
    header #navbarHeader.open .navbar-toggler2 {/*left:0;*/background-color: var(--first_color) !important;color: var(--bg_color); }
    header #navbarHeader.open .navbar-toggler2 .fa-bars { display:none; }
    header #navbarHeader.open .navbar-toggler2 .fa-times { display:inline; }
    header #navbarHeader .navbar-toggler2 { display:block !important; }
    header .headerBtn { display:inline-block !important;width:100%;text-align:center;margin-top:-2px; }
    header .headerBtn .btn { }
    header .navbar-brand { margin:0; max-width: 240px;padding:10px 0; }
    header .navbar-brand img { max-width: 240px !important;margin:0; }
    header .navbar-nav { position:absolute;top:13px;right:10px;bottom:10px;left:10px;width:auto;overflow-y: scroll;display:block !important;scrollbar-width: thin; }
    header .navbar-nav::-webkit-scrollbar-corner { background: rgba(0,0,0,0.5); }
    header .navbar-nav::-webkit-scrollbar { width: 12px; height: 12px; }
    header .navbar-nav::-webkit-scrollbar-thumb { border-radius: 20px; border: 3px solid var(--first_color); }
    header .navbar-nav > li { background-color:transparent !important;padding:0 0 1px 0;margin:0 0 1px 0;text-align:center;border-left:0 !important; border-right:0 !important;border-bottom:1px solid rgba(151, 41, 40, 0.10); }
    header .navbar-nav > li a { position:relative;font-size: 16px;border-bottom: 0px !important;padding: 8px 8px !important;text-shadow: none;color:var(--first_color);font-weight:700; }
    header .navbar-nav > li a:hover { color:var(--text_color); }
    header .navbar-nav > li .dropdown-menu { display: block !important;padding-top:0 !important;padding-bottom:5px; }
    header .navbar-nav > li .dropdown-menu a { font-size: 14px;margin:0;padding: 3px 8px !important;background-color:transparent !important; color: var(--second_color);text-align:center;font-weight:500; }
    header .navbar-nav > li .dropdown-menu a:hover { color: var(--text_color) !important; }
    header .navbar-nav > li.icon { width:32%;display:inline-block;margin-top:10px; }
}
@media screen and (max-width:992px) {
}
@media screen and (max-width:768px) {
    header .navbar-toggler2 { top:15px; }
    header .navbar-brand { }
}
@media screen and (max-width:576px) {
    header .topbar { display:none !important; }
    header #navbarHeader .navbar-toggler2 { top:10px;width:35px;height:35px;line-height:32px;left:-40px;font-size:20px; }
    header #navbarHeader { background-color: var(--bg_color2);padding:10px;}
    header #navbarHeader .navbar-nav { min-height:50px; }
    header #navbarHeader.open { width:auto;left:0; }
    header #navbarHeader.open .navbar-toggler2 { left:5px; }
    header #navbarHeader .dropdown-menu { }
    header .headerBtn { margin-top:-2px; }
    header .navbar-brand { max-width: 190px !important; }
    header .navbar-brand img { max-width: 190px !important;margin:0; }
}
/* END HEADER */

/* SLIDER SWIPER.JS */
.slider { float:left;position:relative;z-index: 1;width:100%;padding:70px 0 0px 0;background-color:var(--bg_color); }
.slider .mainSwiper3 { position:relative;width: 100%; }
.slider .mainSwiper3 .swiper-slide { position: relative; }
.slider .mainSwiper3 .swiper-slide picture { width: 100%; height:0; padding-bottom:40%; object-fit: cover;margin:10px 30px; }
.slider .mainSwiper3 .swiper-slide picture img { width:100%;bottom: 0; height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; right: 0; top: 0; width: 100%;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.slider .mainSwiper3 .bg-dark { position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: linear-gradient(to right,  rgba(19,19,19,1) 0%,rgba(28,28,28,1) 9%,rgba(17,17,17,1) 32%,rgba(0,0,0,1) 46%,rgba(44,44,44,1) 61%,rgba(38, 38, 38, 1) 81%,rgba(48, 48, 48, 1) 100%) !important;opacity: .65; z-index: 1; }
.slider .mainSwiper3 .overlay { position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 2; }
.slider .mainSwiper3 .swiper-pagination-progressbar-fill { background: #fff; }
.slider .mainSwiper3 .swiper-lazy-preloader { width: 30px; height: 30px; border-radius: 50%; border: 4px solid #fff; border-top-color: transparent; animation: spin 1s linear infinite; position: absolute; top: 50%; left: 50%; margin-top: -15px; margin-left: -15px; }
.slider .mainSwiper3-pagination{ position: relative; text-align: center; margin-top: 60px; }
.slider .mainSwiper3-pagination .swiper-pagination-bullet{ height: 10px; width: 10px; background: var(--divider-color); opacity: 1; margin: 0 3px; transition: all 0.4s ease-in-out; }
.slider .mainSwiper3-pagination .swiper-pagination-bullet-active{ width: 30px; background: var(--first_color); border-radius: 12px; }

.slider2 .slider-item{ border-radius:8px; background-color: var(--accent-secondary-color2); padding:20px; height:100%; }
.slider2 .slider-item .h3 { position: relative; font-size: 20px; padding-left: 34px; margin-bottom: 15px; }
.slider2 .slider-item .h3::before { content: ''; position: absolute; top: 50%; left: 0; width: 25px; height: 24px; filter: invert(64%) sepia(30%) saturate(2298%) hue-rotate(48deg) brightness(94%) contrast(77%); background-image: url('../images/icons/arrow-long.svg'); background-repeat: no-repeat; background-position: center center; background-size: cover; transform: translateY(-50%) rotate(0deg); transition: all 0.3s ease-in-out; }
.slider2 .slider-item:hover .h3::before{ transform: translateY(-50%) rotate(-45deg); }
.slider2 .slider-item p { line-height: 1.5em; margin-bottom: 8px; font-size:16px; }

.text-content .imageShape { border-radius: 92% 35% 52% 41% / 50% 40% 74% 73% !important;overflow:hidden;border:10px solid var(--bg_color3); }
.text-content .imageSwiper { }
.text-content .imageSwiper .swiper-pagination-progressbar { top:auto;bottom:0;background: rgba(255, 255, 255, 0.3); height: 5px; }
.text-content .imageSwiper .swiper-slide:nth-child(even) { margin-top:10% }
.text-content .imageSwiper .swiper-slide { padding:5px; padding-bottom:50px; }
.text-content .imageSwiper .swiper-slide picture { border:15px solid #fff;box-shadow:0 0 5px rgba(0,0,0,.05); }
.text-content .imageSwiper .swiper-navigation { position:relative;text-align:center;width:110px;margin:-40px 0 0 auto; }
.text-content .imageSwiper .swiper-navigation > div { width:35px;height:35px;background-color:var(--third_color); color:var(--bg_color); font-size:20px;border-radius:50%;margin:5px; }
.text-content .imageSwiper .swiper-navigation > div::after { font-size:14px;color:var(--bg_color) !important; }

.text-content .services-slider .swiper-navigation { position:relative;text-align:center;width:110px;margin:-40px 0 0 auto; }
.text-content .services-slider .swiper-navigation > div { width:35px;height:35px;background-color:var(--third_color); color:var(--bg_color); font-size:20px;border-radius:50%;margin:5px; }
.text-content .services-slider .swiper-navigation > div::after { font-size:14px;color:var(--bg_color) !important; }

.slider .hero-content { position: relative; z-index: 4;margin:10px; }
.slider .hero-content .section-title { padding:15px;/*background-color:var(--accent-secondary-color2);*/ }
.slider .hero-content .section-title .h1 { position: relative; font-size: 2.25rem; margin-bottom: 10px; z-index: 1;color:var(--text_color2); }
.slider .hero-content .section-title p { position: relative; padding: 0 0 0 15px;max-width:85%; color:var(--text_color2); }
.slider .hero-content .section-title p::after{ content: ''; position: absolute; z-index:2; top: 0; left: 0; right: 0; bottom: 0; background: var(--first_color); border-radius: 10px; height: 100%; width: 4px; transition: all 0.4s ease-in-out; }
.slider .hero-content .section-title .btn { padding:.5rem 1rem; }

@media screen and (min-width:1200px) {
    .slider .hero-content .section-title .h1 { font-size: 3.5rem;margin-bottom: 20px; }
}
@media screen and (max-width:768px) {
    .slider .mainSwiper3 .swiper-slide picture { padding-bottom:45%; margin:10px 10px; }
    .slider .hero-content .section-title { padding:0px;}
    .slider .hero-content .section-title .h1 { font-size: 1.5rem;  }
    .slider .hero-content .section-title p { display:none; }
}

@media screen and (max-width:576px) {
    .slider .hero-content .section-title .h1 { font-size: 1.25rem;  }
    .slider .hero-content .section-title .btn { padding:.25rem .6rem; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* END SLIDER SWIPER.JS */


/* BREADCRUMBS */
.breadcrumbs {background: var(--second_color);padding:5px 0; }
.breadcrumbs .breadcrumb {display: inline-flex;position:relative;z-index:10;border-radius:0;background: transparent;margin:0;padding: 0;}
.breadcrumbs .breadcrumb li, .breadcrumbs .breadcrumb > .active { background-color: transparent; padding:3px 5px; color: #D9D9D9;border-radius:0px; }
.breadcrumbs .breadcrumb > .active { }
.breadcrumbs .breadcrumb > li + li:before {color: #fff;content: "\f061";font-family:"Font Awesome 5 Free";font-weight:900;font-size: 12px;margin-right:5px;}
.breadcrumbs .breadcrumb a, .breadcrumbs .breadcrumb a:hover, .breadcrumbs .breadcrumb a:focus {font-size: 16px !important;color: #fff;}

@media screen and (max-width:768px) {
    .breadcrumbs .breadcrumb > li + li:before { font-size: 14px;margin-right:1px; }
    .breadcrumbs .breadcrumb a, .breadcrumbs .breadcrumb a:hover, .breadcrumbs .breadcrumb a:focus {font-size: 14px !important; }
    .breadcrumbs .breadcrumb > li { display:inline-block;white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
}
/* END BREADCRUMBS */

/* TITLE */
.title-content {z-index: 1;padding:0;}
.title-content._spec { padding:0 !important;margin-top:0px; }
.title-content picture { position: relative;width:100%;height:100%;padding-bottom:12%;object-fit: cover;margin:0; }
.title-content picture img { width:100%;bottom: 0; height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; right: 0; top: 0; width: 100%;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.title-sub { background-position: center;background-repeat: no-repeat;background-size: cover;padding:0;height: 100px;}

@media screen and (max-width:992px) {
    .title-content { padding-top:50px; }
    .title-content picture { padding-bottom:25%; }
}
@media screen and (max-width:576px) {
    .title-sub { height: 60px;}
    .title-content picture { padding-bottom:30%; }
}
/* END TITLE */

/* PAGER */
.pager { margin-top:60px; }
.pager .btn {margin:10px 5px !important;width: 50px;height: 50px;line-height: 50px;padding: 0;font-size: 18px;font-weight: 400;}
.pager .btn-primary:not(:disabled):not(.disabled).active::after,
.pager .btn-primary:not(:disabled):not(.disabled):active,
.pager .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--second_color);
    border-color: var(--second_color);
}
/* END PAGER */

/* ANIMATIONS */
@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 80%;
  }
  100% {
    scale: 100%;
  }
}
/* END ANIMATIONS */

/* TEXT */
.text-content { -webkit-transition: all 0.15s ease-in;-moz-transition: all 0.15s ease-in;-o-transition: all 0.15s ease-in;transition: all 0.15s ease-in;}
.text-content { padding: 70px 0px; }
.text-content .h1-icon { max-height:100px; }
.text-content .txt p { margin-bottom:25px; }
.text-content .txt ul { list-style: none;padding: 0;}
.text-content .txt ul li { position:relative;padding-left: 15px;}
.text-content .txt ul li:before { font-family: "Font Awesome 5 Free";font-weight: 900;content:'\f111';color: var(--first_color);position: absolute;left: 0px;top: 0px;font-size:8px; }
.text-content .txt a:not(.btn) { border-bottom:2px dotted var(--first_color); }

.text-content .menuList { margin-bottom:0px;border:0; }
.text-content .menuList > li { background:transparent;padding:0;border:0;border-top: 1px solid rgba(0, 0, 0, 0.1); }
.text-content .menuList > li:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important; }
.text-content .menuList > li > a { display:inline-block;font-family: 'Roboto Serif', serif;width:100%;margin: 0;border-radius:0px !important;color:var(--first_color);font-size: 16px;padding: 10px 0 !important;font-weight:300; }
.text-content .menuList > li > a { position:relative;font-size: 16px;color:var(--first_color);font-weight:400;text-transform: none;padding: 5px 5px 5px 15px !important; }
.text-content .menuList > li > a:before { position:absolute;top:5px;left:0;color:var(--fourth_color);font-family: "Font Awesome 5 Free";font-weight: 900;content:'\f0da'; }
.text-content .menuList > li > a i { color:var(--second_color);margin-right:5px;-webkit-transition: all 0.15s ease-in; -moz-transition: all 0.15s ease-in; -o-transition: all 0.15s ease-in; transition: all 0.15s ease-in; }
.text-content .menuList > li.active {}
.text-content .menuList > li.active a { font-weight:600;color:var(--second_color); }
.text-content .menuList > li:hover a { color:var(--second_color); }

.text-content.widePages { padding:0; }
.text-content.widePages .container { max-width:100%;margin:0;padding:0; }
.text-content.widePages .container > .no-gutters > div.image { min-height:400px; background-repeat:no-repeat; background-position: center; -webkit-background-size: cover !important; -moz-background-size: cover !important; -o-background-size: cover !important; background-size: cover !important; }
.text-content.widePages .container > .no-gutters > div { padding:50px; }
.text-content.widePages .container > .no-gutters > div > .col { padding:20px 0;max-width:795px; }

.text-content .subPage { position:relative;z-index:1;height:100%; }
.text-content .subPage .image { width:100%;overflow:hidden;padding:0px; }
.text-content .subPage .image picture { position: relative;width:100%;height:0;padding-bottom:70%;object-fit: cover;margin:0; background: linear-gradient(to right,  rgba(19,19,19,1) 0%,rgba(28,28,28,1) 9%,rgba(17,17,17,1) 32%,rgba(0,0,0,1) 46%,rgba(44,44,44,1) 61%,rgba(38, 38, 38, 1) 81%,rgba(48, 48, 48, 1) 100%) !important;-webkit-transition: all 0.25s ease-in; -moz-transition: all 0.25s ease-in; -o-transition: all 0.25s ease-in; transition: all 0.25s ease-in; }
.text-content .subPage .image picture img { opacity:.65;width:100%;bottom: 0; height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; right: 0; top: 0; width: 100%;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.text-content .subPage .text { position:relative;margin-left: 100px;padding-top:15px;padding-bottom:15px; }
.text-content .subPage .text:before { position:absolute;z-index:2;content:"";top:-60px;left:-60px;width:40px;height:100px;border-left:2px solid var(--bg_color3);border-bottom:2px solid var(--bg_color3); }
.text-content .subPage .text:after { position:absolute;z-index:2;content:"";top:-74px;left:-67px;width:16px;height:16px;border-radius:50%;border:2px solid var(--bg_color3);background-color:rgba(255,255,255,.4); }
.text-content .subPage .text .h3 { }
.text-content .subPage:hover picture { transform: scale(1.04); }
.text-content .subPage:hover picture img { opacity:1; }

.text-content .imgBorder { border:2px solid var(--second_color);padding:0px; }
.text-content .image-block { position:relative;z-index:1;width:100%;padding:0px;overflow:hidden; }
.text-content .image-block.imageMain { overflow: visible; }
.text-content .image-block.imageMain:after { position:absolute;z-index:0;content:"";top:-15px;left:-15px;width:60%;height:50%;border-left:3px solid var(--second_color);border-top:3px solid var(--second_color); }
.text-content .image-block picture { position: relative;width:100%;height:0;padding-bottom:65%;object-fit: cover;margin:0; }
.text-content .image-block picture.bar { padding-bottom:30%; }
.text-content .image-block picture.low { padding-bottom:40%; }
.text-content .image-block picture.high { padding-bottom:75%; }
.text-content .image-block picture.portrait { padding-bottom:135%; }
.text-content .image-block picture img { width:100%;bottom: 0; height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; right: 0; top: 0; width: 100%;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.text-content .image-block picture.normal { padding-bottom:0%;height:auto !important; }
.text-content .image-block picture.normal img { position:relative; }

.text-content .projects {
  display: grid;
  grid-auto-flow: row dense;
  grid-template-columns: 24.5% 25% 25% 25%;
  grid-template-rows: 1fr 1fr;
  gap: 2px 2px;
  /*grid-template-areas:
    "div1 div2 div4 div6"
    "div1 div3 div5 div7";*/
  grid-template-areas:
    "div1 div2 div3 div4"
    "div5 div6 div7 div8";
}
.text-content .projects .div1 { grid-area: div1; }
.text-content .projects .div2 { grid-area: div2; }
.text-content .projects .div3 { grid-area: div3; }
.text-content .projects .div4 { grid-area: div4; }
.text-content .projects .div5 { grid-area: div5; }
.text-content .projects .div6 { grid-area: div6; }
.text-content .projects .div7 { grid-area: div7; }
.text-content .projects .div8 { grid-area: div8; }
.text-content .projects .project * { -webkit-transition: all 0.15s ease-in; -moz-transition: all 0.15s ease-in; -o-transition: all 0.15s ease-in; transition: all 0.15s ease-in; }
.text-content .projects .project { position:relative;z-index:2;height:100%;width:100%;overflow:hidden;padding:0px; }
.text-content .projects .project picture { position: relative;width:100%;height:100%;padding-bottom:60%;object-fit: cover;margin:0; }
/*.text-content .projects .div1 .project picture { padding-bottom:110%; }*/
.text-content .projects .project picture img { width:100%;bottom: 0; height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; right: 0; top: 0;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.text-content .projects .project .pi-text { position:absolute;top:0;right:0;bottom:0;left:0;background-color:var(--accent-secondary-color2);opacity:0; }
.text-content .projects .project:hover .pi-text { opacity:1; }
.text-content .projects .project .pi-text > div { position:absolute;top:15px;right:15px;bottom:15px;left:15px;color:#fff; border: 3px dashed var(--bg_color); }
.text-content .projects .project .pi-text > div > .h4 { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:1.25rem;max-width:90%;width:100%;text-align:center;color:#fff; }

.text-content .projectList { position:relative; }
.text-content .projectList .pi-image picture { position: relative;width:90%;height:100%;padding-bottom:55%;object-fit: cover;margin:0; }
.text-content .projectList .pi-image picture img { width:100%;bottom: 0; height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; right: 0; top: 0;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.text-content .projectList .pi-text { position:relative;width:100%;max-width:650px;margin:0 auto; }
.text-content .projectList .pi-text:before { position:absolute;z-index:2;content:"";top:50%;left:-190px;transform:translateY(-50%);width:190px;height:2px;background-color:var(--bg_color3); }
.text-content .projectList .pi-text:after { position:absolute;z-index:2;content:"";top:50%;left:-210px;transform:translateY(-50%);width:20px;height:20px;border-radius:50%;border:3px solid var(--bg_color3);background-color:rgba(255,255,255,.4); }
.text-content .projectList .order-md-1 .pi-text:before { left:auto;right:-150px;width:150px; }
.text-content .projectList .order-md-1 .pi-text:after { left:auto;right:-170px; }
.text-content .projectList .pi-text .h3 { font-size:2.5rem; }

.owl-carousel-products { position:relative; }
.owl-carousel-products .owl-stage-outer { height:auto !important; }
.owl-carousel-products .owl-item { }
.owl-carousel-products .owl-nav { margin-top: 0px; }
.owl-carousel-products .owl-nav [class*="owl-"] { cursor:pointer;position:absolute;top:50%;transform:translateY(-50%);font-size:1.0rem !important;color:var(--bg_color) !important;background-color:var(--first_color) !important;width:35px;height:35px;border-radius:50%; }
.owl-carousel-products .owl-nav .owl-prev { left:-50px; }
.owl-carousel-products .owl-nav .owl-next { right:-50px; }

.owl-carousel-mini { position:relative; }
.owl-carousel-mini .owl-stage-outer { height:auto !important; }
.owl-carousel-mini .owl-item { }
.owl-carousel-mini .owl-nav { margin-top: 0px; }
.owl-carousel-mini .owl-nav [class*="owl-"] { cursor:pointer;position:absolute;top:50%;transform:translateY(-50%);font-size:10px !important;color:var(--bg_color) !important;background-color:var(--first_color) !important;width:25px;height:25px;line-height: 1.1 !important;border-radius:50%; }
.owl-carousel-mini .owl-nav .owl-prev { left:5px; }
.owl-carousel-mini .owl-nav .owl-next { right:5px; }

@media screen and (max-width:1200px) {
    .text-content { padding: 40px 0px; }
    .text-content .home-item2 { padding:15px; }
    .text-content .home-item2 .hi-text { margin-top:5px;font-size: 16px; }
}
@media screen and (min-width:992px) {
    .col-5 { -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%;}
}
@media screen and (max-width:992px) {
    .text-content { padding: 40px 0px; }
    .text-content .txt p { margin-bottom:15px; }

    .text-content .projects {
      display: grid;
      grid-auto-flow: row dense;
      grid-template-columns: 49.75% 49.75%;
      grid-template-rows: 1fr 1fr 1fr 1fr;
      gap: 2px 2px;
      grid-template-areas:
        "div1 div2"
        "div1 div3"
        "div4 div5"
        "div6 div7";
    }
}
@media screen and (min-width:768px) {
    .text-content .projectList .order-md-1 .pi-text { text-align:right; }
}
@media screen and (max-width:768px) {
    .text-content.widePages .container > .no-gutters > div { padding:15px; }
    .text-content.widePages .container > .no-gutters > div.image { min-height:300px; }
    .owl-carousel-products .owl-nav .owl-prev { left:-15px; }
    .owl-carousel-products .owl-nav .owl-next { right:-15px; }
    .text-content .projectList .pi-text:before { top:-45px !important;left:20px !important;right:auto !important;bottom:auto !important;transform: none;width:2px !important;height:50px !important; }
    .text-content .projectList .pi-text:after { top:-56px !important;left:15px !important;right:auto !important;bottom:auto !important;transform: none;width:12px;height:12px;border:2px solid var(--bg_color3); }
    .text-content .projectList .pi-image picture { width:100%; }
    .text-content .projectList .pi-text .h3 { font-size:1.5rem; }
    .text-content .subPage .text { margin-left: 60px; }
    .text-content .subPage .text:before { top:-45px;left:-40px;width:30px;height:70px; }
    .text-content .subPage .text:after { top:-57px;left:-46px;width:14px;height:14px; }
}
@media screen and (max-width:576px) {
    .text-content { padding: 30px 0px; }
    .text-content .owl-carousel .owl-dots { padding-left: 0px; }
    .owl-carousel-reviews .owl-nav .owl-prev { left:-15px; }
    .owl-carousel-reviews .owl-nav .owl-next { right:-15px; }
}
/* END TEXT CONTENT */

/* SCROLL */
.our-scrolling-ticker{ position: relative; background: var(--first_color); padding: 20px 0; z-index: 1; }

.scrolling-ticker-box{
	--gap: 50px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 40s linear infinite;
}

.scrolling-content span{
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	vertical-align: middle;
}

.scrolling-content span img{
	width: 100%;
	max-width: 30px;
	margin-right: 20px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}
/* END SCROLL */

/* BLOCKS*/
.block { background-position: center; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; background-repeat: no-repeat; }
.block:not(.dark,.light,.widePages) { padding:50px 0; }
.block.product picture { position: absolute;z-index:0;top:0;left:0;right:0;bottom:0;object-fit: cover;margin:0; }
.block.product picture img { width:100%;bottom: 0; height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; right: 0; top: 0; width: 100%;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.block.product .bg-dark { position: absolute;z-index:1; top: 0; bottom: 0; left: 0; right: 0; background: linear-gradient(to right,  rgba(19,19,19,1) 0%,rgba(28,28,28,1) 9%,rgba(17,17,17,1) 32%,rgba(0,0,0,1) 46%,rgba(44,44,44,1) 61%,rgba(38, 38, 38, 1) 81%,rgba(48, 48, 48, 1) 100%) !important;opacity: .65; z-index: 1; }
.block.product .container { position:relative;z-index:2;min-height:500px; }
.block.product .container .img-text { display:inline-block;z-index:3;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);padding:30px 20px;max-width:100% !important;width:1200px; }
.block.product .container .img-text .title { font-family:var(--accent-font);color:#fff !important;font-size:2.5rem;text-shadow: 0px 0px 6px rgba(0,0,0,0.7);margin-bottom:15px !important;line-height:1.3; }
.block.product .container .img-text p { color:#fff !important;font-weight:500;text-shadow: 0px 0px 6px rgba(0,0,0,0.4);margin-bottom:15px !important; }
.block.product .container .img-text.center { margin:0 auto !important;text-align:center; }
.block.product .container .img-text.right { margin:0 0 0 auto !important;text-align:right; }
.block h3 {margin-top: 0px;margin-bottom: 20px; /*color: var(--second_color)!important;*/ }
.block .quoteTxt {position: relative;z-index:2;font-size:2.75rem;color:var(--text_color);line-height: 1.3;font-weight:800;padding:0 20px 0 20px;margin-left:20px;margin-right:0px;top: 50%;transform: translateY(-50%);}
.block .quoteTxt:before {position: absolute;content:"";z-index:-1;top:-80px;right:-10%;width:110px;height:110px;opacity:.6;background-image:url('../images/icon/icon-quotes_light.png');background-position: center; -webkit-background-size: contain; -moz-background-size: contain; background-size: contain; background-repeat: no-repeat; }

.block .text { position:relative;padding: 50px 80px; }
.block.light .text > .text-inner { position:relative;z-index:2; }
.block.dark .text { background-color:var(--bg_color);color:var(--bg_color); }
.block .qLeft > .quoteTxt {text-align:right;padding: 0 40px 0 20px;margin-left:0;margin-right:20px;border-left:0;position: relative;top: 50%;transform: translateY(-50%);font-size:2.75rem;line-height:1.3;}
.block .qLeft > .quoteTxt:before { right:auto;left:-10%; }
.block.text .btn {margin-top:15px;}
.block .sub-title { font-size: 1.0rem;color: var(--text_color);text-transform: uppercase;font-weight: 600;position: relative;margin-bottom: 10px; }
.block.dark .sub-title { color: var(--first_color); }

.block.text { }
.block.light,.block.dark { padding-top:20px;padding-bottom:40px; }
.block.light .container { background-color: var(--bg_color2) !important;padding-top:40px;padding-bottom:40px; }
.block.dark .container { background-color:var(--bg_color3);padding-top:40px;padding-bottom:40px; }

.block.dark p { }
.block.dark .quoteTxt { color: var(--bg_color)!important; }

.block.text .image-block picture { width:80%;height:auto !important;padding-bottom:0 !important;overflow:hidden;margin:20px auto !important; }
.block.text .image-block picture img { position:relative !important; }
.block.text .image {margin-top:10px;margin-bottom:10px;text-align:center;overflow: hidden;}
.block.text.widePages .image {margin-top:0px;margin-bottom:0px;}
.block.text .image img { max-width:85%;max-height:500px; }
.block.text .content { margin-top:30px;margin-bottom:30px;padding:0 20px;max-width:650px; }
.block.text .text ul { list-style: none;padding: 0;}
.block.text .text ul li { position:relative;padding-left: 15px;}
.block.text .text ul li:before { font-family: "Font Awesome 5 Free";font-weight: 900;content:'\f0da';color: var(--first_color);position: absolute;left: 2px;top: -1px; }
.block.text a {}

.text-content.dark .container { background-color:var(--bg_color3);position:relative; }
.footer > .bg-pattern3,
.text-content.dark .bg-pattern3 {
  position:absolute;bottom:0;right:0;z-index:0;
  width:50%;height:40%;
  /* Add your background pattern here */
  background-color:var(--bg_color3);
  opacity: 0.15;
  background:
    radial-gradient(
      circle,
      transparent 20%,
      var(--bg_color3) 20%,
      var(--bg_color3) 80%,
      transparent 80%,
      transparent
    ),
    radial-gradient(
        circle,
        transparent 20%,
        var(--bg_color3) 20%,
        var(--bg_color3) 80%,
        transparent 80%,
        transparent
      )
      12.5px 12.5px,
    linear-gradient(var(--hover_color) 1px, transparent 1px) 0 -0.5px,
    linear-gradient(90deg, var(--hover_color) 1px, var(--bg_color3) 1px) -0.5px 0;
  background-size:
    25px 25px,
    25px 25px,
    12.5px 12.5px,
    12.5px 12.5px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 70% 60%,
    #000 60%,
    transparent 100%
  );
}
.text-content.dark h2 { color:var(--first_color) !important; }

@media (min-width: 1200px){
    .block.product .container { min-height:600px; }
    .block.product .container .img-text .title { font-size:3.5rem; }
}
@media (max-width: 1100px){
    .block .quoteTxt { font-size:2.0rem !important; }
    .block .quoteTxt:before { top:-50px;left:-10%;width:90px;height:90px; }
    .block .qLeft > .quoteTxt:before { right:auto;left:-10%; }
}
@media (min-width: 992px){
    .text-content.widePages.block .container > .no-gutters > div > .col { max-width:655px; }
}
@media (max-width: 992px){
    .block:not(.dark,.light,.widePages) { padding:20px 0; }
    .block .container { padding-right:10px;padding-left:10px; }
    .block.text .image { margin-top:10px;margin-bottom:10px; }
    .block.text .image img { float:none !important;margin:0 !important; }

    .block.text .content { margin-top:15px;margin-bottom:15px;padding:0; }
    .block .content .subtitle { font-size:17px;margin-bottom:5px; }
    .block .content h3 { font-size: 23px;margin-top:5px;margin-bottom:10px; }
    .block .content p {}

    .block .quoteTxt {text-align:center !important;padding:20px !important;border:0px !important;}
}
@media (max-width: 768px){
    .block .text {padding: 15px;margin-bottom: 50px; border:3px solid var(--second_color); }
    .block .quoteTxt {font-size: 1.5rem !important;margin:0 0 30px 0 !important;}
    .block .quoteTxt:before { top:-20px;left:10px;width:50px;height:50px; }
    .block .qLeft > .quoteTxt:before { right:auto;left:10px; }
    .block.product .container .img-text .title { font-size:1.5rem; }
    .block.product .container .img-text p { margin-bottom:15px !important;font-size:1.0rem; }
    .block.product .container .img-text .btn { font-size:16px;padding:.5rem 1.25rem; }

}
@media (max-width: 576px){
    .block:not(.dark,.light,.widePages) { padding:0px 0; }
    .block.light,.block.dark { padding-top:0px;padding-bottom:0px; }
    .block.product .container { min-height: 200px; }
    .block.product .container .img-text { position: relative !important;left:auto; top:auto;transform: none !important;padding:40px 15px;min-width:0; }
    .block.product .container .img-text h3 { font-size:2.0rem; }
    .block.text .content { margin-top:5px;margin-bottom:5px;padding:5px 0px !important; }
    .block.text .content.bg { margin-top:-40px;padding-top:45px !important; }
    .block.text .subtitle {font-size: 17px;}
    .block .content h3 {font-size: 20px;margin-top:5px;}
    .block .content p {}
    .block.text .image { margin-top:5px;margin-bottom:5px;padding:5px 0 !important;text-align:center !important; }
    .block.text .image img { width:100%;margin:0 auto !important; }
    .block .quoteTxt {}
}

/*END BLOCKS*/

/* NEWS */
.news-content { padding: 70px 0; }
.news-content.light { background-color: var(--bg_color2) !important;}
.news-content .news-item * { -webkit-transition: all 0.15s ease-in;-moz-transition: all 0.15s ease-in;-o-transition: all 0.15s ease-in;transition: all 0.15s ease-in;}
.news-content .news-item { position:relative;z-index:1;height:100%;overflow:hidden;background-color:var(--bg_color3);border-radius:4px;box-shadow: 0px 4px 25px 0px rgba(6, 19, 25, .08); }
.news-content .news-item:hover { background-color:var(--second_color); }
.news-content .news-item .ni-image { position:relative;width:100%;overflow:hidden;padding:0px; }
.news-content .news-item .ni-image picture { position: relative;width:100%;height:0;padding-bottom:50%;object-fit: cover;margin:0; }
.news-content .news-item .ni-image picture img { width:100%;bottom: 0; height: 100% !important; left: 0; object-fit: cover; object-position: center; position: absolute; right: 0; top: 0; width: 100%;-webkit-transition: all 0.3s ease-in; -moz-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; }
.news-content .news-item .ni-image .ni-date { position:absolute;bottom:0;left:0;padding:5px 20px 5px 10px;background-color:var(--first_color);color:#fff;font-weight:800;font-size:14px;text-transform:uppercase; }
.news-content .news-item .ni-text { position:relative; }
.news-content .news-item .ni-text * { -webkit-transition: all 0.3s ease-in;-moz-transition: all 0.3s ease-in;-o-transition: all 0.3s ease-in;transition: all 0.3s ease-in; }
.news-content .news-item .ni-text > div { padding:25px 25px 60px 25px;position:relative;z-index:2; }
.news-content .news-item .ni-text .h4 { color:var(--first_color);font-size:1.25rem;font-weight:700;text-transform:none;margin-bottom:10px; }
.news-content .news-item .ni-text p { margin-bottom:0px;font-size:16px;line-height:23px;color:#fff; }
.news-content .news-item .ni-button { position:absolute;bottom:20px;left:25px; }

@media screen and (max-width:1100px) {
    .news-content { padding: 60px 0; }
    .news-content .news-item .ni-image picture { padding-bottom:65% !important; }
}
@media screen and (min-width:992px) {
    .news-content .news-item .ni-text { height:100%; }
}
@media screen and (max-width:992px) {
    .news-content { padding: 40px 0; }
}
@media screen and (min-width:768px) {
}
@media screen and (max-width:768px) {
    .news-content .news-item .ni-text > div { padding:15px 15px 50px 15px; }
    .news-content .news-item .ni-button { bottom:15px;left:15px; }
}
@media screen and (max-width:576px) {
    .news-content { padding:30px 0px; }
}
/* END NEWS */

/* PARTNERS */
.partners * {-webkit-transition: all 0.4s ease-in;-moz-transition: all 0.4s ease-in;-o-transition: all 0.4s ease-in;transition: all 0.4s ease-in;}
.partners { padding: 60px 0px; }
.partners .owl-stage { margin: 0 auto !important; }
.partners .item { padding:0 30px; }
.partners img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);
}
.partners img:hover {
    filter: none;
    -webkit-filter: none;
}
@media screen and (max-width:576px) {
    .partners .item { padding:0 10px; }
}
/* END PARTNERS */

/* SERVICE CONTENT */
.service-item{
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 18px;
	overflow: hidden;
}

.service-image a,
.service-image picture{
    display: block;
}

.service-image picture:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(23, 30, 46, 0) 48.21%, rgba(23, 30, 46, 0.8) 100%);
    z-index: 1;
}

.service-image img{
    width: 100%;
	aspect-ratio: 1 / 0.99;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.service-body{
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	z-index: 1;
}

.service-content{
	margin-bottom: 15px;
}

.service-content h3{
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.service-content h3 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.service-content h3 a:hover{
	color: var(--first_color);
}

.services-pagination{
	position: relative;
	text-align: center;
	margin-top: 60px;
}

.services-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.services-pagination .swiper-pagination-bullet-active{
	width: 30px;
    background: var(--first_color);
	border-radius: 12px;
}

.section-footer-text{
    margin-top: 40px;
    text-align: center;
}

.section-footer-text p{
    margin-bottom: 0;
}

.section-footer-text p a{
    color: var(--first_color);
    text-transform: capitalize;
    font-weight: 500;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
    color: var(--primary-color);
}

@media screen and (max-width:1400px) {
}
@media screen and (min-width:992px) {
}
@media screen and (max-width:992px) {
}
@media screen and (max-width:768px) {
}
@media screen and (max-width:576px) {
}
/* END SERVICE CONTENT */

#map-canvas {
    height: 400px;
    float: left;
    width: 100%;
}

/* COPYRIGHT & FOOTER CONTENT */
.footer {float: left;position: relative;width: 100%;background: var(--bg_color3);padding: 30px 0; color:var(--text_color); }
.footer > .bg-pattern3 { width:90%;
  mask-image: radial-gradient(
    ellipse 70% 60% at 60% 40%,
    #000 60%,
    transparent 100%
  ); }
.footer ul { list-style: none;padding: 0 0 10px 0; }
.footer ul li { position:relative; margin-bottom:5px;}
.footer ul li a { position:relative;padding-left: 20px;color:var(--text_color);font-weight:600; }
.footer ul li a:hover { color:var(--first_color); }
.footer ul li a:before { font-weight: 900;content:'+';color:var(--first_color);font-size:20px;position: absolute;left: 0;top: -5px;-webkit-transition: all 0.15s ease-in;-moz-transition: all 0.15s ease-in;-o-transition: all 0.15s ease-in;transition: all 0.15s ease-in; }
.footer .h4 { font-size:1.25rem;color:var(--text_color); }
.footer .contact a { color:var(--first_color);font-weight:600; }
.footer .contact a:hover {color:var(--text_color);}
.social-icons a { margin: 0;color: var(--text_color);width: 40px;line-height: 42px;height: 40px;margin-right: 5px;border-radius:5px;float: left;text-align: center;background-color: var(--first_color);}
.social-icons a i {color: var(--text_color);font-weight:400; }
.social-icons a:hover i { color: var(--second_color) !important; }
.social-icons a:last-child { margin-right: 0; }
.footer img { margin-top:-4px; }

.copyright { font-size:16px; }
.copyright a { color:#fff; }
.copyright a:hover {color:var(--first_color);}
.copyright img { margin-top:-4px; }

@media screen and (max-width:992px) {
}
@media screen and (max-width:576px) {
    .footer { padding: 30px 0 10px 0;}
    .copyright { font-size:14px; }
}
/* END COPYRIGHT & FOOTER CONTENT */

#backTop {
  display:none;position:fixed;z-index:100;
  bottom:15px;right:15px;line-height:48px;
  text-align:center;
  width:50px;height:50px;
  background:var(--first_color);color:#fff;
  font-size:25px;cursor:pointer;border-radius:4px;
  -webkit-transition: all 0.15s ease-in;-moz-transition: all 0.15s ease-in;-o-transition: all 0.15s ease-in;transition: all 0.15s ease-in;
}
#backTop:hover { background:var(--third_color); }
@media screen and (max-width:992px) {
    #backTop { line-height:38px; width:40px;height:40px; font-size:20px;bottom:65px; }
}

.modal-backdrop { }
.modal-backdrop.show {
    opacity: .6;
}
.modal-content { padding:0px; }
.modal-body { padding:15px; }
#fav-list li { border-top:1px solid #777777; }
#fav-list li span { margin-right:10px;cursor:pointer; }
#fav-list li a { color:#171717;font-size:15px; }

/* FORMS */
.forms label { display:inline-block;width:100%;margin-bottom:5px;letter-spacing:0px; }
.forms span#max-length-span { float:right; }
.forms .sel,
.forms .fileInput1,
.forms input[type="email"],
.forms input[type="text"] {
    position:relative;
    height: 40px;
    margin: 0 0 5px 0;
    padding: 5px 15px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    outline: 0;
    background-color: #fff;
    border: 1px solid #DDDFDF;
    border-radius: 0px;
    font-size: 14px;
    line-height: 1.2;
    vertical-align: top;
    cursor: pointer;
    box-shadow: none !important;
}
.forms textarea {
    position:relative;
    margin: 0 0 5px 0;
    padding: 5px 15px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    outline: 0;
    background-color: #fff;
    border: 1px solid #DDDFDF;
    border-radius: 0px;
    font-size: 14px;
    line-height: 1.2;
    vertical-align: top;
    cursor: pointer;
    box-shadow: none !important;
}
.forms .sel__box {
    position: absolute;
    top: 60px;
    left: -1px;right:-1px;
    display: none;
    list-style-type: none;
    text-align: left;
    font-size: 1em;
    background-color: #FFF;
    box-sizing: border-box;
    z-index:2;
    border: 1px solid hsla(32,18%,56%,.3);
    border-radius: 6px;
    padding:15px 5%;
    max-height:350px;
    overflow-y: auto;
}

.forms .sel.active .sel__box {
    display: block;
}

.forms .sel__box__options {
    display: list-item;
    font-size: 16px;
    color: #9c8b7d;
    padding: 15px 0px;
    user-select: none;
    position:relative;
    border-bottom:1px solid #B1B1B1;
}
.forms .sel__box__options:last-child {
    border-bottom:0px solid #B1B1B1;
}

.forms .sel__box__options:hover {
    color: #63A414;
}

.span_pseudo, .chiller_cb span:before, .chiller_cb span:after {
    content: "";
    display: inline-block;
    background: #63A414;
    width: 0;
    height: 0.2rem;
    position: absolute;
    transform-origin: 0% 0%;
}

.chiller_cb {
    position: relative;
    /*height: 2rem;*/
    display: flex;
    align-items: center;
    padding-left:0 !important;
}
.chiller_cb input {
    display: none;
}
.chiller_cb input:checked ~ span {
    background: #ffff;
    border-color: #63A414;
}
.chiller_cb input:checked ~ span:before {
    width: 1rem;
    height: 0.15rem;
    transition: width 0.1s;
    transition-delay: 0.3s;
}
.chiller_cb input:checked ~ span:after {
    width: 0.4rem;
    height: 0.15rem;
    transition: width 0.1s;
    transition-delay: 0.2s;
}
.chiller_cb input:disabled ~ span {
    background: #DCDCDC;
    border-color: #dcdcdc;
}
.chiller_cb input:disabled ~ label {
    color: #dcdcdc;
}
.chiller_cb input:disabled ~ label:hover {
    cursor: default;
}
.chiller_cb label {
    padding-left: 2rem;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-bottom:0;
}
.chiller_cb span {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #ccc;
    position: absolute;
    left: 0;
    transition: all 0.2s;
    z-index: 1;
    box-sizing: content-box;
}
.chiller_cb span:before {
    transform: rotate(-55deg);
    top: 1rem;
    left: 0.37rem;
}
.chiller_cb span:after {
    transform: rotate(35deg);
    bottom: 0.35rem;
    left: 0.2rem;
}

@media screen and (max-width:767px) {
    .forms .sel,
    .forms .fileInput1,
    .forms input[type="email"],
    .forms input[type="text"] {
            height: 30px;
    }
}

/* COOKIEBAR */
#cookie-bar {background:rgba(238, 238, 238, 1);border-top:1px solid #BEBEBE;height:auto;line-height:28px;color:#333;text-align: center;padding:10px 15px;}
#cookie-bar.fixed {position:fixed;z-index:100;top:auto !important;left:0;bottom:0;max-width: 100%;width:100%;border-radius:0px;}
#cookie-bar.fixed.bottom {bottom:0; top:auto;}
#cookie-bar p {margin:0; padding:0;}
#cookie-bar a {}
#cookie-bar a.link {color: #ffffff;display:inline-block;border-radius: 0;text-decoration:none;background-color: var(--second_color);padding: 2px 20px;margin:2px 5px;min-width:100px;font-size:14px;font-weight:bold;text-transform: uppercase;}

#cookie-bar .cb-enable {background-color: var(--first_color);color:#fff;border-radius:0;display:inline-block;text-decoration:none;padding:2px 6px;margin:2px 5px;min-width:100px;font-size:14px;font-weight:bold;text-transform: uppercase;}
#cookie-bar .cb-enable i{margin: 0;}
#cookie-bar .cb-enable:hover {color:#fff;}
/* END COOKIEBAR */

.fancybox-overlay { background-image: url('../images/background-lines.png'); background-color: rgba(0,0,0,0.85); }
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}


/* Mobiele navigatie / offcanvas/slidemenu */
    .mobile-nav {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: var(--second_color);
      z-index: 1050;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      overflow-x: hidden;
      overflow-y: auto;
    }
    .mobile-nav.active {
      transform: translateX(0);
    }
    .mobile-nav .nav-level {
      position: absolute;
      top: 0px; left: 100%;
      width: 100%; height: 100%;
      background: var(--bg_color3);
      transition: transform 0.3s ease;
    }
    .mobile-nav .levelMain { top:60px !important; }
    .mobile-nav .nav-level.active {
      transform: translateX(-100%);
    }
    .mobile-nav .nav-header {
      display: flex;
      align-items: center;
      padding: 1rem;
      border-bottom: 1px solid rgba(0,0,0,.2);
      background: var(--second_color);
      color: var(--first_color);
    }
    .mobile-nav .back-btn {
      background: none;
      border: none;
      font-size: 1.1rem;
      margin-right: 1rem;
      color:var(--text_color);
    }
    .btn-close-mobile {
        position:absolute !important;opacity:1 !important;z-index:30;cursor:pointer;top:10px;right:15px;width:30px;height:30px;line-height:1.2;padding:5px;
    }
    .mobile-toggle {
      position:absolute !important;opacity:1 !important;z-index:30;cursor:pointer;padding:0;font-size:16px;top:10px;right:15px;width:40px;height:40px;line-height:40px;border:0px solid var(--first_color) !important;background-color: var(--first_color)!important;color: var(--bg_color);border-radius:4px;outline:0px !important;
    }
    .breadcrumb-mobile {
      margin: 0;
      padding: 0 1rem;
      font-size: 0.9rem;
      color:var(--text_color);
    }
    /*.breadcrumb-mobile span:not(:last-child)::after {
      content: " > ";
      color: var(--first_color);
    }*/
    .nav-level .list-group-item {
      cursor: pointer;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,.2);
      padding: 0;
      background-color: transparent;
      color:var(--text_color);
    }

    .nav-level .list-group-item .nav-link { color:var(--text_color);padding:10px 15px; }
    .nav-level .list-group-item .nextLevel { display:block;position:absolute;border-left:1px solid rgba(0,0,0,.2);right:0;top:0;bottom:0;cursor:pointer;width:40px; }
    .nav-level .list-group-item .nextLevel i { position:absolute;left:50%;top:50%;transform:translate(-50%,-50%); }

    @media (min-width: 768px) {
      .mobile-nav.active { width:340px;left:auto;right:0; }
    }