/*--------------------------------------------------------------
>>> 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 Navigationa
	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: 'Nexa';
  src: url(../webfonts/Nexa-Bold.woff2);
  font-weight: 700;
}

/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
  --main-blue: #0C192C;
  --lb-text: #5C9ACC;
  --beige: #F6E2C8;
  --main-text: #33292d;
  --main-color: #EFAE30;
  --box-shadow: 0px 2px 80px rgb(124 0 52 / 10%);
}

html {
  scroll-padding: 120px;
}

body {
  font-family: 'Lexend';
  font-weight: 400;
  color: var(--lb-text);
  background: var(--main-blue);
}

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

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

.btn {
  font-size: 17px;
  color: var(--main-blue);
  padding: 22px 20px;
  background: var(--main-color);
  border-radius: 100px;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  align-self: flex-start;
}

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

.btn:after {
  content: "";
  height: 25px;
  width: 25px;
  background-color: var(--main-blue);
  border-radius: 50%;
  display: block;
  background-image: url(../images/arrow.svg);
  background-size: 14.14px 11.41px;
  background-repeat: no-repeat;
  background-position: center;
}

.btn.close {
  padding: 5px;
}

.btn.close::after {
  background-image: url(../images/close.svg);
  background-size: auto;
  background-color: transparent;
}

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

img {
  width: 100%;
}

img.file-upload-preview {
  max-width: 40px;
  max-height: 40px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: 'Nexa';
  color: var(--beige);
}

h1 {
  font-size: 70px;
  line-height: 90px;
}

h2 {
  font-size: 60px;
  line-height: 65px;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section {
  padding: 100px 0;
}

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

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

.form-control {
  padding: 16px 30px !important;
}

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

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

.form-control {
  padding: 15px 12px;
  background: none;
  color: var(--lb-text);
}

.form-control::placeholder {
  color: var(--lb-text);
}

.form-select {
  background-color: var(--main-blue);
  color: var(--lb-text);
  padding: 16px 30px;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

form .form-floating label {
  padding: 16px 30px !important;
  color: var(--lb-text);
  font-weight: 400;
}

form .form-floating label span {
  color: var(--main-color);
  font-weight: 900;
  position: relative;
  top: -5px;
}

form .form-floating .form-control:focus {
  background: var(--main-blue);
}

form .form-floating .form-control:focus~label,
form .form-floating>.form-control:not(:placeholder-shown)~label {
  padding: 16px 30px !important;
  color: var(--main-color) !important;
  font-weight: 700;
  transform: translateY(-25px) !important;
}

form .form-floating .form-control:focus~label:after,
form .form-floating>.form-control:not(:placeholder-shown)~label:after {
  background: var(--main-blue);
}

form .form-check label,
form .formc-check input {
  cursor: pointer;
}

form .form-check input:focus {
  box-shadow: none;
}

form .form-check-input:checked[type=checkbox] {
  background-color: var(--main-color);
  border-color: var(--main-color);
}


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

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


/*------------------------------
4.1 Header
------------------------------*/
.banner-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--main-color);
  font-size: 15px;
  padding: 5px 0;
}

.banner-top a {
  color: var(--main-blue);
  position: relative;
}

.banner-top a:hover:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.25px;
  background: var(--main-blue);
  z-index: 1;
}

.banner-top img {
  height: 12px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(6%) sepia(17%) saturate(6927%) hue-rotate(201deg) brightness(89%) contrast(93%);
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--main-blue);
  box-shadow: 0px 3px 34px 0px rgba(116,56,30,0.2);
  z-index: 9999;
}

header .top {
  background: #fff0f6;
  padding: 8px 0;
}

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

header .top a {
  color: var(--main-text);
  font-size: 15px;
}

header .btn {
  white-space: nowrap;
}

header .dropdown.language button {
  background: none;
  outline: none;
  border: none;
  color: var(--lb-text);
  font-size: 18px;
}

header .dropdown.language button:after {
  display: none;
}

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

header .dropdown.language .dropdown-menu {
  background: var(--beige);
  padding: 15px 25px;
}

header .dropdown.language .dropdown-item {
  color: var(--lb-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(92, 154, 204, .5);
}

header .dropdown.language .dropdown-item:hover {
  border-bottom: 1px solid var(--main-color);
}

header .dropdown.language .dropdown-item:hover {
  color: var(--main-color);
  background: none;
  opacity: 1;
}

header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0;
  gap: 30px;
  width: fit-content;
  margin: 0 auto;
}

header nav .logo {
  max-width: 365px;
}

header nav .menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

header nav .menu li a {
  color: var(--lb-text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  padding: 10px 0;
}

header nav .menu li a.current {
  background: #225371;
  padding: 20px 30px;
  color: #A0CBEF;
  border-radius: 100px;
}

header nav .menu li a.current:hover {
  color: var(--main-color);
}

header nav .menu > li > a:before {
  content: "";
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: var(--beige);
  display: block;
  background-image: url("../images/icon-home.svg");
  background-size: 17px auto;
  background-position: center;
  background-repeat: no-repeat;
}

header nav .menu > li:nth-of-type(2) > a:before {
  background-image: url("../images/icon-stocklots.svg");
}

header nav .menu > li:nth-of-type(3) > a:before {
  background-image: url("../images/icon-about.svg");
}

header nav .menu > li:nth-of-type(4) > a:before {
  background-image: url("../images/icon-contact.svg");
}

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

header nav .menu li:hover > a {
  color: var(--main-color);
}

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

header  nav .menu li.dropdown .arrow-down {
  color: var(--beige);
}

header  nav .menu li.dropdown .drop-menu {
  position: absolute;
  border-radius:  var(--bs-border-radius);
  left: -15px;
  top: 50px;
  background: var(--beige);
  box-shadow: var(--box-shadow);
  min-width: 300px;
  padding: 25px;
  display: none;
}

header  nav .menu li.dropdown .drop-menu a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(92, 154, 204, .5);
  font-weight: 400;
}

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

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 .search-wrapper {
  position: relative;
}

header .search-trigger {
  font-size: 18px;
  cursor: pointer;
  color: var(--lb-text);
}

header .search {
  position: absolute;
  width: 270px;
  right: 0;
  bottom: -75px;
  display: none;
}

header .search.open {
  display: block;
}

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

header .search input {
  border-right: none;
  border-radius: 0;
  background: #fff;
}

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

header .menu-toggle {
  width: 42px;
  cursor: pointer;
}

#valuation {
  padding: 10px;
  background: var(--beige);
  box-shadow: 0px 12px 26px 0px rgba(153,108,69,0.22);
  border-radius: 10px;
  position: fixed;
  z-index: 9999;
  bottom: 3%;
  right: 3%;
}

#valuation:hover {
  background: #f7c27e;
}

#valuation .wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

#valuation .icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  background: var(--main-color);
  border-radius: 7px;
}

#valuation .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--main-blue);
  margin-bottom: 10px;
}

#valuation .bottom {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5A6383;
  font-size: 17px;
}

#valuation .bottom .arrow {
  height: 25px;
  width: 25px;
  background: var(--main-blue);
  display: grid;
  place-content: center;
  border-radius: 50%;
}

#valuation .bottom .arrow img {
  width: 12px;
  filter: brightness(0) invert(1);
}

#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--beige);
  transform: translateY(-100%);
  transition: transform .5s;
  overflow: hidden;
}

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

#menu-overlay .top {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#menu-overlay .logo {
  flex: 0 0 80px;
}

#menu-overlay i {
  font-size: 45px;
  cursor: pointer;
}

#menu-overlay .menu {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

#menu-overlay .menu > li > a {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

#menu-overlay .menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


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



/*------------------------------
4.3 Footer 
------------------------------*/
footer {
  padding: 80px 0 0;
}

footer .footer-top {
  background: var(--main-blue);
  padding-bottom: 0;
}

footer h2 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 15px;
}

footer .valuation img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(71%) saturate(327%) hue-rotate(166deg) brightness(84%) contrast(89%);
  opacity: .35;
  width: 155px;
  margin: 15px 0 25px auto;
  display: block;
}

footer .wrapper {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding-left: 50px;
}

footer li {
  padding: 8px 0;
}

footer li a {
  white-space: nowrap;
}

footer .info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

footer .info a {
  display: flex;
  gap: 8px;
  align-items: center;
}

footer .info a:hover {
  color: var(--beige);
}

footer .info a i {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-content: center;
  background: var(--main-color);
  color: var(--main-blue);
  border-radius: 50%;
}

footer .info a:hover i {
  background: var(--beige);
}

footer .bottom {
  background: #364E67;
  padding: 30px;
}

footer .bottom .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  width: 100%;
}

footer .bottom .menu a {
  color: #ebe2d1;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#slider {
  padding: 0;
  position: relative;
  height: calc(100vh - 126px);
}

#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-color);
  color: #fff;
  display: grid;
  place-content: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 45px;
  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;
}

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: 16px;
  left: 0;
  bottom: -7px;
  z-index: -1;
}

#home-intro {
  position: relative;
  height: calc(100vh - 141px);
  padding: 0;
}

#home-intro:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(12, 25, 44, 0.35);
  height: 100%;
  width: 100%;
  z-index: -1;
}

#home-intro .container,
#home-intro .row,
#home-intro .col-lg-6 {
  height: 100%;
}

#home-intro .row {
  align-items: flex-end;
}

#home-intro .text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  background: var(--main-blue);
}

#home-intro .text .edge {
  position: absolute;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  z-index: 1;
}

#home-intro h1 {
  margin-bottom: 40px;
}

#home-intro p {
  font-size: 21px;
  max-width: 550px;
  margin-bottom: 40px;
}

#home-intro .btns {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn.small {
  background: none;
  color: var(--lb-text);
  font-weight: 600;
  gap: 20px;
}

.btn.small:hover {
  color: #A0CBEF;
}

.btn.small:after {
 display: none;
}

.btn.small .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--main-color);
  display: grid;
  place-content: center;
  transition: all .3s;
}

.btn.small:hover .arrow {
  background: var(--beige);
}

.btn.small .arrow img {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(6%) sepia(17%) saturate(6927%) hue-rotate(201deg) brightness(89%) contrast(93%);
}

#home-intro .stats-wrapper {
  display: flex;
  align-items: flex-end;
}

#home-intro .stats {
  display: grid;
  grid-template-columns: 2fr auto;
  gap: 40px;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 20%;
}

#home-intro .stats .stat {
  width: 240px;
  background: var(--beige);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: var(--main-blue);
  position: relative;
  overflow: hidden;
}

#home-intro .stats .stat:after {
  content: "";
  height: 60px;
  width: 60px;
  top: -25px;
  right: -25px;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  background: var(--main-color);
  border-radius: 50%;
}

#home-intro .stats .stat .number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

#home-intro .stats .stat .number .amount-bill {
  display: none;
}

#home-intro .stats .stat .number .m2 {
  margin-left: 5px;
}

#home-intro .stats .stat .number .plus {
  color: var(--main-color);
  margin-left: 5px;
}

#home-intro .img  {
  position: absolute;
  right: 0;
  width: 58%;
  top: 0;
  bottom: 0;
  object-fit: cover;
  z-index: -1;
  height: 100%;
  clip-path: inset(0 100% 0 0); 
}

#home-intro .ratio {
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 58%;
  z-index: -1;
  right: 0;
  top: 0;
  clip-path: inset(0 100% 0 0); 
}

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

#home-intro video {
  -o-object-fit: cover;
  object-fit: cover
}

#why .container {
  position: relative;
}

#why h2 {
  text-align: center;
}

#why .swiper {
  margin-top: 50px;
}

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

#why .swiper-slide {
  background: var(--main-blue);
  height: auto;
}

#why .swiper-slide .title {
  opacity: 0 !important;
}

#why .swiper-slide-active .title {
  opacity: 1 !important;
}

#why .wrapper {
  display: flex;
  position: relative;
}

#why .wrapper:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 90px;
  height: 1px;
  width: calc(50% - 90px);
  background: var(--beige);
}

#why .wrapper .content {
  flex: 0 0 270px;
  font-size: 20px;
  padding: 0;
}

#why .wrapper .content .icon {
  height: 75px;
  width: auto;
  margin-bottom: 10px;
}

#why .wrapper .img {
  flex: 0 0 calc(100% - 405px);
  margin-left: 95px;
}

#why .wrapper .img svg {
  max-width: 570px;
}

#why .title {
  text-align: center;
  font-family: 'Nexa';
  font-size: 60px;
  color: var(--beige);
  margin-top: 30px;
  text-transform: uppercase;
}

#why .swiper-why-pagination {
  position: absolute;
  right: 0;
  width: fit-content;
  top: 145px;
  z-index: 2;
  color: var(--beige);
  font-size: 20px;
}

#why .swiper-why-pagination .pagination {
  cursor: pointer;
  position: relative;
  transition: color .3s;
  padding: 5px 0;
}

#why .swiper-why-pagination .pagination.active {
  color: var(--main-color);
}

#why .swiper-why-pagination .pagination.active:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: -24px;
  height: 16px;
  width: 16px;
  background: var(--main-color);
  border-radius: 50%;
}

#logos {
  margin: 0 auto;
  max-width: 1920px;
  overflow: hidden;
  padding: 0;
}

#logos .wrapper {
  margin: 0 -8%;
}

#logos .logo {
  background: #225371;
  border-radius: 10px;
  height: 80px;
  display: grid;
  place-content: center;
}

#logos .logo img {
  max-height: 45px;
  max-width: 80px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

#graphs .title-wrapper {
  display: flex;
  gap: 40px;
  font-size: 20px;
  margin-bottom: 35px;
}

#graphs .title-wrapper h2 {
  flex: 0 0 520px;
}

#graphs .graph {
  background: var(--beige);
  border-radius: 20px;
  padding: 100px 30px 30px 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  align-items: stretch;
  color: var(--main-blue);
  height: 100%;
}

#graphs .graph:after {
  content: "";
  background: var(--lb-text);
  width: 70px;
  height: 100px;
  right: 50px;
  top: 0;
  position: absolute;
}

#graphs .graph .bar {
  flex: 0 0 100px;
}

#graphs .graph .bar .number {
  border-radius: 30px;
  border: 2px solid var(--beige);
  text-align: center; 
  padding: 5px;
  background: #EFAE30;
  color: #fff;
  font-weight: 500;
  width: 75%;
  margin: 0 auto -20px;
  position: relative;
  z-index: 2;
}

#graphs .graph .bar .rect-wrapper {
  height: 175px;
  width: 100%;
  position: relative;
}

#graphs .graph .bar .rect {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,rgba(253, 208, 123, 1) 0%, rgba(239, 174, 48, 1) 100%);
  border-radius: 15px;
}

#graphs .graph .bar .title {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-top: 5px;
}

#graphs .graph .content {
  padding: 0;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

#graphs .graph .content .big-number {
  font-weight: 500;
  font-size: 45px;
  margin-bottom: 5px;
}

#graphs .graph .content .text {
  font-size: 20px;
}

#graphs .graph .icon {
  position: absolute;
  bottom: -5%;
  right: -5%;
  max-width: 50%;
}

#video {
  overflow: hidden;
}

#video .title-wrapper {
  display: flex;
  gap: 40px;
  font-size: 20px;
  margin-bottom: 35px;
}

#video .title-wrapper h2 {
  flex: 0 0 520px;
}

#video .thumb {
  position: relative;
}

#video .thumb:after {
  background: #A0CBEF;
  border-radius: 50%;
  color: var(--main-blue);
  content: "\f04b";
  display: grid;
  font-family: "Font Awesome 6 Pro";
  font-size: 40px;
  font-weight: 700;
  height: 80px;
  width: 80px;
  left: 50%;
  place-content: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}

#video .thumb:hover:after {
  background: #e2f2ff;
}

#video .thumb img {
  border-radius: 20px;
}

#video .thumb .dots {
  width: 10%;
  right: -20px;
  bottom: -20px;
  z-index: 1;
  pointer-events: none;
  position: absolute;
  border-radius: 0;
  filter: brightness(0) saturate(100%) invert(77%) sepia(9%) saturate(2001%) hue-rotate(182deg) brightness(105%) contrast(87%);
}

#process {
  background: var(--beige);
}

#process .steps {
  position: relative;
  width: 90%;
}

#process .steps .step {
  background: var(--main-blue);
  padding: 0 25px 40px 25px;
  border-radius: 14px;
  width: 400px;
  text-align: center;
  box-shadow: 0px 12px 26px 0px rgba(153,108,69,0.22);
  z-index: 3;
  position: relative;
}

#process .steps .step:nth-of-type(2) {
  margin-top: 15%;
  margin-left: auto;
}

#process .steps .step:nth-of-type(3) {
  margin-top: 8%;
  margin-left: 12%;
}

#process .steps .step .icon {
  height: 85px;
  width: 85px;
  position: relative;
  margin: 0 auto -30px;
  background: #225371;
  border-radius: 50%;
  display: grid;
  place-content: center;
  top: -44px;
}

#process .steps .step .icon img {
  height: 44px;
  width: auto;
  max-width: 44px;
}

#process .steps .step .title {
  font-weight: 700;
  font-size: 24px;
  color: var(--beige);
  margin-bottom: 18px;
}

#process .steps .step .text a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--main-color);
}

#process .steps .line {
  position: absolute;
  top: 100px;
  width: 102%;
  height: calc(100% - 200px);
  left: 1%;
}

#process .steps .line-wrapper {
  position: absolute;
  top: 100px;
  width: 98%;
  height: calc(100% - 200px);
  left: 5%;
}

#process .steps .line-wrapper .rect {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 2;
  background: var(--beige);
}

#process .steps .line-wrapper .line {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 1;
}

#process h2 {
  text-align: right;
  color: var(--main-blue);
}

#process p {
  text-align: right;
  color: var(--main-blue);
  margin: 20px 0 40px;
}

#process .video {
  position: relative;
}

#process .video:after {
  background: var(--main-color);
  border-radius: 50%;
  color: var(--main-blue);
  content: "\f04b";
  display: grid;
  font-family: "Font Awesome 6 Pro";
  font-size: 40px;
  font-weight: 700;
  height: 80px;
  width: 80px;
  left: 50%;
  place-content: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}

#process .video:hover:after {
  background: var(--beige);
}

#process .video .thumb {
  border-radius: 200px 200px 20px 20px;
  box-shadow: 0px 12px 26px 0px rgba(153,108,69,0.22);
}

#process .video .dots {
  width: 30%;
  left: -20px;
  bottom: -20px;
  z-index: 1;
  pointer-events: none;
  position: absolute;
}

#durable {
  background: #1E6029;
  color: var(--beige);
  position: relative;
  padding: 0;
}

#durable .text-wrapper {
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 250px 0 330px;
}

#durable .text-wrapper .edge {
  position: absolute;
  top: 0;
  right: -180px;
  width: 180px;
  height: 100%;
  z-index: 1;
}

#durable h2 em {
  color: var(--main-color);
}

#durable p {
  margin-top: 20px;
  font-size: 20px;
}

#durable .img {
  position: absolute;
  right: 0;
  width: 50%;
  top: 0;
  bottom: 0;
  object-fit: cover;
  height: 100%;
}

#durable .heart {
  top: 5%;
  left: 5%;
  width: 500px;
  position: absolute;
}

#durable .leaf {
  top: 28%;
  left: 51.3%;
  width: 155px;
  position: absolute;
  z-index: 2;
}

#blog {
  border-radius: 80px 80px 0 0;
  margin-top: -80px;
  position: relative;
  z-index: 2;
  background: var(--main-blue);
  padding-top: 50px;
}

#blog h2 {
  text-align: center;
  margin-bottom: 40px;
}

.article:hover {
  color: var(--beige);
}

.article h4 {
  margin: 20px 0;
}

.article .img {
  position: relative;
}

.article .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(239, 191, 97, .3);
  z-index: 1;
  border-radius: 5px;
}

.article .img:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  border: 5px solid var(--beige);
  border-radius: 5px;
  filter: blur(3px);
}

.article .img img {
  border-radius: 5px;
}

.article .arrow-wrapper {
  margin-top: 20px;
  margin-left: auto;
  height: 38px;
  width: 38px;
  background: var(--main-color);
  border-radius: 50%;
  display: grid;
  place-content: center;
  transition: .3s;
}

.article:hover .arrow-wrapper {
  background: var(--beige);
}

.article .arrow-wrapper img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(5%) saturate(4148%) hue-rotate(189deg) brightness(95%) contrast(86%);
  width: 15px;
}

#team p {
  font-size: 20px;
}

#team .slider-wrapper {
  position: relative;
}

#team .row {
  margin-top: 30px;
}

#team .row .col-lg-3:not(:last-of-type) {
  margin-bottom: 24px;
}

#team .member {
  position: relative;
}

#team .member img {
  border-radius: 10px;
}

#team .member .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 25px;
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

#team .member .name {
  font-size: 20px;
}

#team .member .role {
  margin: 5px 0 0;
}

#team .member a {
  display: block;
  color: #fff;
  margin-top: 5px;
}

#team .member a:hover {
  opacity: .75;
}

#team .member .phone {
  margin-bottom: 5px;
}

#team .member a i {
  margin-right: 8px;
}

#team .member .flags {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: 12px;
  right: 12px;
}

#team .member .flags img {
  width: 25px;
}

#team .swiper-button-prev {
  left: -12px;
}

#team .swiper-button-next {
  right: -12px;
}

#faq {
  background: var(--beige);
  overflow-x: clip;
  position: relative;
  padding-top: 50px;
  z-index: 2;
}

#faq .container {
  position: relative;
}

#faq .row {
  align-items: center;
}

#faq h5 {
  color: var(--main-blue);
}

#faq .accordion {
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

#faq .accordion-item {
  margin-bottom: 10px;
  border-radius: 10px;
  border: none;
  box-shadow: 0px 2px 8px 0px rgba(153,108,69,0.12);
}

#faq .accordion-button {
  border-radius: 10px;
  font-size: 18px;
  padding: 20px 90px 20px 20px;
}

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

#faq .accordion-body p:last-of-type {
  margin-bottom: 0;
}

#faq .accordion-button:after {
  content: "\f175";
  font-family: 'Font Awesome 6 Pro';
  font-size: 25px;
  font-weight: 500;
  color: var(--beige);
  background: none;
  height: unset;
  width: unset;
  z-index: 2;
  right: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#faq .accordion-button:before {
  content: "";
  position: absolute;
  border-radius: 10px;
  width: 69px;
  right: 0;
  top: 0;
  background: var(--main-color);
  height: 100%;
}

#faq .accordion-button:not(.collapsed):after {
  content: "\f176";
}

#faq .accordion-button:not(.collapsed):before {
  background: var(--main-blue);
}

#faq .btn {
  background: var(--main-blue);
  color: var(--main-color);
}

#faq .btn:hover {
  background: var(--main-color);
  color: var(--main-blue);
}

#faq .btn:after {
  background-color: var(--main-color);
  background-image: url(../images/arrow-blue.svg);
}

.label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  background: var(--main-color);
  width: fit-content;
  color: var(--main-blue);
  margin-bottom: 12px;
}

.label img {
  height: 21px;
  width: auto;
}

#faq h2 {
  color: var(--main-blue);
}

#faq .dots {
  height: 190px;
  width: auto;
  left: -110px;
  bottom: -108px;
  z-index: 1;
  pointer-events: none;
  position: absolute;
  max-width: 180px;
}

#faq .edge {
  position: absolute;
  height: 80px;
  top: -79px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

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

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


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

#breadcrumbs ul {
  display: flex;
}

#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 a {
  color: var(--beige);
}

#article-intro {
  text-align: center;
}

#article-intro .label {
  margin: 0 auto;
  background: #225371;
  color: #A0CBEF;
}

#article-intro .label img {
  border-radius: 0;
  margin: 0;
}

#article-intro img {
  margin-top: 30px;
}

.content {
  padding: 50px 0;
}

#text-image .row,
#text-video .row,
#text-slider .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-image .btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

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

.swiper-button-next,
.swiper-button-prev {
  background: #225371;
  color: var(--beige);
  height: 45px;
  width: 45px;
  font-size: 22px;
  display: grid;
  place-content: center;
  border-radius: 50%;
}

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

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

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

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

.swiper-pagination-bullet {
  background: var(--main-color);
  width: 11px;
  height: 11px;
}

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

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

.content h1 {
  font-size: 60px;
}

.content h2 {
  font-size: 28px;
  line-height: 35px;
}

.content h3 {
  font-size: 23px;
}

.content img {
  border-radius: 30px;
}

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

.content ol {
  padding-left: 0;
}

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

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

}

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

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

.content p a,
.content ul li a {
  text-decoration: underline;
  color: var(--beige);
}

.content p a:hover,
.content ul li a:hover {
  color: #A0CBEF;
}

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

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

.form-checkboxes {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkboxes input {
  margin-top: 5px;
}

#related-articles {
  background: var(--beige);
  position: relative;
  padding-top: 50px;
  margin-top: 60px;
}

#related-articles .container {
  position: relative;
}

#related-articles h3 {
  text-align: center;
  color: var(--main-blue);
  position: relative;
  margin-bottom: 25px;
}

#related-articles h3:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  height: 3px;
  background: var(--main-color);
  width: 65px;
}

#related-articles img {
  border-radius: 20px 20px 0 0;
}

#related-articles .title {
  padding: 20px;
  border-radius: 0 0 20px 20px;
  background: var(--main-blue);
  color: var(--beige);
  font-weight: 500;
  font-size: 21px;
  text-align: center;
  box-shadow: 0px 5px 26px 0px rgba(153,108,69,0.22);
  transition: all .3s;
}

#related-articles a:hover .title {
  color: var(--main-blue);
  background: #fff;
}

#related-articles .swiper-button-prev {
  left: -52px;
}

#related-articles .swiper-button-next {
  right: -52px;
}

#related-articles .edge {
  position: absolute;
  height: 80px;
  top: -79px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

#form .text {
  margin-bottom: 35px;
  text-align: center;
}

#form:has(.google-maps) .text {
  text-align: left;
}

#form form {
  max-width: 850px;
  margin: 0 auto;
  flex: 0 0 50%;
}

#form:has(.google-maps) .wrapper {
  display: flex;
  gap: 50px;
}

#form .google-maps {
  flex: 0 0 calc(50% - 50px);
}

#form .google-maps iframe {
  height: 100%;
  width: 100%;
}

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

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

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

.products h2 {
  font-size: 20px;
  margin-top: 10px;
}

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

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

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

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

/*------------------------------
10.1 Large desktop
------------------------------*/
@media (min-width: 1200px) { 
	
}

/*------------------------------
10.2 Portrait tablet to landscape and desktop
------------------------------*/
@media (max-width: 1400px) { 
  header .container-fluid {
    max-width: 1140px;
  }
  header nav {
    width: 100%;
    justify-content: space-between;
    padding: 20px 0;
  }
  header nav .logo {
    width: 285px;
  }
  header nav .menu {
    margin-left: auto;
  }
	header nav .menu > li {
    display: none !important;
  }
  h1 {
    font-size: 50px;
    line-height: 70px;
  }
  #home-intro p {
    font-size: 19px;
    margin-bottom: 20px;
  }
  #home-intro .text .edge {
    width: 150px;
    right: -150px;
  }
  #home-intro .btns {
    flex-direction: column;
    align-items: flex-start;
  }
  h2 {
    font-size: 40px;
    line-height: 45px;
  }
  h1 em svg, h2 em svg, h3 em svg, h4 em svg, h5 em svg, h6 em svg {
    height: 14px;
  }
  #why .swiper-wrapper {
    padding-bottom: 16px;
  }
  #why .title {
    font-size: 40px;
  }
  #why .wrapper .content {
    font-size: 18px;
  }
  #why .wrapper .img {
    margin-left: 65px;
  }
  #why .wrapper .img svg {
    max-width: 480px;
  }
  #why .swiper-why-pagination {
    font-size: 18px;
  }
  #why .swiper-why-pagination .pagination.active:after {
    height: 15px;
    width: 15px;
  }
  #graphs .title-wrapper {
    font-size: 18px;
  }
  #video .title-wrapper {
    font-size: 18px;
  }
  #graphs .graph .content .text {
    font-size: 18px;
  }
  #process .steps .step .icon {
    height: 70px;
    width: 70px;
    top: -35px;
  }
  #process .steps .step .icon img {
    height: 35px;
    width: auto;
    max-width: 35px;
  }
  #process .steps .step .title {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 10px;
  }
  #process .steps .step:nth-of-type(3) {
    margin-top: 12%;
  }
  #durable {
    padding-bottom: 80px;
  }
  #durable p {
    font-size: 18px;
  }
  #durable .text-wrapper {
    padding: 150px 0 230px;
  }
  #durable .heart {
    width: 350px;
  }
  #durable .leaf {
    left: 53.3%;
    width: 135px;
  }
  #team p {
    font-size: 18px;
  }
  #team .member .name {
    font-size: 18px;
  }
  #faq {
    padding-top: 80px;
  }
  #faq .edge {
    height: 50px;
    top: -49px;
  }
  footer h2 {
    font-size: 40px;
    line-height: 45px;
  }
  footer .wrapper {
    padding-left: 0;
    gap: 30px;
  }
  #valuation .title {
    font-size: 18px;
    margin-bottom: 7px;
  }
  #valuation .bottom .arrow {
    width: 22px;
    height: 22px;
  }
  #valuation .bottom .arrow img {
    width: 11px;
  }
}

@media (max-width: 1200px) {
  #home-intro .text .edge {
    display: none;
  }
  #why .wrapper .img {
    margin-left: 35px;
  }
  #why .wrapper .img svg {
    width: 375px;
    left: 55%;
  }
  #graphs .graph {
    gap: 28px;
    padding: 70px 20px 20px 20px;
  }
  #graphs .graph:after {
    height: 70px;
  }
  #graphs .graph .content .text {
    font-size: 16px;
  }
  #graphs .graph .content .big-number {
    font-size: 35px;
  }
  #graphs .graph .bar .title {
    font-size: 16px;
  }
  footer h2 {
    font-size: 30px;
  }
}

/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
  section {
    padding: 50px 0;
  }
  header.open {
    height: 100vh;
    overflow: auto;
  }
  header .top {
    display: none;
  }
  header .container {
    position: relative;
  } 
  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 nav {
    padding: 15px 0;
    gap: 20px;
  }
  header nav .menu {
    display: none;
  }
  header .menu-toggle {
    width: 32px;
  }
  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 .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;
  }
  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 .dropdown.language {
    margin-left: auto;
  }
  header nav .search .form-outline {
    width: 100%;
  }
  #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 .wrapper {
    flex-direction: column;
  }
  footer .tel, footer .mail {
    display: block;
  }
  footer .footer-links {
    margin-bottom: 24px;
  }
  .content {
    padding: 25px 0;
  }
  #text-image .row, #text-video .row, #text-slider .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;
  }
  .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
  #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);
  }
  #durable .text-wrapper .edge {
    display: none;
  }
  #graphs .title-wrapper {
    flex-direction: column;
  }
  #video .title-wrapper {
    flex-direction: column;
  }
  #home-intro {
    height: auto;
    padding: 50px 0;
  }
  #home-intro:after {
    background: rgba(12, 25, 44, 0.62);
  }
  #home-intro .row {
    align-items: flex-start;
  }
  #home-intro .container, #home-intro .row, #home-intro .col-lg-6 {
    height: unset;
  }
  #home-intro .text {
    height: auto;
    background: none;
    color: #fff;
  }
  h1 {
    font-size: 45px;
    line-height: 64px;
  }
  #home-intro h1 {
    margin-bottom: 20px;
  }
  #home-intro .img {
    width: 100%;
  }
  #home-intro .btns {
    gap: 0;
  }
  #home-intro .btn.small {
    color: #fff;
  }
  #home-intro .btn.small .arrow {
    width: 30px;
    height: 30px;
  }
  #home-intro .btn.small .arrow img {
    width: 13px;
  }

  #home-intro .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: unset;
    margin-top: 20px;
    max-width: 500px;
  }
  #home-intro .stats .stat {
    flex: 0 0 calc(50% - 15px);
    padding: 15px 10px;
  }
  #home-intro .stats .stat:after {
    top: -35px;
    right: -35px;
  }
  #home-intro .stats .stat .number {
    font-size: 24px;
  }
  #home-intro .ratio {
    width: 100%;
  }
  h2 {
    font-size: 34px;
  }
  #why .swiper {
    margin-top: 0;
  }
  #why .wrapper {
    flex-direction: column;
    gap: 20px;
  }
  #why .wrapper:after {
    display: none;
  }
  #why .wrapper .content {
    flex: unset;
    font-size: 16px;
  }
  #why .wrapper .content .icon {
    height: 45px;
  }
  #why .wrapper .img {
    text-align: center;
    margin-left: 0;
  }
  #why .wrapper .img svg {
    position: relative;
    transform: unset;
    left: unset;
    gap: 20px;
    max-width: 250px;
    margin: 0 auto;
  }
  #why .title {
    font-size: 28px;
    margin-top: 10px;
  }
  #why .swiper-slide {
    height: auto;
  }
  #why .swiper-why-pagination {
    top: unset;
    bottom: 0;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    bottom: -10px;
  }
  #why .swiper-why-pagination .pagination {
    width: 15px;
    height: 15px;
  }
  #why .swiper-why-pagination .pagination span {
    display: none;
  }
  #why .swiper-why-pagination .pagination:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: -24px;
    height: 16px;
    width: 16px;
    background: var(--main-color);
    border-radius: 50%;
    opacity: .65;
  }
  #why .swiper-why-pagination .pagination.active:after {
    opacity: 1;
  }
  #graphs .title-wrapper {
    gap: 10px;
    margin-bottom: 25px;
  }
  #graphs .title-wrapper h2 {
    flex: unset;
  }
  #video .title-wrapper {
    gap: 10px;
    margin-bottom: 25px;
  }
  #video .title-wrapper h2 {
    flex: unset;
  }
  #graphs .row .col-lg-4:not(:last-of-type) {
    margin-bottom: 24px;
  }
  #graphs .graph .bar .rect,
  #graphs .graph .bar .rect-wrapper {
    height: 140px;
  }
  #video .title-wrapper {
    gap: 10px;
    margin-bottom: 25px;
  }
  #video .thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  #video .thumb .dots {
    width: 20%;
    aspect-ratio: unset;
  }
  #process .row {
    flex-direction: column-reverse;
  }
  #process .steps .line-wrapper .line {
    display: none;
  }
  #process .steps {
    margin-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  #process .steps .step {
    margin: 0 !important;
    scale: 1 !important;
    width: 100%;
    transform: unset !important;
  }
  #durable .text-wrapper {
    padding: 50px 12px;
  }
  #durable .img {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
    border-radius: 30px;
  }
  #durable .leaf {
    display: none;
  }
  #durable .heart {
    width: 180px;
    left: unset;
    right: 20px;
  }
  #blog {
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
  }
  #blog .row {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  #team .swiper-button-next {
    right: 24px;
  }
  #team .swiper-button-prev {
    left: 24px;
  }
  #faq {
    padding-top: 60px;
  }
  #faq h2 {
    margin-bottom: 20px;
  }
  #faq .edge {
    height: 30px;
    top: -29px;
  }
  #faq .row {
    flex-direction: column-reverse;
  }
  #faq .accordion {
    padding-right: 0;
  }
  #faq .btns {
    margin-bottom: 25px;
  }
  #faq .dots {
    height: 110px;
    left: -10px;
    bottom: -49px;
  }
  footer {
    padding: 50px 0 0;
  }
  footer .footer-top {
    padding-bottom: 50px;
  }
  footer .valuation {
    margin-bottom: 30px;
  }
  footer .valuation img {
    display: none;
  }
  .content h1 {
    font-size: 35px;
  }
  #menu-overlay .menu {
    justify-content: flex-start;
    gap: 25px;
    max-height: calc(100vh - 130px);
    padding-bottom: 50px;
    overflow: auto;
  }
  #menu-overlay .menu > li > a {
    font-size: 20px;
  }
  #form .wrapper {
    flex-direction: column;
  }
  #form form,
  #form .google-maps {
    flex: 0 0 100%;
    margin: 0;
  }
  #form .google-maps iframe {
    height: 500px;
  }
  #related-articles .edge {
    height: 30px;
    top: -29px;
  }
  #related-articles .swiper-button-next {
    right: 18px;
  }
  #related-articles .swiper-button-prev {
    left: 18px;
  }
}

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