/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
0.0 Resets
1.0 Typography
2.0 Basic
3.0 Forms
4.0 Basic layout
	4.1 Header
	4.2 Content
	4.3 Footer
5.0 Navigation
	5.1 Top Navigation
	5.2 Main Navigation
	5.3 Social Navigation
	5.4 Footer Navigation
	etc.
6.0 Homepage
7.0 Overview page
8.0 Article page
9.0 Custom pages
	9.1 Custom page X
	9.2 Custom page Y
	9.3 Custom page Z
	etc.
10.0 Media Queries
	10.1 Large desktop
	10.2 Portrait tablet to landscape and desktop
	10.3 Landscape phone to portrait tablet
	10.4 Landscape phones and down	
--------------------------------------------------------------*/
@import url('all.min.css');

/*--------------------------------------------------------------
0.0 Resets
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/

@font-face{
	font-family: 'Catamaran';
	src: url('../webfonts/Catamaran-Regular.woff2');
	font-weight: 400;
}

@font-face{
	font-family: 'Catamaran';
	src: url('../webfonts/Catamaran-Medium.woff2');
	font-weight: 500;
}

@font-face{
	font-family: 'Catamaran';
	src: url('../webfonts/Catamaran-SemiBold.woff2');
	font-weight: 600;
}

@font-face{
	font-family: 'Catamaran';
	src: url('../webfonts/Catamaran-Bold.woff2');
	font-weight: 700;
}

@font-face{
	font-family: 'Catamaran';
	src: url('../webfonts/Catamaran-ExtraBold.woff2');
	font-weight: 800;
}

@font-face{
	font-family: 'Catamaran';
	src: url('../webfonts/Catamaran-Black.woff2');
	font-weight: 900;
}

/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
  --main-text: #12162C;
  --main-color: #19ADE8;
  --box-shadow: 7px 18px 95px rgba(32, 112, 143, .25);
}

body {
  font-family: 'Catamaran';
  font-weight: 400;
  color: var(--main-text);
  padding-top: 173px;
  counter-reset: step-counter;
  position: relative;
}

body:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  z-index: 900;
  background: rgba(0, 0, 0, 0);
  transition: all .5s;
  pointer-events: none;
}

body.darken:after {
  background: rgba(0, 0, 0, .6);
}

a {
  text-decoration: none;
  color: var(--main-color);
  display: inline-block;
  transition: all .3s;
}

a:hover {
  color: var(--main-color);
  opacity: .6;
}

.btn {
  font-weight: 600;
  color: #fff;
  padding: 14px 67px 12px 25px;
  background: var(--main-color);
  border-radius: 0;
  border: none;
  text-transform: uppercase;
  font-size: 17px;
  border-radius: 8px;
  transition: all .3s;
  position: relative;
}

.btn:after {
  content: "";
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 18px;
  background-image: url(../images/arrows.svg);
  background-repeat: no-repeat;
}

.btn:hover {
  color: #fff;
  opacity: 1;
  background: #005CB9;
}

.btn i {
  margin-left: 8px;
}

.btn:active,
.btn:focus {
  color: #fff;
  background: var(--main-color);
  border: none;
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  margin-bottom: 0;
  text-transform: uppercase;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

strong {
  font-weight: 800;
}

ul {
  padding: 0;
  margin: 0;
}

ol {
  list-style-type: decimal;
}

ol li {
  display: list-item;
  list-style: decimal;
}

li {
  list-style: none;
}

section {
  padding: 80px 0;
}

.section-title {
  padding-bottom: 30px;
}

.section-title p {
  margin-bottom: 0;
}

.form-control {
  border-radius: 0;
}

.form-control:focus {
  color: var(--main-text);
  border-color: var(--main-color);
  box-shadow: none;
}

/*--------------------------------------------------------------
3.0 Forms
--------------------------------------------------------------*/
label {
  font-size: 15px;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 4px;
}

.form-control {
  padding: 15px 12px;
}

.grecaptcha-badge {
  visibility: hidden;
}


/*--------------------------------------------------------------
4.0 Basic layout
--------------------------------------------------------------*/

/* Basis lay-out, toepasbaar op alle pagina's. Uitzonderingen in bijv. content komen later in het document. */


/*------------------------------
4.1 Header
------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgba(184,235,255,1) 100%);  
  box-shadow: var(--box-shadow);
  z-index: 999;
}

header .wrapper {
  padding: 25px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;;
  margin: 0 auto;
  position: relative;
  transition: all .3s;
}

header.switch .wrapper {
  padding: 15px 5%;
}

header .logo {
  width: 250px;
}

header .middle .phone {
  display: flex;
  align-items: center;
  color: var(--main-text);
  font-size: 18px;
  gap: 14px;
  transition: all .3s;
  height: 54px;
  overflow: hidden;
}

header.switch .middle .phone {
  height: 0;
}

header .middle .phone img {
  width: 50px;
  background: var(--main-color);
  border-radius: 5px;
  padding: 8px;
}

header .middle .phone a {
  color: var(--main-text);
  display: block;
}

header .middle .phone .number {
  font-size: 19px;
  font-weight: 700;
}

header .middle .main-menu {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  align-items: center;
}

header.switch .middle .main-menu {
  margin-top: 0;
}

header .middle .main-menu li {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

header .middle .main-menu li a {
  color: var(--main-text);
}

header .middle .main-menu li span a {
  color: #fff;
}

header .middle .main-menu li.dropdown {
  background: var(--main-text);
  color: #fff;
  cursor: pointer;
  padding: 7px 18px 5px 18px;
  border-radius: 8px;
  position: relative;
}

header .middle .main-menu li.dropdown.alt {
  background: none;
  color: var(--main-text);
  padding: 5px 0;
}

header .middle .main-menu li.dropdown:after {
  content: "\f078";
  position: relative;
  padding-left: 8px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}

header .middle .main-menu li.dropdown .drop-menu {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 148px;
  left: 0;
  display: none;
}

header.switch .middle .main-menu li.dropdown .drop-menu {
  top: 72px;
}

header.switch .middle .main-menu li:nth-of-type(3).dropdown.small.small:hover .drop-menu,
header.switch .middle .main-menu li:nth-of-type(4).dropdown.small.small:hover .drop-menu {
  top: 72px !important;
}

header .middle .main-menu li.dropdown:hover .drop-menu {
  display: block;
}

header .middle .main-menu li.dropdown .drop-menu .wrapper {
  justify-content: center;
  padding: 40px 2%;
  position: relative;
  align-items: flex-start;
}

header .middle .main-menu li.dropdown.buy .drop-menu .wrapper {
  max-width: 1500px;
}

header .middle .main-menu li.dropdown .drop-menu .wrapper:after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 60px);
  background: var(--main-color);
  left: 50%;
  transform: translateX(-50%);
}

header .middle .main-menu li.dropdown .drop-menu .wrapper.others:after {
  display: none;
}


header .middle .main-menu li.dropdown.buy .drop-menu .wrapper:after {
  display: none;
}

header .middle .main-menu li.dropdown .drop-menu h3 {
  color: var(--main-text);
  margin-bottom: 20px;
  flex: 0 0 100%;
}

header .middle .main-menu li.dropdown .drop-menu .wrapper.others h3 {
  text-align: center;
}

header .middle .main-menu li.dropdown.buy .drop-menu h3 {
 text-align: center;
}

header .middle .main-menu li.dropdown .drop-menu ul {
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  flex: 0 0 50%;
}

header .middle .main-menu li.dropdown .drop-menu ul li {
  text-transform: capitalize;
  font-weight: 600;
  padding: 10px 0; 
  font-size: 18px;
  flex-basis: 30%;
}

header .middle .main-menu li.dropdown.alt .drop-menu ul li {
  flex-basis: 40%;
  position: relative;
}

header .middle .main-menu li.dropdown.alt .drop-menu ul li.sub:after {
  content: "";
  left: 0;
  position: absolute;
  top: 10px;
  height: 100%;
  width: 1px;
  background: #bbe0ff;
}

header .middle .main-menu li.dropdown.alt .drop-menu ul li.sub.last:after {
  height: calc(100% - 20px);
}


header .middle .main-menu li.dropdown .drop-menu ul li a {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 100%;
}

header .middle .main-menu li.dropdown .drop-menu ul li a img {
  width: 40px;
  flex: 0 0 40px;
  max-height: 25px;
}

header .drop-menu ul.buy,
header .drop-menu ul.buy-side {
  flex: unset !important;
}

header .drop-menu ul.buy-side {
  position: relative;
  padding-left: 50px !important;
  padding-right: 5% !important;
}

header .drop-menu ul.buy-side:after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 20px);
  background: var(--main-color);
  left: 0%;
  transform: translateX(-50%);
}

.buy-side {
  width: fit-content !important;
  flex-direction: column !important;
  gap: 15px !important;
  display: flex;
}

header .drop-menu ul.buy h3,
header .drop-menu ul.buy-side h3 {
  text-align: left !important;
}

.buy-side h3 .plus {
  position: relative !important;
  top: -14px !important;
  right: -5px !important;
  font-size: 25px !important;
  color: var(--main-color) !important;
}

.buy-side .small-btn {
  white-space: nowrap !important;
  text-transform: none !important;
  font-size: 17px !important;
  margin-left: 15px !important;
}

.buy-side a i {
  color: var(--main-color) !important;
  margin-right: 10px !important;
  margin-left: 0 !important;
  width: 24px !important;
  text-align: center !important;
  font-size: 20px !important;
}

.buy-side .btn {
  padding: 14px 14px 12px !important;
  width: fit-content !important;
  color: var(--main-text) !important;
  border: 1px solid var(--main-text) !important;
  background: none !important;
  text-align: left !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.buy-side .btn i {
  margin-right: 10px !important;
  margin-left: 0 !important;
  font-size: 24px !important;
  font-size: 20px !important;
}

.buy-side .btn:after {
  display: none !important;
}

.buy-side .btn:hover {
  background: #d2ebfc !important;
}

header .middle .main-menu li.dropdown.small {
  background: none;
  color: var(--main-text);
  padding: 5px 0;
}

header .middle .main-menu li.dropdown.small > a {
  padding-bottom: 4px !important;
  transform: translateY(3px) !important;
}

header .middle .main-menu li.dropdown.small .arrow-down {
  transform: translateY(3px) !important;
}

header .middle .main-menu li.dropdown.small:after {
  display: none;
}

header .middle .main-menu li.dropdown.small .drop-menu {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 40px;
  padding: 10px;
}

header .middle .main-menu li.dropdown.small .drop-menu li {
  text-transform: capitalize;
  font-weight: 600;
  padding: 20px 10px;
  font-size: 18px;
  padding: 10px;
}

header .middle .main-menu > li.active {
  position: relative;
}

header .middle .main-menu > li.active:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
}

header .middle .main-menu li.dropdown.small.categories {
  cursor: unset;
}

header .middle .main-menu li.dropdown.small.categories > a,
header .middle .main-menu li.dropdown.small.categories > i {
  cursor: pointer;
}

header .middle .main-menu li.dropdown.small.categories:hover .drop-menu {
  column-gap: 30px;
  position: fixed;
  width: 100%;
  background: #fff;
  top: 148px;
  left: 0;
  transform: unset;
  padding: 40px calc(2% + 20px) 30px;
  display: flex;
  justify-content: center;
  min-height: 505px;
}

header .middle .main-menu li.dropdown.small.categories .drop-menu li {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 calc(50% - 40px);
  transition: all .3s;
  position: relative;
  white-space: nowrap;
}

header .middle .main-menu li.dropdown.small.categories .drop-menu li.sub:after {
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  height: calc(100% + 30px);
  width: 1px;
  background: #bbe0ff;
}

header .middle .main-menu li.dropdown.small.categories .drop-menu li.sub.last:after {
  height: 100%;
}

header .middle .main-menu li.dropdown.small.categories .drop-menu li a {
  gap: 12px;
}

header .middle .main-menu li.dropdown.small.categories .drop-menu li img {
  height: 40px;
  width: auto;
  max-width: 40px;
  min-height: 25px;
  min-height: 30px;;
}

header .middle .main-menu li.dropdown.small.categories .wrapper {
  display: flex;
  padding: 0;
  max-width: 1200px;
}

header .middle .main-menu li.dropdown.small.categories .wrapper:after {
  height: 100%;
}

header .middle .main-menu li.dropdown.small.categories .wrapper .content {
  flex: 0 0 50%;
  display: none;
}

header .middle .main-menu li.dropdown.small.categories .wrapper .content.active {
  display: block;
}

header .middle .main-menu li.dropdown.small.categories .wrapper .content img {
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  height: 250px;
  object-fit: cover;
}

header .middle .main-menu li.dropdown.small.categories .wrapper .content h3 {
  margin-bottom: 28px;
}

header .middle .main-menu li.dropdown.small.categories .wrapper .content p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 25px;
  text-transform: initial;
  margin-bottom: 0;
}

header .middle .main-menu li.dropdown.small.categories .wrapper .links {
  flex: 0 0 50%;
  row-gap: 30px;
  padding-right: 0;
}

header .middle .main-menu li.dropdown.small.categories .wrapper .content {
  padding-right: 30px;
}

header .middle .main-menu li.dropdown.small.categories .wrapper .content.active {
  animation: fade-in 1000ms forwards;
}


header .search {
  align-self: flex-end;
}

header .search form {
  background: var(--main-color);
  border-radius: 8px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  color: #fff;
  padding: 10px;
  box-shadow: 7px 18px 45px rgba(135, 221, 255, 0.5);
}

header .search form .form-control {
  color: #fff;
  border: none;
  background: none;
  padding: 10px 20px 10px 15px;
}

header .search form .form-control::placeholder {
  color: #fff;
  opacity: .85;
}

header .search form i {
  font-size: 20px;
  padding: 0 20px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
}

header .menu-toggle {
  cursor: pointer;
  align-self: flex-end;
}

header .menu-toggle span {
  display: block;
  height: 5.5px;
  width: 25px;
  background: var(--main-text);
  margin-bottom: 6px;
  border-radius: 25px;
  margin-left: auto;
}

header .menu-toggle span:nth-of-type(2) {
  margin-right: auto;
  margin-left: unset;
}

header .menu-toggle p {
  font-size: 14px;
  margin-bottom: 0;
}

.dropdown.language {
  position: absolute;
  top: 25px;
  right: 5%;
  height: 24px;
  transition: height .3s
}

header.switch .language {
  height: 0;
  overflow: hidden;
}

.dropdown.language button {
  background: none;
  outline: none;
  border: none;
}

.dropdown.language button i {
  margin-right: 5px;
  color: var(--main-color);
}

.dropdown.language .dropdown-menu {
  border-color: var(--main-color);
}

.dropdown.language .dropdown-item:hover {
  background: rgba(25,173,232, .5);
  opacity: 1;
}

#menu-overlay {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0;
  transition: all .5s ease-in-out;
  transform: translateY(-100%);
  overflow: auto;
}

#menu-overlay.open {
  transform: translateY(0);
}

#menu-overlay .top {
  padding: 25px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

#menu-overlay .logo {
  width: 250px;
}

#menu-overlay .menu-close {
  text-align: center;
  cursor: pointer;
}

#menu-overlay .menu-close span {
  display: block;
  height: 5.5px;
  width: 30px;
  background: var(--main-text);
  margin: 0 auto;
  border-radius: 25px;
  position: relative;
}

#menu-overlay .menu-close span:nth-of-type(1) {
 transform: rotate(45deg)
}

#menu-overlay .menu-close span:nth-of-type(2) {
 transform: rotate(-45deg);
 bottom: 5px;
}

#menu-overlay .menu-close p {
  margin-bottom: 0;
  margin-top: 10px;
}

#menu-overlay .menu-content {
  margin-top: 20px;
}

#menu-overlay .wrapper {
  display: flex;
  justify-content: space-between;
}

#menu-overlay .menu {
  width: fit-content;
  position: relative;
}

#menu-overlay .menu.mobile,
#menu-overlay .dropdown.language {
  display: none;
}

#menu-overlay .menu li {
  width: auto;
  transition: all .3s
}

#menu-overlay .menu:hover li {
  opacity: .5;
}

#menu-overlay .menu li:hover {
  opacity: 1 !important;
}

#menu-overlay .menu li a {
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--main-text);
  padding: 10px 0;
  opacity: 1;
}

#menu-overlay .menu li.dropdown {
  position: relative;
}

#menu-overlay .menu li.dropdown:hover > a {
  position: relative;
}

#menu-overlay .menu li.dropdown > i {
  opacity: 0 !important;
  transition: all .3s;
  margin-left: 20px;
  color: var(--main-color);
  cursor: auto;
  font-size: 50px;
}

#menu-overlay .menu li.dropdown:hover > i {
  opacity: 1 !important;
}

#menu-overlay .menu li.dropdown .sub-menu {
  position: absolute;
  left: 100%;
  top: 10px;
  padding-left: 125px;
  display: none;
}

#menu-overlay .menu li.dropdown:hover > .sub-menu,
#menu-overlay .menu li.dropdown:hover > .sub-menu:hover
 {
  animation: fade-in 500ms forwards;
  display: block;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#menu-overlay .menu li.dropdown .sub-menu li {
  opacity: 1 !important;
}

#menu-overlay .menu li.dropdown .sub-menu li a {
  font-size: 30px;
  font-weight: 400;
  opacity: 1 !important;
  white-space: nowrap;
}

#menu-overlay .menu li.dropdown .sub-menu li a:hover {
  color: var(--main-color);
}

#menu-overlay .contact {
  text-align: right;
}

#menu-overlay .contact img {
  width: 170px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

#menu-overlay .contact h3 {
  margin-top: 20px;
}

#menu-overlay .btn {
  margin-bottom: 20px;
}

#menu-overlay .contact .btn {
  color: #FFFFFF;
  display: inline-block;
}

#menu-overlay .contact a {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--main-text);
  font-size: 18px;
}

#menu-overlay .contact a i {
  color: var(--main-color);
}

#search-overlay {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 0;
  display: none;
  transition: all .3s;
}

#search-overlay.open {
  animation: fade-in 500ms forwards;
  display: block;
}

#search-overlay[closing] {
  display: block;
  pointer-events: none;
  inset: 0;
  animation: fade-out 500ms forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#search-overlay .results {
  background: #fff;
  padding: 80px 0 50px;
}

#search-overlay h3 {
  text-align: center;
}

#search-overlay h3 em svg {
  bottom: -2px;
}

#search-overlay form {
  background: var(--main-color);
  border-radius: 8px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  color: #fff;
  padding: 10px;
  box-shadow: 7px 18px 45px rgba(135, 221, 255, 0.5);
  margin: 20px 0 40px;
}

#search-overlay form .form-control {
  color: #fff;
  border: none;
  font-size: 20px;
  background: none;
  padding: 10px 20px 10px 15px;
}

#search-overlay form .form-control::placeholder {
  color: #fff;
  opacity: .85;
}

#search-overlay form i {
  font-size: 20px;
  padding: 0 20px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
}

#search-overlay .results .close {
  position: absolute;
  font-size: 35px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  color: #fff;
  background: var(--main-text);
  right: 5%;
  top: 5%;
  cursor: pointer;
}

#search-overlay #results {
  max-height: calc(90vh - 300px);
  overflow-y: auto;
}

#search-overlay .no-results {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--main-color);
}

#search-overlay .no-results span {
  font-weight: 800;
  color: var(--main-color);
}

#search-overlay #results .col-lg-3 {
  margin-bottom: 24px;
}

#search-overlay .results .product {
  color: var(--main-text);
  box-shadow: 7px 8px 31px rgb(32 112 143 / 16%);
}

#search-overlay .results .product .content {
  border-radius: 0 0 25px 25px;
}

#search-overlay .results .product h4 {
  margin-bottom: 0;
  font-size: 18px;
}

#search-overlay .backdrop {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(18, 22, 44, .7);
}


/*------------------------------
4.2 Content 
------------------------------*/



/*------------------------------
4.3 Footer 
------------------------------*/
/*------------------------------
4.3 Footer 
------------------------------*/
footer {
  background: #1C1E25;
  color: #fff;
  padding: 100px 0;
}

footer .logo {
  max-width: 220px;
  margin: 0 auto 50px;
  display: block;
}

footer h4 {
  font-size: 21px;
  margin-bottom: 8px;
}

footer li {
  padding: 5px 0;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

footer a i {
  margin-right: 8px;
}

footer p {
  margin-bottom: 0;
}

footer .footer-top {
  padding-bottom: 80px;
}

footer .footer-top .middle {
  width: fit-content;
  margin: 0 auto;
}

footer .footer-top p {
  max-width: 300px;
}

footer .footer-top .contact-links {
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: fit-content;
  margin-left: auto;
}

footer .footer-top .contact-links .link {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}

footer .footer-top .contact-links .link i {
  height: 60px;
  width: 60px;
  font-size: 35px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  display: grid;
  place-content: center;
  border-radius: 50%;
}

footer .footer-top .contact-links .btn {
  align-self: center;
}

footer .social-links {
  margin-top: 15px;
  display: flex;
  gap: 5px;
}

footer .social-links i {
  font-size: 22px;
  color: var(--main-color);
}

footer .footer-bottom .menus-wrapper {
  display: flex;
  justify-content: space-between;
}

footer .copyright {
  margin-top: 50px;
}

footer .copyright ul {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

footer .copyright ul li a {
  color: #B8EBFF;
}

.logos-bottom {
  padding: 30px 0;
}

.logos-bottom .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.logos-bottom .logos img {
  height: 57px;
  width: auto;
}

#sticky-contact {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
  cursor: pointer;
  display: none;
}

#sticky-contact:hover {
  opacity: 1;
}

#sticky-contact .wrapper {
  display: flex;
  align-items: center;
}

#sticky-contact .title {
  white-space: nowrap;
  background: #fff;
  text-transform: uppercase;
  padding: 15px 50px 12px 20px;
  transform: translateX(30px);
  border-radius: 8px 0 0 8px;
  box-shadow: 7px 18px 50px rgba(32, 112, 143, .35);
}

#sticky-contact .title span {
  font-weight: 800;
}

#sticky-contact img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 7px 18px 95px rgba(32, 112, 143, .15);
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#banner {
  height: calc(100vh - 84px);
  padding: 0;
}

#banner #bannerCarousel,
#banner .carousel-inner,
#banner .carousel-item {
  height: 100%;
}

#banner .img-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

#banner .img-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

#banner .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#banner .content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}

#banner .content h2 {
  font-size: 45px;
  margin-bottom: 12px;
}

#banner .content p {
  font-size: 22px;
}

#banner .content .btn {
  margin-top: 20px;
}

#banner .carousel-indicators [data-bs-target] {
  width: 16px;
  height: 16px;
  background: var(--main-color);
  border-radius: 50%;
  border: none;
}

.carousel-control-next, .carousel-control-prev {
  width: 50px;
  height: 50px;
  background: var(--main-color);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

#services {
  text-align: center;
}

#services .icon-box {
  padding: 50px 15px;
  box-shadow: var(--box-shadow);
}

#services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: grid;
  place-content: center;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon i {
  position: relative;
  z-index: 2;
  font-size: 35px;
  color: var(--main-color);
}

#services .icon-box h5 {
  margin: 15px 0;
}

#portfolio {
  text-align: center;
}

#portfolio #filter {
  text-align: center;
  justify-content: center;
  display: flex;
  margin-bottom: 12px;
}

#portfolio #filter li {
  margin: 0 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all .3s;
}

#portfolio #filter li.active {
  background: var(--main-color);
  color: #fff;
  font-weight: 600;
}

#portfolio .row {
  min-height: 310px;
}

#portfolio .portfolio-item {
  margin-top: 24px;
  display: none;
  -webkit-animation: fadeInItem 1s;
  animation: fadeInItem 1s;
  position: relative;
}

#portfolio .portfolio-item.active {
  display: block;
}

@-webkit-keyframes fadeInItem {
  from { opacity: 0; transform: translateY(50px);}
    to { opacity: 1; top: 0; }
}
@keyframes fadeInItem {
  from { opacity: 0; transform: translateY(50px);}
    to { opacity: 1; top: 0; }
}

#portfolio .portfolio-item img {
  height: 100%;
  object-fit: cover;
}

#portfolio .portfolio-item .portfolio-info {
  position: absolute;
  top: 0;
  left: 12px;
  height: 100%;
  width: calc(100% - 24px);
  background: rgba(204, 0, 85, 0.85);
  color: #fff;
  display: grid;
  place-content: center;
  opacity: 0;
  transition: all .5s;
  visibility: hidden;
}

#portfolio .portfolio-item:hover > .portfolio-info {
  opacity: 1;
  visibility: visible;
}

#portfolio .portfolio-item .portfolio-info .btn {
  background: #fff;
  color: var(--main-color);
}

#portfolio .portfolio-item .portfolio-info .btn:hover {
  background: rgb(235, 235, 235);
}

#clients {
  text-align: center;
}

#clients .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#clients .logos .logo {
  flex: 0 0 140px;
  padding: 15px 25px;
  box-shadow: var(--box-shadow);
  margin: 12px;
}

#home-video {
  height: 60vh;
  position: relative;
  padding: 0;
}

#home-video:before {
  content: "";
  height: 100%;
  background: rgba(22, 62, 77, .55);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#home-video .ratio {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#home-video .ratio iframe {
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}

#home-video .title {
  position: absolute;
  width: 100%;
  left: 0;
  top: 25%;
  z-index: 2;
}

#home-video .title h1 {
  color: #fff;
  font-size: 65px;
  line-height: 1;
  max-width: 650px;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em, 
h6 em {
  position: relative;
  font-style: normal;
  z-index: 1;
}

h1 em svg,
h2 em svg,
h3 em svg, 
h4 em svg,
h5 em svg,
h6 em svg {
  position: absolute;
  width: 100%;
  height: 15px;
  left: 0;
  bottom: -6px;
  z-index: -1;
}

h2 em svg {
  bottom: -3px;
  height: 19px;
}

#home-video .title h1 em svg {
  height: 23px;
  bottom: 9px;
}

#home-search {
  padding-top: 0;
  margin-top: -60px;
  z-index: 1;
  padding-bottom: 50px;
}

#home-search .wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
}

#home-search .wrapper:after {
  content: "";
  background-image: url('../images/icons-machines.svg');
  position: absolute;
  display: block;
  width: 395px;
  height: 449px;
  top: 110px;
  left: -285px;
  z-index: -1;
  opacity: .05;
}

#home-search .search,
#home-search .or {
  margin-top: 0;
}

body:has(#home-search .search h5) #home-search .search,
body:has(#home-search .search h5) #home-search .or {
  margin-top: 60px;
}

#home-search .search {
  flex: 0 0 45%;
  position: relative;
}

#home-search .search h5 {
  font-weight: 500;
  font-size: 25px;
  position: absolute;
  top: -50px;
  width: 100%;
}

#home-search .search h5 em {
  font-weight: 800;
}

#home-search .search h5 em svg {
  height: 7px;
  bottom: 6px;
}

#home-search .search form {
  background: var(--main-color);
  border-radius: 8px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  color: #fff;
  padding: 10px;
  box-shadow: 7px 18px 45px rgba(135, 221, 255, 0.5);
}

#home-search .search form .form-control {
  color: #fff;
  border: none;
  font-size: 20px;
  background: none;
  padding: 10px 20px 10px 15px;
}

#home-search .search form .form-control::placeholder {
  color: #fff;
  opacity: .85;
}

#home-search .search form i {
  font-size: 20px;
  padding: 0 20px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
}

#home-search .or {
  flex: 0 0 200px;
  font-size: 40px;
  display: block;
  text-align: center;
  position: relative;
}

#home-search .or:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: var(--main-color);
  z-index: -1;
}

#home-search .or span {
  display: inline-block;
  background: #fff;
  padding: 12px 12px 5px;
}

#home-search .choice {
  flex: 1;
  position: relative;
}

#home-search .wrapper > .choice {
  min-height: 300px;
}

#home-search .choice .cta {
  color: #fff;
  position: absolute;
  width: 225px;
  left: -225px;
  top: -65%;
  z-index: 3;
}

body:has(#home-search .choice .cta h6) .cta {
  top: -100%;
}

#home-search .choice .cta:after {
  content: "";
  position: absolute;
  background-image: url("../images/arrow.svg");
  width: 61px;
  height: 88px;
  bottom: -100px;
  right: 40px;
}

#home-search .choice .cta h3 {
  font-size: 32px;
}

#home-search .choice .cta h6 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

#home-search .choice .cta h6 em {
  font-weight: 900;
}

#home-search .choice .cta h6 em svg {
  font-weight: 900;
  bottom: -2px;
}

#home-search .choice .shortcuts {
  padding: 30px;
  box-shadow: var(--box-shadow);
  border-radius: 55px;
  background: #fff;
  position: relative;
  z-index: 1;
}

#home-search .choice .shortcuts h3 {
  font-size: 25px;
  margin-bottom: 18px;
}

#home-search .choice .shortcuts h3 em svg {
  bottom: 6px;
  height: 7px;
  z-index: 1;
}

#home-search .choice .shortcuts .btn {
  display: flex;
  background: none;
  border-bottom: 1px solid var(--main-text);
  border-radius: 0;
  color: var(--main-text);
  padding: 14px 0 12px 0;
}

#home-search .choice .shortcuts .btn:hover {
  opacity: .5;
}

#home-search .choice .shortcuts .btn:after {
  filter: brightness(0%);
  right: 0;
}

#home-search .choice .shortcuts .btn.contact {
  width: fit-content;
  margin-left: auto;
  padding-right: 40px;
  margin-top: 14px;
  border-bottom: none;
}

#home-featured {
  overflow-x: hidden;
  padding-bottom: 0;
}

#home-featured .intro .watermark {
  position: absolute;
  font-size: 250px;
  opacity: .03;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: .8;
  padding-top: 3%;
  z-index: -1;
}

#home-featured .intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  margin-bottom: 100px;
}

#home-featured .intro > * {
  flex: 0 0 50%;
}

#home-featured p {
  margin-bottom: 0;
}

#home-featured .filter {
  justify-content: center;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}

#home-featured .filter span {
  font-size: 18px;
  color: var(--main-color);
  font-weight: 600;
}

#home-featured .filter i {
  margin-right: 5px;
}

#home-featured .filter ul {
  display: flex;
  gap: 20px;
  margin-left: 20px;
}

#home-featured .filter ul li {
  font-size: 22px;
  position: relative;
  cursor: pointer;
}

#home-featured .filter ul li svg {
  position: absolute;
  width: 100%;
  height: 7px;
  left: 0;
  bottom: 2px;
  display: none;
}

#home-featured .filter ul li.active {
  font-weight: 700;
}

#home-featured .filter ul li.active svg {
  display: block;
}

#home-featured .wrapper {
  min-height: 565px;
  overflow: hidden;
}

#home-featured .machines {
  display: none;
  -webkit-animation: fadeInItem 1s;
  animation: fadeInItem 1s;
  position: relative;
}

#home-featured .machines.active {
  display: block;
}

@-webkit-keyframes fadeInItem {
  from { opacity: 0; top: 50px;}
    to { opacity: 1; top: 0; }
}
@keyframes fadeInItem {
  from { opacity: 0; top: 50px;}
    to { opacity: 1; top: 0; }
}

#home-featured .swiper {
  overflow: initial;
}

#home-featured .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  padding-bottom: 60px;
}

#home-featured .machine {
  border-radius: 25px;
  height: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  transition: all .5s ease-in;
  overflow: hidden;
  box-shadow: 7px 18px 45px rgba(71, 126, 148, 0.15);
}

#home-featured .machine:hover {
  background: var(--main-text);
  border-bottom-color: #fff;
  box-shadow: 7px 18px 45px rgba(71, 126, 148, 0.3);
}

#home-featured .machine:after {
  content: "";
  background: linear-gradient(0deg, rgba(18,22,44,1) 0%, rgba(18,22,44,0) 100%);
  height: 45%;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -2;
  border-radius: 0 0 25px 25px;
}

#home-featured .machine .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -3;
  border-radius: 25px;
}

#home-featured .machine .icon {
  height: 40px;
  width: auto;
  margin: 0 0 12px 20px;
  filter: brightness(0) invert(1);
  transition: all .5s ease-in;
  max-width: 70%;
}

#home-featured .machine:hover .icon {
  height: 125px;
  transform: translate(50px, 30px);
  opacity: .2;
}

#home-featured .machine h4 {
  margin: 0 0 25px 20px;
  color: #fff;
  font-size: 20px;;
  font-weight: 800;
}

#home-featured .machine h4 em svg {
  z-index: 1;
  height: 9px;
  bottom: 0px;
}

#home-featured .machine .links {
  max-height: 0;
  transition: all .5s ease-in;
  background: #fff;
  width: 100%;
  padding: 0 20px;
  border-radius: 0 0 25px 25px;
  position: relative;
}

#home-featured .machine:hover .links {
  max-height: 200px;
}

#home-featured .machine .links .btn {
  display: flex;
  background: none;
  border-bottom: 1px solid var(--main-text);
  border-radius: 0;
  color: var(--main-text);
  padding: 14px 0 12px;
}

#home-featured .machine .links .btn:last-of-type {
  border-bottom: none;
}

#home-featured .machine .links .btn:hover {
  opacity: .5;
}

#home-featured .machine .links .btn:after {
  filter: brightness(0%);
  right: 0;
}

#home-featured .machines .btn-wrapper {
  text-align: center;
}

#home-variable {
  background: #F0F6FA;
  padding: 0;
}

#home-variable .divider-top svg {
  width: 100%;
  height: 185px;
  display: block;
}

#home-variable .divider-bottom svg {
  width: 100%;
  height: 450px;
  display: block;
}

#home-variable .content {
  position: relative;
  margin-top: 100px;
  margin-bottom: -200px;
  padding: 100px 0;
}

#home-variable .img img {
  position: absolute;
  width: calc(50vw - 100px);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  object-fit: cover;
  border-radius: 0 90px 90px 0;
  box-shadow: var(--box-shadow);
}

#home-variable .text h2 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 20px;
}

#home-variable .text h2 em svg {
  bottom: 3px;
}

#home-variable .text .btns {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#home-variable .text .btns .btn {
  width: fit-content;
  background: none;
  border-bottom: 1px solid var(--main-text);
  border-radius: 0;
  color: var(--main-text);
  padding: 14px 50px 12px 0;
}

#home-variable .text .btns .btn:last-of-type {
  border-bottom: none;
}

#home-variable .text .btns .btn:hover {
  opacity: .5;
}

#home-variable .text .btns .btn:after {
  filter: brightness(0%);
  right: 0;
}

#home-projects {
  padding-top: 0;
  background: #12162C;
  position: relative;
  margin-top: -2px;
}

.sub-title {
  color: var(--main-color);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
}

.sub-title i {
  font-size: 18px;
  margin-left: 3px;
}

#home-projects .sub-title {
  color: #B8EBFF;
  text-align: center;
}

#home-projects h2 {
  color: #fff;
  text-align: center;
  margin: 20px 0;
}

#home-projects h2 em svg {
  height: 15px;
  bottom: 0px;
}

#home-projects .intro {
  color: #fff;
  text-align: center;
}

#home-projects .wrapper {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

#home-projects .info {
  background: #fff;
  padding: 75px;
  max-width: 550px;
  transform: translateX(125px);
  position: relative;
  z-index: 1;
}

#home-projects .info:after {
  content: "";
  position: absolute;
  left: 0;
  top: -205px;
  background-image: url("../images/dots.svg");
  background-repeat: no-repeat;
  width: 225px;
  height: 205px;
}

#home-projects .info .year {
  font-weight: 800;
  color: var(--main-color);
  font-size: 35px;
}

#home-projects .info h3 {
  font-size: 45px;
  margin: 10px 0;
}

#home-projects .info p {
  font-size: 21px;
}

#home-projects .info .btn {
  background: none;
  color: var(--main-color);
  padding-left: 0;
}

#home-projects .info .btn:after {
  filter: brightness(0) saturate(100%) invert(54%) sepia(96%) saturate(1336%) hue-rotate(160deg) brightness(97%) contrast(87%);
}

#home-projects .btn-wrapper {
  margin-top: 30px;
  text-align: right;
}

#home-articles {
  background: #F0F6FA;
}

#home-articles .contact h3 {
  font-size: 25px;
  margin: 15px 0 30px;
}

#home-articles .contact img {
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

#home-articles .contact p {
  margin: 30px 0 25px;
  font-weight: 500;
}

#home-articles .contact .btn {
  background: none;
  border: 1px solid var(--main-text);
  color: var(--main-text);
  margin-bottom: 20px;
}

#home-articles .contact .btn:after {
  filter: brightness(0%);
  transition: all .3s;
}

#home-articles .contact .btn:hover {
  background: var(--main-text);
  color: #fff;
}

#home-articles .contact .btn:hover:after {
  filter: brightness(100%);
}

#home-articles .contact .tel,
#home-articles .contact .mail {
  font-size: 18px;
  color: var(--main-text);
  margin-bottom: 10px;
}

#home-articles .contact .tel i,
#home-articles .contact .mail i {
  color: var(--main-color);
  width: 20px;
  text-align: center;
  margin-right: 10px;
}

#home-articles .btns {
  margin-top: 30px;
}

#home-articles .btns .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border-bottom: 1px solid var(--main-text);
  border-radius: 0;
  color: var(--main-text);
  padding: 14px 0 12px 0;
}

#home-articles .btns .btn:last-child {
  border-bottom: none;
}

#home-articles .btns .btn:hover {
  opacity: .5;
}

#home-articles .btns .btn:after {
  display: none;
}

#home-articles .articles {
  padding-left: 50px;
  padding-bottom: 100px;
  position: relative;
}

#home-articles .articles h2 {
  position: absolute;
  right: 12px;
  top: 0;
  max-width: 45%;
  text-align: right;
}

#home-articles .articles .row .col-lg-6:nth-child(even) {
  transform: translateY(100px);
}

.article {
  margin-bottom: 24px;
  box-shadow: 7px 18px 95px rgba(32, 112, 143, 0.15);
  border-radius: 25px;
  height: 100%;
  background: #fff;
}

.article a {
  color: var(--main-text);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article img {
  border-radius: 25px 25px 0 0;
}

.article .content {
  padding: 50px 15px;
  position: relative;
}

.article .content h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.article .content p {
  margin-bottom: 0;
}

.article span {
  background: #12162C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  padding: 20px 15px;
  border-radius: 0 0 25px 25px;
  text-transform: uppercase;
  transition: all .3s;
  margin-top: auto;
}

.article:hover a {
  opacity: 1;
}

.article:hover span {
  background: #424e94;
  opacity: 1;
}

#home-contact .text h2 {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: 20px;
}

#home-contact .text h2 em svg {
  bottom: 9px;
}

#home-contact .btns .tel {
  margin-top: 25px;
}

#home-contact .btns .tel,
#home-contact .btns .mail {
  font-size: 18px;
  color: var(--main-text);
  margin-right: 20px;
}

#home-contact .btns .tel i,
#home-contact .btns .mail i {
  color: var(--main-color);
  width: 20px;
  text-align: center;
  margin-right: 10px;
}

#home-contact {
  position: relative;
  margin: 100px 0;
  padding: 150px 0;
}

#home-contact img {
  position: absolute;
  width: calc(50vw - 100px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  object-fit: cover;
  border-radius: 90px 0 0 90px;
  box-shadow: var(--box-shadow);
}

#home-bottom {
  position: relative;
  color: #fff;
  padding: 100px 0 200px;
}

#home-bottom .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#home-bottom .overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(22,28,37,.65) 0%, rgba(22,28,37,.8) 75%, rgba(22,28,37,.75) 100%);
  position: absolute;
}

#home-bottom img {
  z-index: -2;
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

#home-bottom .youtube {
  text-align: right;
}

#home-bottom .sub-title {
  color: #B8EBFF;
}

#home-bottom .youtube h2 {
  margin: 14px 0;
  font-size: 35px;
}

#home-bottom .youtube h2 em svg path {
  fill: #B8EBFF;
}

#home-bottom .youtube .btn {
  border: 1px solid #fff;
  background: none;
}

#home-bottom .youtube .btn:hover {
  background: #fff;
  color: var(--main-text);
}

#home-bottom .youtube .btn:hover:after {
  filter: brightness(0%);
  transition: all .3s;
}

#home-bottom .newsletter {
  display: flex;
  gap: 100px;
  margin-top: 100px;
}

#home-bottom .newsletter h2 {
  margin: 14px 0;
  font-size: 35px;
}

#home-bottom .btn.newsletter {
  gap: unset;
  margin-top: Unset;
  display: inline-block;
}

#home-bottom .usps .usp {
  display: flex;
  gap: 25px;
}

#home-bottom .usps .usp:not(:last-of-type) {
  margin-bottom: 40px;
}

#home-bottom .usps .usp i {
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  font-size: 40px;
  color: #B8EBFF;
  border: 2px solid #B8EBFF;
  border-radius: 50%;
}

#home-bottom .usps .usp h6 {
  font-size: 18px;
  margin-bottom: 10px;
}

#home-bottom .usps .usp p {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid #B8EBFF;
}

#home-bottom .wave svg {
  width: 100%;
  height: 110px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.overlay-form {
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  right: 0;
  top: 0;
  padding: 0;
  display: none;
}

.overlay-form.open {
  display: block;
}

.overlay-form .close {
  position: absolute;
  font-size: 35px;
  width: 55px;
  height: 55px;
  display: grid;
  place-content: center;
  color: #fff;
  background: var(--main-color);
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 2;
}

.overlay-form .wrapper {
  width: 900px;
  height: 100vh;
  padding: 0 0 40px 40px;
  background: #fff;
  margin-left: auto;
  position: relative;
  z-index: 1;
  transition: all .7s ease-in-out;
  transform: translateX(100%);
  overflow-y: auto;
}

.overlay-form.open .wrapper {
  animation: slide-in 500ms forwards;
}

.overlay-form[closing] .wrapper {
  inset: 0;
  animation: slide-out 500ms forwards;
}


@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slide-out {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.overlay-form .top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 25px;
}

.overlay-form .top .text {
  padding-top: 70px;
}

.overlay-form .top h3 {
  margin-bottom: 15px;
  font-size: 32px;
}

.overlay-form .top h3 em svg {
  bottom: -3px;
  height: 19px;
}

.overlay-form .top p {
  margin-bottom: 0;
}

.overlay-form .top .contact-details {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--main-text);
  padding: 0 45px;
  color: #fff;
  position: relative;
}

.overlay-form .top .contact-details:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30.1px;
  width: 65px;
  height: 29px;
  background-image: url(../images/arrow-color.svg);
  background-size: 65px 29px;
  background-repeat: no-repeat;
  background-position: center;
}

.overlay-form .top .contact-details img {
  width: 100px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

.overlay-form .top .contact-details a {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 18px;
}

.overlay-form .top .contact-details a i {
  color: var(--main-color);
}

.overlay-form form {
  margin-top: 25px;
  padding-right: 40px;
}

.overlay-form form .form-control,
.overlay-form form .form-select {
  padding: 10px;
}

.overlay-form form .form-control:disabled {
  background: #fff;
}

.overlay-form .check-options .option label {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 700;
  padding-left: 25px;
  padding-bottom: 6px;
}

.overlay-form .check-options .option:last-child label {
  padding-bottom: 0;
}

.overlay-form .check-options .option label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.overlay-form .check-options .option label .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  border: 1px solid var(--main-color);
  border-radius: 4px;
}

.overlay-form .check-options .option label input:checked ~ .checkmark {
  background: var(--main-color);
}

.overlay-form .check-options .option label input:checked ~ .checkmark:after {
  content: "\f00c";
  font-family: 'Font Awesome 6 Pro';
  color: #fff;
  font-weight: 500;
  display: grid;
  place-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
}

.overlay-form .check-options .option label:after {
  content: "";
  position: absolute;
  display: none;
}

.overlay-form .check-options .option label:checked ~ .checkmark:after {
  display: block;
}

.overlay-form .backdrop {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(18, 22, 44, .7);
  top: 0;
  left: 0;
}

.overlay-form.open .backdrop {
  animation: fade-in 500ms forwards;
}

.overlay-form[closing] .backdrop {
  display: block;
  pointer-events: none;
  inset: 0;
  animation: fade-out 500ms forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#newsletter-overlay h6 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}

#newsletter-overlay .check-options {
  margin-bottom: 25px;
  flex-wrap: wrap;
  position: relative;
}

#newsletter-overlay .check-options.more {
  max-height: 100px;
  overflow: hidden;
  position: relative;
  transition: max-height .5s;
}

#newsletter-overlay .check-options.more.expanded {
  overflow: unset;
  max-height: var(--checkoptions-height);
  padding-bottom: 50px;
}

#newsletter-overlay .check-options.more:after {
  content: "";
  position: absolute;
  height: 130px;
  width: 100%;
  left: 0;
  bottom: 0px;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0, rgba(255,255,255,1) 0, rgba(255,255,255,1) 50px, rgba(255,255,255,1) 50px, rgba(255,255,255,0) 100%);
}

#newsletter-overlay .check-options.more.expanded:after {
  display: none;
}

#newsletter-overlay .check-options.more .expand-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  color: var(--main-text);
  font-weight: 600;
}

#newsletter-overlay .check-options.more .expand-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -2px;
  background: var(--main-text);
  height: 1px;
}

#newsletter-overlay .check-options.more .expand-btn .coll {
  display: none;
}

#newsletter-overlay .check-options.more.expanded .expand-btn .all {
  display: none;
}

#newsletter-overlay .check-options.more.expanded .expand-btn .coll {
  display: block;
}

#newsletter-overlay .check-options.more.expanded .expand-btn i:before {
  content: "\f148";
}

#newsletter-overlay .check-options.more .expand-btn i {
  color: var(--main-color);
}

#newsletter-overlay .check-options .option {
  flex: 0 0 23%;
}

#newsletter-overlay .check-options .option label {
  font-weight: 500;
}

#choice-overlay .wrapper {
  width: 1200px;
  padding: 0;
  overflow-y: unset;
}

#choice-overlay .choice-help {
  display: flex;
}

#choice-overlay .choice-help .step-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

#choice-overlay .choice-help .step-section .info {
  padding: 35px 35px 0 70px;
}

#choice-overlay .step-section h3 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--main-color);
  font-size: 32px;
}

#choice-overlay .steps {
  margin-top: 30px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  padding: 0 35px 50px 70px;
}

#choice-overlay .steps .step {
  display: flex;
  gap: 20px;
  position: relative;
}

#choice-overlay .steps .step.hide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 1);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all .3s;
}

#choice-overlay .steps .step.hide.preview:after {
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.8) 100%);
}

#choice-overlay .steps .step.remove {
  display: none;
}

#choice-overlay .steps .step:not(:last-child) {
  margin-bottom: 50px;
}

#choice-overlay .steps .step .desc {
  flex: 0 0 20%;
  margin-top: 20px;
  position: relative;
  padding-left: 45px;
  height: fit-content;
}

#choice-overlay .steps .step .desc:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  font-size: 22px;
  font-weight: 900;
  width: 36px;
  height: 36px;
  display: grid;
  place-content: center;
  background: var(--main-color);
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#choice-overlay .steps .step .options {
  flex: 0 0 80%;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

#choice-overlay .steps .step .option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 170px;
  border: 2px solid var(--main-text);
  border-radius: 7px;
  padding: 23px 10px 10px 10px;
  cursor: pointer;
  position: relative;
  transition: all .3s;
}

#choice-overlay .steps .step .option.active {
  border-color: var(--main-color);
}

#choice-overlay .steps .step .option:after {
  content: "";
  height: 25px;
  width: 25px;
  background: #E8E8E8;
  top: 5px;
  right: 5px;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-content: center;
  transition: all .3s;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 900;
}

#choice-overlay .steps .step .option.active:after {
  content: "\f00c";
  background: var(--main-color);
}

#choice-overlay .steps .step .option.disabled {
  pointer-events: none;
  opacity: .3;
}

#choice-overlay .steps .step .option .icon {
  height: 33px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(8%) sepia(6%) saturate(3606%) hue-rotate(193deg) brightness(97%) contrast(82%);
}

#choice-overlay .steps .step:nth-of-type(2) .option .icon {
  height: 40px;
}

#choice-overlay .steps .step .option .number {
  font-size: 21px;
  font-weight: 900;
  line-height: .9;
  height: 33px;
  display: grid;
  place-content: end;
}

#choice-overlay .steps .step .option .title {
  font-weight: 600;
}

#choice-overlay .sidebar {
  background: #EFFBFF;
  padding: 120px 25px 35px 25px;
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#choice-overlay .close-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: auto;
  position: absolute;
  top: 30px;
  right: 50px;
}

#choice-overlay .close-btn span {
  display: block;
  position: relative;
}

#choice-overlay .close-btn span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--main-color);
}

#choice-overlay .close-btn i {
  font-size: 25px;
  background: var(--main-color);
  color: #fff;
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  border-radius: 50%;
}

#choice-overlay .contact img {
  border-radius: 50%;
  margin-bottom: 30px;
  max-width: 150px;
}

#choice-overlay .contact .cnt-btn {
  background: none;
  border: 1px solid var(--main-text);
  color: var(--main-text);
  margin-bottom: 20px;
}

#choice-overlay .contact .cnt-btn:after {
  filter: brightness(0%);
  transition: all .3s;
}

#choice-overlay .contact .cnt-btn:hover {
  background: var(--main-text);
  color: #fff;
}

#choice-overlay .contact .cnt-btn:hover:after {
  filter: brightness(100%);
}

#choice-overlay .contact .tel,
#choice-overlay .contact .mail {
  font-size: 18px;
  color: var(--main-text);
  margin-bottom: 10px;
}

#choice-overlay .contact .tel i,
#choice-overlay .contact .mail i {
  color: var(--main-color);
  width: 20px;
  text-align: center;
  margin-right: 10px;
}

#choice-overlay .results {
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 5;
  background: #fff;
  box-shadow: 7px -18px 95px rgba(32, 112, 143, .35);
  display: flex;
  align-items: center;
  padding: 15px 35px 15px 70px;
  justify-content: space-between;
}

#choice-overlay .results .amount {
  display: flex;
  align-items: center;
  gap: 15px;
}

#choice-overlay .results .amount h5 {
  font-weight: 600;
  font-size: 19px;
}

#choice-overlay .results .amount .number {
  font-size: 35px;
  font-weight: 700;
  color: var(--main-color);
}

#choice-overlay .results #submitChoice {
  display: none;
}


/*--------------------------------------------------------------
7.0 Overview
--------------------------------------------------------------*/
#overview {
  padding-top: 0;
}

#overview .col-lg-3 {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #EFFBFF;
}

#overview .filter {
  padding: 80px 15px;
  height: 100%;
}

#overview .filter > * {
  width: fit-content
}

#overview .filter h3 {
  margin-bottom: 50px;
}

#overview .filter h3 em svg {
  bottom: -2px;
}

#overview .filter .wrapper {
  margin-bottom: 30px;
}

#overview .filter .title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 14px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

#overview .filter .wrapper.pr .title {
  gap: 5px;
  flex-direction: column;
  align-items: flex-start;
}

#overview .filter .title span {
  color: var(--main-text);
  font-style: italic;
  font-weight: 300;
}

#overview .filter .title img {
  height: 35px;
  width: auto;
}

#overview .filter ul li a {
  color: var(--main-text);
  font-size: 18px;
  padding: 5px 0;
}

#overview .filter ul li a.active {
  color: var(--main-color);
  font-weight: 700;
}

#overview .filter .select-filters a {
  position: relative;
  padding-left: 35px;
}

#overview .filter .select-filters li a:before {
  content: "";
  height: 24px;
  width: 24px;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-content: center;
}

#overview .filter .select-filters li.active a {
  font-weight: 700;
  color: var(--main-color);
}

#overview .filter .select-filters li.active a:before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Pro';
  background: var(--main-color);
  color: #fff;
  font-weight: 500;
}

.range-slider {
  max-width: 200px;
}

.range-slider .price-input{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 30px 0 35px;
}
.range-slider .price-input .field{
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}
.range-slider .field input{
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--main-color);
  -moz-appearance: textfield;
}
.range-slider input[type="number"]::-webkit-outer-spin-button,
.range-slider input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.range-slider .price-input .separator{
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.range-slider .slider{
  height: 5px;
  position: relative;
  background: #adc4ca;
  border-radius: 5px;
}
.range-slider .slider .progress{
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--main-color);
}
.range-slider .range-input{
  position: relative;
}
.range-slider .range-input input{
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-thumb{
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: var(--main-color);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}
.range-slider input[type="range"]::-moz-range-thumb{
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: var(--main-color);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

#overview .sort {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  font-size: 18px;
}

#overview .sort i {
  font-size: 28px;
  margin-right: 40px;
}

#overview .sort .filters {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

#overview .sort .filters button {
  background: none;
  outline: none;
  border: none;
  position: relative;
  padding-right: 23px;
  font-weight: 600;
}

#overview .sort .filters button:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--main-color);
  position: absolute;
}

#overview .sort .filters button:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  color: var(--main-color);
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#overview .sort .filters button span {
  font-weight: 700;
  color: var(--main-color);
}

#overview .sort .filters .dropdown-menu {
  border-color: var(--main-color);
}

#overview .sort .filters .dropdown-item {
  font-size: 18px;
}

#overview .sort .filters .dropdown-item:hover {
  background: rgba(25,173,232, .5);
  opacity: 1;
}

#overview .sort .filters .dropdown.right {
  margin-left: auto;
}

#overview .items {
  padding: 70px 5%;
}

#overview .items h1 {
  font-size: 45px;
  margin-bottom: 50px;
}

#overview .items .col-lg-4 {
  margin-bottom: 24px;
}

.product {
  box-shadow: 7px 18px 95px rgb(32 112 143 / 15%);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  background: #fff;
}

.product a {
  color: var(--main-text);
}

.product img {
  border-radius: 25px 25px 0 0;
}

.product .content {
  padding: 25px 15px;
  background: #fff;
  position: relative;
}

.product .badge,
.article .badge {
  font-size: 15px;
  position: relative;
  background: var(--main-color);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  padding: 12px 20px 9px 20px;
  position: absolute;
  right: 0;
  top: -36px;
  border-radius: 0px;
  box-shadow: 7px 7px 15px rgba(32, 112, 143, 0.15);
}

.product .badge:after,
.article .badge:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--main-color);
  clear: both;

}

.product .badge.sold {
  background: #e81919;
}

.product .badge.sold:after {
  border-top: 10px solid #e81919;
}

.product .badge.new {
  background: #ff9c00;
}

.product .badge.new:after {
  border-top: 10px solid #ff9c00;
}

.product:has(.badge.sold) .badge.new {
  display: none;
}

.product .labels {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 15px;
}

.product .labels .label {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #878787;
  text-transform: uppercase;
}

.product .art-nr {
  color: var(--main-color);
  margin-bottom: 5px;
}

.product h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.product .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 15px;
}

.product .price.poa {
  margin-bottom: 0;
}

.product p {
  margin-bottom: 0;
  font-size: 16px;
}

.product table td {
  padding: 3px 0;
}

.product table tr td:nth-child(1) {
  padding-right: 20px;
}

.product table tr td:nth-child(2) {
  color: var(--main-color);
}

.product .btn-big {
  background: #12162C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  padding: 20px 15px;
  border-radius: 0 0 25px 25px;
  text-transform: uppercase;
  cursor: pointer;
}

.product .btn-big:hover {
  background: var(--main-color);
  opacity: 1;
}

.product .btn-big.sold {
  background: rgb(159, 159, 159);
  pointer-events: none;
}

.product .btn-big.sold:hover {
  background: rgb(159, 159, 159);
  pointer-events: none;
}

.product.contact {
  padding: 40px;
  background: #EFFBFF;
  text-align: center;
  height: calc(100% - 24px);
}

.product.contact .img {
  text-align: center;
}

.product.contact .img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.product.contact h3 {
  font-size: 25px;
  margin-top: 30px;
}

.product.contact h3 em svg {
  bottom: -2px;
}

.product.contact .btn {
  background: none;
  border: 1px solid var(--main-text);
  color: var(--main-text);
  margin-bottom: 20px;
  margin-top: 20px;
}

.product.contact .btn:after {
  filter: brightness(0%);
  transition: all .3s;
}

.product.contact .btn:hover {
  background: var(--main-text);
  color: #fff;
}

.product.contact .btn:hover:after {
  filter: brightness(100%);
}

.product.contact .btns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.product.contact  .btns .tel,
.product.contact  .btns .mail {
  font-size: 18px;
  color: var(--main-text);
  width: 100%;
  text-align: center;
}

.product.contact .btns .tel i,
.product.contact .btns .mail i {
  color: var(--main-color);
  width: 20px;
  text-align: center;
  margin-right: 10px;
}

#overview .expand-text.more {
  max-height: 180px;
}

#overview .expand-text:after {
  height: 170px;
}

#overview .expand-text .btn {
  left: 0;
  transform: unset;
}

#overview.products .filter .categories li {
  display: none;
}

#overview.products .filter .categories li.active {
  display: block;
  font-weight: 800;
}

#overview.products .filter .categories li.active .sub-categories.active li {
  display: block;
  font-weight: 400;
}

#overview.products .filter .categories li.active .sub-categories.active li a {
  font-size: 16px;
}

#overview.products .filter .categories li.active .sub-categories.active li.active a {
  color: var(--main-color);
  font-weight: 800;
}

#overview.products .filter .close {
  display: none;
}

#overview.products .filters-mobile {
  display: none;
}

.mobile-filter {
  display: none;
}

#overview .items .project {
  display: flex;
  margin-bottom: 24px;
  box-shadow: 7px 18px 95px rgb(32 112 143 / 15%);
  border-radius: 25px;
  background: #12162C;
}

#overview .items .project .content {
  padding: 70px 35px;
  color: #fff;
  flex: 0 0 45%;
  border-radius: 25px 0 0 25px;
}

#overview .items .project .content .sub-title {
  color: #B8EBFF;
  margin-bottom: 10px;
}

#overview .items .project h2 {
  font-size: 35px;
  margin-bottom: 15px;
  hyphens: auto;
}

#overview .items .project p {
  text-transform: uppercase;
}

#overview .items .project h2 em svg {
  bottom: 1px;
}

#overview .items .project .img img {
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.nav-pagination {
	margin-top: 80px;
  padding: 0 110px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  z-index: 2;
}

.nav-pagination .amount {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pagination .amount span {
  font-weight: 600;
}

.nav-pagination .amount button {
  background: #fff;
  outline: none;
  border: 1px solid var(--main-color);
  padding: 5px 8px;
}

.nav-pagination .amount .dropdown-menu {
  border-color: var(--main-color);
}

.nav-pagination .amount .dropdown-menu .dropdown-item:hover {
  background: var(--main-color);
}

.nav-pagination .shadow-sm {
  box-shadow: none !important;
  display: flex;
  flex-wrap: wrap;
}

.nav-pagination nav .relative.z-0.inline-flex {
	display: flex;
	box-shadow: none !important;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-pagination svg{
	width: 25px;
}

.nav-pagination > nav > div:first-child,
.nav-pagination p {
	display: none;
}

.nav-pagination [aria-current] {
  font-weight: bold;
  color: var(--main-text);
}

.nav-pagination [aria-current] span{
  font-size: 24px;
	padding: 0 !important;
	width: 42px;
	height: 42px;
	display: grid;
	place-content: center;
}

.nav-pagination [aria-disabled] {
    display: none;
}

.nav-pagination nav a {
  color: var(--main-color);
	width: 42px;
	height: 42px;
	display: grid;
	place-content: center;
  font-size: 24px;
}

.nav-pagination .border {
	border: 1px solid var(--main-orange) !important;
	padding: 0 !important;
}

.nav-pagination [rel="next"],
.nav-pagination [rel="prev"] {
	color: #fff;
  background-color: var(--main-color);
  border-radius: 4px !important;
}

.nav-pagination .download {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#overview-text .wrapper {
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: space-between;
}

.expand-text {
  position: relative;
  overflow: hidden;
  transition: max-height .5s;
}

.expand-text.intro {
  margin-bottom: 50px;
}

.expand-text.more {
  padding-bottom: 50px;
  max-height: 350px;
}

.expand-text.more:after {
  content: "";
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0, rgba(255,255,255,1) 0, rgba(255,255,255,1) 50px, rgba(255,255,255,1) 50px, rgba(255,255,255,0) 100%);
}

.expand-text.expanded {
  max-height: var(--content-height) !important;
}

.expand-text.expanded:after {
  display: none;
}

.expand-text h2 {
  margin-bottom: 18px;
  font-size: 30px;;
}

.expand-text h2:not(:first-of-type) {
  margin-top: 30px;
}

.expand-text a {
  font-weight: 700;
  position: relative;
  color: var(--main-text);
}

.expand-text a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  left: 0;
  bottom: 1px;
  background: var(--main-color);
}

.expand-text .btn {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background: #fff;
  padding: 14px 25px 12px 25px;
  display: none;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.expand-text.more .btn {
  display: flex;
}

.expand-text.more .btn:hover {
  background: #EFFBFF;
}

.expand-text .btn:after {
  display: none;
}

.expand-text .btn .read-less {
  display: none;
}

.expand-text.expanded .btn .read-less {
  display: block;
}

.expand-text.expanded .btn .read-more {
  display: none;
}

.expand-text .btn svg {
  transition: all .3s;
}

.expand-text.expanded .btn svg {
  rotate: 180deg;
}

.expand-text ul,
#content .text ul,
#asisModal .modal-body ul,
#brand-intro.landingpage ul {
	margin-bottom: 20px;
}

.expand-text ul li,
#content .text ul li,
#asisModal .modal-body ul li,
#brand-intro.landingpage ul li {
	position: relative;
  padding-left: 30px;
  margin: 5px 0;
  width: 100%;
}

.expand-text ul,
.expand-text ol,
#brand-intro.landingpage ol,
#content .text ul,
#content .text ol,
#brand-intro.landingpage ul,
#brand-intro.landingpage ol {
	font-size: 18px;
}

.expand-text ol,
#content .text ol,
#brand-intro.landingpage ol {
	padding-left: 20px;
}

.expand-text ol li,
#content .text ol li,
#brand-intro.landingpage ol li {
	margin: 5px 0;
}

.expand-text ul li:after, 
#content .text ul li:after,
#asisModal .modal-body ul li:after,
#brand-intro.landingpage ul li:after {
  position: absolute;
  left: 0;
  top: 0px;
  font-family: 'Font Awesome 6 Pro';
  content: "\f061";
  font-weight: 700;
  font-size: 16px;
  color: var(--main-color);
}

#overview-text .links {
  flex: 0 0 400px;
  border-radius: 55px;
  background: var(--main-text);
  color: #fff;
  padding: 40px;
  box-shadow: 7px 18px 55px rgba(14, 50, 65, 0.35);
}

#overview-text .links h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

#overview-text .links h3 em svg {
  bottom: 5px;
  height: 9px;
}

#overview-text .links .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

#overview-text .links .btn:not(:last-of-type):after{
  display: none;
}

#overview-text .links .btn:hover {
  opacity: .5;
}

#overview-text .links .btn:last-of-type {
  border-bottom: 0;
}

#overview-text .links .btn:last-of-type:after {
  right: 0;
}

body:has(.no-results) #overview .sort,
body:has(.no-results) #overview .nav-pagination {
  display: none;
}

body:has(.no-results) #overview h1 {
  color: grey;
}

#overview .no-results .top {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 0;
}

#overview .no-results .top h2 {
  font-size: 40px;
  margin-bottom: 10px;
  max-width: 600px;
}

#overview .no-results .top .btn {
  display: inline-block;
  margin-bottom: 25px;
}

#overview .no-results .top .btns .tel, 
#overview .no-results .top .btns .mail {
  font-size: 18px;
  color: var(--main-text);
  margin-right: 20px;
}

#overview .no-results .top .btns .tel i, 
#overview .no-results .top .btns .mail i {
  color: var(--main-color);
  width: 20px;
  text-align: center;
  margin-right: 10px;
}

#overview .no-results .top .img {
  flex: 0 0 150px;
}

#overview .no-results .top img {
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

#overview .no-results .top .reset .remove-filter {
  margin-bottom: 50px;
  font-weight: 600;
  width: fit-content;
  font-size: 14px;
}

#overview .no-results .top .reset p {
  margin-bottom: 10px;
}

#overview .no-results .top .reset .remove-filter {
  color: var(--main-text);
  cursor: pointer;
  border-bottom: 1px solid var(--main-text);
}

#overview .no-results .top .reset .remove-filter i {
  color: var(--main-color);
  margin-left: 8px;
}

#overview .no-results .solution {
  margin-top: 80px;
}

#overview .no-results .solution h2 {
  margin-bottom: 25px;
}

#faq {
  padding-top: 40px;
}

#faq .row {
  --bs-gutter-x: 3rem;
}

#faq .wrapper {
  background: #E7F8FF;
  padding: 80px 6%;
  border-radius: 50px;
}

#faq h2 {
  margin-bottom: 30px;
}

#faq h3 {
  text-transform: unset;
  font-size: 18px;
  margin: 0 0 7px 16px;
}

#faq .faq-category:not(:last-of-type) {
  margin-bottom: 30px;
}

#faq .accordion-item {
  background: var(--main-color);
  border-radius: 10px;
}


#faq .accordion .accordion-item:not(:last-of-type) {
  margin-bottom: 8px;
}

#faq button {
  font-weight: 900;
  text-transform: uppercase;
  background: none;
  border: none;
  color: #fff;
  box-shadow: none !important;
}

#faq button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' fill='none' stroke='%23ffffff' stroke-width='1.3'/%3e%3c/svg%3e");
}

#faq button:focus {
  box-shadow: none;
}

#faq .accordion-body {
  color: #fff;
  padding: 5px 30px;
}

#faq .links {
  padding-left: 10%;
}

#faq .links h4 {
  margin-bottom: 10px;;
}

#faq .links .btns .btn {
  color: var(--main-color);
  background: none;
  border: 1px solid var(--main-color);
}

#faq .links .btns .btn:after {
  filter: brightness(0) saturate(100%) invert(59%) sepia(55%) saturate(2318%) hue-rotate(162deg) brightness(95%) contrast(92%);
}

#faq .links .btns .btn:not(:last-of-type) {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
8.0 Article page
--------------------------------------------------------------*/
#breadcrumbs {
  padding: 30px 0;
}

#breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}

#breadcrumbs ul li {
  position: relative;
  padding-right: 30px;
  font-size: 14px;
}

#breadcrumbs ul li:not(:last-child):after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  right: 10px;
  top: 2px;
  position: absolute;
  font-size: 12px;
}

#breadcrumbs ul li:last-child {
  font-weight: 700;
  color: var(--main-color);
}

#breadcrumbs ul li a {
  color: var(--main-text);
}

#article-intro  {
  position: relative;
  margin: 100px 0 50px;
  padding: 150px 0;
}

#article-intro .text h1 {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: 20px;
}

#article-intro .text h2 em svg {
  bottom: 9px;
}

#article-intro img {
  position: absolute;
  width: calc(50vw - 100px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  object-fit: cover;
  border-radius: 90px 0 0 90px;
  box-shadow: var(--box-shadow);
}

#content {
  padding: 30px 0 80px;
}

#content .content {
  padding: 50px 0;
  display: flex;
  align-items: center;
}

#content .content a {
  font-weight: 700;
  position: relative;
  color: var(--main-text);
}

#content .content .btn {
  color: #fff;
}

#content .content h2 {
  margin-bottom: 10px;
}

#content.basic .content h1 {
  margin-bottom: 10px;
}

#content.basic .content h2,
#content.basic .content h3,
#content.basic .content h4 {
  margin-top: 30px;
  margin-bottom: 10px;
}

#content.basic .content h2 {
  font-size: 1.8rem;
}

#content.basic .content h3 {
  font-size: 1.5rem;
}

.content a {
  position: relative;
}

.content a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  left: 0;
  bottom: 1px;
  background: var(--main-color);
}

content .btn {
  color: #fff;
}

.content .btn::before {
  display: none;
}

.content ul {
	margin-bottom: 20px;
}

.content ul li {
	position: relative;
  padding-left: 30px;
  margin: 5px 0;
  width: 100%;
  font-size: 18px;
}

.content ul li:after {
  position: absolute;
  left: 0;
  top: 0px;
  font-family: 'Font Awesome 6 Pro';
  content: "\f061";
  font-weight: 700;
  font-size: 16px;
  color: var(--main-text);
}

#content .img-right img,
#content .img-left img {
  flex: 0 0 50%;
  width: 50%;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

#content .img-left img {
  margin-right: 36px;
}

#content .img-right img {
  order: 2;
  margin-left: 36px;
}

#content .img-full {
  flex-direction: column;
}

#content .img-full img {
  margin-bottom: 30px;
  border-radius: 25px;
  box-shadow: var(--box-shadow);
}

#content .vid-right .video,
#content .vid-left .video {
  flex: 0 0 50%;
  width: 50%;
}

#content .vid-left .video {
  margin-right: 36px;
}

#content .vid-right .video {
  order: 2;
  margin-left: 36px;
}

#content .vid-full {
  flex-direction: column;
}

#content .vid-full .video {
  margin-bottom: 30px;
}

#content table {
  display: block;
  overflow-x: auto;
  overflow-y: auto;
  margin-bottom: 30px;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 300px);
  height: auto !important;
}

/* Define scrollbar size */
#content table::-webkit-scrollbar {
  width: 8px;
  height: 8px; 
}

#content table::-webkit-scrollbar-track {
  background: #b1d5e3;
  border-radius: 7px;
}

#content table::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 7px;
}

#content table::-webkit-scrollbar-button {
  display: none;
}

#content tbody tr:first-of-type {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

#content table td {
  padding: 8px;
}

#content table td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}

/*--------------------------------------------------------------
9.0 Custom pages
--------------------------------------------------------------*/


/*------------------------------
9.1 Basic
------------------------------*/
#banner.page {
  height: 40vh;
  position: relative;
}

#banner.page .content {
  text-align: center;
}

#usps {
  text-align: center;
}

#usps .usp {
  padding: 25px;
  box-shadow: var(--box-shadow);
  margin-top: 24px;
  background: #fff;
}

#usps .usp i {
  font-size: 45px;
  color: var(--main-color);
}

#usps .usp h5 {
  margin: 16px 0;
}

#usps .usp p {
  font-size: 18px;
  margin-bottom: 0;
}

/*------------------------------
9.2 Search
------------------------------*/
#search-top {
	padding: 70px 0;
	text-align: center;
}

#search-top h1 {
	font-size: 40px;
	font-weight: 700;
}

#search-top h1 span {
	color: var(--main-color);
}

#search-top .search {
	max-width: 750px;
	margin: 30px auto 0;
}

#search-top .search p {
	font-size: 18px;
	margin-bottom: 15px;
}

#search-top .search .form-control {
	background: #F7F7F7;
  border: none;
}

#search-top .search button {
    background: #F7F7F7;
    border: none;
    padding-right: 15px;
    padding-left: 15px;
}

#search-results article {
  background: #fff;
  box-shadow: var(--box-shadow);
  margin-top: 24px;
}

#search-results article .details {
  padding: 25px;
}

#search-results article .details h5 {
  color: var(--main-color);
}

#search-results article .details .btn {
  margin-top: 25px;
}



/*--------------------------------------------------------------
9.3 Error
--------------------------------------------------------------*/
#error {
	min-height: calc(100vh - 185px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(35,35,34,0.35) 100%);
}

#error .wrapper {
	display: flex;
	align-items: center;
}

#error .wrapper > div {
	flex: 0 0 50%;
	width: 50%;
}

#error .content {
	text-align: right;
}

#error .content h1 {
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 14px;
}

#error .content p {
	font-size: 25px;
}

#error .content .cta {
	margin-top: 100px;
	text-align: right;
}

#error .content .cta p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444444;
    max-width: 360px;
    margin-left: auto;
}

#error .img {
	padding-left: 80px;
}

#error .img img {
	max-height: 60vh;
}

.addtoshoppingcart {
  padding: 10px 0;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
}

.quantity {
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 10px;
}

.quantity .qty {
  width: 60px;
  height: 49px;
  line-height: 40px;
  border: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  background-color: #eee;
  text-align: center;
  margin-bottom: 0;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.quantity input[type=number] {
  -moz-appearance: textfield;
}

.quantity .sub, .quantity .add {
    display: block;
    cursor: pointer;
    border: 0 transparent;
    padding: 0;
    width: 46px;
    height: 49px;
    line-height: 40px;
    text-align: center;
    background-color: #eee;
    font-size: 16px;
    font-weight: 700;
    transition: background-color .2s linear;
    -webkit-transition: background-color .2s linear;
    -o-transition: background-color .2s linear;
}

/*--------------------------------------------------------------
9.4 Product page
--------------------------------------------------------------*/
#product-intro {
  padding-top: 50px;
  position: relative;
}

#product-intro .bg {
  top: -15%;
  left: -5%;
  position: absolute;
  opacity: .025;
  z-index: -1;
}

#product-intro .labels{
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

#product-intro .labels .label {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
}

#product-intro .labels .label img {
  height: 22px;
  width: auto;
}

#product-intro .art-nr {
  color: var(--main-color);
  margin-top: 15px;
}

#product-intro .price {
  font-size: 30px;
  font-weight: 800;
  color: var(--main-color);
}

#product-intro .usp-general {
  font-weight: 600;
  margin-top: 14px;
  color: var(--main-text);
  max-width: 550px;
}

#product-intro .usps {
  margin-top: 20px;
}

#product-intro .usps .usp {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

#product-intro .usps .usp:last-child {
  margin-bottom: 0;
}

#product-intro .usps .usp svg {
  width: 35px;
  height: 35px;
}

#product-intro .usps .usp.popup svg.icon {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  transform: translateY(-6px);
}

#product-intro .usps .usp.popup a {
  cursor: pointer;
}

#product-intro .usps .usp.popup #popupModal {
  text-transform: none;
}

#product-intro .usps .usp.popup #popupModal .modal-header {
  background: var(--main-color);
}

#product-intro .usps .usp.popup #popupModal .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
}

#product-intro .specs {
  margin: 30px 0;
  background: #F0F6FA;
  font-size: 18px;
}

#product-intro .specs td {
  padding: 12px 16px;
}

#product-intro .specs h6 {
  font-size: 18px;
  font-weight: 800;
  text-transform: unset;
}

#product-intro .specs a {
  color: var(--main-text);
  font-weight: 600;
  border-bottom: 1px solid var(--main-color);
}

#product-intro .specs a i {
  color: var(--main-color);
  margin-left: 6px;
}

#product-intro .btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#product-intro .btns .btn {
  align-self: flex-start;
}

#product-intro .btns .btn:nth-of-type(2) {
  background: none;
  color: var(--main-text);
  border: 1px solid var(--main-text);
}

#product-intro .btns .btn:nth-of-type(2):after {
  filter: brightness(0%);
}

#product-intro .btns .btn:nth-of-type(2):hover {
  background: var(--main-text);
  color: #fff;
}

#product-intro .btns .btn:nth-of-type(2):hover:after {
  filter: brightness(100%);
}

#product-intro .video {
  position: absolute;
  width: calc(50vw - 20px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-height: 530px;
}

#product-intro .video svg {
  width: 85px;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}

#product-intro .video iframe {
  border-radius: 60px 0 0 60px;
  box-shadow: var(--box-shadow);
  max-height: 550px;
}

#product-intro .img {
  position: absolute;
  width: calc(50vw - 20px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#product-intro .img img {
  border-radius: 60px 0 0 60px;
  box-shadow: var(--box-shadow);
  max-height: 700px;
  object-fit: cover;
}

#product-intro.sold {
  min-height: 70vh;
  display: grid;
  place-content: normal;
}

#product-intro.sold .row {
  height: 100%;
  align-items: center;
}

#product-intro.sold .label {
  font-size: 16px;
  position: relative;
  background: #e81919;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  padding: 12px 20px 9px 20px;
  width: fit-content;
  margin-top: 5px;
  margin-bottom: 15px;
}

#product-intro.sold .disc {
  margin-top: 50px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 500;
}

.swiper-wrapper {
  padding-bottom: 20px;
}

.swiper-button-next, 
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--main-color);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next i , 
.swiper-button-prev i {
  color: #fff;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  content: "";
}

.swiper-pagination-bullets {
  bottom: -6px !important;
}

.swiper-pagination-bullet {
  background: #000;
}

.swiper-pagination-bullet-active {
  background: var(--main-color);
}

.swiper-button-next svg,
.swiper-button-prev svg {
  height: 8px;
  scale: 1.3;
}

.swiper-button-next,
.swiper-button-prev {
  background: none;
  bottom: -10px;
  top: unset;
  right: 35%;
}

#images-slider {
  padding-top: 50px;
  padding-bottom: 0;
}

.images-slider .swiper-slide {
	transform: scale(0.85);
	transition: all .5s;
  opacity: .25;
	box-shadow: 7px 18px 45px rgba(32, 112, 143, 0.15);
}

.images-slider .swiper-slide-active,
.images-slider .swiper-slide-duplicate-active
 {
	transform: scale(1);
  opacity: 1;
}

.images-slider .swiper-slide a {
  width: 100%;
}

.images-slider .swiper-slide a:hover {
  opacity: 1;
}

.images-slider .swiper-wrapper {
	padding-bottom: 75px;
  padding-top: 30px;
}

.images-slider .swiper-button-prev {
  right: calc(35% + 90px);
  left: unset;
}

.images-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  font-size: 20px;
  color: var(--main-text);
  z-index: -1;
}

.images-slider .swiper-pagination .swiper-pagination-current {
  font-weight: 700;
  color: var(--main-color);
}


#product-specs {
  padding-top: 0;
  background: #F0F6FA;
}

#product-specs .divider {
  width: 100%;
  height: 125px;
  display: block;
}

#product-specs .row {
  padding: 80px 0 20px;
}

#product-specs .content h2 {
  font-size: 35px;
  margin-bottom: 14px;
}

#product-specs .content h2 span {
  color: var(--main-color);
}

#product-specs .content .specs-small {
  font-size: 18px;
  margin-bottom: 20px;
}

#product-specs .content .specs-small tr td:first-of-type {
  font-weight: 800;
  font-size: 18px;
}

#product-specs .content .specs-small tr td:last-of-type {
  font-size: 18px;
  padding: 5px 15px;
}

#product-specs .content .btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#product-specs .content .btn {
  padding: 14px 25px 12px 25px;
  background: var(--main-text);
  color: #fff;
  align-self: flex-start;
}

#product-specs .content .btn:hover {
  background: #4A5177;
}

#product-specs .content .btn:after {
  display: none;
}

#product-specs .content .btn i {
  font-size: 19px;
  margin-left: 10px;
  color: var(--main-color);
}

#product-specs .content .btn-line {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--main-text);
  position: relative;
  font-size: 17px;
  align-self: flex-start;
}

#product-specs .content .btn-line:after {
  content: "";
  background: var(--main-text);
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
}

#product-specs .content .btn-line i {
  color: var(--main-color);
  margin-left: 10px;
}

#product-specs .specs {
  padding-left: 50px;
}

#product-specs .specs h2 {
  font-size: 35px;
  margin-bottom: 14px;
  text-align: right;
}

#product-specs .content .text-wrapper  {
  display: block;
  max-height: 260px;
  overflow: hidden;
}


#product-specs .content .text-wrapper {
  position: relative;
  transition: max-height .5s;
}

#product-specs .content.expanded .text-wrapper {
  max-height: var(--text-height);
}

#product-specs .content .btn {
  border: 1px solid var(--main-text);
  color: var(--main-text);
  background: none;
  padding: 14px 25px 12px 25px;
  display: none;
  gap: 12px;
  width: fit-content;
  margin: 10px 0 30px;
}

#product-specs .content.more .btn {
  display: flex;
}

#product-specs .content.more .btn:hover {
  background: #E0E4F8;
}

#product-specs .content.more .btn:after {
  display: none;
}

#product-specs .content.more .btn .read-less {
  display: none;
}

#product-specs .content.expanded .btn .read-less {
  display: block;
}

#product-specs .content.expanded .btn .read-more {
  display: none;
}

#product-specs .content .btn svg {
  transition: all .3s;
}

#product-specs .content.expanded .btn svg {
  rotate: 180deg;
}

#product-specs .specs .table-wrapper  {
  display: block;
  max-height: 260px;
  overflow: hidden;
}

#product-specs .specs table  {
  width: 100%;
}

#product-specs .specs table tr:nth-child(odd) {
  background: #CFF1FF;
}

#product-specs .specs table td {
  font-size: 18px;
  padding: 12px 25px;
}

#product-specs .specs table tr td:first-of-type {
  font-weight: 800;
}

#product-specs .specs .table-wrapper {
  position: relative;
  transition: max-height .5s;
}

#product-specs .specs.expanded .table-wrapper {
  max-height: var(--table-height);
}

#product-specs .specs .btn {
  border: 1px solid var(--main-text);
  color: var(--main-text);
  background: none;
  padding: 14px 25px 12px 25px;
  display: none;
  gap: 12px;
  width: fit-content;
  margin: 10px auto 0;
}

#product-specs .specs.more .btn {
  display: flex;
}

#product-specs .specs.more .btn:hover {
  background: #E0E4F8;
}

#product-specs .specs.more .btn:after {
  display: none;
}

#product-specs .specs.more .btn .read-less {
  display: none;
}

#product-specs .specs.expanded .btn .read-less {
  display: block;
}

#product-specs .specs.expanded .btn .read-more {
  display: none;
}

#product-specs .specs .btn svg {
  transition: all .3s;
}

#product-specs .specs.expanded .btn svg {
  rotate: 180deg;
}

#product-content {
  background: #F0F6FA;
  padding-top: 0;
  padding-bottom: 0;
}

#product-content .wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: right;
  position: relative;
  z-index: 2;
  padding: 0 12px;
}

#product-content h3 {
  font-size: 35px;
  margin-bottom: 14px;
}

#product-content h3 em svg {
  bottom: -3px;
  height: 19px;
}

#product-content p {
  max-width: 660px;
  margin-left: auto;
}

#product-content .btn {
  background: none;
  border: none;
  color: var(--main-text);
}

#product-content .btn:hover {
  opacity: .5;
}

#product-content .btn {
  padding: 12px 35px 10px 0;
}

#product-content .btn:after {
  filter: brightness(0%);
  right: 0;
}

#product-content .img {
  margin-top: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 12px;
}

#product-content .img:after {
  content: "";
  position: absolute;
  height: 75%;
  width: 100%;
  background: var(--main-text);
  bottom: 0;
  left: 0;
  z-index: -1;
}

#product-content .img img {
  max-width: 900px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  z-index: 2;
  position: relative;
}

#product-content .img .icon {
  position: absolute;
  top: 30%;
  left: -2%;
  filter: brightness(0) invert(1);
  width: 250px;
  height: auto;
  background: none;
  box-shadow: none;
  opacity: .3;
  z-index: 1;
}

#product-related {
  background: var(--main-text);
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
}

#product-related .sub-title {
  color: #B8EBFF;
  margin-bottom: 5px;
}

#product-related h3 {
  color: #fff;
  margin-bottom: 60px;
  font-size: 35px;
}

#product-related .col-lg-4 {
  margin-bottom: 24px;
}

#product-related .row .col-lg-4:nth-child(2),
#product-related .row .col-lg-4:nth-child(5) {
  transform: translateY(-60px);
}

#product-related .container {
  position: relative;
  z-index: 2;
}

#product-related .product .btn-big {
  background: var(--main-color);
}

#product-related .product .btn-big:hover {
  background: #005CB9;
}

#product-related .divider {
  height: 700px;
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*--------------------------------------------------------------
9.5 Project page
--------------------------------------------------------------*/
#detail-intro {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  background: linear-gradient(to right, rgba(255,255,255,1) 1%,rgba(255,255,255,1) 50%,rgba(240,246,250,1) 50%,rgba(240,246,250,1) 100%);
}

#detail-intro #breadcrumbs {
  margin-bottom: 80px;
}

#detail-intro .wrapper {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

#detail-intro .info {
  background: #fff;
  padding: 75px;
  max-width: 700px;
  transform: translateX(125px);
  position: relative;
  z-index: 1;
  box-shadow: var(--box-shadow);
}

#detail-intro .info:after {
  content: "";
  position: absolute;
  left: 0;
  top: -170px;
  background-image: url("../images/dots.svg");
  background-repeat: no-repeat;
  width: 225px;
  height: 170px;
}

#detail-intro .info .year {
  font-weight: 800;
  color: var(--main-color);
  font-size: 35px;
}

#detail-intro .info .icon {
  height: 50px;
  width: auto;
}

#detail-intro .info h1 {
  font-size: 40px;
  margin: 10px 0;
}

#detail-intro .info p {
  font-size: 21px;
  margin-bottom: 0;
}

#detail-intro .img img {
  box-shadow: var(--box-shadow);
}

#detail-description {
  background: #F0F6FA;
  padding: 100px 0 20px;
}

#detail-description .content {
  max-width: 750px;
  margin: 0 auto;
}

#detail-description h2 {
  margin-bottom: 14px;
  font-size: 35px;
}

#detail-description .content p:last-of-type {
  margin-bottom: 0;
}

#images-slider.project {
  position: relative;
}

#images-slider.project:after {
  content: "";
  height: 50%;
  width: 100%;
  position: absolute;
  background: #F0F6FA;
  top: 0;
  left: 0;
}

.expand-text.project {
  max-width: 750px;
  margin: 0 auto 80px;
}

.expand-text.project h2 {
  font-size: 35px;
  margin-bottom: 14px;
}

#detail-machines {
  padding-top: 30px;
}

#detail-machines h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
}

#detail-machines .links {
  height: 100%;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 25px;
}

#detail-machines .links h4 {
  color: #fff;
  background: var(--main-text);
  border-radius: 25px 25px 0 0;
  padding: 25px;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  font-size: 25px;
}

#detail-machines .btns {
  background: #fff;
  padding: 25px;
  flex-basis: auto;
  border-radius: 0 0 25px 25px;
}

#detail-machines .links .btn {
  display: flex;
  background: none;
  border-bottom: 1px solid var(--main-text);
  border-radius: 0;
  color: var(--main-text);
  padding: 14px 0 12px 0;
}

#detail-machines .links .btn:hover {
  opacity: .5;
}

#detail-machines .links .btn:after {
  filter: brightness(0%);
  right: 0;
}

#detail-machines .links .btns .btn:last-of-type {
  border-bottom: none;
}

#detail-related {
  background: linear-gradient(to bottom, rgba(255,255,255,1) 1%,rgba(255,255,255,1) 40%,rgba(28,30,37,1) 40%,rgba(28,30,37,1) 100%);
  padding-top: 30px;
}

#detail-related h3 {
  margin-bottom: 50px;
  font-size: 30px;
}

#detail-related h3 em svg {
  bottom: -2px;
}

#detail-related .project {
  border-radius: 25px 25px 0 0;
  position: relative;
}


#detail-related .row .col-lg-4:nth-of-type(2) .project {
  margin-top: -100px;
}

#detail-related .project:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 40%;
  width: 100%;
  box-shadow: var(--box-shadow);
  border-radius: 25px 25px 0 0;
}

#detail-related .project .img {
  position: relative;
}

#detail-related .row .col-lg-4:nth-of-type(2) .img img {
  height: 470px;
}

#detail-related .project .img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  background: linear-gradient(0deg, rgba(32,33,33,1) 0%, rgba(32,33,33,0) 100%);
}

#detail-related .project .img img {
  border-radius: 25px 25px 0 0;
  object-fit: cover;
}

#detail-related .project .details {
  color: #fff;
  padding: 20px;
  margin-top: -50px;
  z-index: 1;
  position: relative;
}

#detail-related .project h5 {
  font-size: 22px;
  margin-bottom: 10px;
}

#detail-related .project p {
  margin-bottom: 10px;
  opacity: .9;
}

#detail-related .project .btn {
  background: none;
  color: #B8EBFF;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#detail-related .project .btn:hover {
  opacity: .5;
}

/*--------------------------------------------------------------
9.6 Projects overview
--------------------------------------------------------------*/
#overview.projects {
  padding-bottom: 0;
}
#overview.projects .categories li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  cursor: pointer;
}

#overview.projects .categories li.active {
  font-weight: 800;
}

#overview.projects .categories li img {
  width: 25px;
  height: auto;
  text-emphasis: center;
}

@-webkit-keyframes fadeInItem {
  from { opacity: 0; top: 50px;}
    to { opacity: 1; top: 0; }
}
@keyframes fadeInItem {
  from { opacity: 0; top: 50px;}
    to { opacity: 1; top: 0; }
}

#overview.projects .items .col-lg-4 {
  display: none;
  -webkit-animation: fadeInItem 1s;
  animation: fadeInItem 1s;
  position: relative;
}

#overview.projects .items .col-lg-4.active {
  display: block;
}

#overview.projects .article .content h4 {
  margin-bottom: 0;
  min-height: 54px;
}

#overview.projects .article .content p {
  min-height: 81px;
}


/*--------------------------------------------------------------
9.7 Contact page
--------------------------------------------------------------*/
#contact-info {
  font-size: 20px;
  position: relative;
}

#contact-info h1 {
  font-size: 45px;
  margin-bottom: 50px;
}

#contact-info h1 em svg {
  height: 20px;
  bottom: 3px;
}

#contact-info .col-lg-6 .row {
  margin-top: 40px;
}

#contact-info h4 {
  font-size: 23px;
  margin-bottom: 10px;
}

#contact-info h4 em svg {
  bottom: 2px;
  height: 11px;
}

#contact-info .loc {
  display: flex;
}

#contact-info i {
  font-size: 20px;
  width: 30px;
  color: var(--main-color);
}

#contact-info a {
  color: var(--main-text);
  margin-top: 5px;
}

#contact-info span {
  color: var(--main-color);
}

#contact-info img {
  position: absolute;
  width: calc(50vw - 100px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% - 160px);
  object-fit: cover;
  border-radius: 90px 0 0 90px;
  box-shadow: var(--box-shadow);
}

#contact-form {
  background: #F0F6FA;
}

#contact-form h2 {
  margin-bottom: 30px;
}

form label {
  font-weight: 800;
  color: var(--main-text);
  text-transform: uppercase;
}

form label span {
  color: var(--main-color);
}

form .form-control {
  border-radius: 6px;
  border: 1px solid var(--main-color);
}

form .form-select {
  border-radius: 6px;
  border: 1px solid var(--main-color);
  cursor: pointer;
}

#contact-team h2 {
  margin-bottom: 30px;
  padding-left: 30px;
}

#contact-team h2 em svg {
  bottom: 4px;
  height: 15px;
}

#contact-team .member {
  border-radius: 25px;
  display: block;
  padding: 0 30px 30px 30px;
  text-align: center;
  position: relative;
  height: 100%;
}

#contact-team .member:after {
  content: "";
  background: #fff;
  box-shadow: 7px 12px 22px rgba(32, 112, 143, 0.20);
  position: absolute;
  bottom: 0;
  left: 0;
  height: calc(100% - 100px);
  width: 100%;
  z-index: -1;
  border-radius: 25px;;
}

#contact-team .member img {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  position: relative;
  display: block;
}

#contact-team .member .role {
  color: #545D8A;
}

#contact-team .member .labels {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 40px;
  justify-content: center;
}

#contact-team .member .labels span {
  background: var(--main-color);
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

#contact-team .member a {
  font-size: 20px;
  color: var(--main-text);
  margin-top: 8px;
  display: block;
}

#contact-team .member a i {
  color: var(--main-color);
  margin-right: 10px;
}

#contact-team .row {
  position: relative;
  transition: max-height .5s;
  max-height: 520px;
  overflow: hidden;
  padding: 30px;
  row-gap: 24px;
}

#contact-team.expanded .row {
  max-height: var(--team-height);
}

#contact-team .btn {
  border: 1px solid var(--main-text);
  color: var(--main-text);
  background: none;
  padding: 14px 25px 12px 25px;
  display: none;
  gap: 12px;
  width: fit-content;
  margin: 20px auto 0;
}

#contact-team.more .btn {
  display: flex;
}

#contact-team .btn:hover {
  background: #E0E4F8;
}

#contact-team .btn:after {
  display: none;
}

#contact-team .btn .read-less {
  display: none;
}

#contact-team.expanded .btn .read-less {
  display: block;
}

#contact-team.expanded .btn .read-more {
  display: none;
}

#contact-team .btn svg {
  transition: all .3s;
}

#contact-team.expanded .btn svg {
  rotate: 180deg;
}

#contact-locations h2 {
  margin-bottom: 35px;
  text-align: center;
}

#contact-locations .location {
  display: flex;
  box-shadow: 7px 18px 35px rgba(32, 112, 143, .15);
  border-radius: 25px;
  background: #fff;
}

#contact-locations .location:not(:last-child) {
  margin-bottom: 30px;
}

#contact-locations .location .info {
  padding: 50px;
  flex: 0 0 51%;
}

#contact-locations .location .info h3 {
  margin-bottom: 25px;
}

#contact-locations .location .info h3 em svg {
  bottom: 2px;
}

#contact-locations .location a {
  color: var(--main-text);
  display: block;
  font-size: 20px;
  margin-bottom: 14px;
}

#contact-locations .location i {
  font-size: 20px;
  color: var(--main-color);
  width: 30px;
}

#contact-locations .location .loc {
  font-size: 20px;
  display: flex;
}

#contact-locations .location .map {
  flex: 0 0 49%;
  flex-grow: 1;
  position: relative;
}

#contact-locations .location .map iframe {
  display: none;
  border-radius: 0 25px 25px 0;
  height: 100%;
}

#contact-locations .location .map .cookie-accept {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  padding: 25px;
  display: none;
  place-content: center;
  text-align: center;
  font-size: 20px;
}

#contact-locations .location .map .cookie-accept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/map-bg.jpg') center/cover no-repeat;
  opacity: 0.8;
  z-index: -1;
  filter: blur(2px);
}

#contact-locations .location .map .cookie-accept .content {
  background: #fff;
  border-radius: 15px;
  background: #fff;
  padding: 20px;
}

#contact-locations .location .map .cookie-accept span {
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 17px;
}

#contact-locations .location .map .cookie-accept span a {
  display: inline;
  font-weight: 700;
  font-size: 17px;
}

#contact-locations .location .map .cookie-accept .btn {
  color: #fff;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
9.8 Brand page
--------------------------------------------------------------*/
#brand-intro {
  text-align: center;
}

#brand-intro img {
  max-width: 300px;
}

#brand-intro h1 {
  margin-bottom: 20px;
}

#brand-intro ul li {
  width: fit-content;
  margin: 0 auto 8px;
}

#images-slider.brand {
  padding: 0 0 80px;
}

#brand-products {
  padding-top: 0;
}

#brand-products h2 {
  text-align: center;
  margin-bottom: 30px;
}

#brand-products .col-lg-4 {
  margin-bottom: 24px;
}

#brand-products .btn-wrapper {
  text-align: center;
  margin-top: 25px;
}

#brand-logos h2 {
  text-align: center;
  margin-bottom: 25px;
}

#brand-logos .swiper-button-next {
  right: 12px;
  bottom: -40px;
}

#brand-logos .swiper-button-prev {
  right: 85px;
  left: unset;
  bottom: -40px;
}

/*------------------------------
9.8 Construction page
------------------------------*/
#construction-intro {
  text-align: center;
}

#construction-intro h1 {
  margin-bottom: 15px;
}

#construction-intro img {
  border-radius: 25px;
  box-shadow: var(--box-shadow);
  margin-top: 20px;
}

#construction-categories {
  padding: 40px 0 0;
}

#construction-categories h2 {
  text-align: center;
  margin-bottom: 25px;
}

#construction-categories .category {
  margin-bottom: 24px;
  box-shadow: 7px 18px 95px rgb(32 112 143 / 15%);
  border-radius: 25px;
  color: var(--main-text);
  display: block;
}

#construction-categories .category img {
  border-radius: 25px 25px 0 0;
}

#construction-categories .category .content {
  padding: 25px 15px;
  background: var(--main-color);
  color: #fff;
  border-radius: 0 0 25px 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#construction-categories .category .content h4 {
  margin-bottom: 0;
  font-size: 18px;
}

/*------------------------------
9.10 Dealer brand
------------------------------*/
#dealer-overview {
  text-align: center;
}

#dealer-overview h1 {
  text-align: center;
  margin-bottom: 15px;
}

#dealer-overview .row {
  justify-content: center;
}

#dealer-overview .dealer {
  display: block;
  margin-bottom: 24px;
}

#db-products {
  padding: 0;
}

/*------------------------------
9.11 Landingpage
------------------------------*/

#landingpage-intro .content h2 {
  font-size: 1.8rem;
}

#landingpage-intro .content h3 {
  font-size: 1.5rem;
}

#landingpage-products {
  padding-top: 0;
}

#landingpage-products .btn-wrapper {
  text-align: center;
  margin-top: 25px;
}

#brand-intro.landingpage {
  text-align: left;
}

#brand-intro.landingpage ul li {
  margin: 0;
}

#brand-intro.landingpage a {
    font-weight: 700;
    position: relative;
    color: var(--main-text);
}

#brand-intro.landingpage a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  left: 0;
  bottom: 1px;
  background: var(--main-color);
}

/*--------------------------------------------------------------
9.12 News
--------------------------------------------------------------*/
#news h2 {
  text-align: center;
  margin-bottom: 25px;
}

#news .col-lg-4 {
  margin-bottom: 24px;
}

#news .article {
  color: var(--main-text);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: unset;
  background: #fff;
}

#news .article span {
  margin-top: auto;
}

/*--------------------------------------------------------------
9.13 Branches
--------------------------------------------------------------*/
#branches-intro {
  text-align: center;
  padding-bottom: 0;
}

#branches-intro h1 {
  margin-bottom: 15px;
}

#branches-intro p {
  margin-bottom: 0;
}

#branches-overview .row .col-lg-4 {
  margin-bottom: 24px;
}

#branches-overview .branche {
  box-shadow: 7px 18px 95px rgb(32 112 143 / 15%);
  border-radius: 25px;
  color: var(--main-text);
  display: flex;
  flex-direction: column;
  height: 100%;
}

#branches-overview .branche img {
  border-radius: 25px 25px 0 0;
}

#branches-overview .branche .content {
  padding: 25px 15px;
  background: var(--main-color);
  color: #fff;
  border-radius: 0 0 25px 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
  min-height: 115px;
}

#branches-overview .branche .content h4 {
  margin-bottom: 0;
  font-size: 18px;
}

/*--------------------------------------------------------------
9.14 Mailchimp
--------------------------------------------------------------*/
#mailchimp {
  background: #F0F6FA;
}

#mailchimp h1 {
  margin-bottom: 20px;
}

#mailchimp .mailchimp {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

#mailchimp form .mailchimp:not(:last-child) {
  margin-bottom: 18px;
}

#mailchimp .mailchimp .form-control {
  background: #fff;
  cursor: pointer;
}

#mailchimp .mailchimp i {
  color: var(--main-color);
  cursor: pointer;
}

#mailchimp .mailchimp .copied {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 26px);
  height: 100%;
  background: #25319c;
  color: #fff;
  display: grid;
  place-content: center;
  border-radius: 6px;
  animation-name: reveal;
  animation-duration: 3s;
  opacity: 0;
}

@keyframes reveal {
  0%   {opacity: 0;}
  20%  {opacity: 1;}
  80%  {opacity: 1;}
  100% {opacity: 0;}
}


/*--------------------------------------------------------------
9.15 Choice results
--------------------------------------------------------------*/
#choice-results h1 {
  text-align: center;
  margin-bottom: 25px;
}

#choice-results .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

#choice-results .filters a {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-text);
}

#choice-results .filters a:after {
  content: "\f057";
  font-family: 'Font Awesome 6 Pro';
  margin-left: 8px;
}

#choice-results #results .col-lg-4 {
  margin-bottom: 24px;
}

#choice-results #results .product {
  color: var(--main-text);
  box-shadow: 7px 8px 31px rgb(32 112 143 / 16%);
}

#choice-results #results .product .content {
  border-radius: 0 0 25px 25px;
}

/*--------------------------------------------------------------
10.0 Media Queries
--------------------------------------------------------------*/

/*------------------------------
10.1 Large desktop
------------------------------*/
@media (max-width: 1800px) {
  #home-search {
    margin-top: -90px;
  }
  body:has(#home-search .choice .cta h6) .cta {
    top: -85%;
  }
  #home-search .choice .shortcuts {
    transform: translateY(-30%);
  }
  header .middle .main-menu li.dropdown.buy .drop-menu .wrapper ul,
  header .middle .main-menu li.dropdown .drop-menu .wrapper.others ul {
    flex: 0 0 80%;
  }
}

@media (max-width: 1600px) {
  body {
    padding-top: 148px;
  }
	header .wrapper,
  header.switch .wrapper {
    padding: 15px 12px;
  }
  header .middle .main-menu li.dropdown.buy .drop-menu .wrapper ul,
  header .middle .main-menu li.dropdown .drop-menu .wrapper.others ul {
    flex: 0 0 100%;
  }
  header .middle .main-menu li {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
  }
  header .middle .main-menu li.dropdown .drop-menu ul li {
    flex-basis: 45%;
  }
  header .middle .main-menu li.dropdown .drop-menu ul.buy li,
  header .middle .main-menu li.dropdown .drop-menu .wrapper.others ul li {
    flex-basis: 30%;
  }
  header .logo {
    width: 210px;
  }
  header .search form .form-control {
    color: #fff;
    border: none;
    background: none;
    padding: 10px 10px 10px 0;
  }
  header .middle .main-menu {
    gap: 15px;
  }
  header .middle .main-menu li.dropdown .drop-menu {
    top: 134px;
  }
  header .middle .main-menu li.dropdown.small.categories:hover .drop-menu {
    top: 134px;
  }
  header.switch .middle .main-menu li.dropdown .drop-menu {
    top: 67px;
  }
  header.switch .middle .main-menu li:nth-of-type(3).dropdown.small.small:hover .drop-menu,
  header.switch .middle .main-menu li:nth-of-type(4).dropdown.small.small:hover .drop-menu {
    top: 67px !important;
  }
  header .middle .main-menu li.dropdown.small .drop-menu {
    top: 33px;
  }
  .dropdown.language {
    right: 12px;
  }
}

@media (max-width: 1400px) { 
  body {
    padding-top: 108px;
  } 
  #menu-overlay .menu-content {
    margin-top: 20px;
  }
  #menu-overlay .menu li a {
    font-size: 30px;
  }
  header .logo {
    width: 170px;
  }
  #home-video .title h1 {
    color: #fff;
    font-size: 50px;
    line-height: 1;
  }

}

@media (max-width: 1200px) {
  body {
    padding-top: 139px;
  }
  body:after {
    display: none;
  }
	header .middle .main-menu {
    display: none;
  }
  header .wrapper {
    padding: 15px 12px;
  }
  header.switch .middle .phone {
    height: unset;
  }
  header .dropdown.language {
    right: 122px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    height: 20px;
  }
  header.switch .dropdown.language {
    height: 20px;
    overflow: visible;
  }
  header .dropdown.language span {
    display: none;
  }
  header .dropdown.language button i {
    font-size: 20px;
    color: var(--main-text);
  }
  header .dropdown.language .dropdown-toggle::after {
    margin-left: 0;
  }
  header .call-mail {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 70px;
  }
  header .call-mail img {
    height: 32px;
    width: auto;
  }
  header .search {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  header .search form {
    border-radius: 0;
    padding: 5px 12px 5px 12px;
  }
  header .search form i {
    font-size: 16px;
    padding: 0 0 0 12px;
  }
  #menu-overlay {
    transform: translateX(-100%);
  }
  #menu-overlay.open {
    transform: translateX(0);
  }
  #menu-overlay .top {
    padding: 15px 12px;
  }
  #menu-overlay .logo {
    width: 190px;
  }
  #menu-overlay .menu-close {
    transform: translateY(10px);
  }
  #menu-overlay .menu-content {
    margin-top: 20px;
  }
  #menu-overlay .wrapper {
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }
  #menu-overlay .main-menu li.dropdown {
    position: unset;
  }
  #menu-overlay .main-menu li.dropdown span {
    padding: 10px 0;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    display: block;
    width: fit-content;
    position: relative;
  }
  #menu-overlay .main-menu li.dropdown span:after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--main-text);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    display: grid;
    place-content: center;
  }
  #menu-overlay .main-menu .drop-menu {
    transform: translateX(100%);
    transition: all .5s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
  }
  #menu-overlay .main-menu .drop-menu.active {
    transform: translateX(0);
  }
  #menu-overlay .main-menu .drop-menu .top-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-weight: 600;
  }
  #menu-overlay .main-menu .drop-menu .top-nav i {
    color: var(--main-color);
    margin-right: 6px;
  }
  #menu-overlay .main-menu .drop-menu .top-nav .switch {
    font-size: 20px;
    text-transform: uppercase;
  }
  #menu-overlay .main-menu .drop-menu .top-nav .switch.active {
    display: none;
  }
  #menu-overlay .main-menu .drop-menu .wrapper {
    position: unset;
  }
  #menu-overlay .main-menu .drop-menu .wrapper ul {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: #fff;
    top: 50px;
    overflow: auto;
    transition: all .5s ease-in-out;
  }
  #menu-overlay .main-menu .drop-menu .wrapper ul.hire {
    transform: translateX(-100%);
  }
  #menu-overlay .main-menu .drop-menu .wrapper ul.hire.active {
    transform: translateX(0);
  }
  #menu-overlay .main-menu .drop-menu .wrapper ul.buy {
    transform: translateX(100%);
    z-index: 2;
  }
  #menu-overlay .main-menu .drop-menu .wrapper ul.buy.active {
    transform: translateX(0);
  }
  #menu-overlay .main-menu .drop-menu h3 {
    margin-bottom: 18px;
  }
  #menu-overlay .main-menu .drop-menu li a{
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
  }
  #menu-overlay .main-menu li.dropdown .drop-menu ul li a img {
    width: 40px;
    flex: 0 0 40px;
  }
  #menu-overlay .main-menu li a {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--main-text);
    padding: 10px 0;
    opacity: 1;
  }
  #menu-overlay .menu li {
    opacity: 1 !important;
  }
  #menu-overlay .menu li.dropdown {
    position: unset;
  }
  #menu-overlay .menu li.dropdown i {
    opacity: 1 !important;
    margin-left: 8px;
    font-size: 18px;
    color: var(--main-text);
  }
  #menu-overlay .menu li.dropdown:hover > .sub-menu, #menu-overlay .menu li.dropdown:hover > .sub-menu:hover {
    display: none !important;
  }
  #menu-overlay .menu {
   position: unset;
  }
  #menu-overlay .menu.desktop {
    display: none;
  }
  #menu-overlay .menu.mobile,
  #menu-overlay .dropdown.language {
    display: block;
  }
  #menu-overlay .menu li.dropdown .sub-menu {
    transform: translateX(100%);
    display: block !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #fff;
    padding-left: 0;
    padding-bottom: 30px;
    transition: all .5s ease-in-out;
    overflow: auto;
  }
  #menu-overlay .menu li.dropdown.open .sub-menu {
    transform: translateX(0);
  }
  #menu-overlay .menu li.dropdown:hover > .sub-menu, #menu-overlay .menu li.dropdown:hover > .sub-menu:hover {
    display: block !important;
    animation: none;
  }
  #menu-overlay .menu .sub-menu .go-back {
    margin-bottom: 25px;
  }
  #menu-overlay .menu .sub-menu .go-back i {
    color: var(--main-color);
    margin-right: 6px;
  }
  #menu-overlay .menu .sub-menu .staff-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
  }
  #menu-overlay .menu .sub-menu .staff-switch div {
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
  }
  #menu-overlay .menu .sub-menu .staff-switch div.active {
    font-weight: 700;
  }
  #menu-overlay .menu .sub-menu .staff-switch div svg {
    position: absolute;
    width: 100%;
    height: 7px;
    left: 0;
    bottom: 2px;
    display: none;
  }
  #menu-overlay .menu .sub-menu .staff-switch div.active svg {
    display: block;
  }
  #menu-overlay .menu .sub-menu .cats {
    display: none;
    -webkit-animation: fade .5s;
    animation: fade .5s;
    position: relative;
  }
  #menu-overlay .menu .sub-menu .cats.active,
  #menu-overlay .menu.others .sub-menu .cats {
    display: block;
  }
  #menu-overlay .menu li.dropdown .sub-menu li a {
    font-size: 18px;
  }
  #menu-overlay .menu li a {
    font-size: 25px;
  }  
  #menu-overlay .menu li.hire .sub-menu li a,
  #menu-overlay .menu li.buy .sub-menu li a {
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 600;
    text-transform: initial;
    font-size: 18px;
  }
  #menu-overlay .menu li.hire .sub-menu li img,
  #menu-overlay .menu li.buy .sub-menu li img {
    flex: 0 0 40px;
    max-width: 40px;
    width: auto;
    max-height: 20px;
  }
  #menu-overlay .menu li.buy .sub-menu .buy-side  {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--main-color);
    width: 100%;
  }
  #menu-overlay .menu li.buy .sub-menu .buy-side .small-btn {
    padding: 0;
  }
  #menu-overlay .menu li.buy .sub-menu .buy-side .btn {
    font-size: 18px;
    margin: 0;
  }
  #menu-overlay .menu li.dropdown .trigger a {
    pointer-events: none;
  }
  #menu-overlay .dropdown.language {
    position: relative;
    right: unset;
    top: unset;
    margin-top: 20px;
  }
  #menu-overlay .contact {
    text-align: left;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--main-color);
  }
  #menu-overlay .contact a {
    justify-content: flex-start;
  }
  #menu-overlay .contact img {
      width: 110px;
  }
  #menu-overlay .contact h3 {
    font-size: 18px;
  }
  #home-search {
    margin-top: 0;
    padding-top: 50px;
  }
  #home-search .wrapper {
    flex-direction: column;
    gap: 30px;
  }
  #home-search .search {
    flex: 0 0 45%;
    position: relative;
    margin-top: 0;
  }
  #home-search .search {
    width: 100%;
  }
  #home-search .search h5 {
    position: unset;
    margin-bottom: 15px;
  }
  #home-search .search, #home-search .or {
    margin-top: 0 !important;
  }
  #home-search .search, #home-search .or {
    font-size: 30px;
  }
  #home-search .or {
    width: 100%;
    z-index: -1;
    flex: unset;
  }
  #home-search .wrapper > .choice {
    min-height: unset;
  }
  #home-search .choice .cta {
    position: relative;
    color: var(--main-text);
    left: unset;
    right: unset;
    text-align: right;
    margin-left: auto;
    width: 270px;
    margin-bottom: 30px;
    top: unset !important;
  }
  #home-search .choice .cta:after {
    display: none;
  }
  #home-search .choice .shortcuts {
    background: var(--main-text);
    color: #fff;
    transform: translateY(0);
  }
  #home-search .choice .shortcuts .btn {
    color: #fff;
  }
  #home-search .choice .shortcuts .btn:after {
    filter: brightness(100%);
  }
  #home-search .choice .shortcuts .btn {
    border-bottom: 1px solid #fff;
  }
  #choice-overlay .wrapper {
    width: auto;
  }
  #choice-overlay .sidebar {
    display: none;
  }
  #contact-locations .location .map .cookie-accept {
    min-height: 300px;
  }
  #contact-locations .location {
    flex-direction: column;
  }
  #contact-locations .location .info {
    padding: 40px 20px 20px 20px;
  }
  #conatct-locations .location a {
    font-size: 18px;
  }
  #contact-locations .location h3 em svg {
    height: 8px;

  }
  #contact-locations .location .map {
    flex: unset;
    min-height: 300px;
    position: relative;
  }
  #contact-locations .location .map iframe {
    position: absolute;
    border-radius: 0 0 25px 25px;
  }
}

/*------------------------------
10.2 Portrait tablet to landscape and desktop
------------------------------*/
@media (min-width: 768px) and (max-width: 979px) { 
	
}

/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
  body {
    padding-bottom: 70px;
  }
  section {
    padding: 50px 0;
  }
  p {
    font-size: 17px;
  }
  h2 em svg {
    height: 14px;
  }
  .btn {
    padding: 12px 50px 10px 15px;
    font-size: 16px;
  }
  .btn:after {
    right: 15px;
  }
  header.open {
    height: 100vh;
  }
  header .container {
    position: relative;
  }
  header .middle .phone {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--main-color);
    color: #fff !important;
    padding: 12px;
    height: 70px !important;
    overflow: hidden;
  }
  header .middle .phone:after {
    content: "";
    position: absolute;
    right: 20px;
    width: 110px;
    height: 110px;
    background-image: url('../images/phone.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 110px 110px;
    opacity: .45;
  }
  header .middle .phone a {
    color: #fff;
  }
  header .mobile-menu-toggle {
    width: 38px;
    height: 28px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: flex;
	  top: 0;
    right: 12px;
    position: absolute;
  }
  header .mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--main-text);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  header .mobile-menu-toggle span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  } 
  header .mobile-menu-toggle span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  header .mobile-menu-toggle span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  header .mobile-menu-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -4px;
      left: 6px;
  }
  header .mobile-menu-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  header .mobile-menu-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
      top: 23px;
      left: 6px;
  }
  header .menu-toggle {
    transform: translateY(5px);
  }
  header nav .menu,
  header nav form {
    display: none;
  }
  header.open nav .menu,
  header.open nav form {
    display: block;
    width: 100%;
    animation-name: fade;
    animation-duration: .5s;
  }
  @keyframes fade {
    0%   {opacity: 0;}
    100% {opacity: 1;}
  }
  header nav {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav .menu {
    flex-direction: column;
    padding: 16px 0;
  }
  header nav .menu > li a {
    padding: 15px 0;
    width: calc(100% - 60px);
  }
  header nav .menu li.dropdown {
    position: relative;
    justify-content: space-between;
    display: block;
  }
  header nav .menu li.dropdown .arrow-down {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 25px;
    height: 30px;
    width: 30px;
    display: grid;
    place-content: center;
    transition: all .3s;
  }
  header nav .menu li.dropdown.active .arrow-down {
    transform: rotate(180deg);
  }
  header nav .menu li.dropdown .drop-menu {
    position: relative;
    left: unset;
    top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .3s;
    display: block;
    padding: 0;
    overflow: hidden;
  }
  header nav .menu li.dropdown.active > .drop-menu {
    max-height: 300px;
    animation: none;
    padding: 25px 0;
  }
  header nav .menu li.dropdown .drop-menu a {
    padding: 15px 25px;
  }
  header nav .search .form-outline {
    width: 100%;
  }
  .overlay-form .close {
    left: unset;
    right: 0;
  }
  .overlay-form.open .wrapper {
    width: 100%;
    padding: 0 12px 40px 12px;
  }
  .overlay-form .top h3 {
    font-size: 25px;
  }
  .overlay-form .top h3 em svg {
    height: 14px;
  }
  .overlay-form .top .contact-details {
    margin: 0 -12px;
    padding: 20px 60px 20px 12px;
  }
  .overlay-form .top .contact-details:before {
    display: none;
  }
  .overlay-form .top .contact-details img {
    display: none;
  }
  .overlay-form .top {
    flex-direction: column-reverse;
    gap: 25px;
  }
  .overlay-form .top .text {
    padding-top: 30px;
  }
  #search-overlay .results .close {
    right: 12px;
    top: 12px;
    font-size: 25px;
    width: 40px;
    height: 40px;
  }
  #search-overlay h3 {
    font-size: 18px;
  }
  #search-overlay form .form-control {
    font-size: 18px;
  }
  #search-overlay form {
    margin: 20px 0;
  }
  #choice-overlay .step-section h3 {
    font-size: 28px;
  }
  #choice-overlay .choice-help .step-section .info {
    padding: 50px 12px 0 12px;
  }
  #choice-overlay .steps {
    padding: 0 12px 50px 12px;
    margin-top: 0;
  }
  #choice-overlay .steps .step {
    flex-direction: column;
  }
  #choice-overlay .steps .step:not(:last-child) {
    margin-bottom: 25px;
  }
  #choice-overlay .steps .step .options {
    flex-direction: column;
  }
  #choice-overlay .steps .step .option {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 14px 10px 10px 10px;
  }
  #choice-overlay .steps .step .option:after {
    height: 18px;
    width: 18px;
  }
  #choice-overlay .steps .step .option .icon {
    height: 25px;
    width: auto;
    flex: 0 0 40px;
  }
  #choice-overlay .results {
    padding: 15px 12px 15px 12px;
    flex-direction: column;
    gap: 0;
  }
  #choice-overlay .results .amount {
    flex-direction: column;
    gap: 0;
  }
  #choice-overlay .results .amount h5 {
    font-size: 15px;
  }
  #choice-overlay .results .amount .number {
    font-size: 28px;
  }
  #choice-overlay .results #submitChoice {
    width: 100%;
  }
  #choice-overlay .close-btn {
    right: 12px;
    top: 50px;
    font-size: 14px;
    gap: 7px;
  }
  #choice-overlay .close-btn i {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
  #home-featured .intro {
    flex-direction: column;
    align-items: unset;
    margin-bottom: 50px;
  }
  #home-featured .intro .watermark {
    display: none;
  }
  #home-variable .divider-top svg {
    height: 130px;
  }
  #home-variable .content {
    margin-top: unset;
    padding: 80px 0;
  }
  #home-variable .img img {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
    transform: unset;
    height: unset;
    border-radius: 50px;
    margin-bottom: 50px;
  }
  #home-variable .text h2 {
    font-size: 28px;
  }
  #home-variable .text .btns .btn {
    width: fit-content;
    background: none;
    border-bottom: 1px solid var(--main-text);
    border-radius: 0;
    color: var(--main-text);
    padding: 14px 50px 12px 0;
  }
  #home-variable .divider-bottom svg {
    height: 240px;
  }
  #home-projects .wrapper {
    flex-direction: column-reverse;
  }
  #home-projects .img {
    max-width: 696px;
    margin: 0 auto;
  }
  #home-projects .info {
    max-width: 696px;
    width: 100%;
    margin: 0 auto;
    transform: unset;
  }
  #home-projects .info:after {
    display: none;
  }
  #home-projects .info h3 {
    font-size: 24px;
  }
  #home-articles .contact img {
    max-width: 270px;
  }
  #home-articles .contact .tel,
  #home-articles .contact .mail {
    display: block;
  }
  #home-articles .articles {
    padding-left: 12px;
    margin-top: 50px;
    padding-bottom: 0;
  }
  #home-articles .articles .row .col-lg-6:nth-child(even) {
    transform: unset;
  }
  #home-contact {
    margin: 0;
    padding: 50px 0;
  }
  #home-contact .text h2 {
    font-size: 28px;
  }
  #home-contact .text h2 em svg {
    bottom: -2px;
  }
  #home-contact img {
    position: relative;
    max-width: 696px;
    width: 100%;
    margin: 0 auto;
    right: unset;
    top: unset;
    transform: unset;
    height: unset;
    object-fit: cover;
    border-radius: 50px;
    margin-top: 50px;
  }
  #home-bottom h2 {
    font-size: 24px !important;
  }
  #banner .content h2 {
    font-size: 35px;
  }
  .carousel-control-next, 
  .carousel-control-prev {
    bottom: 1px;
    transform: unset;
    top: unset;
  }
  .carousel-control-prev {
    right: 50px; 
    left: unset;
  }
  #services .row .col-lg-4:not(:last-child) {
    margin-bottom: 24px;
  }
  footer {
    padding: 50px 0;
  }
  footer .footer-top .middle {
    margin: 24px 0;
  }
  footer .tel, footer .mail {
    display: block;
  }
  footer .footer-links {
    margin-bottom: 24px;
  }
  footer .footer-top {
    padding-bottom: 50px;
  }
  footer .footer-top .contact-links {
    margin: 0;
  }
  footer .footer-top .contact-links .link i {
    height: 45px;
    width: 45px;
    font-size: 25px;
  }
  footer .footer-bottom .menus-wrapper {
    flex-direction: column;
  }
  footer .wrapper h4 {
    position: relative;
    border-bottom: 1px solid var(--main-color);
    padding: 9px 0;
    font-size: 18px;
  }
  footer .wrapper h4:after {
    content: "\2b";
    font-family: 'Font Awesome 6 Pro';
    font-size: 22px;
    color: #B8EBFF;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
  footer .wrapper.open h4:after {
    content: "\f068";
  }
  footer .wrapper ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s;
  }
  footer .wrapper.open ul {
    max-height: 800px;
  }
  footer .copyright ul {
    flex-direction: column;
  }
  #content .content {
    flex-direction: column;
  }
  #content .content img,
  #content .content .video,
  #content .content .image-slider {
    order: 1;
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
  }
  #content .content .image-slider img {
    margin-bottom: 0;
  }
  #content .content .text {
    order: 2;
  }
  #team .row .col-lg-3:not(:last-child) {
    margin-bottom: 24px;
  }
  #search-top h1 {
    font-size: 28px;
  }
  #home-featured .swiper {
    overflow: hidden;
  }
  #home-featured .swiper-wrapper {
    display: flex;
    grid-gap: unset;
    grid-template-columns: unset;
  }
  #detail-intro {
    background: #fff;
  }
  #detail-intro #breadcrumbs{
    margin-bottom: 0;
  }
  #detail-intro .wrapper {
    flex-direction: column;
    align-items: unset;
    margin-top: 0;
  }
  #detail-intro .info {
    width: calc(100% - 12px);
    max-width: unset;
    transform :unset;
    padding: 40px 12px;
  }
  #detail-intro .info:after {
    left: unset;
    right: 0;
  }
  #detail-intro .info h1 {
    font-size: 32px;
  }
  #detail-intro .info p {
    margin-bottom: 0;
    font-size: 19px;
  }
  #detail-intro .img {
    position: relative;
    margin-top: -20px;
    width: calc(100% - 12px);
    margin-left: auto;
  }
  #detail-intro .img img {
    box-sizing: none;
  }
  #detail-description {
    padding: 50px 12px 0;
  }
  #detail-description h2 {
    font-size: 28px;
  }
  .images-slider .swiper-button-next {
    left: calc(50% + 40px);
    transform: translateX(-50%);
  }
  .images-slider .swiper-button-prev {
    left: calc(50% - 40px);
    transform: translateX(-50%);
  }
  .images-slider .swiper-slide-active, .images-slider .swiper-slide-duplicate-active {
    transform: scale(1.05);
  }
  .expand-text {
    padding: 50px 12px;
  }
  .expand-text h2 {
    font-size: 24px !important;
  }
  .expand-text ul,
  .expand-text ol,
  #content .text ul,
  #content .text ol {
    font-size: 17px;
  }

  .expand-text ol,
  #content .text ol {
    padding-left: 18px;
  }
  #detail-machines h3 {
    font-size: 24px;
  }
  #detail-machines .links {
    height: unset;
  }
  #detail-machines .links h4 {
    font-size: 22px;
    padding: 35px 25px;
  }
  #detail-machines .row .col-lg-4:not(:last-child) {
    margin-bottom: 24px;
  }
  #detail-related {
    background: linear-gradient(to bottom, rgba(255,255,255,1) 1%,rgba(255,255,255,1) 20%,rgba(28,30,37,1) 20%,rgba(28,30,37,1) 100%);
    padding-bottom: 0;
  }
  #detail-related .row .col-lg-4:nth-of-type(2) .project {
    margin-top: unset;
  }
  #detail-related .row .col-lg-4:nth-of-type(2) .img img {
    height: auto;
  }
  #detail-related .col-lg-4 {
    padding-left: 0;
  }
  #detail-related .project {
    margin-bottom: 24px;
  }
  #detail-related .project h5 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  #detail-related .project .img img {
    border-radius: 0 10px 10px 0;
  }
  .product h4 {
    font-size: 19px;
  }
  .product .price {
    font-size: 17px;
  }
  #article-intro {
    padding: 50px 0;
    margin: 0;
  }
  #article-intro .text {
    margin-bottom: 30px;
  }
  #article-intro .text h1 {
    font-size: 32px;
  }
  #article-intro img {
    position: relative;
    max-width: 696px;
    width: 100%;
    margin: 0 auto;
    right: unset;
    top: unset;
    transform: unset;
    height: unset;
    object-fit: cover;
    border-radius: 50px;
  }
  #product-intro {
    padding-top: 0;
    padding-bottom: 0;
  }
  #product-intro .row {
    flex-direction: column-reverse;
  }
  #product-intro .row .col-lg-6:last-child{
    padding-right: 0;
  }
  #product-intro .video {
    position: relative;
    width: 100%;
    top: unset;
    transform: unset;
  }
  #product-intro .img {
    position: relative;
    width: 100%;
    top: unset;
    transform: unset;
  }
  #product-intro .img img {
    border-radius: 30px 0 0 30px;
  }
  #product-intro .video svg {
    width: 45px;
    left: -8px;
  }
  #product-intro.sold {
    min-height: unset;
    display: block;
    padding: 50px 0;
  }
  #product-intro.sold .video {
    margin-bottom: 30px;
  }
  #product-intro.sold .disc {
    font-size: 17px
  }
  #product-intro .price {
    font-size: 22px;
  }
  #product-intro .labels {
    margin-top: 50px;
  }
  #product-intro .usps .usp {
    font-size: 15px;
  }
  #product-intro .usps .usp svg {
    width: 30px;
    height: 30px;
  }
  #product-intro .bg {
    display: none;
  }
  #product-intro .btns {
    margin-bottom: 40px;
  }
  #product-specs .divider {
    height: 54px;
  }
  #product-specs .content h2 {
    font-size: 28px;
  }
  #product-specs .specs {
    padding-left: 0;
    margin-top: 50px;
  }
  #product-specs .row .col-lg-6:last-child {
    padding: 0;
  }
  #product-specs .specs h2 {
    font-size: 24px;
    text-align: left;
    padding: 0 12px;
  }
  #product-specs .specs table td {
    padding: 12px;
    font-size: 17px;
  }
  #product-content .img {
    padding-right: 0;
  }
  #product-content .img img {
    border-radius: 30px 0 0 30px;
  }
  #product-content h3 {
    font-size: 28px;
  }
  #product-content .wrapper {
    text-align: left;
  }
  #product-related h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  #product-related .row .col-lg-4:nth-child(2), #product-related .row .col-lg-4:nth-child(5) {
    transform: translateY(0);
  } 
  #product-related.sold {
    padding-top: 50px;
  }
  #contact-info {
    font-size: 18px;
  }
  #contact-info h1 {
    font-size: 35px;
  }
  #contact-info i {
    font-size: 18px;
    width: 27px;
  }
  #contact-info .row .col-lg-6:nth-of-type(2) {
    margin-top: 20px;
  }
  #contact-info .phone {
    margin-right: 15px;
  }
  #contact-info img {
    position: relative;
    width: 100%;
    transform: unset;
    height: unset;
    border-radius: 25px;
    top: unset;
    margin-top: 50px;
  }
  #overview .filter {
    padding: 50px 0;
  }
  #overview.projects .filter {
    width: 100%;
    padding: 35px 12px 30px;
  }
  #overview .filter h3 {
    margin-bottom: 25px;
  }
  #overview.projects .filter .wrapper {
    margin-bottom: 0;
  }
  #overview.projects .filter .wrapper .categories {
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .3s;
  }
  #overview.products .filter {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #EFFBFF;
    top: 0;
    left: 0;
    padding: 70px 12px;
    overflow: scroll;
    transform: translateX(-100%);
    transition: all .3s;
  }
  #overview.products .filter.active {
    transform: translateX(0);
  }
  #overview.products .filter .close {
    position: absolute;
    font-size: 35px;
    width: 55px;
    height: 55px;
    display: grid;
    place-content: center;
    color: #fff;
    background: var(--main-text);
    right: 0;
    top: 0;
  }
  #overview.products .filter .wrapper:first-of-type {
    display: block;
  }
  #overview.products .filter .wrapper {
    display: none;
  }
  #overview.products .filters-mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  #overview.products .filters-mobile .btn-filter {
    padding: 8px 10px 6px 10px;
    background: var(--main-text);
    color: #fff;
    border-radius: 4px;
  }
  #overview.products .filters-mobile .btn-filter span {
    font-weight: 700;
  }
  #overview.products .filters-mobile .btn-filter i {
    color: var(--main-color);
    margin-right: 8px;
  }
  #overview.products .sort {
    display: none;
  }
  .mobile-filter {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #EFFBFF;
    top: 0;
    left: 0;
    padding: 50px 12px;
    transform: translateX(-100%);
    transition: all .3s;
  }
  .mobile-filter.active {
    transform: translateX(0);
  }
  .mobile-filter .close {
    position: absolute;
    font-size: 35px;
    width: 55px;
    height: 55px;
    display: grid;
    place-content: center;
    color: #fff;
    background: var(--main-text);
    right: 0;
    top: 0;
  }
  .mobile-filter h3 {
    margin-bottom: 20px;
  }
  .mobile-filter .title {
    margin-top: 40px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .mobile-filter form .wrapper:first-child .title {
    margin-top: 0;
  }
  .mobile-filter form {
    height: calc(100% - 100px);
    overflow: scroll;
    margin-bottom: 40px;
  }
  .mobile-filter label {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    font-weight: 400;
    text-transform: unset;
    font-size: 16px;
    margin: 8px 0;
  }
  .mobile-filter label.active {
    font-weight: 800;
  }
  .mobile-filter label input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: #fff;
    /* Not removed via appearance */
    height: 24px;
    width: 24px;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    display: grid;
    place-content: center;
  }
  .mobile-filter label input[type="radio"]::before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Pro';
    color: #fff;
    font-weight: 500;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 4px;
  }
  .mobile-filter label.active input[type="radio"]::before {
    background: var(--main-color);
  }
  .mobile-filter .btn-wrapper {
    position: fixed;;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 15px 12px;
    background: #fff;
    text-align: center;
    box-shadow: 7px -18px 95px rgba(32, 112, 143, .25);
  }
  .mobile-filter .btn-wrapper .btn {
    width: 100%;
  }
  .nav-pagination {
    margin-top: 40px;
    flex-direction: column;
    padding: 0 12px;
  }
  .nav-pagination .amount {
    position: relative;
    top: unset;
    transform: unset;
    margin-bottom: 15px;
  }
  .nav-pagination .download {
    position: relative;
    transform: unset;
    margin-top: 25px;
    top: unset;
    right: unset;
  }
  #overview.projects .filter .wrapper.show .categories {
    padding-top: 25px;
    max-height: 220px;
  }
  #overview.projects .filter h3 {
    margin-bottom: 0;
    width: 100%;
    position: relative;
    padding-right: 30px;
  }
  #overview.projects .filter h3:after {
    content: "\f884";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 500;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: var(--main-color);
  }
  #overview.projects .filter h3 br {
    display: none;
  }
  #overview.projects .filter em {
    margin-left: 8px;
  }
  #overview.projects .col-lg-9 {
    padding: 0;
  }
  #overview.projects .items {
    padding: 50px 12px;
  }
  #overview .items {
    padding: 50px 0 0;
  }
  #overview .items h1 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
  }
  #overview .sort i {
    display: none;
  }
  #overview .sort .filters {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #overview .sort .filters .dropdown.right {
    margin-left: unset;
  }
  #overview.projects .article a {
    width: 100%;
  }
  #overview.projects .article .content h4 {
    margin-bottom: 14px;
    min-height: unset;
  }
  #overview.projects .article .content p {
    min-height: unset;
  }
  #overview .items .project {
    flex-direction: column;
    border-radius: 0;
    padding-bottom: 50px;
  }
  #overview .items .project .content {
    border-radius: 0;
    padding: 50px 12px;
  }
  #overview .items .project .img {
    margin: 0 12px;
  }
  #overview .items .project .img img {
    border-radius: 15px;
  }
  #overview-text {
    padding-top: 0;
  }
  #overview-text .wrapper {
    flex-direction: column;
    gap: 40px
  }
  #sticky-contact {
    display: none;
  }
  #overview .no-results .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  #overview .no-results .top h2 {
    font-size: 30px;
  }
  #overview .no-results .top .img {
    flex: unset;
    width: 100px;
  }
  #overview .no-results .solution {
    margin-top: 50px;
  }
  #faq .wrapper {
    padding: 50px 20px;
    border-radius: 25px;
  }
  #faq .links {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  #home-video {
    height: 50vh;
  }
  #home-video .title {
    top: 50%;
    transform: translateY(-50%);
  }
  #home-video .title h1 {
    font-size: 40px;
  }
  #home-video .title h1 em svg {
    height: 15px;
    bottom: 9px;
  }
  #home-search .search h5 {
    font-size: 19px;
  }
  #home-search .search form {
    padding: 6px;
  }
  #home-search .search form .form-control {
    font-size: 15px;
    padding: 10px 8px 10px 8px;
  }
  #home-search .search form i {
    font-size: 17px;
    padding: 0 15px;
  }
  #home-search .choice .cta h3 {
    font-size: 28px;
  }
  #home-variable .content {
    padding: 50px 0;
  }
  #home-variable .divider-top svg {
    height: 80px;
  }
  #home-variable .img {
    padding-left: 0;
  }
  #home-variable .img img{
    border-radius: 0 80px 80px 0;
  }
  #home-variable .divider-bottom svg {
    height: 110px;
  }
  #home-variable .content {
    margin-bottom: -95px;
  }
  #home-variable .text .btns .btn {
    width: 100%;
    text-align: left;
  }
  #home-projects {
    padding-top: 50px;
  }
  #home-projects .sub-title {
    text-align: left;
    padding: 0 12px;
  }
  #home-projects h2 {
    padding: 0 12px;
    text-align: left;
  }
  #home-projects .intro {
    padding: 0 12px;
    text-align: left;
    margin-bottom: 0;
  }
  #home-projects .img {
    margin-left: 12px;
    margin-right: 12px;
  }
  #home-projects .info {
    width: calc(100% - 24px);
    margin-right: auto;
    margin-left: auto;
    padding: 40px 12px;
  }
  #home-projects .info .year {
    font-size: 22px;
  }
  #home-contact .img {
    padding-left: 0;
  }
  #home-contact .img img {
    border-radius: 0 80px 80px 0;
    min-height: 250px;
  }
  #home-bottom {
    padding: 50px 0 85px;
  }
  #home-bottom .newsletter {
    flex-direction: column;
  }
  #home-bottom .newsletter .usps {
    display: none;
  }
  #home-bottom .wave svg {
    height: 50px;
  }
  header .middle .phone:after {
    width: 90px;
    height: 90px;
    background-size: 90px 90px;
    opacity: .35;
    right: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    bottom: 20px;
    top: unset;
    transform: unset;
    height: 40px;
    width: 40px;
  }
  .swiper-button-prev {
    right: 40px;
    left: unset;
  }
  #error {
		min-height: unset;
		padding: 50px 0;
	}
	#error .wrapper {
		flex-direction: column;
	}
	#error .wrapper > div {
		flex: 0 0 100%;
		width: 100%;
	}
	#error .content {
		text-align: center;
		order: 2;
		margin-top: 40px;
	}
	#error .content h1 {
		font-size: 40px;
	}
	#error .content p {
		font-size: 20px;
	}
	#error .content .cta {
		margin-top: 40px;
		text-align: center;
	}
	#error .content .cta p {
		max-width: unset;
	}
	#error .img {
		padding-left: 0;
	}
  
}

/*------------------------------
10.4 Landscape phones and down
------------------------------*/     
@media (max-width: 480px) { 
	
}

