/*--------------------------------------------------------------
>>> 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
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
  --main-text: #33292d;
  --main-color: #da2231;
  --box-shadow: 0px 2px 80px rgb(124 0 52 / 10%);
}

body {
  font-family: "PT Sans Narrow", Arial, sans-serif;
  font-weight: 400;
  color: var(--main-text);
  padding-top: 175px;
  overflow-x: hidden;
}

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

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

.btn {
    font-weight: 600;
    color: #fff;
    padding: 12px 25px;
    background: var(--main-color);
    border-radius: 0;
    border: none;
}

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

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

img {
  width: 100%;
}

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

h1 {
  font-size: 42px;
  line-height: 46px;
  margin-bottom: 40px;
}

h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 40px 0 10px 0;
}

h3 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 40px;
}

h4 {
	font-size: 48px;
	line-height: 38px;
}

h5 {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 30px;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section {
  padding: 0;
}

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

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

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

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

.button.red {
  background-color: #da2231;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  padding: 12px 25px;
  text-align: center;
  border: none;
}

.button.black {
  margin-bottom: 30px;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  color: #000;
  display: block;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 18px;
  padding: 12px 25px;
  text-align: center;
}

.button.black:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.button.black.full {
  background: #000;
  border: none;
  color: #fff;
}

.button.white {
  border-bottom: solid 1px #fff;
  border-top: solid 1px #fff;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  padding: 12px 25px;
  text-align: center;
}

.button.white:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

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

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

.form-check-input {
  border: 1px solid var(--main-color)
}

.form-check-input:checked {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.form-check-input:focus {
  box-shadow: none;
  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
------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}

header .top {
  padding: 25px 10px 0 270px;
  border-bottom: solid 1px #cecece;
}

header .top .container {
  padding: 0 !important
}

header .top .wrapper {
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: -1px;
}

header .top .wrapper nav {
  width: 50%;
  padding: 0;
}

header .top .wrapper #ask-for-sample {
  width: 25%;
  color: #da2231;
  font-weight: 700;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 10px;
}

header .top .wrapper form.search {
  width: 25%;
}

header .top .wrapper form.search .form-outline {
  width: 100%;
}

header .top .wrapper form.search input.form-control {
  border: none;
  border-bottom: solid 1px #000;
  padding: 9px 42px 9px 0;
}

header .top .wrapper form.search #search-button {
  background: transparent;
  padding: 0;
}

header .top .wrapper form.search .fas.fa-search {
  cursor: pointer;
  color: #000;
  float: left;
  font-size: 16px;
  position: absolute;
  right: 23px;
  top: 8px;
}

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

header .container {
  max-width: 100% !important;
  padding: 0 0 40px 0 !important;
}

header .container #logo {
  width: 135px;
  height: 135px;
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

header.scrolled .container {
  padding: 0 0 10px 0 !important;
}

header.scrolled .container #logo {
  width: 95px;
  height: 95px;
  top: 25px;
  left: 25px;
}

header .container #logo:before {
  background: #464492;
  content: " ";
  height: 135px;
  display: block;
  left: -35px;
  position: absolute;
  top: -35px;
  width: 135px;
  z-index: -1;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

header.scrolled .container #logo:before {
  opacity: 0;
}

header .container #logo img {
  width: 100%;
  height: auto;
}

header .container .language-switcher {
  position: relative;
  margin-right: 20px;
}

header .container .language-switcher ul.list {
  display: flex;
  column-gap: 10px;
}

header .container .language-switcher ul.list li .item {
  border: solid 1px #f0f0f0;
  color: #000000;
  font-weight: 400;
  padding: 4px 6px;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .container .language-switcher ul.list li .item.active {
  font-weight: bold;
}

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

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 {
  display: flex;
  column-gap: 50px;
  align-items: center;
  padding: 15px 0 0 0;
}

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

header nav .top-menu li a {
  font-size: 17px;
  font-weight: 400;
}

header nav .menu {
  width: 100%;
  display: flex;
  column-gap: 50px;
  padding: 0 20px;
  margin-left: 270px;
}

header nav .menu li a {
  padding: 0;
  color: var(--main);
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
  display: block;
}

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

header nav .menu li:hover > a {
  color: #302d7d;
}

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

header  nav .menu li.dropdown .arrow-down::before {
  font-size: 12px;
  font-weight: 600;
}

header  nav .menu li.dropdown .drop-menu {
  position: absolute;
  left: -15px;
  top: 50px;
  background: #fff;
  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 rgb(228, 228, 228);
  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;
  background-color: #fff;
  border: solid 1px #cecece;
  padding: 15px 0 0 0;
  width: 400px;
  top: 100%;
  left: 0;
}

header nav .menu li.dropdown .drop-menu > li {
  font-size: 18px;
  padding-bottom: 10px;
  margin-right: 50px;
}

header nav .menu li.dropdown .drop-menu > li > a {
  display: block;
  padding: 0 15px;
  font-size: 18px;
  border: none;
}

header nav .grs-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

header nav .grs-logo img {
  max-width: 80px;
  justify-self: flex-end;
}

header nav .grs-logo span {
  width: max-content;
  font-size: 10px;
}

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

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

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

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

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


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

section#our-products {
  margin-bottom: 35px;
}

section#our-products h3 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 40px;
}

section#our-products h3 span {
  display: block;
  font-weight: normal;
}

section#our-products h4 {
  color: #000;
  font-size: 48px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 40px;
}

section#our-products h4 span {
  display: block;
  font-weight: normal;
  margin-left: -30px;
}

section#our-products .swiper-wrapper {
  height: auto;
}

section#our-products .our-products-swiper-thumbs {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  max-width: max-content;
  overflow: visible;
}

section#our-products .our-products-swiper-thumbs .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

section#our-products .our-products-swiper-thumbs .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  width: 125px !important;
}

section#our-products .our-products-swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

section#our-products .our-products-swiper-thumbs .swiper-slide img {
  border-radius: 50%;
}

section#our-products .our-products-swiper-thumbs .swiper-button-prev,
section#our-products .our-products-swiper-thumbs .swiper-button-next {
  border: solid 2px #f0f0f0;
  background: none;
  color: #000;
  display: block;
  float: left;
  height: 40px;
  line-height: 38px;
  text-align: center;
  width: 40px;
  z-index: 1;
}

section#our-products .our-products-swiper-thumbs .swiper-button-prev {
  margin-left: -50px;
}

section#our-products .our-products-swiper-thumbs .swiper-button-next {
  margin-right: -50px;
}

section#our-products ul.features {
  margin-bottom: 40px;
  min-height: 120px;
}

section#our-products ul.features li {
  display: block;
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  color: #646464;
}

section#our-products ul.features li:before {
  content: "\f046";
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

section#our-products a {
  color: #000;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}

section#our-products a.button.black {
  margin-bottom: 30px;
}

section#our-products a.button.black:hover {
  color: #fff;
}

section#our-products a i {
  margin-right: 18px;
}

section#about-us {
  padding: 50px 40px;
}

section#about-us .content {
  border: solid 4px #fff;
  display: block;
  padding: 10% 20%;
}

section#about-us .content h4 {
  color: #fff;
  font-size: 60px;
  line-height: 52px;
  margin-bottom: 40px;
}

section#about-us .content h4 span {
  font-size: 36px;
  line-height: 36px;
  margin: 0 0 10px 0;
  display: block;
  font-weight: normal;
}

section#about-us .content p {
  color: #fff;
  margin-bottom: 40px;
  font-size: 17px;
}

section#post-condensation .container-fluid {
  padding: 0;
}

section#post-condensation .image img {
  width: auto;
  height: 100% !important;
}

section#post-condensation .content {
  padding: 10% 20% 0 10%;
  display: flex;
  flex-direction: column;
}

section#post-condensation .content h3 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 40px;
}

section#post-condensation .content p {
  margin-left: 40px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 400;
}

section#post-condensation .content .button.black {
  margin-top: 10px;
  margin-bottom: 0;
  display: inline-block;
  width: max-content;
}

section#call-to-action {
  background-color: #302d7d;
  position: relative;
  z-index: 1;
}

section#call-to-action::before {
  content: "";
  position: absolute;
  top: -5vw;
  left: 0;
  z-index: -1;
  border-right: 100vw solid #302d7d;
  border-top: 5vw solid transparent;
  border-bottom: 0 solid transparent;
}

section#call-to-action::after {
  content: "";
  position: absolute;
  bottom: -5vw;
  left: 0;
  z-index: -1;
  border-right: 100vw solid #302d7d;
  border-top: 0 solid transparent;
  border-bottom: 5vw solid transparent;
}

section#call-to-action .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}

section#call-to-action .cta .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0;
}

section#call-to-action .cta i {
  font-size: 38px;
  color: #7976c0;
}

section#call-to-action .cta span.small {
  color: #7976c0;
  font-size: 14px;
  margin-bottom: 0;
}

section#call-to-action .cta span.large {
  color: #fff;
  font-size: 18px;
}

section#innovation {
  background-color: #ededed;
  padding-top: 150px;
  position: relative;
  margin-bottom: 50px;
}

section#innovation h3 {
  font-size: 24px;
  margin: 0 0 30px 30px;
}

section#innovation h4 {
  color: #000;
  font-size: 48px;
  font-weight: 700;
  line-height: 38px;
}

section#innovation p {
  margin: 0 40px 30px 40px;
  color: #646464;
}

section#innovation h4 span {
  display: block;
  font-weight: normal;
  margin-left: -30px;
}

section#innovation .image {
  display: block;
  padding: 5% 45% 10% 5%;
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  z-index: 2;
}

section#innovation .image::before {
  content: "";
  position: absolute;
  background: url(../images/bg-innovation.png) no-repeat;
  background-size: 60%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

section#innovation .image img {
  border: 5px solid #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

section#innovation .button.black {
  display: inline-block;
}

section#innovation .innovation.first .image::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 92%;
  height: 200px;
  border-top: 5px solid #fff;
  border-right: 5px solid #cbcbcb;
  z-index: -2;
}

section#innovation .innovation.second {
  margin-top: 180px;
}

section#innovation .innovation.second .image::after {
  content: "";
  position: absolute;
  top: -35%;
  display: block;
  width: 92%;
  height: 200px;
  border-bottom: 5px solid #cbcbcb;
  border-right: 5px solid #fff;
  z-index: -2;
}

section#innovation .innovation.third {
  margin-top: 60px;
}

section#innovation .innovation.third .image::after {
  border-top: solid 5px #cbcbcb;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 92%;
  z-index: -2;
}

section#innovation::after {
  content: "";
  position: absolute;
  bottom: -5vw;
  left: 0;
  z-index: 0;
  border-right: 100vw solid #ededed;
  border-top: 0 solid transparent;
  border-bottom: 5vw solid transparent;
}

section#top-banner .img-wrapper {
  max-height: 450px;
  height: 100%;
}

section#top-banner .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

table {
  border: solid 1px #ededed;
}

table tbody tr:first-child td {
  padding-top: 30px;
}

table tbody tr td {
  padding: 0 10px;
}

table tbody tr:last-child td {
  padding-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  section#our-products .container,
  section#innovation .container,
  .basic.container {
    max-width: 750px;
  }
}

@media only screen and (min-width: 992px) {
  section#our-products .container,
  section#innovation .container,
  .basic.container {
    max-width: 970px;
  }
}

@media only screen and (min-width: 1200px) {
  section#our-products .container,
  section#innovation .container,
  .basic.container {
    max-width: 1170px;
  }
}

#quicklinks {
	background: #302d7d;
	padding: 10px 40px 0 40px;	
    -webkit-transform: skewY(-3deg);
       -moz-transform: skewY(-3deg); 
	    	transform: skewY(-3deg);
  margin: -125px 0 50px 0;
}
#quicklinks.home {
  margin-top: 0;
}
#quicklinks .items {
    -webkit-transform: skewY(3deg);
       -moz-transform: skewY(3deg); 
	    	transform: skewY(3deg);
}
#quicklinks .quicklink:first-child {
	border-bottom: solid 1px #7976c0;
}
#quicklinks .quicklink .fa {
	color: #7976c0;
	display: block;
	font-size: 48px;
	margin: 30px 0 20px 0;
}
#quicklinks .quicklink span.small {
	color: #7976c0;
	display: block;
	font-size: 14px;
	margin-bottom: 0;	
}
#quicklinks .quicklink span.large {
	color: #fff;
	display: block;
	font-size: 18px;
	margin-bottom: 25px;
}
#quicklinks .quicklink span.large a {
	color: #fff;
}
#quicklinks .quicklink.sample {
	background: #464492;
	margin: 0 -40px;
	padding: 10px 40px 40px 40px;
    -webkit-transform: skewY(-3deg);
       -moz-transform: skewY(-3deg); 
	    	transform: skewY(-3deg);
}
#quicklinks .quicklink.sample .content {
    -webkit-transform: skewY(3deg);
       -moz-transform: skewY(3deg); 
	    	transform: skewY(3deg);
    padding: 0;
}
#quicklinks .social-navigation {
	background: #302d7d;
	bottom: -10px;
	margin: -20px -40px;
	padding: 20px 40px;
	position: relative;
    -webkit-transform: skewY(3deg);
       -moz-transform: skewY(3deg); 
	    	transform: skewY(3deg);
}
#quicklinks .social-navigation ul {
  margin-bottom: 0;
}
#quicklinks .social-navigation li a {
	color: #fff;
}
#quicklinks .social-navigation li {
	display: inline-block;
	font-size: 20px;
	margin: 0 10px;
	text-transform: uppercase;
  padding-left: 0;
}

#quicklinks .social-navigation li:after {
	display: none;
}

/*------------------------------
4.3 Footer 
------------------------------*/
footer {
  color: var(--main-text);
}

footer > .footer-top > .container { 
  padding: 0;
}

footer > .footer-top > .container,
footer > .footer-bottom > .container {
  max-width: 100% !important;
}

footer .brochure-newsletter {
  background-image: url(../images/bg-brochure-newsletter.jpg);
  background-size: 100%;
}

footer .brochure-newsletter .container #brochure {
  background-color: rgba(48, 45, 125, 0.9);
  height: 100%;
  padding: 100px 0 60px 0;
}

footer .brochure-newsletter .container #newsletter {
  background-color: rgba(21, 20, 60, 0.9);
  height: 100%;
  padding: 100px 40px 60px 40px;
  text-align: center;
}

footer .brochure-newsletter .container #brochure i,
footer .brochure-newsletter .container #newsletter i {
  display: block;
  font-size: 60px;
  margin-bottom: 30px;
  color: #7976c0;
}

footer .brochure-newsletter .container #brochure span,
footer .brochure-newsletter .container #newsletter span {
  font-size: 17px;
  font-weight: 400;
  color: #7976c0;
}

footer .brochure-newsletter .container #brochure h3,
footer .brochure-newsletter .container #newsletter h3 {
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 30px;
}

footer .brochure-newsletter .container #brochure .button.red,
footer .brochure-newsletter .container #newsletter .button.red {
  border: none;
}

footer .brochure-newsletter .container #newsletter .button.red {
  margin-top: 1em;
  margin-bottom: 1em;
}

footer .brochure-newsletter .container #newsletter form {
  width: 70%;
  justify-self: center;
}

footer .brochure-newsletter .container #newsletter input[type="email"] {
  color: #fff;
  max-width: 100%;
  border: solid 1px #fff;
  padding: 11px;
  background: none;
  margin-top: 1em;
  margin-bottom: 1em;
}

footer .brochure-newsletter .container #newsletter .checkbox a {
  color: #da2231;
}

footer .logo {
  margin-bottom: 12px;
}

footer h4 {
  font-size: 20px;
}

footer li {
  padding: 5px 0;
}

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

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

footer a i {
  color: var(--main-text);
  margin-right: 8px;
}

footer .footer-top .brochure-newsletter .col-lg-5,
footer .footer-top .brochure-newsletter .col-lg-7 {
  padding: 0;
}

footer .footer-bottom {
  padding: 50px 35px;
}

footer .call-to-action {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

footer .call-to-action .content {
  display: flex;
  flex-direction: column;
  padding: 0;
  font-size: 18px;
  color: #646464;
}

footer .call-to-action .fa-right-to-bracket, 
footer .call-to-action .fa-envelope, 
footer .call-to-action .fa-mobile-screen-button, 
footer .call-to-action .fa-location-dot {
  font-size: 24px;
}

footer .call-to-action .small {
  font-size: 14px;
  color: #000
}

footer .call-to-action.sample .small {
  color: #7976c0;
}

footer .call-to-action.sample {
  background-color: #302d7d;
  padding: 20px 40px 20px 20px;
  color: #fff;
  position: relative;
  margin-top: 0;
}

footer .call-to-action.sample > .content {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #fff;
}

footer .call-to-action.sample > .content > .content {
  color: #fff;
}

footer .call-to-action.sample .button.red {
  padding: 0;
  position: absolute;
  right: -15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .call-to-action.sample .button.red i {
  margin: 0;
  color: #fff;
}

footer .navigation {
  border-top: solid 1px #cecece;
  margin: 45px 0 100px 0;
  padding-top: 40px;
}

footer .navigation ul li {
  margin: 0;
  padding: 0;
  font-size: 17px;
}

footer .navigation ul li a {
  color: #646464;
  font-weight: 400;
}

footer .navigation h4 {
  font-size: 20px;
  margin: 40px 0 10px 0;
  font-weight: 700;
  line-height: 30px;
  color: #000;
}

footer .footer-links-social {
  width: 100%;
}

footer .footer-links-social .social-links {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

footer .footer-links-social .social-links ul {
  display: flex;
  column-gap: 20px;
}

footer .footer-links-social .social-links ul li a i {
  color: #302d7d;
}

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

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

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

footer .copyright {
  text-align: center;
  margin-top: 20px;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
section#home-banner {
  padding: 0 0 30px 0;
  position: relative;
  margin-bottom: 100px;
}

section#home-banner .mask {
  overflow: hidden;
  position: relative;
  max-height: 650px;
}

section#home-banner::before {
  background: #fff;
  content: " ";
  display: block;
  height: 100%;
  left: -10%;
  position: absolute;
  top: -93%;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  transform: rotate(-3deg);
  width: 100%;
  z-index: 99;
}

section#home-banner .image img {
  width: auto;
  height: auto;
}

section#home-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section#home-banner .overlay .intro {
  background: rgba(0, 0, 0, 0.8);
  left: 10%;
  padding: 50px;
  position: relative;
  top: 50%;
  vertical-align: top;
  width: 30%;
  -webkit-transform: skewY(-3deg) translateY(-50%);
  -moz-transform: skewY(-3deg) translateY(-50%);
  transform: skewY(-3deg) translateY(-50%);
}

section#home-banner .overlay .intro .content {
  -webkit-transform: skewY(3deg);
  -moz-transform: skewY(3deg);
  transform: skewY(3deg);
  margin: 0;
  padding: 0;
  position: relative;
}

section#home-banner .overlay .intro h3 {
  font-size: 36px;
  margin: 0 0 30px 0;
  padding: 0;
}

section#home-banner .overlay .intro h3 a {
  color: #fff;
}

section#home-banner .overlay .intro p {
  color: #fff;
  margin-bottom: 20px;
  line-height: 20px;
}

section#home-banner .overlay .intro .button.red {
  position: absolute;
  bottom: -85px;
  right: 0;
}

section#home-banner #quicklinks {
  position: absolute;
  right: 0;
  top: 35px;
  width: 250px;
  background: #302d7d;
  padding: 10px 40px 0 40px;
  -webkit-transform: skewY(-3deg);
  -moz-transform: skewY(-3deg);
  transform: skewY(-3deg);
}

.basic.container ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.basic.container ul li {
  list-style: disc;
}

.basic.container #quicklinks {
  position: relative;
  top: -75px;
  background: #302d7d;
  padding: 10px 40px 0 40px;
  -webkit-transform: skewY(-3deg);
  -moz-transform: skewY(-3deg);
  transform: skewY(-3deg);
}

section#home-banner #quicklinks .items,
.basic.container #quicklinks .items {
  -webkit-transform: skewY(3deg);
  -moz-transform: skewY(3deg);
  transform: skewY(3deg);
}

section#home-banner #quicklinks .items .quicklink:first-child,
.basic.container #quicklinks .items .quicklink:first-child {
  border-bottom: solid 1px #7976c0;
}

section#home-banner #quicklinks .items .quicklink i,
.basic.container #quicklinks .items .quicklink i {
  color: #7976c0;
  display: block;
  font-size: 48px;
  margin: 30px 0 20px 0;
  text-align: center;
}

section#home-banner #quicklinks .items .quicklink span.small,
.basic.container #quicklinks .items .quicklink span.small {
  color: #7976c0;
  display: block;
  font-size: 14px;
  margin-bottom: 0;
}

section#home-banner #quicklinks .items .quicklink span.large,
.basic.container #quicklinks .items .quicklink span.large {
  color: #fff;
  display: block;
  font-size: 18px;
  margin-bottom: 25px;
}

section#home-banner #quicklinks .items .quicklink span.large a,
.basic.container #quicklinks .items .quicklink span.large a {
  color: #fff;
}

section#home-banner #quicklinks .visible-xs,
.basic.container #quicklinks .visible-xs {
  display: none !important;
}

section#home-banner #quicklinks .items .quicklink.sample,
.basic.container #quicklinks .items .quicklink.sample {
  background: #464492;
  margin: 0 -40px;
  padding: 10px 40px 40px 40px;
  -webkit-transform: skewY(-3deg);
  -moz-transform: skewY(-3deg);
  transform: skewY(-3deg);
}

section#home-banner #quicklinks .items .quicklink.sample .content,
.basic.container #quicklinks .items .quicklink.sample .content {
  -webkit-transform: skewY(3deg);
  -moz-transform: skewY(3deg);
  transform: skewY(3deg);
  padding: 0;
}

section#home-banner #quicklinks .social-navigation,
.basic.container #quicklinks .social-navigation {
  background: #302d7d;
  bottom: -10px;
  margin: -20px -40px;
  padding: 20px 40px;
  position: relative;
  -webkit-transform: skewY(3deg);
  -moz-transform: skewY(3deg);
  transform: skewY(3deg);
}

section#home-banner #quicklinks .social-navigation ul,
.basic.container #quicklinks .social-navigation ul {
  list-style: none;
}

section#home-banner #quicklinks .social-navigation ul li,
.basic.container #quicklinks .social-navigation ul li {
  display: inline-block;
  font-size: 20px;
  margin: 0 10px;
  text-transform: uppercase;
}

section#home-banner #quicklinks .social-navigation ul li a,
.basic.container #quicklinks .social-navigation ul li a {
  color: #fff;
}

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

.basic.container section {
  padding: 100px 80px;
}

/* First section element */
.basic.container section:first-of-type:not(:last-of-type) {
  padding-top: 100px;
  padding-bottom: 0;
}

/* Middle section element */
.basic.container section:not(:first-of-type):not(:last-of-type) {
  padding-top: 0;
  padding-bottom: 0;
}

/* Last section element */
.basic.container section:last-of-type:not(:first-of-type) {
  padding-top: 0;
  padding-bottom: 80px;
}

/*--------------------------------------------------------------
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: 40px 0 5px 0;
}

#breadcrumbs ul {
  display: flex;
  border-bottom: 1px solid #cecece;
}

#breadcrumbs ul li {
  position: relative;
  padding-right: 30px;
  font-size: 14px;
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  padding-right: 25px;
  position: relative;
}

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

#breadcrumbs ul li a {
  color: #000;
}

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

#carousel .container {
  padding: 0;
}

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

.swiper-button-next,
.swiper-button-prev {
  background: #302d7d;
  color: #fff;
  height: 45px;
  width: 45px;
  font-size: 22px;
  display: grid;
  place-content: center;
  top: unset;
  bottom: 0;
  margin: 25px 0 ;
}

.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: #302d7d;
  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 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 6 Pro';
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  color: var(--main-color);
  left: 0;
  top: 0;
}

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

/*--------------------------------------------------------------
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 (min-width: 768px) and (max-width: 979px) { 
	
}

/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
  body {
    padding-top: 75px;
  }
  section {
    padding: 0;
  }
  header {
    padding: 25px 0;
  }
  header.open {
    height: 100vh;
    overflow: auto;
  }
  header .top {
    display: none;
  }

  header .container {
    position: relative;
  } 
  header.scrolled .container #logo {
    width: 55px;
    top: 0;
  }
  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: 0;
  }
  header nav .menu,
  header nav form {
    display: none;
  }
  header.open nav .menu,
  header.open nav form {
    display: block;
    width: 100%;
    animation-name: fade;
    animation-duration: .5s;
    margin-left: 12px;;
    margin-top: 100px;
  }
  @keyframes fade {
    0%   {opacity: 0;}
    100% {opacity: 1;}
  }
  header nav {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav .menu {
    flex-direction: column;
    padding: 16px 0;
  }
  header nav .menu > li a {
    padding: 15px 0;
    width: calc(100% - 60px);
  }
  header nav .menu li.dropdown {
    position: relative;
    justify-content: space-between;
    display: block;
  }
  header nav .menu li.dropdown .arrow-down {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 25px;
    height: 30px;
    width: 30px;
    display: grid;
    place-content: center;
    transition: all .3s;
  }
  header nav .menu li.dropdown.active .arrow-down {
    transform: rotate(180deg);
  }
  header nav .menu li.dropdown .drop-menu {
    position: relative;
    left: unset;
    top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .3s;
    display: block;
    padding: 0;
  }
  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 .grs-logo {
    display: none;
  }
  header .container .language-switcher {
    display: none;
  }
  header nav .search .form-outline {
    width: 100%;
  }
  header .dropdown {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
  }
  #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 .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);
  }
  #quicklinks {
    margin: 50px 0;
  }

}

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