/*--------------------------------------------------------------
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: 'Trenda';
  src: url(../webfonts/Trenda-Regular.woff2);
  font-weight: 400;
}

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

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


/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
  --main-text: #343434;
  --main-red: #9D020A;
  --main-blue: #1C589F;
  --box-shadow: 0px 8px 16px rgb(0 0 0 / 13%);
  --action-height: 35px;
}

body {
  font-family: 'Trenda';
  font-weight: 400;
  font-size: 18px;
  color: var(--main-text);
  position: relative;
  --header-height: 110px; 
  overflow-x: clip;
}

body::before {
  content: "";
  display: block;
  height: var(--header-height); 
  margin-bottom: calc(-1 * var(--header-height)); 
  visibility: hidden;
}

body:has(header.fixed)::before {
  visibility: visible;
  margin-bottom: 0; 
}

.body-bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

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

a:hover {
  color: var(--main-red);
}

.btn {
  font-weight: 700;
  color: #fff;
  padding: 5px 7px 5px 20px;
  background: var(--main-red);
  border-radius: 100px;
  border: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  width: fit-content;;
  gap: 20px;
  margin-top: 25px;
}

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

.btn:after {
  content: "";
  display: block;
  height: 37px;
  width: 37px;
  border-radius: 50%;
  background: #fff;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  background-size: 11.95px 11.3px;
  background-position: center;
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1, h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section {
  padding: 80px 0;
  background: #fff;
}

.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-red);
  box-shadow: none;
}

/*--------------------------------------------------------------
3.0 Forms
--------------------------------------------------------------*/
label {
  font-size: 15px;
  margin-bottom: 4px;
}

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

.input-info-icon {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-47%);
    cursor: pointer;
    font-size: 15px;
    z-index: 5;
}

.form-checkboxes,
.form-radios {
  display: block;
}

.form-checkboxes .checkbox-item,
.form-radios .radio-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkboxes .checkbox-item:not(:last-child),
.form-radios .radio-item:not(:last-child) {
  margin-bottom: 10px;
}

.form-checkboxes .form-check-input,
.form-radios .form-check-input {
  margin-top: 4px;
  flex: 0 0 auto;
}

.form-checkboxes .option,
.form-radios .option {
  margin: 3px 0 0 0;
  font-size: 15px;
  line-height: 1.4;
}

.form-checkboxes .description,
.form-radios .description {
  margin-top: 8px;
  font-size: 14px;
  color: #6c757d;
}

.form-checkboxes .invalid-feedback,
.form-radios .invalid-feedback {
  margin-top: 8px;
}

.form-checkboxes.is-invalid .invalid-feedback,
.form-radios.is-invalid .invalid-feedback {
  display: block;
}

.form-checkboxes.is-invalid .form-check-input,
.form-radios.is-invalid .form-check-input {
  border-color: #dc3545;
}

.form-required {
  color: var(--main-red);
  margin-left: 4px;
  font-weight: 700;
}

/*--------------------------------------------------------------
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 {
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

header .wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}

header .logo {
  width: 120px;
}

header .top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

header .top a {
  color: #fff;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}

header .top a.tel i,
header .top a.mail i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  display: grid;
  place-content: center;
  background: var(--main-blue);
  color: #fff;
  border-radius: 50%;
}

header .top a.mail {
  padding: 5px 30px 5px 5px;
  background: #FE8A10;
  border-radius: 100px;
}

header .top a.mail i {
  background: #FFF;
  color: #FE8A10;
}

header .top a.mail:hover {
  padding: 5px 30px 5px 5px;
  background: var(--main-red);
  border-radius: 100px;
  opacity: 1;
}

header .top .menu-open,
header nav .menu-close {
  cursor: pointer;
  display: none;
}

header .dropdown.language button {
  background: none;
  outline: none;
  border: none;
  color: var(--main-text);
  font-size: 15x;
}

header .dropdown.language button:after {
  margin-left: 0;
}

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

header .dropdown.language .dropdown-item {
  color: var(--main-text);
}

header .dropdown.language .dropdown-item:hover {
  background: rgba(232, 25, 111, 0.3);
  opacity: 1;
}

header nav .menu {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

header  nav .menu li.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  transition: all .3s;
}

header nav .menu li.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px; 
  display: block;
}

header  nav .menu li.active:hover {
  background: #fff;
  color: var(--main-red);
}

header  nav .menu li.dropdown .arrow-down {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  pointer-events: none;
  font-size: 14px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, .5);
}

header  nav .menu li.dropdown:hover .arrow-down:before {
  content: "\f077";
  color: var(--main-red);
  text-shadow: none;
}

header nav .menu li a {
  padding: 15px;
  font-weight: 700;
  white-space: nowrap;
  display: block;
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, .5);
}

header nav .menu li.dropdown:hover a {
  text-shadow: none;
  opacity: 1;
}

header nav .menu li.dropdown a {
  padding-right: 40px;
}

header nav .menu li:hover > a {
  color: var(--main-red);
}
header  nav .menu li.dropdown .drop-menu {
  position: absolute;
  left: 0;
  top: 70px;
  background: #fff;
  box-shadow: var(--box-shadow);
  min-width: 300px;
  padding: 30px 40px;
  display: none;
}

header  nav .menu li.dropdown .drop-menu a {
  padding: 12px 0;
  border-bottom: 1px solid #D6D3D3;
  font-weight: 400;
  color: var(--main-text);
}

header  nav .menu li.dropdown .drop-menu li.active a {
  color: var(--main-red);
  border-bottom: 1px solid var(--main-red);
}

header  nav .menu li.dropdown.active > .drop-menu {
  display: block;
  animation-name: dropAnimIn;
	animation-duration: .5s;
}

@keyframes dropAnimIn {
	0%   {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}

header  nav .menu li.dropdown.active > .drop-menu li.active a {
  text-shadow: 0.5px 0 0 var(--main-red), -0.5px 0 0 var(--main-red);
}

header  nav .menu li.dropdown.active > .drop-menu li.dropdown {
  position: relative;
  display: block;
}

header nav .menu li.dropdown .drop-menu li.dropdown::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
  height: 100%;
  left: unset;
}

header nav .menu li.dropdown .drop-menu a:hover {
  color: var(--main-red);
  text-shadow: 0.5px 0 0 var(--main-red), -0.5px 0 0 var(--main-red);
  border-bottom: 1px solid var(--main-red);
}

header  nav .menu li.dropdown.active > .drop-menu li.dropdown a {
  padding-right: 50px;
}

header  nav .menu li.dropdown.active > .drop-menu li.dropdown .arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 25px;
  width: 25px;
  font-size: 12px;
  color: #fff;
  place-content: center;
  background: var(--main-red);
  border-radius: 50%;
  pointer-events: none;
  display: none;
}

header  nav .menu li.dropdown.active > .drop-menu li.dropdown.active a .arrow-right {
  display: grid;
}

header  nav .menu li.dropdown .sub-menu {
position: absolute;
  left: calc(100% + 40px); 
  top: -30px;
  background: var(--main-red);
  box-shadow: var(--box-shadow);
  min-width: 300px;
  padding: 30px 40px;
  display: none;
}

header nav .menu li.dropdown .drop-menu li.dropdown.active > .sub-menu {
  display: block;
  animation-name: dropAnimIn;
  animation-duration: .5s;
}

header  nav .menu li.dropdown .sub-menu li a {
  color: #fff !important;
}

header nav .menu li.dropdown .drop-menu li.active .sub-menu li a {
  border-bottom: 1px solid #fff;
}

header  nav .menu li.dropdown .sub-menu li a:hover {
  color: #fff !important;
  text-shadow: 0.5px 0 0 #fff, -0.5px 0 0 #fff !important;
  border-bottom: 1px solid #fff !important;
}

header .search .input-group {
  flex-wrap: nowrap;
}

header .search input {
  border-right: none;
}

header .search #search-button {
  background: var(--main-red);
  color: #fff;
  border-radius: 0;
  padding: 0 20px;
  border: none;
}

header .mobile-menu-toggle {
  display: none;
}

header nav .menu li.dropdown .drop-menu li.dropdown.edge-left .sub-menu {
  left: auto;
  right: calc(100% + 40px);
}

header nav .menu li.dropdown .drop-menu li.dropdown.edge-left::after {
  right: auto;
  left: -40px;
  width: 40px;
}

header nav .menu li.dropdown .drop-menu li.dropdown.edge-left > a {
  padding-right: 0;
  padding-left: 40px;
}

header nav .menu li.dropdown .drop-menu li.dropdown.edge-left .arrow-right {
  right: auto;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

header nav .menu > li.dropdown.edge-left > .drop-menu {
  left: auto;
  right: 0;
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #698199;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  animation: slideDown 0.4s ease-in-out forwards;
}

header.fixed .logo {
  width: 60px;
}

header.fixed nav .menu {
  margin-top: 0;
}

header.unfixed {
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}

#futy-container {
  z-index: 10 !important;
}

#emergency {
  position: fixed;
  left: 0;
  bottom: 10%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(180deg, #6A1A14 0%, #7E1713 25%, #9D020A 55%, #C43E0D 80%, #FE8A10 100%);
  color: #fff;
  font-size: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 23%);
  transform: translateX(-100%); 
}

#emergency.animate-in {
  animation: slideInLeft 0.5s ease-out forwards;
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

#emergency:hover {
  background: linear-gradient(
    180deg,
    #FE8A10 0%,
    #C43E0D 20%,
    #9D020A 45%,
    #7E1713 75%,
    #6A1A14 100%
  );
}

#emergency img {
  width: 30px;
  margin: 0 auto 8px;
}


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



/*------------------------------
4.3 Footer 
------------------------------*/
footer {
  background: linear-gradient(180deg,rgba(28, 88, 159, 1) 0%, rgba(14, 44, 80, 1) 100%);
  color: #fff;
  padding: 70px 0;
}

footer .row {
  --bs-gutter-x: 5rem;
}

footer .logo {
  max-width: 80%;
  margin-bottom: 12px;
}

footer h3 {
  font-size: 35px;
  margin-bottom: 18px;
}

footer li {
  padding: 5px 0;
}

footer a {
  color: #fff;
  font-weight: 700;
}

footer a:hover {
  color: #fff;
}

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

footer .tel,
footer .mail {
  padding: 5px 0;
  display: block;
}

footer .social-links {
  margin-top: 15px;
}

footer .social-links i {
  font-size: 24px;
}

footer a.req {
  padding: 5px 30px 5px 5px;
  background: #FE8A10;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
}

footer a.req i {
  font-size: 20px;
  height: 40px;
  width: 40px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #FFF;
  color: #FE8A10;
  margin: 0;
}

footer a.req:hover {
  background: var(--main-red);
}

footer .bottom {
  margin-top: 70px;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

footer .bottom ul {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

footer .bottom ul a {
  font-weight: 400;
  text-decoration: underline;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#slider {
  padding: 0;
  position: relative;
}

#slider .swiper-wrapper {
  padding: 0;
}

#slider .img {
  height: 100%;
  position: relative;
}

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

#slider img {
  height: 100%;
  object-fit: cover;
}

#slider .content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

#slider p {
  font-size: 20px;
  margin-bottom: 35px;
}

#slider .swiper-button-next {
  bottom: 0;
  top: unset;
}

#slider .swiper-button-prev {
  bottom: 0;
  top: unset;
  right: 45px;
  left: unset;
}

#slider .swiper-pagination {
  bottom: 1.5% !important;
}

#slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

#related .row {
  --bs-gutter-y: 1.5rem;
}

#related a {
  position: relative;
}

#related .img {
  overflow: hidden;
}

#related a:hover {
  opacity: 1;
}

#related .img img {
  transition: all .5s ease-out;
}

#related a:hover img {
  scale: 1.1;
}

#related .title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 50px 15px 15px 15px;
  text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0.0) 100%);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

#usps {
  text-align: center;
}

#usps .top {
  margin-bottom: 60px;
}

#usps .usp {
  box-shadow: var(--box-shadow);
  padding: 0 25px 25px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#usps .usp i {
  height: 70px;
  width: 70px;
  background: var(--main-red);
  color: #fff;
  display: grid;
  place-content: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 35px;
  transform: translateY(-35px);
}

#usps .usp h5 {
  margin-top: -15px;
}

#usps .usp .btn {
  margin-top: auto;
  align-self: center;
}

#banner {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0;
  min-height: 300px;
  text-align: center;
}

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

#banner .text {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  padding: 80px 0;
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .4)
}

#banner .text h2 {
  margin-bottom: 0;
}

#home-intro {
  color: #fff;
  padding-top: 30px;
  background: transparent;
  padding-bottom: 130px;
}

#home-intro .wrapper {
  max-width: 1320px;
  margin: 0 auto;
}

#home-intro h1 {
  font-size: 60px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, .5);
}

#home-intro p {
  max-width: 650px;
}

#home-intro .links {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 70px;
}

#home-intro .links .link {
  border-radius: 10px;
  padding: 25px 25px 40px 25px;
  background: linear-gradient(180deg,rgba(14, 115, 184, 1) 0%, rgba(3, 65, 145, 1) 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  flex-basis: calc(25% - 75px);
  position: relative;
  transition: all .3s;
  box-shadow: var(--box-shadow);
}

#home-intro .links .link:hover {
  background: linear-gradient(180deg,rgb(197, 44, 51) 0%, rgba(157, 2, 10, 1) 100%);
}

#home-intro .links .link .icon {
  height: 75px;
  width: auto;
  margin: 0 auto 14px;
  display: block;
}

.blue-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--box-shadow);
}

.blue-arrow img {
  width: 11px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(34%) saturate(6441%) hue-rotate(204deg) brightness(91%) contrast(97%);
}

#home-intro .links .link:hover .blue-arrow img {
  filter: unset;
}

#home-text {
  padding-top: 20px;
}

#home-text .wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#home-text .logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

#home-text .logos img {
  height: 45px;
  width: auto;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
}

.icon-title .icon {
  background: var(--main-blue);
  width: 110px;
  height: 110px;
  display: grid;
  place-content: center;
  border-radius: 50%;
}

.icon-title .icon img {
  height: 75px;
  width: auto;
  max-width: 55px;
}

.icon-title h2 {
  margin-bottom: 0;
}

#home-services {
  position: relative;
  background: linear-gradient(
    to right,
    #F7F4F3 0%,
    #F7F4F3 52%,
    #fff 48%,
    #fff 100%
  );
}

#home-services .container {
  position: relative;
  z-index: 2;
}

#home-services .row {
  align-items: center;
}

#home-services .swiper-wrapper {
  padding: 0 0 85px;
}

#home-services .service .title {
  width: 90%;
  margin: 0 auto;
  background: linear-gradient(180deg,rgba(14, 115, 184, 1) 0%, rgba(3, 65, 145, 1) 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 16px 16px 41px 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--box-shadow);
}

#home-services .service:hover .title {
  background: linear-gradient(180deg,rgb(197, 44, 51) 0%, rgba(157, 2, 10, 1) 100%);
}

#home-services .service:hover .blue-arrow img {
  filter: unset;
}

.swiper-pagination-bullet {
  width: 37px;
  height: 6px;
  border-radius: 0;
  margin: 0 10px !important;
  background: var(--main-red);
}

#home-services .edge {
  position: absolute;
  top: 0;
  height: 100%;
  left: 52%;
  transform: translateX(-48%);
  z-index: 1;
}

#home-app {
  background: linear-gradient(
    to left,
    #F7F4F3 0%,
    rgba(247, 244, 243, 0) 100%
  );
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: right;
}

#home-app .download-btns {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  align-items: flex-start;
}

#home-app .download-btns img {
  height: 55px;
}

#home-textimg {
  overflow: hidden;
  padding: 0;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

#home-textimg .row {
  align-items: stretch;
}

#home-textimg .img {
  position: relative;
}

#home-textimg .img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

#home-textimg .text {
  padding: 100px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

#home-textimg .edge {
  position: absolute;
  height: 100%;
  top: 0;
  right: -2px;
  width: 26%;
  z-index: 1;
}

#home-textimg .edge.mob {
  display: none;
}

/*--------------------------------------------------------------
7.0 Overview
--------------------------------------------------------------*/
#overview article {
    background: #fff;
    box-shadow: var(--box-shadow);
    margin-top: 24px;
}

#overview article .details {
  padding: 25px;
}

#overview article .details h5 {
  color: var(--main-red);
}

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


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

#breadcrumbs ul {
  display: flex;
  align-items: center;
}

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

#breadcrumbs ul li:not(:last-child):after {
  content: "/";
  font-weight: 700;
  color: var(--main-blue);
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  font-size: 14px;
}

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

#breadcrumbs .home {
  height: 32px;
  width: 32px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  font-size: 16px;
  background: var(--main-blue);
  color: #fff;
}

#breadcrumbs .home:hover {
  background: var(--main-red);
}

.content {
  padding: 25px 0;
}

#text {
  text-align: center;
}

#text .btn {
  margin: 25px auto 0;
}

#text-image .row,
#text-video .row,
#text-slider .row,
#intro .row {
  align-items: center;
  --bs-gutter-x: 3rem;
}

#text-image .text >*:last-child,
#text-video .text >*:last-child,
#text-slider .text >*:last-child {
  margin-bottom: 0;
}

#text-image.img-right .row,
#text-video.right .row,
#text-slider.right .row {
  flex-direction: row-reverse;
}

#text-image.img-top .row,
#text-image.img-bottom .row,
#text-video.top .row,
#text-video.bottom .row,
#text-slider.top .row,
#text-slider.bottom .row {
  flex-direction: column;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 3rem;
}

#text-image.img-top .col-lg-6,
#text-image.img-bottom .col-lg-6,
#text-video.top .col-lg-6,
#text-video.bottom .col-lg-6,
#text-slider.top .col-lg-6,
#text-slider.bottom .col-lg-6 {
  width: 100%;
}

#text-image.img-bottom .row,
#text-video.bottom .row,
#text-slider.bottom .row {
  flex-direction: column-reverse;
}

#text-slider .swiper-button-next,
#text-slider .swiper-button-prev {
  height: 37px;
  width: 37px;
  border-radius: 50%;
  font-size: 18px;
}

#text-slider .text {
  text-align: left;
}

#text-slider.left .text {
  text-align: left;
}

#text-slider .swiper-button-next {
  right: 3% !important;
}

#text-slider .swiper-button-prev {
  left: 3% !important;
}

#text-slider .swiper-wrapper {
  padding: 0;
}

#text-slider .swiper-pagination {
  bottom: 10px !important;
}

#text-slider .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  margin: 0 6px !important;
  opacity: .7;
}

#text-slider .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

#intro .logos {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

#intro .logos img {
  height: 45px;
  width: auto;
}

.swiper-wrapper {
  padding: 25px 0;
}

.swiper-button-next,
.swiper-button-prev {
  background: var(--main-red);
  color: #fff;
  height: 45px;
  width: 45px;
  font-size: 22px;
  display: grid;
  place-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after,
.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}

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

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

.swiper-pagination {
  bottom: 0 !important;
}

#gallery .row .col-12:not(:last-of-type) {
  margin-bottom: 24px;
}

#carousel .swiper-wrapper,
#carousel .swiper-slide {
  height: fit-content;
}

.content p:last-of-type {
  margin-bottom: 0;
}

.content ul,
.content ol {
  margin-bottom: 16px;
}

.content ol {
  padding-left: 0;
}

.content ul li {
  position: relative;
  padding-left: 30px;
}

.content ol li {
  list-style: decimal;
  list-style-position: inside;

}

.content ul li:not(:last-child),
.content ol li:not(:last-child) {
  margin-bottom: 5px;
}

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

.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: 4px;
  height: 4px; 
}

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

.content table::-webkit-scrollbar-thumb {
  background: var(--main-blue);
  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;
}


#cta {
  background: #ffe1ee;
  text-align: center;
}

#cta .btns {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#services .service {
  position: relative;
  margin-bottom: 50px;
}

#services .service .title {
  width: 90%;
  margin: 0 auto;
  background: linear-gradient(180deg,rgba(14, 115, 184, 1) 0%, rgba(3, 65, 145, 1) 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 16px 16px 41px 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--box-shadow);
}

#services .service:hover .title {
  background: linear-gradient(180deg,rgb(197, 44, 51) 0%, rgba(157, 2, 10, 1) 100%);
}

#services .service:hover .blue-arrow img {
  filter: unset;
}

#contact-img {
  overflow: hidden;
  padding: 0;
  max-width: 1920px;
  margin: 25px auto;
  position: relative;
}

#contact-img .row {
  align-items: stretch;
}

#contact-img .img {
  position: relative;
  padding-right: 0;
}

#contact-img .img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

#contact-img .text {
  padding: 220px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

#contact-img .btns {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 25px;
}

#contact-img .btns .btn {
  margin: 0;
}

#contact-img .btns .tel {
  color: var(--main-red);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

#contact-img .btns .tel:hover {
  color: #d83840;
}

#contact-img .btns .tel i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--main-red);
  border-radius: 50%;
  color: #fff;
  transition: all .3s;
}

#contact-img .btns .tel:hover i {
  background: #d83840;;
}

#contact-img .edge {
  position: absolute;
  height: 100%;
  top: 0;
  left: -2px;
  width: 26%;
  z-index: 1;
}

#contact-img .edge.mob {
  display: none;
}

#related-services {
  padding: 25px 0;
}

#related-services h2 {
  text-align: center;
}

#related-services .swiper-wrapper {
  padding: 0 0 85px;
}

#related-services .service .title {
  width: 90%;
  margin: 0 auto;
  background: linear-gradient(180deg,rgba(14, 115, 184, 1) 0%, rgba(3, 65, 145, 1) 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 16px 16px 41px 16px;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--box-shadow);
}

#related-services .service:hover .title {
  background: linear-gradient(180deg,rgb(197, 44, 51) 0%, rgba(157, 2, 10, 1) 100%);
}

#related-services .service:hover .blue-arrow img {
  filter: unset;
}

.form-section {
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
  position: relative;
  background: #F6F3F2;
}

.form-section .row {
  align-items: stretch;
}

.form-section  .img {
  position: relative;
  padding-right: 0;
}

.form-section .img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.form-section .text {
  padding: 70px 50px 70px 12px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.form-section .edge {
  position: absolute;
  height: 100%;
  top: 0;
  left: -2px;
  width: 55%;
  z-index: 1;
}

.form-section .edge.mob {
  display: none;
}

.form-section .form-group {
  position: relative;
  margin-bottom: 36px !important;
}

.form-section .form-group label {
  position: absolute;
  top: -20px;
  left: 12px;
  background: #F6F3F2;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
}

.form-section .form-group label span {
  position: absolute;
  margin-left: 10px;
  margin-top: -4px;
  font-weight: 700;
  color: var(--main-text);
}

.form-section .form-control {
  border-radius: 8px;
  padding: 30px 20px 20px 20px;
}

.form-section button {
  margin-left: auto;
  margin-top: unset;
}

.form-section.contact {
  background: #fff;
  padding: 50px 0;
}

.form-section.contact .row {
  margin-top: 40px;
}

.form-section.contact .form-group label {
  background: #fff;
}

.form-section.contact .contact-details {
  width: fit-content;
  background: #F5F5F5;
  margin-left: auto;
  padding: 45px;
}

.form-section.contact .contact-details div,
.form-section.contact .contact-details a {
  font-weight: 700;
  display: flex;
  gap: 14px;
  color: var(--main-blue);
  align-items: center;
  font-size: 20px;
}

.form-section.contact .contact-details a {
  margin-top: 15px;
}

.form-section.contact .contact-details .title {
  margin-bottom: 25px;
}

.form-section.contact .contact-details .address {
  align-items: flex-start;
}

.form-section.contact .contact-details i {
  height: 37px;
  width: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--main-blue);
  color: #fff;
  font-size: 18px;
}

#faq {
  position: relative;
  background: linear-gradient(
    to right,
    #F7F4F3 0%,
    #F7F4F3 52%,
    #fff 48%,
    #fff 100%
  );
}

#faq .container {
  position: relative;
  z-index: 2;
}

#faq .edge {
  position: absolute;
  top: 0;
  height: 100%;
  left: 52%;
  transform: translateX(-48%);
  z-index: 1;
}

#faq button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(180deg,rgba(14, 115, 184, 1) 0%, rgba(3, 65, 145, 1) 100%);
  color: #fff;
  padding: 15px 30px;
  gap: 10px;
}

#faq button:after {
  display: none;
}

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

#faq button .blue-arrow {
  position: relative;
  left: unset;
  transform: unset;
  bottom: unset;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

#faq .accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 20px;
}

#faq .accordion-body {
  background: #0D6CB2;
  color: #fff;
  margin: 0 20px;
  border-radius: 0 0 14px 14px;
}

.grecaptcha-badge {
  visibility: hidden;
}

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


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

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

/*------------------------------
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-red);
}

#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-red);
}

#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;
}

/*--------------------------------------------------------------
9.3 Products
--------------------------------------------------------------*/
#products .categories h4 {
  margin-bottom: 15px;
}
#products .categories ul li > ul {
  display: none;
  margin-left: 20px;
}

#products .categories ul li.active {
  margin-bottom: 15px;
}

#products .categories ul li.active > a {
  color: var(--main-red);
  font-weight: 700;
}

#products .categories ul li.active li.active {
  margin-bottom: 0;
}

#products .categories ul li.active li.active a {
  font-weight: 400;
}

#products .categories ul li.active > ul {
  display: block;
}

#products .categories a {
  color: var(--main-text);
  padding: 3px 0;
}

#products .price-range {
  position: relative;
  height: 44px;
}

#products .price-range .track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e9ecef;
  transform: translateY(-50%);
}

#products .price-range .range-fill {
  position: absolute;
  top: 50%;
  height: 6px;
  border-radius: 999px;
  background: var(--main-red);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

#products .price-range input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 44px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

#products .price-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 5px solid var(--main-red);
  cursor: pointer;
}

#products .price-range input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--main-red);
  border: none;
  cursor: pointer;
}

#products .range-min { z-index: 3; }
#products .range-max { z-index: 4; }

#products .products .col-lg-4:not(:last-child) {
  margin-bottom: 24px;
}

.product {
  box-shadow: var(--box-shadow);
  background: #fff;
}

.product a:hover {
  opacity: 1;
}

.product .title {
  padding: 15px;
  font-weight: 500;
  font-size: 20px;
  color: var(--main-text);
}

.product a:hover .title {
  color: var(--main-red);
}

.product .product-image-container {
  position: relative;
}

.product .product-image-container .discount {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--main-red);
  color: white;
  padding: 5px;
}

.product-link .product .product-image-container .variants {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: white;
  color: black;
  padding: 5px;
  display: none;
}

.product-link:hover .product .product-image-container .variants {
  display: block;
}

.product .product-price-container {
  padding: 0 0 15px 15px;
  display: flex;
  align-items: left;
}

.product .product-price-container span {
  margin-right: 10px;
}

#products .products .pagination svg {
  width: 20px;
}

#products .products .pagination nav div:first-child {
  display: none;
}

.product-gallery{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: stretch;
}

.product-thumbs{
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.product-thumbs_btn{
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  padding: 8px 0;
  line-height: 1;
}

.product-thumbs_viewport{
  overflow: auto;
  min-height: 0;
  padding: 10px;
}

.product-thumbs_viewport{
  scroll-behavior: smooth;
}

.product-thumbs_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-thumb{
  width: 100%;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  display: block;
}

.product-thumb img{
  width: 100%;
  height: auto;
  display: block;
}

.product-thumb.is-active{
  border-color: #111;
}

.product-main{
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main img{
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}

.related-preview:hover {
  border: 5px solid var(--main-red);
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 12px; /* ruimte tussen qty en button */
}

/* wrapper bepaalt de breedte */
.product-actions {
    display: inline-block;
}

/* select volgt exact de breedte van de buttons */
.product-actions .form-select {
    width: 100%;
}

/* spacing onder variant select */
.variant-select-wrapper {
    margin-bottom: 12px;
}

/* action row */
.add-to-cart-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* quantity */
.quantity-stepper {
    display: inline-flex;
    align-items: stretch;
}

.qty-btn,
.qty-input {
    height: var(--action-height);
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ced4da;
    background: #f8f9fa;
    font-size: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* quantity input */
.qty-input {
    width: 50px;
    height: 35px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #ced4da;
    border-left: 0;
    border-right: 0;
}

/* buttons */
.add-to-cart-btn,
.btn-favorite {
    height: var(--action-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* favorite button */
.btn-favorite {
    width: var(--action-height);
    padding: 0;
    border: 1px solid #ced4da;
    color: black;
    background: #f8f9fa;
}

.btn-favorite:hover {
  transform: scale(1.05);
}

/* 🔥 pixel-perfect heart centering */
.btn-favorite i {
    display: block;
    font-size: 18px;
    transform: translateY(0.5px);
    margin-left: 0px;
}

/* ⭐ actief favoriet */
.btn-favorite.is-active {
  background: var(--main-red);
  border-color: var(--main-red);
  color: #fff;
}

.btn-favorite.is-active i {
  color: #fff;
}

/* active state */
.btn-favorite.is-active {
  background: var(--main-red);
  border-color: var(--main-red);
  color: #fff;
}

/* subtle animation */
.btn-favorite {
  transition: all .2s ease;
}

.btn-favorite:active {
  transform: scale(0.9);
}

/* toast */
.favorite-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--main-red);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 99999;
}

.favorite-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.accordion-collapse p:last-of-type {
  margin-bottom: 0;
}

.related img.active {
  border: 5px solid var(--main-red);
}


/*--------------------------------------------------------------
9.5 Account
--------------------------------------------------------------*/

.customer-account-nav .list-group-item {
  border-radius: 0;
  border-color: rgba(0,0,0,.08);
  color: var(--main-text);
  font-weight: 500;
}

.customer-account-nav .list-group-item.active {
  background: var(--main-red);
  border-color: var(--main-red);
  color: #fff;
}

/*--------------------------------------------------------------
10.0 Media Queries
--------------------------------------------------------------*/

/*------------------------------
10.1 Large desktop
------------------------------*/
@media (min-width: 1250px) { 
  .container {
    max-width: 1250px;
  }
}

@media (min-width: 1450px) { 
  .container {
    max-width: 1450px;
  }
}

@media (min-width: 1650px) { 
  .container {
    max-width: 1650px;
  }
}

@media (max-width: 1650px) { 
  .body-bg {
    min-height: 850px;
    object-fit: cover;
  }
  header .wrapper {
    gap: 30px;
  }
  header .logo {
    width: 90px;
  }
  header nav .menu {
    gap: 0;
  }
  #home-intro {
    padding-top: 10px;
  }
  #home-intro h1 {
    font-size: 50px;
  }
}

@media (max-width: 1450px) { 
  header nav,
  header nav .drop-menu,
  header nav .sub-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    padding: 50px 30px !important;
    background: #fff !important;
    z-index: 9999;
    display: block !important;
    box-shadow: none !important;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out !important;
    overflow-y: auto !important;
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  header.open nav,
  header nav.active,
  header nav li.dropdown.active > .drop-menu,
  header nav li.dropdown .drop-menu li.dropdown.active > .sub-menu {
    transform: translateX(0) !important;
  }
  header nav,
  header nav .drop-menu {
    overflow: hidden;
  }
  header nav .menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    z-index: 10002;
  }
  header .top .menu-open,
  header nav .menu-close {
    display: block;
  }
  header nav .drop-menu {
    z-index: 10000 !important;
  }
  header nav .sub-menu {
    z-index: 10001 !important;
  }
  header nav .menu {
    flex-direction: column;
    margin-top: 0;
  }
  header nav .menu li a,
  header nav .menu li.dropdown .arrow-down {
    color: var(--main-text);
    text-shadow: none;
  }
  header nav .menu li:hover > a {
    color: var(--main-text);
  }
  header nav .menu li.dropdown:hover .arrow-down:before {
    content: "\f054";
    color: #fff;
    text-shadow: none;
  }
  header nav .menu li a {
    font-size: 22px;    
  }
  header nav .menu li.dropdown a  {
    padding-right: 0;
  }
  header nav .menu li.dropdown .arrow-down,
  header nav .menu li.dropdown.active > .drop-menu li.dropdown .arrow-right {
    position: relative;
    cursor: pointer;
    top: unset;
    transform: unset;
    right: -20px;
    font-size: 17px;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: var(--main-blue);
    color: #fff;
    border-radius: 50%;
    pointer-events: unset;
  }
  header nav .menu li.dropdown .arrow-down:before {
    content: "\f054";
  }
  header nav .menu li.dropdown.active > .drop-menu li.dropdown {
    display: flex;
  }
  header nav .menu li.dropdown.active > .drop-menu li.dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    transition: all .3s;
  }
  header nav .menu li.dropdown .drop-menu a {
    border-bottom: none;
  }
  header nav .menu li.dropdown.active > .drop-menu li.active a {
    text-shadow: none;
  }
  header nav .menu li.dropdown .sub-menu li a {
    color: var(--main-text) !important;
  }
  header nav .menu .go-back {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--main-text);
    margin-bottom: 20px;
  }
  header nav .menu .go-back i {
    color: var(--main-blue);
  }
}
/*------------------------------
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 {
    font-size: 17px;
  }
  h1, h2 {
    font-size: 30px;
  }
  section {
    padding: 50px 0;
  }
  header {
    padding: 15px 0;
  }
  header.open {
    height: 100vh;
    overflow: auto;
  }
  header .logo {
    width: 70px;
  }
  header .top .tel,
  header .top .mail,
  header .top .user {
    display: none;
  }
  header nav.active .top .tel,
  header nav.active .top .mail,
  header nav.active .top .user {
    display: flex;
    color: var(--main-text);
  }
  header nav.active .top {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--main-text);
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: fit-content;
  }
  header nav.active .top .mail {
    color: #fff;
  }
  header .container {
    position: relative;
  }
  header nav,
  header nav .drop-menu,
  header nav .sub-menu {
    padding: 40px 12px !important;
  }
  header nav .menu li a {
    padding-left: 0;
  }
  header nav .menu li a {
    font-size: 19px;
  }
  header nav .menu li.dropdown .arrow-down, header nav .menu li.dropdown.active > .drop-menu li.dropdown .arrow-right {
    font-size: 15px;
    width: 25px;
    height: 25px;
  }
  header .mail-mob {
    display: flex;
    padding: 5px 30px 5px 5px;
    background: #FE8A10;
    border-radius: 100px;
    gap: 10px;
    align-items: center;
  }
  header .mail-mob i {
    font-size: 20px;
    height: 40px;
    width: 40px;
    display: grid;
    place-content: center;
    background: var(--main-blue);
    color: #fff;
    border-radius: 50%;
    background: #FFF;
    color: #FE8A10;
  }
  #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;
  }
  footer .footer-links {
    margin-bottom: 24px;
  }
  .content {
    padding: 25px 0;
  }
  #text-image .row,
  #text-video .row,
  #text-slider .row,
  #intro .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
  .swiper-wrapper {
    padding: 20px 0;
  }
  .swiper-button-next,
  .swiper-button-prev {
    font-size: 20px;
    height: 35px;
    width: 35px;
  }
  #slider {
    height: calc(100vh - 73px);
  }
  #slider p {
    font-size: 17px;
  }
  #slider .swiper-button-prev {
    right: 35px;
  }
  #related .title {
    font-size: 18px;
  }
  #usps .row {
    --bs-gutter-y: 3.5rem;
  }
  #usps .usp i {
    width: 50px;
    height: 50px;
    font-size: 30px;
    transform: translateY(-25px);
  }
  #products .categories {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 73px);
    background: #fff;
    padding: 50px 12px;
    border-top: 1px solid var(--main-text);
    transition: transform .3s;
    transform: translateX(-100%);
  }
  #products .categories.open {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    padding: 50px 12px;
    border-top: 1px solid var(--main-text);
    transition: transform .3s;
    transform: translateX(0);
  }
  #products .categories .close {
    position: absolute;
    top: 25px;
    right: 12px;
    font-size: 20px;
    background: var(--main-red);
    color: #fff;
    display: grid;
    place-content: center;
    height: 30px;
    width: 30px;
  }
  #products .categories > ul {
    height: 100%;
    overflow: auto;
    padding-bottom: 30px;
  }
  #products .categories ul li > ul {
    display: block;
  }
  #products .cat-mob-btn {
    margin-bottom: 20px;
  }
  #home-intro h1 {
    font-size: 40px;
  }
  #home-intro .links {
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 40px;
  }
  #home-intro .links .link {
    flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }
  #home-intro .links .link .icon {
    height: 55px;
  }
  #home-intro {
    padding-bottom: 70px;
  }
  #home-services .edge {
    display: none;
  }
  .icon-title .icon {
    width: 70px;
    height: 70px;
  }
  .icon-title {
    margin-bottom: 18px;
  }
  .icon-title .icon img {
    height: 55px;
    max-width: 40px;
  }
  #home-services {
    background: #F7F4F3;
  }
  #home-services .slider-services {
    margin-top: 35px;
  }
  #home-services .swiper-wrapper {
    padding: 0 0 65px;
  }
  #home-text .logos img {
    height: 35px;
  }
  #home-app {
    background: #fff;
  }
  #home-app img {
    margin-bottom: 20px;
  }
  #home-textimg .img {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0;
    margin: 0 !important;
  }
  #home-textimg .img img {
    position: relative;
  }
  #home-textimg .edge.desk {
    display: none;
  }
  #home-textimg .edge.mob {
    display: block;
     height: 20%;
    width: 100%;
    top: unset;
    bottom: -2px;
    right: 0;
    left: 0;
  }
  #home-textimg .text {
    padding: 50px 12px;
  }
  footer .row {
    --bs-gutter-x: 1.5rem;
  }
  footer h3 {
    font-size: 25px;
  }
  footer .row .col-lg-3:not(:first-of-type),
  footer .row .col-lg-4 {
    margin-top: 25px;
  }
  footer .bottom {
    margin-top: 40px;
  }
  #services .row .col-lg-4:not(:last-child) {
    margin-bottom: 24px;
  }
  #contact-img .row {
    flex-direction: column-reverse;
  }
  #contact-img .img {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0;
    margin: 0 !important;
  }
  #contact-img  .img img {
    position: relative;
  }
  #contact-img  .edge.desk {
    display: none;
  }
  #contact-img .edge.mob {
    display: block;
     height: 20%;
    width: 100%;
    top: unset;
    bottom: -2px;
    right: 0;
    left: 0;
  }
  #contact-img  .text {
    padding: 50px 12px;
  }
  #contact-img .btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
  }
  #related-services {
    padding: 50px 0;
  }
  .form-section > .container > .row {
    flex-direction: column-reverse;
  }
  .form-section .img {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0;
    margin: 0 !important;
  }
  .form-section  .img img {
    position: relative;
  }
  .form-section  .edge.desk {
    display: none;
  }
  .form-section .edge.mob {
    display: block;
     height: 20%;
    width: 100%;
    top: unset;
    bottom: -2px;
    right: 0;
    left: 0;
  }
  .form-section .text {
    padding: 50px 12px;
  }
  .form-section.contact .contact-details {
    width: 100%;
    padding: 25px;
  }
  .form-section.contact .contact-details div, .form-section.contact .contact-details a {
    font-size: 18px;
  }
  #faq {
    background: #F7F4F3;
  }
  #faq button .blue-arrow {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
  }
  #faq .edge {
    display: none;
  }
}

@media (max-width: 767px) {
  #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.5 Landscape phones and down
------------------------------*/     
@media (max-width: 480px) { 
	
}

#hotspots .image-container {
  position: relative;
}

#hotspots .image-container img {
  width: 100%;
  height: 100%;
}

#hotspots .hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hotspots .hotspots .hotspot {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  background-color: rgba(60, 255, 0, 0.877);
  border-radius: 50%;
  cursor: pointer;
}

#hotspots .hotspots .hotspot .content {
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 6px 12px;
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  min-height: 40px;
  width: fit-content;
  max-width: 300px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#hotspots .hotspots .hotspot .content::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-right-color: #f0f0f0;
}

#hotspots .hotspots .hotspot:hover .content {
  opacity: 1;
}