/*--------------------------------------------------------------
>>> 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
8.5 Contact 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: 'Anek Devanagari';
  src: url(../webfonts/AnekDevanagari-Medium.woff2);
  font-weight: 500;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../webfonts/Montserrat-Light.woff2);
  font-weight: 300;
}

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

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


/*--------------------------------------------------------------
2.0 Basic elements
--------------------------------------------------------------*/
:root {
  --main-text: #050505;
  --main-color: #9B0000;
  --bg-light: #F1E8E1;
  --bg-dark: #D7BEAA;
  --box-shadow: 0px 2px 80px rgb(124 0 52 / 10%);
  --text-width: 790px;
}

html {
  scroll-padding-top: 132px;
}

body {
  font-family: 'Montserrat';
  font-weight: 400;
  color: var(--main-text);
  padding-top: 119px;
  line-height: 26px;
  font-size: 18px;
}

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

a:hover {
  color: var(--bg-dark);
}

.btn {
  font-weight: 500;
  color: #fff;
  padding: 10px 95px 7px 20px;
  background: var(--main-color);
  border-radius: 0;
  border: none;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
  margin-top: 15px;
}

.btn:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 59px;
  height: 18px;
  background: url(../images/arrow.svg);
  background-size: 59px 18px;
  background-repeat: no-repeat;
  background-position: center;

}

.btn.black {
  background: var(--main-text);
}

.btn.black:hover {
  background: #D7BEAA;
}


.img-hots{
  max-width: 50%;
  height: auto;
}

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

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

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Anek Devanagari';
  font-weight: 500;
}

h1 {
  font-size: 100px;
  line-height: 94px;
}

h2 {
  font-size: 72px;
  line-height: 76px;
  margin-bottom: 12px;
}

h2.vision-title {
  font-size: 50px;
  line-height: 1;
}

h3 {
  font-size: 54px;
  line-height: 64px;
}

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

h5 {
  font-size: 32px;
  line-height: 42px;
}

h5 {
  font-size: 26px;
  line-height: 34px;
}

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 .form-control {
  border: none;
  border-bottom: 1px solid var(--main-text);
  background: none;
  padding: 12px 0;
  margin-bottom: 30px;
  border-radius: 0;
}

form .form-control::placeholder {
  text-transform: uppercase;
  color: var(--main-text);
}

form textarea.form-control {
  margin-bottom: 0;
}



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

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

.grecaptcha-badge {
  visibility: hidden;
}

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

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

/*------------------------------
4.1 Header
------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  padding: 25px 0;
  box-shadow: 0px 3px 6px 0 rgba(0,0,0,.12);
}

header .container {
  max-width: 1920px;
  padding-left: calc(3vw + 12px);
  padding-right: calc(3vw + 12px);
}

header nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav .logo {
  width: 362px;
}

header nav .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 350px;
}

header nav .right .icon img {
  height: 20px;
  width: auto;
}

header nav .middle {
  margin: 0 auto;
}

header .menu {
  display: flex;
  gap: 50px;
}

header .menu li a {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;

}

header .search {
  width: 100%;
  margin-top: 10px;
}

header .search .form-outline {
  width: calc(100% - 18px);
}

header .input-group {
  border-bottom: 2px solid var(--main-text);
}

header .search input {
  border: none;
  padding-left: 0;
  padding: 8px 12px 0 0;
  margin: 0;
}

header .search input::placeholder {
  text-transform: unset;
  color: rgba(0, 0, 0, .57);
  opacity: 1;
  font-weight: 500;
}

header .search input:disabled {
  background-color: transparent;
}

header .search button {
  background: none;
  outline: none;
  border: none;
  display: flex;
  align-items: end;
  margin-bottom: 5px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

header .search .desktop.close {
  display: none;
  place-content: center;
  font-size: 18px;
  cursor: pointer;
}

header .dropdown.language button {
  background: none;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  padding: 0;
  padding-right: 10px;
  color: var(--main-text);
}

header .menu-toggle {
  width: 30px;
  height: 16px;
  cursor: pointer;
}

header .menu-toggle span {
  height: 2.5px;
  width: 30px;
  background: var(--main-text);
  display: block;
}

header .menu-toggle span:last-of-type {
  width: 15px;
  margin-left: auto;
  margin-top: 8px;
}

.bottom-header.links {
  background-color: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0 23px;
  box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, .12);
  position: relative;
  z-index: 2;
}

.bottom-header.links ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-header.links ul li {
    position: relative;
}

.bottom-header.links ul li a:hover {
  opacity: .5;
}

.bottom-header.links ul li:nth-child(n+2) {
  padding-left: 60px;
}

.bottom-header.links ul li:nth-child(n+2)::before {
  content: '';
  position: absolute;
  width: 2.5px;
  background: var(--main-text);
  height: calc(100% - 8px);
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.bottom-header.links ul li a img {
  height: 18px;
  width: auto;
}

.bottom-header.links ul li:first-child a img {
  height: 20px;
  width: auto;
  transform: translateY(2px);
}


#menu-overlay {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--main-text);
  padding: 0;
  transition: all .5s ease-in-out;
  opacity: 0;
  display: none;
}

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

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

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

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

#menu-overlay .top {
  padding-left: calc(3vw + 12px);
  padding-right: calc(3vw + 12px);
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  height: 127px;
}

#menu-overlay .logo {
  width: 350px;
  filter: brightness(0) invert(1);
}

#menu-overlay .top .right {
  display: flex;
  align-items: center;
  gap: 30px
}

#menu-overlay .language {
  display: flex;
  align-items: center;
  gap: 5px
}

#menu-overlay .language span {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
}

#menu-overlay .form-select {
  background-color: var(--main-text);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 10px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  position: relative;
  background-position: right center;
  background-size: 20px 16px;
  padding-right: 18px;
}

#menu-overlay .language .dropdown-menu {
  width: auto;
}

#menu-overlay .language .dropdown-toggle:after {
  margin-left: 8px;
  color: #fff;
  display: inline-block;
  right: unset;
}

#menu-overlay .menu-close {
  text-align: center;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: grid;
  place-content: center;
}

#menu-overlay .menu-close span {
  display: block;
  height: 3.5px;
  width: 40px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}

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

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

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

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

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

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

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

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

#menu-overlay .menu li a {
  font-size: 32px;
  font-weight: 500;
  font-family: 'Anek Devanagari';
  color: #fff;
  padding: 10px 0;
  opacity: 1;
  transition: unset;
  line-height: 1.5em;
}

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

#menu-overlay .menu li.dropdown a {
  position: relative;
  padding-right: 75px;
}

#menu-overlay .menu li.dropdown > a:after {
  content: "";
  opacity: 0 !important;
  transition: all .3s;
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-55%);
  background: url(../images/arrow.svg);
  background-size: 59px 17px;
  background-repeat: no-repeat;
  background-position: center;
  width: 59px;
  height: 17px;
}

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

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

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

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


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

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

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

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

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

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

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

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

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

#menu-overlay .sub {
  display: flex;
  gap: 40px;
  margin-top: 22px;
  padding-top: 40px;
  border-top: 1px solid #fff;
  width: fit-content;
}

#menu-overlay .sub li a {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
}

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

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



/*------------------------------
4.3 Footer
------------------------------*/
footer {
  background: #fff;
  padding: 70px 0 0;
}

footer .container-fluid {
  max-width: 1920px;
  padding-left: calc(3vw + 12px);
  padding-right: calc(3vw + 12px);
}

footer .row {
  margin-bottom: 30px;
}

footer .col-lg-3 {
  padding-right: 50px;
  width: 30%;
}

footer .col-lg-9 {
  width: 70%;
}

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

footer .d-flex {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer .title a {
  font-size: 17px;
  font-weight: 700 !important;
  text-transform: uppercase;
}

footer .title .plus {
  display: none;
}

footer p {
  font-weight: 400;
  font-size: 14px;
}

footer .title.usps a {
  text-transform: unset;
}

footer .wrapper li a {
  text-transform: uppercase;
  font-weight: 400;
}

footer li {
  padding: 10px 0;
}

footer .d-flex.bottom {
  margin-top: 100px;
  gap: 25px;
}

footer .d-flex.bottom > * {
  flex: 1;
}

footer .d-flex.bottom .member span {
  font-weight: 500;
}

footer .d-flex.bottom .member a,
footer .d-flex.bottom .logos-others a {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .d-flex.bottom .member img,
footer .d-flex.bottom .logos-others img {
  height: 30px;
  width: auto;
}

footer .d-flex.bottom .logos-others {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

footer .d-flex.bottom img {
  height: 25px;
  width: auto;
}

footer .logos {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}

footer .logos .logo {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

footer .logos {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}

footer .logos .logo {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

footer .social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

footer .social-links h4 {
  margin-bottom: 0;
  font-weight: 400;
  color: #fff;
}

footer .social-links i {
  padding: 3px;
  color: var(--main-text);
  background: #fff;
  border-radius: 7px;
}

footer .footer-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  background: var(--main-text);
  padding: 30px 0;
}

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

footer .footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  GAP: 30PX;
}

footer .footer-bottom ul li {
  padding: 0;
  position: relative;
}

footer .footer-bottom ul li:not(:last-of-type):after {
  content: "|";
  position: absolute;
  right: -15px;
  height: calc(100% - 4px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background: #fff;
}

footer .footer-bottom ul li a {
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

footer .footer-bottom ul li a:hover {
  opacity: .6;
}

footer .copyright {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}

footer h4 {
  font-weight: 700;
  font-size: 17px;
  font-family: 'Montserrat';
  text-transform: uppercase;
  line-height: 26px;
}

.disable-foot-form-btn {
  pointer-events: none;
  background-color: var(--bg-light);
}

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

.overlay-form.open {
  display: block;
  width: 100vw;
}

.overlay-form .open-form {
  height: 70px;
  width: 50px;
  font-size: 30px;
  background: var(--main-text);
  position: absolute;
  left: -50px;
  top: 25%;
  z-index: 2;
  display: grid;
  place-content: center;
  color: #fff;
  cursor: pointer;
}

.overlay-form .open-form img {
  width: 35px;
}

.overlay-form .close {
  position: absolute;
  font-size: 35px;
  width: 55px;
  height: 55px;
  place-content: center;
  color: var(--main-text);
  right: 30px;
  top: 30px;
  cursor: pointer;
  opacity: .75;
  display: none;
}
.overlay-form.open .close {
  display: grid;
}

.overlay-form .content {
  width: 50px;
  height: 100vh;
  margin-left: auto;
  position: relative;
  transition: transform .7s ease-in-out;
  transform: translateX(100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.overlay-form.open .content {
  animation: slide-in 500ms forwards;
  width: 900px;
}

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


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

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

.overlay-form .wrapper {
  height: 100vh;
  padding: 90px 25% 40px 40px;
  background: #fff;
  overflow-y: auto;
}

.overlay-form h3 {
  margin-bottom: 10px;
}

.overlay-form p {
  font-weight: 400;
  font-size: 16px;
}

.overlay-form .form-checks {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

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

.overlay-form label {
  font-weight: 400;
  color: var(--main-text);
  margin-bottom: 0;
  line-height: 2;
}

.overlay-form .form-check-input[type=checkbox] {
  background-color: #fff;
  border: 1px solid var(--main-text);
  border-radius: 0;
  cursor: pointer;
}

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

.overlay-form .form-check-input[type=checkbox]:not(:checked) {
  background: #fff;
}

.overlay-form .form-check-input[type=checkbox]:focus {
  box-shadow: none;
}

.overlay-form  form .form-control {
  border: none;
  border-bottom: 1px solid var(--main-text);
  background: none;
  padding: 12px 0;
}

.overlay-form form .form-control::placeholder {
  text-transform: uppercase;
  color: var(--main-text);
}

.overlay-form form textarea.form-control {
  margin-bottom: 0;
}

.overlay-form .contact-details {
  display: flex;
  justify-content: space-between;
  padding: 18px 40px 15px;
  background: #fff;
}

.overlay-form .contact-details a {
  font-weight: 400;
  font-size: 16px;
}

.destinations .contact-details a:hover {
  color: #5e5e5e;
}

.overlay-form .contact-details i {
  margin-right: 8px;
}

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

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

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

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

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


/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#home-video {
  height: 380px;
  position: relative;
  padding: 0;
  transition: height .3s;
  overflow: hidden;
}

#home-video.play {
  height: calc(100vh - 195px);
}

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

#home-video.play:after {
  background: rgba(0, 0, 0, 0.3);
}

#home-video .container {
  max-width: 1920px;
}

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

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

#home-video .slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  color: #fff;
}

#home-video .slider .container,
#home-video .slider .carousel,
#home-video .slider .carousel-inner,
#home-video .slider .carousel-item,
#home-video .slider .content {
  height: 100%;
  background: transparent;
}

#home-video .slider .carousel-fade .active.carousel-item-end,
#home-video .slider .carousel-fade .active.carousel-item-start {
  transition: opacity 1.5s ease;
}

#home-video .slider .content {
  padding: 10% 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

#home-video .slider .content .cta {
  text-align: right;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 3%;
  bottom: 10%;
}

#home-video.paused .slider .content .cta {
  display: none;
}

#home-video .slider .content .cta h3 {
  font-size: 100px;
}

#home-video .pause-btn {
  background: var(--main-text);
  color: #fff;
  font-size: 22px;
  height: 42px;
  width: 42px;
  display: grid;
  place-content: center;
  position: absolute;
  left: calc(3vw + 12px);
  bottom: 8%;
  z-index: 3;
  cursor: pointer;
}

#home-video .pause-btn {
  display: none;
}

#home-video.play .pause-btn i:before {
  content: "\f04c"; 
}

#home-video img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all .3s;
  scale: 1.1;
  transform-origin: center;
}

#home-video.paused img {
  opacity: 1;
  scale: 1;
}

#home-divisions .container {
  max-width: 1920px;
  position: relative;
}

#home-divisions .intro {
  max-width: 420px;
  margin: 0 auto;
}

#home-divisions .intro h2 {
  white-space: nowrap;
  transform: translateX(-70%);
}

#home-divisions .intro p{
  margin-left:30px;
}

#home-divisions .intro .btn {
 margin-top: 15px;
  margin-left: 30px;
}

#home-divisions .swiper {
  overflow: unset;
}

#home-divisions .swiper-wrapper {
  padding-bottom: 0;
}

#home-divisions .swiper-slide {
  flex-shrink: unset;
}

#home-divisions .swiper-pagination {
  display: none;
}

#home-divisions .division {
  border-radius: 50%;
  position: relative;
}

#home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division {
  max-width: 700px;
  margin-left: 3vw;
  margin-top: -8vh;
  min-width: 700px;
}

#home-divisions .swiper-wrapper .swiper-slide:nth-child(2) .division {
  max-width: 450px;
  margin-left: 8vw;
  margin-top: 10vh;
}

#home-divisions .swiper-wrapper .swiper-slide:nth-child(3) .division {
  max-width: 480px;
  margin-top: -22vh;
}

#home-divisions .division .img-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

#home-divisions .division .img-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .5);
  border-radius: 50%;
  transition: all .5s;
}

#home-divisions .division.active .img-wrapper:after {
  background: rgba(0, 0, 0, 1);
}

#home-divisions .division .img-wrapper img {
  border-radius: 50%;
}

#home-divisions .division .content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: grid;
  place-content: center;
  padding: 15%;
  color: #fff;
  text-align: center;
}

#home-divisions .division h3 {
  font-size: 60px;
}

#home-divisions .division p {
  font-size: 21px;
  overflow: hidden;
  max-height: 0;
  transition: all .5s;
}

#home-divisions .division.active p {
  max-height: 120px;
}

#home-divisions .division .btn {
  justify-self: center;
  transition: all .5s;
  max-height: 44px;
  padding: 10px 95px 7px 20px;
}

#home-divisions .division.active .btn {
  justify-self: center;
  overflow: hidden;
  max-height: 0;
  padding: 0 95px 0 20px;
  transition: all .5s;
}

#home-divisions .division .plus {
  position: absolute;
  right: 10%;
  bottom: 6%;
  background: var(--main-text);
  color: #fff;
  font-size: 32px;
  width: 75px;
  height: 75px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all .5s;
}

#home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division .plus {
  right: 14%;
  bottom: 6%;
}

#home-divisions .swiper-wrapper .swiper-slide:nth-child(2) .division .plus {
  right: 5%;
  bottom: 6%;
}

#home-divisions .swiper-wrapper .swiper-slide:nth-child(3) .division .plus {
  right: 10%;
  bottom: 6%;
}

#home-divisions .division .plus:hover {
  background: #3b3b3b;
}

#home-divisions .division.active .plus {
  background: #f1e8e1;
  color: var(--main-text);
}

#home-divisions .division.active .plus:before {
  content: "\e59b";
}

#home-videos {
  max-width: 1920px;
  margin: 0 auto;
}

#home-videos .title-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 40px;
}

#home-videos .title-wrapper h2 {
  margin-bottom: 0;
  line-height: 50px;
}

#home-videos .title-wrapper p {
  margin-bottom: 0;
}

#home-videos .title-wrapper .btn {
  margin-left: auto;
}

#home-videos .videos-wrapper {
  display: flex;
}

#home-videos .video {
  position: relative;
  transition: all .3s;
  flex: 0 0 33.3333%;
  flex: 1;
}

#home-videos .video:hover {
  flex: 0 0 50%;
}

#home-videos .video .img {
  height: 600px;
  position: relative;
  width: 100%;
}

#home-videos .video .img:after {
  content: "";
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .3s;
}

#home-videos .video:hover .img:after {
  background: rgba(0, 0, 0, 0.6);
}

#home-videos .video .img img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

#home-videos .video .play-btn {
  width: 70px;
  height: 70px;
  background: var(--main-text);
  border-radius: 100%;
  display: grid;
  place-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

#home-videos .video .play-btn:after {
  content: '';
  border-style: solid;
  border-width: 15px 0 15px 30px;
  border-color: transparent transparent transparent white;
  transform: translateX(5%);
}

#home-videos .video .title {
  position: absolute;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  bottom: 15%;
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  transition: all .3s;
  opacity: 0;
}

#home-videos .video:hover .title {
  opacity: 1;
}

body:has(.fslightbox-container) .fslightbox-container iframe {
  display: block !important;
}

.fslightbox-container .player .vp-video-wrapper .vp-preview {
  background-position: cover !important;
}

#home-divisions .share {
    position: absolute;
    top: 18%;
    left: 8%;
    width: 160px;
    z-index: 2;
}

#home-benefits {
  background: #f1e8e1;
  overflow: hidden;
}

#home-benefits .container-fluid {
  padding-right: 0;
  padding-left: calc(3vw + 12px);
  max-width: 1920px;
  margin: 0 auto;
}

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

.subtitle {
  text-transform: uppercase;
  font-size: 23px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 34px;
}

#home-benefits p {
  max-width: 70%;
}

#home-benefits .swiper {
  padding-bottom: 30px;
}

#home-benefits .swiper-wrapper {
  flex-direction: row;
}

#home-benefits .swiper-scrollbar {
  width: 75%;
  left: 0;
  height: 12px;
  bottom: 5px;
  background: #f9f5f2;
}

#home-benefits .swiper-pagination-bullets {
  display: none;
}

#home-benefits .swiper-scrollbar-drag {
  background: var(--bg-dark);
}

#home-benefits .benefit {
  text-align: center;
  background: #f9f5f2;
  padding: 20px 0 10px;
  display: grid;
  place-content: center;
}

#home-benefits .benefit .icon{
  width: 160px;
  height: 160px;
  background: #FBF9F7;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-content: center;
}

#home-benefits .benefit .icon img {
  width: 125px;
  height: 125px;
}

#home-benefits .benefit .title {
  font-size: 20px;
  margin-top: 15px;
  min-height: 58px;
}

#home-textimg {
  padding: 0;
  margin: 100px 0;
}

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

#home-textimg .img-wrapper {
  position: relative;
  width: 80%;
}

#home-textimg img {
  border-radius: 50%;
}

#home-textimg p {
  max-width: 420px;
}

.graphic {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 220px;
  height: 220px;
  background: var(--bg-light);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 25px;
  text-transform: uppercase;
}

.graphic .icon {
  width: 85px;
  margin: 0 auto;
  border-radius: unset !important;
  margin-bottom: 20px;
  left: unset !important;
  right: unset !important;
}

#home-textimg .row.img-left .text-col .content {
  width: max-content;
  margin-left: auto;
}

#home-textimg .row.img-left .text-col .content > * {
  width: fit-content;
}

#home-textimg .row.img-right {
  flex-direction: row-reverse;
}

#home-textimg .img-right .img-wrapper {
  margin-left: auto;
}

#home-textimg .img-right .graphic {
  right: unset;
  left: -5%;
}

#home-vacancies {
  background: var(--bg-light);
}

#home-vacancies .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

#home-vacancies h2 {
  white-space: nowrap;
  margin-bottom: -6px;
}

#home-vacancies .top .categories {
  display: flex;
  align-items: center;
  gap: 30px;
}

#home-vacancies .top .categories li a {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 20px;
}

#home-vacancies .top .categories li a:hover {
  color: var(--main-text);
  font-weight: 500;
}

#home-vacancies .top .categories li .btn {
  font-weight: 500;
  margin-top: 0;
}

#home-vacancies .slider-vacancies {
  max-width: 1920px;
  margin: 0 auto;
}

#home-vacancies .swiper-pagination {
  display: none;
}

.swiper .arrows {
  margin-top: 40px;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.swiper .arrows .swiper-button-next,
.swiper .arrows .swiper-button-prev {
  height: unset;
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  width: unset;
  position: unset;
}

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

.swiper .arrows .swiper-button-next img,
.swiper .arrows .swiper-button-prev img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(3%) saturate(715%) hue-rotate(22deg) brightness(106%) contrast(94%);
  width: 60px;
}

.swiper .arrows .swiper-button-prev img {
  transform: rotate(180deg);
}

#home-vacancies .slider-vacancies img {
  border-radius: 50%;
}

#home-vacancies .slider-vacancies .title {
  text-align: center;
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

#seo h1,
#seo h2,
#content .content.seo h1,
#content .content.seo h2 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat';
  line-height: 30px;
}

#seo .row,
#content .content.seo .row {
  --bs-gutter-x: 2.5rem;
}

#seo p,
#content .content.seo p {
  font-size: 14px;
  font-weight: 400;
}

#seo a,
#content .content.seo a,
#intro.basic a,
#text.basic a {
  text-decoration: underline;
  font-weight: 700;
}

#contact-cta {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 240px);
  background: #fff;
  padding: 30px;
  border: 23px solid var(--bg-dark);
  z-index: 5;
  animation: slide-in-cta 1000ms ease-out;
}
@keyframes slide-in-cta {
  0% {
    transform: translate(-50%, -100px);
  }
  100% {
    transform: translate(-50%, 240px);
  }
}
#contact-cta .close {
  position: absolute;
  font-size: 26px;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
#contact-cta h5 {
  text-align: center;
}
#contact-cta .btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
#contact-cta .btns .btn {
  margin-top: 0;
  white-space: nowrap;
  font-size: 15px;
}
#contact-cta .btns .or {
  font-weight: 500;
  font-size: 20px;
}

.recap-disc {
  font-size: 13px;
  margin-top: 20px;
}

.recap-disc a {
  color: #90745D;
  text-decoration: underline;
}

/*--------------------------------------------------------------
7.0 Overview
--------------------------------------------------------------*/
.filter {
  margin-bottom: 30px;
}

#breadcrumbs.news {
  background: var(--bg-light);
}

#news {
  background: var(--bg-light);
}

#news .title-wrapper {
  flex-direction: column !important;
  gap: 0 !important;
}

#news .items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

#news .items .item {
  flex: 0 0 calc(33% - 14px);
  background: #fff;
}

#news .items .item:hover {
  color: var(--main-text);
}

#news .items .item .img-wrapper {
  overflow: hidden;
}

#news .items .item .img-wrapper img{
  transition: all .5s;
}

#news .items .item:hover .img-wrapper img{
  scale: 1.05;
  transform-origin: center;
}

#news .items .item .details {
  padding: 25px;
  background: #fff;
}

#news .items .item .date {
  font-size: 16px;
  margin: 15px 0 10px;
  color: #686565;
  display: block;
}

#news .items .item p {
  display: none;
}

#news .items .item .btn-wrapper {
  text-align: right;
  display: none;
}

#news .items .item .btn {
  background: none;
  border: 1px solid var(--main-text);
  color: var(--main-text);
}

#news .items .item .btn:after {
  filter: invert(0%) sepia(4%) hue-rotate(136deg) contrast(96%) brightness(0) saturate(100%);
}

#news .items .item:hover .btn {
  background: #D7BEAA;
}

#press .accordion-wrapper {
  margin-top: 40px;
}

#press button {
  background: none;
  outline: none;
  border: none;
  font-size: 50px;
  position: relative;
  margin-bottom: 25px;
  padding-right: 50px;
}

#press button:after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 35px;
  top: 45%;
  right: 0;
  transform: translateY(-55%);
  position: absolute;
  transition: all .3s;
}

#press button.collapsed:after {
  rotate: 180deg;
  transform-origin: center top;
}

#press .accordion-body {
  padding: 0;
}

#press .accordion-body .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;

}

#press .accordion-body .wrapper a {
  flex: 0 0 calc(33% - 14px);
  display: flex;
  gap: 8px;
  font-size: 20px;
}

#press .accordion-body .wrapper a i {
  color: var(--main-color);
}

/*--------------------------------------------------------------
8.0 Article page
--------------------------------------------------------------*/

#article.light {
  background: var(--bg-light);
}

#article.dark {
  background: var(--bg-dark);
}

#breadcrumbs {
  padding: 38px 0 15px;
}

#breadcrumbs.article {
  margin-bottom: -80px;
}

#breadcrumbs ul {
  display: flex;
}

#breadcrumbs ul li {
  position: relative;
  padding-right: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: #4d4e4e;
}

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

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

#content {
  padding: 0;
}

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

#content .content.light {
  background: var(--bg-light);
}

#content .content.dark {
  background: var(--bg-dark);
}

#content .content.text-img .container,
#content .content.text-video .container,
#content .content.slider .container,
#content .content.full-block .container,
#content .content.banner .container {
  max-width: 1920px;
  padding: 0;
}

#content .content.slider .swiper-wrapper {
  align-items: flex-start !important;
}

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

#content .content .btn-wrap {
  margin-top: 30px;
}

#content .content .text {
  max-width: var(--text-width);
  margin-left: auto;
}

#article #content:first-child .text {
  padding: 40px 0;
}

#content .content .text,
#content .content.text-img .img,
#content .content.text-video .thumbnail,
#content .content .slider-wrapper {
  flex: 0 0 50%;
  width: 50%;
}

#content .text-slider-full .slider-wrapper {
  width: 100%;
}

#article #content .content.slider.slider-right .text,
#article #content .content.text-img.img-right .text,
#article #content .content.text-video.vid-right .text {
  padding-right: 90px;
}

#article #content .content.slider.slider-left .text,
#article #content .content.text-img.img-left .text,
#article #content .content.text-video.vid-left .text {
  padding-left: 90px;
}

#content .content.text-img .text {
  position: relative;
}

#content .content.text-img .text .share {
  position: absolute;
  right: -30px;
  bottom: -50px;
  text-align: right;
}

#content .content.text-img .caption {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  width: 80%;
  margin: 15px auto 0;
}

#content .content.slider.circle .container {
  max-width: 1600px;
}

#content .content.slider.circle img {
  border-radius: 50%;
}

#content .content.text-video .thumbnail,
#content .content.text-vid-full .thumbnail {
  position: relative;
}

#content .content.text-video .thumbnail a,
#content .content.text-vid-full .thumbnail a {
  width: 100%;
}

#content .content.text-video .thumbnail .img-wrapper,
#content .content.text-vid-full .thumbnail .img-wrapper {
  position: relative;
}

#content .content.text-video .thumbnail .img-wrapper:after,
#content .content.text-vid-full .thumbnail .img-wrapper:after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .3);
  z-index: 1;
  position: absolute;
}

#content .content.text-video .thumbnail:before,
#content .content.text-vid-full .thumbnail:before {
  content: "";
  width: 70px;
  height: 70px;
  background-size: 70px 70px;
  background-image: url(../images/play.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.videomodal {
  z-index: 10002;
}
body:has(.videomodal.show) .modal-backdrop {
  z-index: 10001;
}

.videomodal .modal-dialog {
  max-width: 1300px;
  max-height: calc(100vh - 300px);
  max-width: calc(100vw - 500px);
}

.videomodal .modal-content {
  background: none;
  border: none;
}

.videomodal .modal-header {
  border: none;
}

.videomodal .modal-header .btn-close {
  scale: 1.5;
  filter: brightness(0) invert(1);
  opacity: 1;
}

#content .img-left .wrapper,
#content .vid-left .wrapper,
#content .slider-left .wrapper {
  flex-direction: row-reverse;
}

#content .img-left .text,
#content .vid-left .text,
#content .slider-left .text {
  margin-left: unset;
  margin-right: auto;
  padding-right: unset;
}

#content .content.vid-left .text {
  padding-right: 0 !important;
  padding-left: 90px !important;
}

#content .full-block h2 {
  margin-bottom: -9px;
}

#content .full-block .top {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

#content .full-block p {
  margin-bottom: 15px;
  flex: 1;
}

#content .full-block .subtitle {
  width: 0;
  white-space: nowrap;
}

#content .full-block .bottom {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

#content .full-block .caption {
  max-width: 70%;
  width: fit-content;
  margin: 20px auto 20px auto;
  font-size: 14px;
  font-weight: 400;
}

#content .img-full .wrapper,
#content .vid-full .wrapper,
#content .slider-full .wrapper {
  flex-direction: column;
}

#content .img-full .text,
#content .vid-full .text,
#content .slider-full .text,
#content .full-block .text {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
}

#content .img-full p,
#content .vid-full .text p,
#content .slider-full .text p{
  max-width: 50%;
}

#content .content.text-img.img-full img,
#content .content.text-video.vid-full .thumbnail,
#content .slider-full .slider-wrapper {
  margin-top: 50px;
  flex: unset;
  width: 100%;
}

#content .content.text-video.vid-full .text {
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}


#content .vid-full .text,
#content .slider-full .text,
#content .usps .text {
  display: flex;
  gap: 80px;
  align-items: flex-end;
}

#content .vid-full .text h2,
#content .slider-full .text h2 {
  margin-bottom: 0;
  white-space: nowrap;
}

#content .text-video .title-brand {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 30px;
}

#content .text-video .title-brand img {
  height: 90px;
  width: auto;
}

#content .text-video .title-brand h2 {
  margin-bottom: 0;
  transform: translateY(10px);
}

#content .slider .desc,
#content .text-slider-full .desc {
  max-width: 80%;
  width: fit-content;
  margin: 20px auto 20px auto;
  font-size: 14px;
  font-weight: 400;
}

#content .slider .swiper {
  margin-right: 0;
  margin-left: 0;
  padding-bottom: 15px;
}

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

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}

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

.swiper-pagination-bullet {
  background: #000;
  transition: all .3s;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 27px;
  border-radius: 10px;
}

#newsletter {
  background: #F5F5F5;
}

#newsletter .d-flex {
  gap: 30px;
}

#newsletter form select {
  background-color: transparent;
  max-width: 300px;
}

#newsletter form .form-check label {
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  color: var(--main-text);
}

#newsletter form .form-check input {
  background-color: transparent;
  border: 1px solid var(--main-text);
  border-radius: 0;
  cursor: pointer;
}

#newsletter form .form-check input:checked {
  background-color: var(--main-text);
}

#newsletter button {
  margin-top: auto;
}

#newsletter p:last-of-type {
  font-weight: 700;
}

#newsletter .recap-disc {
  text-align: right;
}

#newsletter.alt {
  background: var(--bg-light);
}

#newsletter.alt .text {
  display: flex;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 70px;
}

#newsletter.alt .text h1,
#newsletter.alt .text p {
  margin-bottom: 0;
}

#newsletter.alt .text p {
  transform: translateY(-20px);
}

#newsletter.alt .wrapper {
  display: flex;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  align-items: center;
}

#newsletter.alt .icon {
  flex: 0 0 200px;
}

#newsletter.alt .form .title {
  font-weight: 700;
  margin-bottom: 20px;
}

#newsletter.alt h2 {
  margin-bottom: 0;
}

#newsletter.alt .subtitle {
  max-width: 0;
  white-space: nowrap;
}

#newsletter.alt .form .d-flex {
  justify-content: space-between;
  align-items: flex-end;
}

#newsletter.alt .form label {
  font-weight: 400;
  margin-bottom: 0;
}

#newsletter.alt .form .btn {
  margin-top: 0;
}

#content .text-img-circle {
  padding: 0;
  margin: 80px 0;
}

#content .text-img-circle .row {
  align-items: center;
  --bs-gutter-x: 3.5rem;
}

#content .text-img-circle .img-wrapper {
  position: relative;
  width: 95%;
}

#content .text-img-circle img {
  border-radius: 50%;
}

#content .text-img-circle .caption {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
}

#content .text-img-circle .btn {
  margin-top: 25px;
}

#content .text-img-circle .row.img-right {
  flex-direction: row-reverse;
}

#content .text-img-circle .img-right .img-wrapper {
  margin-left: auto;
}

#content .text-img-circle .img-right .graphic {
  right: unset;
  left: -5%;
}

#content .content.text .wrapper {
  flex-direction: column;
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

#content .content.text ul {
	margin-bottom: 20px;
  text-align: left;
}

#content .content.text  ul li {
	position: relative;
  padding-left: 30px;
  margin: 7px 0;
  width: 100%;
}

#content .content.text ul li:after {
  position: absolute;
  left: 0;
  top: 0px;
  font-family: 'Font Awesome 6 Pro';
  content: "\f111";
  font-weight: 700;
  font-size: 14px;
  color: #D7BEAA;
}

#content .content.text .graphic {
  top: 50%;
  transform: translateY(-50%);
  right: -250px;
}

#content .content.text h3 {
  margin-bottom: 12px;
  margin-top: 50px;
}

#content #mieten.text-img-full .img-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
}

#content #mieten.text-img-full .img-wrapper img {
  max-width: 1100px;
}

#content .banner {
  padding: 0;
}

#content .banner .wrapper {
  position: relative;
  flex-direction: column;
}

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

#content .banner .content {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
}

#content .usps {
  padding-bottom: 0 !important;
}

#content .usps .text {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
  margin-bottom: 20px;
}

#content .usps .text .text-wrapper {
  margin-bottom: 20px;
}

#content .usps .text .text-wrapper p {
  width: 60%;
}

#content .usps .usps-top {
  background: var(--bg-light);
  padding-bottom: 80px;
}

#content .usps .row {
  --bs-gutter-y: 4.5rem;
  --bs-gutter-x: 4.5rem;
}

#content .usps .usps-top .usp {
  background: #F8F4F0;
  padding: 50px;
  text-align: center;
  height: 100%;
}

#content .usps .usps-top .usp .icon {
  width: 285px;
  height: 285px;
  border-radius: 50%;
  background: #FBF9F7;
  place-content: center;
  display: grid;
  margin: 0 auto;
}

#content .usps .usp .icon {
  width: 285px;
  height: 285px;
  border-radius: 50%;
  background: #FBF9F7;
  place-content: center;
  display: grid;
  margin: 0 auto;
}

#content .usps .usp .icon img {
  width: 200px;
  height: 200px;
}

#content .usps .usp .content {
  padding: 0;
}

#content .usps .usp .content .title {
  font-weight: 500;
  font-size: 30px;
  margin: 40px 0;
}

#content .usps .usp .content .text {
  margin-bottom: 0;
  padding: 0;
}

#content .usps .usps-middle {
  background: #fff;
  padding: 80px 0;
}

#content .usps .usps-middle .usp {
  display: flex;
  gap: 50px;
  align-items: center;
}

#content .usps .usps-middle .usp .icon {
  width: 185px;
  height: 185px;
  flex: 0 0 185px;
  background: #F8F4F0;
}

#content .usps .usps-middle .usp .icon img {
  width: 120px;
  height: 120px;
}

#content .usps .usps-middle .usp .content .title {
  margin: 0 0 15px;
  font-size: 20px;
}

#content .usps .usps-bottom {
  background: #fff;
  padding-bottom: 80px;
}

#content .usps .usps-bottom .accordion-item {
  border: none;
}

#content .usps .usps-bottom button {
  border-radius: 0;
  border: none;
  background: #F8F4F0;
  font-weight: 500;
  font-size: 20px;
  padding: 25px 40px;
}

#content .usps .usps-bottom button:focus {
  box-shadow: none;
}

#content .usps .usps-bottom button:after {
  background: var(--bs-accordion-btn-icon);
}

#content .usps .usps-bottom .accordion-button:not(.collapsed) {
  color: var(--main-text);
}

#content .usps .usps-bottom .usp {
  display: flex;
  gap: 50px;
  align-items: center;
}

#content .usps .usps-bottom .usp .icon {
  background: #fff;
  width: 100px;
  height: 100px;
}

#content .usps .usps-bottom .usp .icon img {
  width: 100px;
  height: 100px;
}

#content .usps .usps-values {
  padding: 50px 0 80px;
}

#content .usps .usps-values .usp {
  display: flex;
  align-items: center;
  gap: 50px;
}

#content .usps .usps-values .usp .icon {
  width: 185px;
  height: 185px;
  flex: 0 0 185px
}

#content .usps .usps-values .usp .icon img {
  width: 145px;
  height: 145px;
}

#content.share {
  padding: 175px 0;
}

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

#content-home.circular {
  background: var(--bg-dark);
}

#content-home .text {
  flex: 0 0 40%;
  width: 40%;
  padding-right: 90px;
  position: relative;
}

#content-home.share .text .share {
  position: absolute;
  right: 5%;
  bottom: -50px;
}

#content-home img {
  flex: 0 0 60%;
  width: 60%;
  max-height: 75vh;
  object-fit: contain;
}

#content-home.share {
  padding: 150px 0;
}

#features {
  text-align: center;
}

#features .icon-box {
  flex: 0 0 140px;
  padding: 25px;
  box-shadow: var(--box-shadow);
  margin: 12px;
  background: #fff;
}

#features .icon-box i {
  font-size: 25px;
  margin-bottom: 15px;
  color: var(--main-color);
}

#features .icon-box h5 {
  font-weight: 500;
  color: #707070;
  font-size: 18px;
}

#pricing {
  text-align: center;
}

#pricing .box {
  background: #fff;
  box-shadow: var(--box-shadow);
  position: relative;
  margin-top: 50px;
}

#pricing .box .advanced {
  position: absolute;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  padding: 8px;
  background: #ff79b1;
  color: #fff;
  font-weight: 600;
}

#pricing .box h3 {
  background: var(--main-color);
  color: #fff;
  padding: 20px;
}

#pricing .box .content {
  padding: 20px;
}

#pricing .box h4 {
  margin-bottom: 15px;
  color: var(--main-color);
  font-size: 36px;
}

#pricing .box h4 span {
  color: #929292;
  font-size: 16px;
  font-weight: 300;
}

#pricing .box ul li {
  position: relative;
  margin-left: 30px;
  display: block;
  padding: 5px 0;
  line-height: 1.5;
  width: fit-content;
  margin: 0 auto;
}

#pricing .box ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 pro";
  position: absolute;
  top: 4px;
  left: -30px;
  color: var(--main-color);
  font-size: 18px;
}

#pricing .box .btn {
  margin-top: 15px;
}

#faq .faq-list {
  box-shadow: var(--box-shadow);
}

#faq .faq-wrapper {
  background: #fff;
}

#faq .faq-list .faq-wrapper:not(:last-child) {
  border-bottom: 1px solid rgb(207, 207, 207);
}

#faq button {
  width: 100%;
  border: none;
  text-align: left;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 50px 20px 20px;
  position: relative;
}

#faq button:after {
  content: "\f078";
  color: var(--main-color);
  font-family: 'Font Awesome 6 Pro';
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

#faq button[aria-expanded="true"]:after {
  content: "\f077";
}

#faq .answer {
  padding: 0 20px 20px 20px;
}

#faq .answer p {
  margin: 0;
}

#values {
  background: var(--bg-light);
}

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

#values .row {
  justify-content: center;
}

#values .value {
  margin-bottom: 50px;
  text-align: center;
}

#values .value h3 {
  font-size: 50px;
}

#content.logos {
  padding: 100px 0;
  background: var(--bg-light);
}

#content.logos .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

#content.logos .logos .logo {
  filter: brightness(0%);
  width: auto;
}

#content.logos .logos .logo img {
  max-height: 80px;
  object-fit: cover;
  width: auto;
}

#content.table {
  padding: 80px 0;
  background: var(--bg-light);
}

#content.table .table {
  margin-top: 50px;
}

#content.table .table table td {
  padding: 10px;
  border: 1px solid var(--main-text);
}

#white-border {
  padding: 0;
  height: 50px;
}


#intro.basic ul,
#text.basic ul {
	margin-bottom: 20px;
}

#intro.basic ul li,
#text.basic ul li {
	position: relative;
	padding-left: 24px;
	margin: 5px 0;
	width: 100%;
}

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

#downloads .list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}

#downloads .list a {
  display: flex;
  align-items: center;
  gap: 8px;
}

#downloads .list i {
  color: var(--main-color);
}

/*--------------------------------------------------------------
8.5 Contact pages
--------------------------------------------------------------*/

.active {
  display: block;
}

.inactive {
  display: none;
}

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


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

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

#content .usps .subtitle {
  text-align: left;
}

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

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

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

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

#cofounder {
  background: var(--bg-light);
}

#cofounder.text-img-circle {
  background: #fff;
}

#cofounder .wrapper {
  display: flex;
  gap: 100px;
}

#cofounder form {
  display: flex;
  gap: 100px;
  align-items: flex-end;
}

#cofounder form .left {
  width: 400px;
  max-width: 100%;
}

#cofounder form label {
  display: none;
}

#cofounder form .form-control {
  border: none;
  border-bottom: 1px solid var(--main-text);
  background: none;
  padding: 12px 0;
  margin-bottom: 30px;
}

#cofounder form .form-control::placeholder {
  text-transform: uppercase;
  color: var(--main-text);
}

#cofounder form textarea.form-control {
  margin-bottom: 0;
}

/*------------------------------
9.2 Search
------------------------------*/
#breadcrumbs.search {
  background: var(--bg-light);
}

#search-top {
	padding: 70px 0;
	text-align: center;
  background: var(--bg-light);
}

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

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

#search-top .search .input-group {
  border-bottom: 1px solid var(--main-text);
  align-items: center;
}

#search-top .search .input-group i {
  font-size: 22px;
  margin-right: 10px;
}

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

#search-top .search button {
  margin-top: 0;
  margin-bottom: 10px;
}

#search-top h1 {
  font-size: 50px;
}

#search-results {
  background: var(--bg-light);
  padding-top: 0;
}

#search-results .article {
  margin-top: 24px;
  background: #fff;
}

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

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

#search-results h4 {
  text-align: center;
}

/*--------------------------------------------------------------
9.3 Error
--------------------------------------------------------------*/
#error {
  position: relative;
  min-height: calc(100vh - 220px);
  padding: 0;
}

#error .img-wrapper,
#error .img-wrapper img{
  position: absolute;
  height: 100%;
  width: 100%;
}

#error .img-wrapper img{
  object-fit: cover;
}

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

#error .content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 0 12px;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

/*--------------------------------------------------------------
9.4 Products
--------------------------------------------------------------*/
#product {
  padding-top: 50px;
}

#product .images {
  display: flex;
  padding-right: 50px;
  padding-left: 5%;
  gap: 5%;
}

#product .images .thumbnails {
  flex: 0 0 210px;
  position: relative;
}

#product .images .swiper {
  height: 50vh;
  margin-left: 0;
}

#product .images .swiper img {
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

#product .images .swiper .image {
  transition: opacity .3s;
}

#product .images .swiper .image.active {
  opacity: .5;
}

#product .images .swiper .video .wrapper {
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

#product .images .swiper .video a {
  display: block;
  height: 100%;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

#product .images .swiper .video a:after {
  content: "";
  background: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#product .images .swiper .video a .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  z-index: 2;
}

#product .images .swiper .video a img {
  object-fit: cover;
}

#product .thumbnails .swiper-button-next,
#product .thumbnails .swiper-button-prev {
  left: 50%;
  transform: translateX(-50%);
  color: var(--main-text);
}

#product .thumbnails .swiper-button-next {
  bottom: -60px;
  top: unset;
}

#product .thumbnails .swiper-button-prev {
  top: -30px;
}

#product .big-img {
  width: 100%;
}

#product .big-img a {
  width: 100%;
}

#product .big-img img {
  max-height: 50vh;
  cursor: pointer;
  object-fit: contain;
}

#product .extras {
  margin-top: 100px;
  padding-left: 5%;
}

#product .extras .accordion-item {
  border: none;
  border-top: 1px solid var(--main-text);
  border-bottom: 1px solid var(--main-text);
  border-radius: 0;
}

#product .extras button {
  border-color: none;
  border: none;
  border-radius: 0;
  padding: 30px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 21px;
  font-weight: 700;
}

#product .extras .accordion-body {
  padding: 0 25px 30px 25px;
}

.accordion-button:not(.collapsed) {
  background: none;
  color: var(--main-text);
  box-shadow: none;
}

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

.accordion-button:not(.collapsed)::after {
  filter: brightness(0);
}

#product .extras .downloads a {
  padding: 5px 0;
}

#product .extras .downloads a i {
  margin-right: 8px;
}

#product .extras .downloads .filesize {
  font-size: 15px;
  color: rgb(129, 129, 129);
}

#product .details .top {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(0, 0, 0, .75);
}

#product .details .title {
  font-size: 40px;
  font-weight: 500;
  margin: 15px 0;
  line-height: 48px;
}

#product .details .dimensions {
  color: rgba(0, 0, 0, .75);
  display: flex;
  align-items: center;
  gap: 30px;
}

#product .details .shareme {
  width: 80px;
}

#product .details .prices {
  display: flex;
  margin: 20px 0;
}

#product .details .prices .price-incl,
#product .details .prices .price-excl {
  font-size: 15px;
  color: rgba(0, 0, 0, .75);
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

#product .details .prices .price-incl {
  margin-left: 40px;
}


#product .details .prices .price {
  font-size: 30px;
  color: rgba(0, 0, 0, .75);
  font-weight: 700;
  margin: 8px 0;
}

#product .details .prices .popup {
  position: relative;
  top: 20px;
  left: 10px;
  width: 100%;
  order: 3;
}

#product .details .prices .popup .content {
  position: absolute;
  max-width: 200px;
  font-size: 13px;
  background: #fff;
  box-shadow: 0px 3px 5px rgb(0 0 0 / 12%);
  padding: 8px;
  line-height: 20px;
  z-index: -1;
  top: -40px;
  left: 12px;
  display: none;
}

#product .details .prices .shareme {
  width: 80px;
  z-index: -2;
  position: relative;
  order: 4;
}

#product .details .actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

#product .details .actions {
  margin-top: 45px;
}

#product .details .actions a {
  min-width: 320px;
}

#product .details .actions form {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
}

#product .details .actions form label {
  position: absolute;
  color: var(--main-text);
  font-weight: 700;
  font-size: 16px;
  top: -25px;
  display: block;
}

#product .details .actions form input {
  width: 100%;
  max-width: 100px;
  min-width: 60px;
  padding: 9px 5px;
}

#product .details .actions .btn {
  white-space: nowrap;
  font-size: 14px;
  margin-top: 0;
  flex-basis: min-content;
  margin: 0;
}

#product .details .actions i {
  flex-basis: min-content;
  font-size: 24px;
  cursor: pointer;
}

#product .rating {
  margin-top: 40px;
}

#product .details .disc {
  margin-top: 20px;
  color: rgba(0, 0, 0, .5);
  font-size: 16px;
}

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

/*------------------------------
9.5 Basic
------------------------------*/
.destinations {
  padding: 50px 0 80px;
}

.destinations h1 {
  font-size: 72px;
  line-height: 76px;
  margin-bottom: 12px;
}

.destinations .dropdown {
  margin-top: 20px;
  margin-bottom: 50px;
}

.dropdown .label {
  font-weight: 700;
  margin-bottom: 12px;
}

.dropdown button {
  background: none;
  outline: none;
  border: 1px solid var(--main-text);
  width: 100%;
  text-align: left;
  padding: 16px 16px 14px 16px;
  position: relative;
  max-width: 450px;
}

.dropdown button:after {
  content: "\f078";
  font-size: 18px;
  font-family: 'Font Awesome 6 Pro';
  border: none;
  font-weight: 700;
  margin-left: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown .dropdown-menu {
  width: 100%;
  border-radius: 0;
  max-width: 450px;
}

.dropdown .title {
  color: #535353;
  font-weight: 300;
  padding: 0 16px;
  display: block;
}

.dropdown .dropdown-item {
  padding: 10px 16px 10px 25px;
  font-weight: 500;
}

.dropdown .dropdown-menu .list-item-country a {
  pointer-events: none;
  font-weight: 700;
  padding-left: 25px;
}

.destinations .dropdown li a {
  padding-left: 40px;
}

.destinations .contact-details {
  background: var(--bg-light);
  padding: 30px;
  max-width: 550px;
  margin-bottom: 40px;
}

#contact.destinations .col-lg-6 .contact-details:not(:last-of-type) {
  margin-bottom: 50px;
}

.destinations .contact-details .wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  line-height: 2.2;
  font-weight: 400;
}

.destinations .contact-details .wrapper .right {
  white-space: nowrap;
}

.destinations .contact-details h5 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 25px;
}


.destinations .contact-details i {
  font-size: 25px;
  margin-top: 10px;
}

#destinations.destinations .map {
  position: absolute;
  width: 47vw;
  max-width: 960px;
  top: 110px;
  left: calc(53vw - 24px);
  z-index: -1;
}

#destinations .image-slider.maps .desc {
  text-align: center;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
}

#contact.destinations > .container {
  max-width: 1920px;
  padding: 0;
}

#contact.destinations .wrapper {
  display: flex;
}

#contact.destinations .left,
#contact.destinations .right {
  width: 50%;
}

#contact.destinations .col-lg-6 .contact-details:last-of-type {
  margin-bottom: 0;
}

#contact.destinations .container > .wrapper > .left {
  max-width: var(--text-width);
  margin-left: auto;
  padding-right: 90px;
}

#contact.destinations .right .image-slider {
  padding-bottom: 15px;
}

#content .logos,
#contact.destinations .right .logos {
  display: flex;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

#content .logos .logo,
#contact.destinations .right .logos .logo {
  width: 100px;
  filter: grayscale(100%);
  object-fit: contain;
}

#contact .location-info {
  margin-top: 60px;
}

#contact.destinations .location-info h3 {
  font-size: 40px;
}

#contact.destinations .location-info .wrapper {
  gap: 24px;
}

#contact.destinations .location-info .wrapper > * {
  flex: 0 0 33%;
}

#contact.destinations .location-info .left {
  margin-left: 0 !important
}

#team {
  background: var(--bg-light);
}

#team .title-wrapper,
#news .title-wrapper,
#press .title-wrapper,
#downloads .title-wrapper {
  display: flex;
  gap: 80px;
  margin-bottom: 40px;
}

#team .title-wrapper p,
#news .title-wrapper p,
#press .title-wrapper p,
#downloads .title-wrapper p {
  column-count: 2;
  column-gap: 80px;
  margin-bottom: 0;
  margin-top: 10px;

}

#team button {
  background: none;
  outline: none;
  border: none;
  font-size: 50px;
  position: relative;
  margin-bottom: 25px;
  padding-right: 50px;
}

#team button:after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 35px;
  top: 45%;
  right: 0;
  transform: translateY(-55%);
  position: absolute;
  transition: all .3s;
}

#team button.collapsed:after {
  rotate: 180deg;
  transform-origin: center top;
}

#team .accordion-body {
  padding: 0;
}

#team .row {
  gap: 24px;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
  margin-bottom: 24px;
}

#team .row > * {
  padding: 0;
}

@media only screen and (min-width: 768px) {
  #team .row .col-md-6 {
    width: calc(50% - var(--bs-gutter-x));
  }
}
@media only screen and (min-width: 992px) {
  #team .row .col-lg-4 {
      width: calc(33.33333333% - var(--bs-gutter-x));
  }
}
@media only screen and (min-width: 1440px) {
  #team .row .col-xxl-3 {
      width: calc(25% - var(--bs-gutter-x));
  }
}

#team .member {
  padding: 30px;
  background: #fff;
  position: relative;
  height: 100%;
}

#team .member .name {
  margin: 45px 0 10px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

#team .member img {
  height: 196px;
  width: 196px;
}

#team .member .fa-linkedin {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 26px;
}

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

#team .member .flags img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  object-fit: cover;
  order: 1;
}

#team .member .flags img.active {
  order: 0;
}

#team .member div {
  font-size: 14px;
  font-weight: 300;
  margin-top: 4px;
}

#content.destinations .row.img-left .text-col .content {
  width: max-content;
  margin-left: auto;
}

#content.destinations .row.img-left .text-col .content > * {
  width: fit-content;
}

#content.destinations .row.img-left p {
  max-width: 420px;
}

#content.destinations .slider-right .text {
  padding-right: 90px;
}

/*------------------------------
Microsite
------------------------------*/
body:has(#microsite) {
  padding-top: 0;
}

body:has(#microsite) footer,
body:has(#microsite) #brands,
body:has(#microsite) .overlay-form,
body:has(#microsite) #rentnow,
body:has(#microsite) .grecaptcha-badge,
body:has(#microsite) header,
body:has(#microsite) .bottom-header.links {
  display: none;
}

#microsite {
  background: var(--bg-light);
  min-height: calc(100vh);
  display: flex;
  align-items: center;
}

#microsite .logo {
  padding-right: 75px;
  text-align: center;
  margin-bottom: 35px;
}

#microsite .logo img {
  height: 100%;
  max-width: 350px;
  max-height: 60px;
  margin: 0 auto;
}

#microsite .btn {
  display: block;
  margin-bottom: 5px;
  margin-top: 0;
  padding: 13px 95px 12px 20px;
}

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

/*------------------------------
10.1 Large desktop
------------------------------*/
@media (min-width: 1600px) {
	.container {
    max-width: 1500px;
  }
    #home-vacancies .top .categories {
     margin-bottom: 10px;
  }
  .full-block h2 {
    margin-bottom: -2px;
  }
}

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

@media (max-width: 1800px) {
  :root {
    --text-width: 738px;
  }
}

@media (max-width: 1700px) {
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division {
    min-width: 500px;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division .plus {
    right: 10%;
    bottom: 6%;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(3) .division {
    min-width: unset;
    max-width: 370px;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(3) .division .plus {
    right: 7%;
    bottom: 6%;
  }
  #home-videos .video .img,
  #home-videos .video .img img {
    height: 400px;
  }
  #cofounder form {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

@media (max-width: 1600px) {
  :root {
    --text-width: 650px;
  }
  body {
    padding-top: 125px;
  }
  section {
    padding: 80px 0;
  }
  header {
    padding: 30px 0;
  }
  header nav .logo,
  header nav .right
   {
    width: 220px;
  }
  header .search {
    margin-top: 8px;
  }
  header .menu li a {
    font-size: 18px;
  }
  #menu-overlay .top {
    height: 108px;
  }
  #menu-overlay .logo {
    width: 220px;
  }
  #menu-overlay .menu-content {
    margin-top: 40px;
  }
  #menu-overlay .menu li a {
    font-size: 30px;
  }
  #menu-overlay .sub li a {
    font-size: 20px;
  }
  #menu-overlay .sub {
    padding-top: 30px;
  }
  .bottom-header.links ul li {
    font-size: 22px;
  }
  #home-video.play {
    height: calc(100vh - 173px);
  }
  #home-video .slider .top h2 {
    font-size: 75px;
      margin-left: 90px;
  }
  #home-video .slider .top .desc {
    font-size: 23px;
    margin-left: 90px;
  }
  #home-video .content .cta {
    margin-right: 5%;
  }
  #home-video .slider .content .cta h3 {
    font-size: 50px;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division {
    margin-top: -5vh;
  }
  #home-vacancies .top {
    flex-direction: row;
    justify-content: space-between;
  }
  .graphic {
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 170px;
    height: 170px;
    font-size: 15px;
  }
  .graphic .icon {
    margin-bottom: 15px;
  }
  #content .img-full .text, #content .vid-full .text, #content .slider-full .text, #content .full-block .text {
    max-width: 1320px;
  }
  #content .full-block h2 {
    margin-bottom: -1px;
  } 
  #content .content.text .graphic {
    right: -200px;
  }
}

@media (max-width: 1400px) {
  :root {
    --text-width: 560px;
  }
  #home-divisions .division h3 {
    font-size: 48px;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division {
    margin-top: -2vh;
    min-width: unset;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division .plus {
    right: 8%;
    bottom: 6%;
}
  #home-divisions .share {
    top: 18%;
    width: 130px;
  }
  #home-videos .video .img,
  #home-videos .video .img img {
    height: 300px;
  }
  #content .img-full .text, #content .vid-full .text, #content .slider-full .text, #content .full-block .text {
    max-width: 1150px;
  }
}

@media (max-width: 1200px) {
  :root {
    --text-width: 470px;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division {
    margin-left: 0;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(1) .division .plus {
    right: 10%;
    bottom: 6%;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(2) .division {
    margin-left: 0;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(2) .division .plus {
    right: 11%;
    bottom: 6%;
  }
  #home-divisions .swiper-wrapper .swiper-slide:nth-child(3) .division {
    margin-top: -8vh;
    margin-left: 1vw;
  }
  #home-divisions .division .plus {
    font-size: 25px;
    width: 55px;
    height: 55px;
  }
  #home-divisions .division p {
    font-size: 18px;
  }
  #home-benefits .benefit .title {
    font-size: 18px;
    margin-top: 25px;
  }
  footer .col-lg-3 {
    padding-right: 25px;
  }
  #content .content.text .wrapper {
    padding-top: 130px;
  }
  #content .content.text .graphic {
    top: 0;
    left: 0;
    width: 130px;
    height: 130px;
    font-size: 13px;
    transform: unset;
  }
  #content .content.text .graphic i {
    font-size: 32px;
  }
  #content .img-full .text, #content .vid-full .text, #content .slider-full .text, #content .full-block .text {
    max-width: 970px;
  }
  #cofounder .wrapper {
    flex-direction: column;
    gap: 20px;
  }
  #cofounder form .left {
    width: 100%;
  }
  #content .usps .usps-bottom {
    padding-bottom: 50px;
  }
  #content .usps .row {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
  }
  #content .usps .usps-top {
    padding-bottom: 50px;
  }
  #content .usps .usps-middle {
    padding: 50px 0;
  }
  #content .usps .usp .content .text {
    padding: 0 !important;
  }
  #content .usps .usps-top .usp .icon {
    width: 150px;
    height: 150px;
  }
  #content .usps .usps-top .usp .icon img {
    width: 120px;
    height: 120px;
  }
  #content .usps .usp .content .title {
    font-size: 18px !important;
    margin: 20px 0;
  }
  #content .usps .usps-middle .usp {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  #content .usps .usps-middle .usp .icon {
    width: 130px;
    height: 130px;
    flex: unset;
    margin: unset;
  }
  #content .usps .usps-middle .usp .icon img {
    width: 100px;
    height: 100px;
  }
  #content .usps .usps-bottom button {
    font-size: 18px;
    padding: 18px;
    width: calc(100% - 50px);
  }
  #content .usps .usps-values .usp {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  #content .usps .usps-values .usp .icon {
    width: 130px;
    height: 130px;
    flex: 130px;
    margin: unset;
  }
  #content .usps .usps-values .usp .icon img {
    width: 100px;
    height: 100px;
  }
  #product .details .actions .btn {
    padding: 14px 16px;
    white-space: nowrap;
    font-size: 13px;
  }
}

/*------------------------------
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;
    font-size: 15px;
    line-height: 22px;
  }
  section {
    padding: 50px 0;
  }
  .btn {
    font-size: 12px;
    line-height: 16px;
  }
  h1 {
    font-size: 50px;
    line-height: 53px;
  }
  h2 {
    font-size: 42px;
    line-height: 50px;
  }
  h3 {
    font-size: 34px;
    line-height: 42px;
  }
  h4 {
    font-size: 26px;
    line-height: 34px;
  }
  h5 {
    font-size: 18px;
    line-height: 25px;
  }
  h6 {
    font-size: 22px;
    line-height: 32px;
  }
  header {
    padding: 17px 0;
  }
  header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container {
    position: relative;
    margin-top: 10px;
  }
  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 .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 .logo, header nav .right {
    width: 200px;
  }
  #menu-overlay .menu-close {
    width: 30px;
    height: 30px;
  }
  #menu-overlay .menu-close span {
    width: 30px;
  }
  #menu-overlay .user-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
  }
  #menu-overlay .sub {
    width: 100%;
  }
  #menu-overlay .top .language {
    display: none;
  }
  #menu-overlay .language .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 5px 16px 5px 25px;
  }
  header nav .right {
    width: auto;
  }
  header nav .search .form-outline {
    width: 100%;
  }
  .bottom-header.links {
    padding: 16px 0;
  }
  .bottom-header.links ul li {
    font-size: 16px;
  }
  .bottom-header.links ul li:nth-child(n+2) {
    padding-left: 40px;
  }
  .bottom-header.links ul li:nth-child(n+2)::before {
    width: 2px;
    height: calc(100% - 3px);
    left: 20px;
  }
  #menu-overlay .top {
    padding-left: 12px;
    padding-right: 12px;
    height: 80px;
  }
  #menu-overlay .logo {
    width: 200px;
  }
  #menu-overlay .menu {
    position: unset;
  }
  #menu-overlay .menu li.dropdown i {
    color: #fff;
    margin-left: 15px;
    font-size: 25px;
  }
  #menu-overlay.open .menu li.dropdown i {
    opacity: 1;
  }
  #menu-overlay .menu li.dropdown a {
    padding-right: 0;
  }
  #menu-overlay .menu li.dropdown a:after {
    display: none !important;
  }
  #menu-overlay .menu li.dropdown .sub-menu {
    transform: translateX(100%);
    display: block !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: var(--main-text);
    padding-left: 0;
    transition: all .5s ease-in-out;
    overflow: hidden;
    padding: 25px 12px;
  }
  #menu-overlay .menu li.dropdown.open .sub-menu {
    transform: translateX(0);
  }
  #menu-overlay .menu li.dropdown:hover > .sub-menu, #menu-overlay .menu li.dropdown:hover > .sub-menu:hover {
    display: block !important;
    animation: none;
  }
  #menu-overlay .menu .sub-menu .go-back {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    color: #fff;
    width: fit-content;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    opacity: .85;
  }
  #menu-overlay .menu .sub-menu .go-back i {
    color: #fff;
    margin-right: 6px;
    font-size: 20px;
    margin-left: 0;
  }
  #menu-overlay .menu li.dropdown .sub-menu li a {
    font-size: 20px;
  }
  .bottom-header.links ul li:first-child a img {
    height: 14px;
  }
  .bottom-header.links ul li a img {
    height: 12px;
  }
  .overlay-form {
    width: 50px;
    height: calc(100vh - 73px);
    top: 73px;
  }
  .overlay-form .open-form {
    width: 40px;
    height: 47px;
    left: -40px;
    top: 10%;
  }
  .overlay-form .open-form img {
    width: 28px;
  }  
  .overlay-form .wrapper {
    padding: 50px 20px;
    padding-bottom: 100px;
  }
  .overlay-form.open .content {
    width: 100%;
  }
  .overlay-form .form-checks {
    flex-direction: column;
  }
  #home-video.play {
    height: calc(100vh - 128px);
  }
  #home-video .slider .content {
    padding: 15% 0;
  }
  #home-video .slider .top h2 {
    font-size: 50px;
  }
  #home-video .slider .top .desc {
    font-size: 20px;
  }
  #home-video .slider .content .bottom {
    display: none;
  }
  .subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }
  #home-divisions .division {
    margin: unset !important;
  }
  #home-divisions .swiper-slide {
    flex-shrink: 0;
  }
  #home-divisions .container {
    padding-right: 0;
  }
  #home-divisions .intro {
    max-width: unset;
    width: calc(100% - 100px);
    margin: unset;
    margin-bottom: 40px;
  }
  #home-divisions .intro p {
    margin-left: 0;
  }
  #home-divisions .intro h2 {
    transform: unset;
    white-space: unset;
  }
  #home-divisions .intro .btn {
    margin-left: 0;
  }
  #home-divisions .share {
    top: 0;
    right: 12px;
    width: 85px;
    left: unset;
  }
  #home-divisions .swiper {
    overflow: hidden;
  }
  #home-divisions .swiper-wrapper {
    padding-bottom: 30px;
  }
  #home-divisions .swiper-pagination {
    display: block;
    bottom: -15px;
  }
  #home-divisions .division .content {
    padding: 0;
  }
  #home-divisions .division h3 {
    font-size: 42px;
  }
  #home-divisions .division .plus {
    display: none;
  }
  #home-videos .title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  #home-videos .title-wrapper .btn {
    margin-left: 0;
  }
  #home-videos .videos-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  #home-videos .video .play-btn {
    width: 42px;
    height: 42px;
  }
  #home-videos .video .play-btn:after {
    content: '';
    border-style: solid;
    border-width: 9px 0 9px 20px;
    border-color: transparent transparent transparent white;
    transform: translateX(5%);
  }
  #home-videos .video .img, #home-videos .video .img img {
    height: 180px;
  }
  #home-videos .video .img:after {
    background: rgba(0, 0, 0, 0.6);
  }
  #home-videos .video .title {
    opacity: 1;
    font-size: 15px;
  }
  #home-benefits .intro {
    margin-bottom: 40px;
  }
  #home-benefits .swiper-scrollbar {
    display: none;
  }
  #home-benefits .swiper-pagination-bullets {
    display: block;
  }
  #home-textimg {
    padding: 0;
    margin: 50px 0;
    overflow: hidden;
  }
  #home-textimg .row {
    gap: 20px;
  }
  #home-textimg .text-col {
    order: 1;
  }
  #home-textimg .img-col {
    order: 2;
  }
  #home-textimg .img-left .text-col {
    text-align: right;
  }
  #home-textimg .row.img-left .text-col .content {
    width: 100%;
  }
  #home-textimg .img-wrapper {
    width: 100%;
    padding-bottom: 20px;
  }
  #home-textimg .img-wrapper img {
    right: -50px;
    position: relative;
  }
  .graphic {
    width: 170px;
    height: 170px;
    padding: 25px;
    font-size: 14px;
    left: 0;
    bottom: 0;
    right: unset;
  }
  .graphic i {
    font-size: 32px;
  }
  #home-textimg .img-left .graphic {
    right: 0;
    left: unset;
  }
  #home-textimg .img-left .img-wrapper img {
    right: unset;
    left: -50px;
  }
  #seo h4,
  #content .content.seo h4 {
    font-size: 28px;
  }
  #seo h4,
  #content .content.seo h4 {
    font-size: 24px;
  }
  #seo .row,
  #content .content.seo .row {
    gap: 40px;
    --bs-gutter-x: 0;
  }
  #home-vacancies .container {
    max-width: unset;
    padding: 0;
  }
  #home-vacancies .text {
    padding: 0 12px;
  }
  #home-vacancies .top {
    flex-direction: column;
    align-items: flex-start;
  }
  #home-vacancies .top .categories {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: none;  /* Firefox */
    gap: 20px;
    align-items: center;
  }
  #home-vacancies .categories li:first-of-type {
    margin-left: 12px;
  }
  #home-vacancies .categories li:last-of-type {
    margin-right: 12px;
  }
  #home-vacancies .top .categories::-webkit-scrollbar {
    display: none;
  }
  #home-vacancies .top .categories li a {
    margin-bottom: 0;
    margin-top: 0;
  }
  #home-vacancies .top .categories li:not(:last-child) a {
    background: #fff;
    border-radius: 16px;
    font-size: 16px;
    padding: 10px 15px 6px 15px;
    font-weight: 500;
  }
  #home-vacancies .top .categories .btn {
    font-size: 16px;
    font-weight: 500;
  }
  #home-vacancies .swiper-wrapper {
    padding-bottom: 40px;
  }
  #home-vacancies .arrows {
    display: none;
  }
  #home-vacancies .swiper-pagination {
    display: block;
  }
  #home-vacancies .slider-vacancies .title {
    font-size: 16px;
  }
  #content-home .wrapper {
    flex-direction: column;
  }
  #content-home .text,
  #content-home img {
    flex: 0 0 100%;
    width: 100%;
  }
  #content-home.share .text .share {
    bottom: unset;
    right: 0;
    top: 0;
    width: 70px;
  }
  #content-home img {
    margin-top: 50px;
  }
  #content-home .text p {
    padding-right: 0;
  }
  .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;
  }
  #contact-cta {
    padding: 30px 15px 15px 15px;
    border: 5px solid var(--bg-dark);
    max-width: calc(100% - 90px);
    margin-left: -21px;
    min-width: 280px;
    display: none;
  }
  #contact-cta.show {
    display: block;
  }
  #contact-cta .close {
    top: 5px;
    right: 5px;
  }
  #contact-cta .btns {
    flex-direction: column;
  }
  #contact-cta .btns .btn {
    padding-right: 70px;
  }
  #contact-cta .btns .btn:after {
    width: 39px;
    height: 13px;
    background-size: 39px 13px;
  }
  #contact-cta .btns .btn {
    white-space: break-spaces;
  }
  footer .tel, footer .mail {
    display: block;
  }
  footer .footer-links {
    margin-bottom: 24px;
  }
  footer {
    padding: 50px 0 0;
  }
  footer .row {
    margin-bottom: 30px;
  }
  footer .container-fluid {
    padding: 0 12px;
  }
  footer .logo {
    margin-bottom: 15px;
    max-width: 200px;
  }
  footer .col-lg-3 {
    width: 100%;
    padding-right: 12px;
  }
  
  footer .col-lg-9 {
    width: 100%;
  }  
  footer .wrapper {
    flex: 0 0 100%;
  }
  footer .title .plus {
    display: inline-block;
    margin-left: 15px;
  }
  footer .wrapper.open .title .plus:before {
    content: "\f068";
  }
  footer .wrapper ul ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s;
  }
  footer .wrapper.open ul {
    max-height: 450px;
  }
  footer .wrapper ul:nth-of-type(2) {
    margin-top: 20px;
  }
  footer .wrapper ul:nth-of-type(2) i {
    display: none;
  }
  footer .d-flex.bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
  }
  footer .d-flex.bottom .atmosphere {
    display: none;
  }
  footer .d-flex.bottom .logos-others {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .logos {
    flex-direction: column;
  }
  footer .social-links {
    order: 2;
  }
  footer .footer-bottom {
    order: 3;
    padding: 50px 0;
  }
  footer .footer-bottom .wrapper {
    flex-direction: column;
  }
  footer .footer-bottom .wrapper ul {
    max-height: unset;
    overflow: unset;
    transition: unset;
    gap: 16px;
    justify-content: center;
  }
  footer .footer-bottom ul li:not(:last-of-type):after {
    right: -8px;
  }
  footer .footer-bottom .copyright {
    order: 1;
  }
  footer .footer-bottom .bottom {
    order: 3;
  }
  footer .footer-bottom .bottom a {
    font-weight: 700;
  }
  footer .footer-bottom .sub {
    order: 3;
    margin-top: 0 !important;
  }
  .disable-foot-form-btn {
    pointer-events: none;
    background-color: var(--bg-light);
  }
  #breadcrumbs {
    padding-top: 50px;
  }
  #breadcrumbs.article {
    margin-bottom: -40px;
  }
  #breadcrumbs.article .container {
    max-width: unset;
  }
  #content .content {
    padding: 50px 0;
  }
  #content .content .wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  #content .content .text,
  #content .content.text-img .img,
  #content .content.text-video .thumbnail,
  #content .content .slider-wrapper {
    flex: 0 0 100%;
    width: 100%;
    padding-left: 12px;
    padding-right: 0;
  }
  #content .content .text {
    max-width: 100%;
    margin: unset;
    padding: 0 12px !important;
    order: 1;
  }
  #content .content.text-img .text .share {
    display: none;
  }
  #content .content.slider.slider-right .text, 
  #content .content.text-img.img-right .text, 
  #content .content.text-video .text {
   padding-right: 12px !important;
  }
  #content .content.slider.slider-left .text,
  #content .content.text-img.img-left .text,
  #content .content.text-video.vid-left .text {
  padding-left: 12px !important;
  }
  #content .content .text,
  #content .content.text-img .img,
  #content .content .thumbnail,
  #content .content .slider-wrapper {
    order: 2;
  }
  #content .content.vid-left .text {
    padding-left: 12px !important;
  }
  #content .text-video .title-brand {
    gap: 20px;
  }
  #content .text-video .title-brand img {
    height: 50px;
  }
  #content .content.text-img.img-full img,
  #content .vid-full .video-wrapper,
  #content .text-slider-full .slider-wrapper {
    padding-left: 0;
    margin-top: 0;
  }
  #content .content.text-video.vid-full .thumbnail {
    padding-left: 0 !important;
  }
  #content .content.text-video .thumbnail:before {
    width: 55px;
    height: 50px;
    background-size: 50px 50px;
  }
  #content .vid-full .text,
  #content .slider-full .text,
  #content .usps .text {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  #content .text-img-circle {
    padding: 0;
    margin: 50px 0;
    overflow: hidden;
  }
  #content .text-img-circle .row {
    gap: 20px;
  }
  #content .img-full h2,
  #content .vid-full .text h2,
  #content .slider-full .text h2{
  font-size: 50px;
  }
  #content .vid-full .text h2,
  #content .slider-full .text h2 {
  white-space: unset;
  }
  #content .img-full p, #content .vid-full .text p, #content .slider-full .text p {
    max-width: 100%;
  }
  #content .slider .desc {
    max-width: 100%;
    margin: 15px 12px 0 12px;
  }
  #content .text-img-circle .text-col {
    order: 1;
  }
  #content .text-img-circle .img-col {
    order: 2;
  }
  #content .text-img-circle .img-left .text-col {
    text-align: right;
  }
  #content .text-img-circle .img-wrapper {
    width: 100%;
    padding-bottom: 20px;
  }
  #content .text-img-circle .img-wrapper img {
    right: -50px;
    position: relative;
  }
  #content .text-img-circle .img-left .graphic {
    right: 0;
    left: unset;
  }
  #content .text-img-circle .img-left .img-wrapper img {
    right: unset;
    left: -50px;
  }
  #content .full-block h2 {
    margin-bottom: 15px;
  }  
  #content .full-block .top {
    align-items: flex-start;
  }
  #content .full-block .top,
  #content .full-block .bottom {
    flex-direction: column;
    gap: 0;
  }
  #content .full-block .bottom {
    margin-top: 0;
    margin-bottom: 20px;
  }
  #content .text .wrapper {
    gap: 0;
  }
  #content .content.text .subtitle {
    width: 100%;
    text-align: center;
  }
  #content .content.text h3 {
    font-size: 30px;
  }
  #content .banner {
    padding: 0;
  }
  #content .banner img {
    min-height: 300px;
    object-fit: cover;
  }
  #content .usps .text .text-wrapper p {
    width: 100%;
  }
  #content .usps .row .col-lg-4:not(:last-of-type) .usp {
    margin-bottom: 30px;
  }
  
  #content .full-block .subtitle {
    width: unset;
    white-space: unset;
  }
  .destinations h1 {
    font-size: 42px;
    line-height: 50px;
  }
  #destinations.destinations .map {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
    margin-top: 40px;
  }
  .destinations .contact-details .wrapper {
    flex-direction: column;
  }
  #contact.destinations .container {
    max-width: unset;
    padding: 0 12px;
  }
  #contact.destinations .wrapper {
    flex-direction: column;
  }
  #contact.destinations .container > .wrapper > .left {
    margin-left: 0;
    padding-right: 0;
    flex: unset;
    width: 100%;
    max-width: unset;
  }
  #contact.destinations .contact-details {
    max-width: unset;
  }
  #contact.destinations .left, #contact.destinations .right {
    flex: 0 0 100%;
    width: 100%;
  }
  #contact.destinations .right .partners {
    margin-bottom: 40px;
  }
  #contact.destinations .location-info {
    margin-top: 40px;
  }
  #contact.destinations .location-info .container {
    padding: 0;
  }
  #contact.destinations .location-info h3 {
    font-size: 30px;
  }
  .destinations {
    padding: 50px 0;
  }
  #team .title-wrapper, #news .title-wrapper, #press .title-wrapper, #downloads .title-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  #team .title-wrapper p, #news .title-wrapper p, #press .title-wrapper p, #downloads .title-wrapper p {
    column-count: 1;
  }
  #team button,
  #press button {
    font-size: 30px;
    padding-right: 35px;
  }
  #team button:after,
  #press button:after {
    font-size: 24px;
    transform: translateY(-45%);
  }
  #team .member {
    padding: 16px;
  }
  #team .member img {
    height: 196px;
    width: 196px;
  }
  #team .member .name {
    font-size: 18px;
  }
  .accordion-wrapper {
    margin-top: 30px;
  }
  #news .items .item {
    flex: 0 0 calc(50% - 14px);
  }
  #news .items .item:nth-child(1), #news .items .item:nth-child(2) {
    margin-bottom: 0;
  }
  #news .items .item:nth-child(1) .btn, #news .items .item:nth-child(2) .btn {
    display: none;
  }
  #news .items .item:nth-child(1) p, #news .items .item:nth-child(2) p {
    display: none;
  }
  #news .items .item .date {
    font-size: 14px;
  }
  #press {
    padding: 0;
  }
  #press .accordion-body .wrapper a {
    flex: 0 0 calc(50% - 14px);
  }
  #error {
    min-height: calc(100vh - 147px);
  }

  #product {
    padding-top: 15px;
    padding-bottom: 0;
  }
  #product .images {
    display: flex;
    padding-right: 0;
    padding-left: 0;
    flex-direction: column-reverse;
    gap: 20px;
  }
  #product .images .swiper {
    height: auto;
  }
  #product .images .swiper-wrapper {
    align-items: center;
    padding-bottom: 0;
  }
  #product .images .thumbnails {
    flex: unset;
    padding: 0 20px;
  }
  #product .big-img img {
    height: 250px;
  }
  #product .thumbnails .swiper-button-next, #product .thumbnails .swiper-button-prev {
    rotate: -90deg;
    top: 50%;
    transform: translateY(-50%);
    left: unset;
    display: block;
    width: 15px;
  }
  #product .thumbnails .swiper-button-next {
    right: -15px;
  }
  #product .thumbnails .swiper-button-prev {
    left: 2px;
  }
  #product .details .title {
    font-size: 28px;
    line-height: 35px;
    margin: 10px 0;
  }
  #product .details .prices .price {
    font-size: 20px;
    margin: 3px 0;
  }
  #product .extras {
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0;
  }
  #product .extras button {
    font-weight: 500;
    font-size: 18px;
    margin: 10px 0;
    padding: 15px 0;
  }
  #product .details {
    margin-top: 20px;
  }
  #product .details .disc {
    margin-top: 15px;
    font-size: 14px;
  }
  #newsletter .row {
    flex-direction: column-reverse;
    --bs-gutter-y: 2rem;
  }
  #newsletter .d-flex {
    flex-direction: column;
    gap: 18px;
  }
  #newsletter button {
    align-self: flex-start;
  }
  #newsletter.alt .row {
    flex-direction: column;
    --bs-gutter-y: 0;
  }
  #newsletter.alt .text {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  #newsletter.alt .wrapper {
    flex-direction: column;
    padding: 50px 20px;
    gap: 50px;
    align-items: flex-start;
  }
  #newsletter.alt .icon {
    flex: unset;
    width: 150px;
    margin: 0 auto;
  }
  #newsletter.alt .form .d-flex {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 60px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    bottom: 20px;
    top: unset;
    transform: unset;
    height: 40px;
    width: 40px;
  }
  .swiper-button-prev {
    right: 40px;
    left: unset;
  }
  #news .items .item {
    flex: 0 0 100% !important;
  }
  #press .accordion-body .wrapper a {
    flex: 0 0 100%;
  }
  #microsite .logo {
    padding-right: 0;
  }
  #microsite .logo img {
    padding-right: 0;
    max-width: 200px;
  }
  #microsite .btn {
    text-align: left;
  }
}

/*------------------------------
10.4 Landscape phones and down
------------------------------*/
@media (max-width: 480px) {

}
