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


/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
  --main-color: #33292d;
  --main-color: #08336C;
  --box-shadow: 0px 2px 80px rgba(12, 0, 124, 0.1);
}

body {
  font-family: 'Nunito';
  font-weight: 400;
  color: var(--main-color);
  padding-top: 202px;
}

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

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

.btn {
  font-weight: 500;
  color: #fff;
  padding: 10px 30px;
  background: var(--main-color);
  border-radius: 50px;
  border: none;
}

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

.btn.line {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background: none;
}

.btn.line:hover {
  background: #d4e7ff;
}

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

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section {
  padding: 80px 0;
}

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

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

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

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

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

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

.form-check label a {
  text-decoration: underline;
}


/*--------------------------------------------------------------
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;
  box-shadow: var(--box-shadow);
  z-index: 9999;
}

header .top {
  background: #fff;
  padding: 8px 0;
}
header  .top .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

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

header .top .wrapper .left .usp {
  display: flex;
  align-items: center;
  font-weight: 600;
}

header .top .wrapper .left .usp i {
  font-size: 25px;
  margin-right: 8px;
}

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

header .top .wrapper .right i {
  font-size: 20px;
  margin-right: 8px;
}

header .top a {
  font-weight: 600;
}


header .dropdown.language button {
  background: none;
  outline: none;
  border: none;
  color: var(--main-color);
  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-color);
}

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

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0; 
}

header nav .logo {
  width: 350px;
}

header nav .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

header nav .btns {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 15px;
}

header nav .btns .btn {
  border: 1px solid var(--main-color);
}

header nav .menu {
  display: flex;
  padding: 0 20px;
}

header nav .menu li a {
  padding: 15px 25px;
  color: var(--main);
  font-weight: 500;
  white-space: nowrap;
  display: block;
  font-size: 20px;
}

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;
  margin-right: 25px;
}

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

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

@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 
------------------------------*/



/*------------------------------
4.3 Footer 
------------------------------*/
footer {
  background: var(--main-color);
  color: #fff;
}

footer .footer-top {
  padding: 70px 0;
}

footer .logo {
  max-width: 350px;
  filter: brightness(0) invert(1);
  margin-bottom: 30px;
}

footer .tel, footer .mail {
  display: block;
}

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

footer li {
  padding: 5px 0;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

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

footer p {
  margin: 8px 0;
}

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

footer .social-links {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

footer .social-links i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  color: var(--main-color);
  display: grid;
  place-content: center;
  margin: 0;
}

footer .copyright {
  text-align: center;
}

footer .footer-bottom {
  background: #fff;
  color: var(--main-color);
  padding: 15px 0;
}

footer .footer-bottom .wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

footer .footer-bottom li a {
  color: var(--main-color);
  padding: 0;
}

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#slider {
  padding: 0;
  position: relative;
  height: calc(90vh - 186px);
  max-height: 785px;
}

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

#slider h1 {
  font-size: 55px;
  max-width: 1050px;
  margin: 0 auto 20px;
  text-align: center;
}

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

#slider .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30,76,137,0) 0%, rgba(30,76,137,0.90) 85%, rgba(30,76,137,1) 100%);
  z-index: 1;
}

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

#slider .content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% - 75px));
  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;
}

#slider .edge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
}

#related {
  background: #FAFAFA;
  padding: 140px 0 80px;
  position: relative;
}

#related .row {
  --bs-gutter-y: 1.5rem;
  margin-top: 15px;
}

#related .article {
  position: relative;
  text-align: center;
  background: #F0F7FF;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#related .img {
  overflow: hidden;
}

#related .article:hover {
  opacity: 1;
}

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

#related .article:hover img {
  scale: 1.1;
}

#related .title {
  font-size: 20px;
  margin: 20px;
}

#related .article .btn {
  margin-top: auto;
  align-self: center;
}

#related .edge {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  background: #fff;
}

#usps {
  text-align: center;
  padding-top: 0;
  margin-top: -160px;
  position: relative;
  z-index: 5;
}

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

#usps .usp {
  padding: 0 25px 35px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #F0F7FF;
}

#usps .usp i {
  height: 180px;
  width: 180px;
  background: var(--main-color);
  color: #fff;
  display: grid;
  place-content: center;
  margin: -90px auto 30px;
  border-radius: 50%;
  font-size: 70px;
  font-weight: 300;
}

#usps .usp h4 {
  margin-bottom: 20px;
}

#usps .usp p {
  max-width: 70%;
  margin: 0 auto 20px;
}

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

#text.home {
  text-align: 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: linear-gradient(180deg, rgba(30, 76, 137, .3) 0%, rgba(30, 76, 137, 0.6) 85%, rgba(30, 76, 137, .85) 100%);
}

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

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

#banner .text p {
  margin-top: 20px;
}

#linkedin .title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

#linkedin i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--main-color);
  margin-bottom: 20px;
  display: grid;
  place-content: center;
  font-size: 30px;
  color: #fff;
  margin: 0 auto 20px;
}

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

#linkedin .WidgetBackground__ContentContainer-sc-1ho7q3r-1 {
  height: auto;
}

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

#related.overview {
  text-align: center;
}

#related.overview .edge {
  display: none;
}


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

.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,
#text .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 .img {
  position: relative;
}

#text-image .img .edge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  z-index: 2;
}

.content .btn {
  margin-top: 16px;
}

.content a,
p a {
  text-decoration: underline;
  font-weight: 700;
}

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

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

.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 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: #d3e6ff;
  text-align: center;
}

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

#team .member .content {
  background: #F0F7FF;
  padding: 20px;
  text-align: center;
}

#team .member .name {
  margin-bottom: 10px;
}

#team .member .role {
  font-weight: 500;
  color: #54575a;
  margin-bottom: 10px;
}

#team .member .mail {
  text-decoration: underline;
}

#form {
  padding: 0 0 50px;
}


/*--------------------------------------------------------------
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 .top .wrapper .left .usp {
    font-size: 13px; 
  }
  header .top .wrapper .left .usp i {
    font-size: 17px;
  }
  header .top a {
    font-size: 14px;
  }
}

@media (max-width: 1200px) { 
  body {
    padding-top: 195px;
  }
	header .top .wrapper .left .usp {
    display: none;
  }
  header nav .menu li a {
    font-size: 16px;
  }
  #usps .usp i {
    height: 100px;
    width: 100px;
    font-size: 40px;
    margin: -50px auto 30px;
  }
}

/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
  h3 {
    font-size: 21px;
  }
  body {
    padding-top: 103px;
  }
  section {
    padding: 50px 0;
  }
  header {
    padding: 15px 0;
  }
  header.open {
    height: 100vh;
    overflow: auto;
  }
  header .top {
    display: none;
  }
  header .container {
    position: relative;
  } 
  header nav .logo {
    width: 130px;
  }
  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-color);
    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 .btns a {
    font-size: 14px;
    padding: 7px 25px;
  }
  header nav .menu,
  header nav form {
    display: none;
  }
  header.open nav .menu,
  header.open nav form {
    display: block;
    width: 100%;
    animation-name: fade;
    animation-duration: .5s;
  }
  @keyframes fade {
    0%   {opacity: 0;}
    100% {opacity: 1;}
  }
  header nav {
    flex-direction: column;
    align-items: flex-start;
  }
  header nav .menu {
    flex-direction: column;
    padding: 16px 0;
  }
  header nav .right {
    align-items: center;
    width: 100%;
  }
  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;
    right: unset;
  }
  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 .search .form-outline {
    width: 100%;
  }
  header .dropdown {
    position: absolute;
    right: 75px;
    top: 0;
  }
  #slider {
    height: calc(50vh - 103px);
    max-height: unset;
    min-height: 300px;
  }
  #slider .img:after {
    background: linear-gradient(180deg, rgba(30, 76, 137, .3) 0%, rgba(30, 76, 137, 0.90) 85%, rgba(30, 76, 137, 1) 100%);
  }
  #slider .content {
    transform: unset;
    top: 10px;
  }
  #slider h1 {
    font-size: 35px;
  }
  #slider .edge {
    height: 30px;
  }
  #slider p {
    font-size: 17px;
  }
  #slider .swiper-button-prev {
    right: 35px;
  }
  #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 .logo {
    width: 130px;
  }
  footer .footer-links {
    margin-bottom: 24px;
  }
  footer .social-links {
    margin: 24px 0;
  }
  footer .footer-bottom .wrapper {
    gap: 20px;
    flex-direction: column;
  }
  .content {
    padding: 25px 0;
  }
  #text-image .row, #text-video .row, #text-slider .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    flex-direction: column-reverse !important;
  }
  .content:not(:has(p)) {
    padding: 0;
  }  
  .content:not(:has(p)) h2 {
    margin-bottom: 0;
  }
  .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;
  }
  #related .title {
    font-size: 18px;
  }
  #usps .row {
    --bs-gutter-y: 3.5rem;
  }
  #usps .usp i {
    height: 70px;
    width: 70px;
    font-size: 35px;
    margin: -35px auto 30px;
  }
  #related {
    padding: 80px 0 50px;
  }
  #related .edge {
    height: 30px;
  }
  #linkedin {
    overflow: hidden;
  }

}

@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;
	}
  #team .row .col-lg-4:not(:last-of-type) {
    margin-bottom: 24px;
  }
  
}

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