/*--------------------------------------------------------------
>>> 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: #000000;
  --main-color: #D7BEAA;
  --bg-light: #DFECF3;
  --bg-dark: #86BFE2;
  --bg-grey: #F5F5F5;
  --box-shadow: 0px 2px 20px rgb(0 0 0 / 5%);
  --text-width: 790px;
}

html {
  scroll-behavior: smooth !important;
  scroll-padding-top: 150px;
}

body {
  font-family: 'Montserrat';
  font-weight: 400;
  color: var(--main-text);
  line-height: 19px;
}

p {
  font-size: 16px;
  line-height: 20px;
}

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: 13px 95px 12px 20px;
  background: var(--main-color);
  border-radius: 0;
  border: none;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  position: relative;
  margin-top: 15px;
  transition: all .3s;
}

.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;
  transition: all .3s;
}

.btn.black {
  background: var(--main-text);
  color: #fff !important;
}

.btn.black:hover {
  background: #B9D3E3;
  color: var(--main-text) !important;
}

.btn.black:hover:after {
  filter: brightness(0%);
}

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

.btn:hover,
.btn:active,
.btn:focus {
  background: #D7BEAA;
  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: 62px;
  line-height: 58px;
  margin-bottom: 33px;
}

h2 {
  font-size: 62px;
  line-height: 58px;
  margin-bottom: 25px;
}

h2.vision-title {
  font-size: 40px;
  line-height: 1;
  margin: 0;
}

h3 {
  font-size: 40px;
  line-height: 36px;
}

h4 {
  font-size: 32px;
  line-height: 32px;
}

h5 {
  font-size: 24px;
  line-height: 24px;
}

h6 {
  font-size: 20px;
  line-height: 20px;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
}

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

section.white {
  background: #fff !important;
}

section.light {
  background: var(--bg-light) !important;
}

section.dark {
  background: var(--bg-dark) !important;
}

section.grey {
  background: var(--bg-grey) !important;
}

.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-control:focus {
  color: var(--main-text);
  border-color: var(--main-text);
  box-shadow: none;
  background: none;
}

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

form input[type="date"], form select {
  text-transform: uppercase;
}

.form-select {
  border-radius: 0;
  border: 1px solid var(--main-text);
  color: var(--main-text);
  font-weight: 500;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  cursor: pointer;
}

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

.subtitle {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 27px;
}

/*--------------------------------------------------------------
3.0 Forms
--------------------------------------------------------------*/
label {
  font-size: 14px;
  color: var(--main-text);
  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: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10000;
  padding: 25px 0;
  box-shadow: 0px 3px 6px 0 rgba(0,0,0,.12);
}

body:has(.banner.top) header {
  padding-top: 0;
}

header .banner {
  background: var(--bg-dark);
  color: var(--main-text);
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 500;
  height: 35px;
}

header .banner a {
  color: var(--main-text);
  position: relative;
}

header .banner a:after {
  content: "";
  position: absolute;
  margin-left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 9px;
  background: url(../images/arrow-small.svg);
  background-size: 22px 10px;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0%);
}

header .banner a:hover {
  text-decoration: underline;
}

header .banner .swiper {
  max-width: 1648px;
  padding: 0 40px;
  width: calc(100% - 275px);
}

header .banner .swiper-wrapper {
  padding: 8px 0;
  text-align: center;
  align-items: center;
}

header .banner .swiper-button-next,
header .banner .swiper-button-prev {
  color: #000 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  width: 12px !important;
  height: 12px !important;
  background: none !important;
  background-image: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

header .banner .swiper-button-next::after,
header .banner .swiper-button-prev::after {
  display: none !important;
}

header .banner .swiper-button-next svg:not(.svg-inline--fa),
header .banner .swiper-button-prev svg:not(.svg-inline--fa) {
  display: none !important;
}

header .banner .swiper-button-next {
  right: 20px !important;
  left: unset !important;
}

header .banner .swiper-button-prev {
  left: 0 !important;
  right: unset !important;
}

.language-select {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10001;
  text-align: right;
  pointer-events: none;
}

.language-select button {
  background: #fff !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 8px 30px 8px 8px !important;
  border: none !important;
  pointer-events: all;
}

.language-select button:after {
  right: 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

.language-select button .flag {
  position: relative;
  width: 20px;
  height: 20px;
}

.language-select button .flag:after {
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  top: -0.5px;
  left: -1px;
  position: absolute;
}

.language-select button img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.language-select .dropdown-menu {
  border: none;
  box-shadow: 1px 4px 5px 0px rgba(0,0,0,0.16);
  width: auto;
  padding: 6px;
  pointer-events: all;
  max-width: fit-content !important;
}

.language-select .dropdown-menu .wrapper {
  max-height: 258px;
  overflow: auto;
}

.language-select .dropdown-menu .wrapper::-webkit-scrollbar {
  width: 10px;
}

.language-select .dropdown-menu .wrapper::-webkit-scrollbar-track {
  background: #F5F5F5;
  border-radius: 7px;
}

.language-select .dropdown-menu .wrapper::-webkit-scrollbar-thumb {
  background: #4D4D4D;
  border-radius: 7px;
}

.language-select .dropdown-menu .wrapper::-webkit-scrollbar-button {
  display: none;
}

.language-select .dropdown-item {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
}

.language-select .dropdown-item:hover {
  color: var(--main-text);
  background-color: #F5F5F5;
}

.language-select .dropdown-item img {
  height: 15px;
  width: auto;
  margin-right: 10px;
}

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

header nav .logo {
  width: 333px;
  align-self: center;
}

header nav .logo span {
  margin-left: 20%;
  font-weight: 500;
  margin-top: -1%;
  display: block;
}

header nav .logo:hover span {
  color: var(--main-text);
}

header nav .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

header nav .middle {
  margin: 0 auto;
}

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

header .menu li a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

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

header .search .form-outline {
  flex: 1;
  width: auto;
}

header .input-group {
  border-bottom: 2px solid var(--main-text);
  align-items: center;
  justify-content: space-between;
  max-width: 450px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

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

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

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

header .search button,
header .search .search-btn-button {
  background: none;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

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: grid;
  place-content: center;
  font-size: 18px;
  cursor: pointer;
  display: none;
  margin-right: 4px;
}

header .search .search-btn {
  margin-left: 8px !important;
}

.langlocation {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.langlocation .language {
  display: flex;
  gap: 8px;
  align-items: center;
}
.langlocation i {
  color: #90745D;
}

.langlocation span {
  font-weight: 500;
}

#langlocationModal .modal-dialog {
  max-width: 767px;
}

#langlocationModal .modal-content {
  border-radius: 0;
  padding: 10px;
}

#langlocationModal label {
  display: block;
  color: var(--main-text);
}

#langlocationModal label:nth-of-type(2) {
  margin-top: 20px;
}

.form-select {
  border-radius: 0;
  border: 1px solid var(--main-text);
  color: var(--main-text);
  font-weight: 500;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  cursor: pointer;
}

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

#langlocationModal .modal-footer {
  border-top: none;
}

#langlocationModal .btn {
  margin-top: 0;
}

header nav .right .top .icon {
  position: relative;
}

header nav .right .top .icon:after {
  content: "";
  height: 36px;
  width: 36px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: -1;
  background: #F5F5F5;
  border-radius: 50%;
  transition: .3s;
  opacity: 0;
}

header nav .right .top .icon:hover:after {
  opacity: 1;
}

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

header nav .right .top .cart {
  position: relative;
}

header nav .right .top .cart .number {
  position: absolute;
  top: -9px;
  left: 51%;
  transform: translateX(-45%);
  font-weight: 600;
  font-size: 10px;
  height: 19px;
  width: 19px;
  color: #fff;
  background: #C11616;
  border-radius: 50%;
  display: grid;
  place-content: center;
  opacity: 0;
}

header nav .right .top .cart.active .number {
  opacity: 1;
}

header .menu-toggle {
  cursor: pointer;
  position: relative;
}

header .menu-toggle img {
  height: 20px;
  width: auto;
}

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

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

header nav .right .bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

header nav .right .bottom a img {
  width: 15px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(1%) hue-rotate(139deg) brightness(95%) contrast(96%);
  transition: all .3s;
}

header nav .right .bottom a:hover img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(4%) saturate(5973%) hue-rotate(174deg) brightness(95%) contrast(85%);
}


header nav .right .bottom img {
  width: 40px;
}

header nav .right .tooltip {
  position: absolute;
  bottom: -32px;
  left: 25%;
  font-size: 12px;
  background: var(--main-text);
  color: #fff;
  font-weight: 400;
  padding: 5px;
  border-radius: 3px;
  white-space: nowrap;
  top: unset;
  transition: .3s;
  pointer-events: none;
  height: auto;
  width: auto;
}

header nav .right .icon:hover .tooltip,
header nav .right .menu-toggle:hover .tooltip,
header nav .right .bottom a:hover .tooltip {
  opacity: 1;
}

.bottom-header.links {
  background-color: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 0;
  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 {
  position: fixed;
  z-index: 10001;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--bg-dark);
  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-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

body:has(.banner.top) #menu-overlay .top {
  padding-top: 54px;
}

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

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

#menu-overlay .language-select {
  display: flex;
  gap: 7px;
  flex-direction: column;
  position: relative;
}

#menu-overlay .language-select span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

#menu-overlay .language-select button {
  border: 1.5px solid #fff !important;
  background: none !important;
}

#menu-overlay .language-select button span {
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

#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-select .dropdown-menu {
  width: auto;
  min-width: 275px;
  margin-top: -3px !important;
  background: none;
  padding: 0;
  max-height: 490px;
  overflow: auto;
}

#menu-overlay .language-select .dropdown-menu::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
  position: relative;
  right: -20px;
}

#menu-overlay .language-select .dropdown-menu::-webkit-scrollbar-track {
  background-color: #999999;
  width: 10px;
  border-radius: 5px;
}

#menu-overlay .language-select .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 5px;
  border: 10px solid #fff;
  background-clip: content-box;
}

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

#menu-overlay .language-select .dropdown-menu .dropdown-item {
  color: #fff;
  border: 1.5px solid #fff;
  min-width: 275px;
  background: var(--main-text);
}

#menu-overlay .language-select .dropdown-menu .dropdown-item:hover {
  background: #fff;
  color: var(--main-text);
}

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

#menu-overlay .menu-close span {
  display: block;
  height: 2.5px;
  width: 28px;
  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: 3px;
}

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

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

#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: 18px 0;
  opacity: 1;
  transition: unset;
}

#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: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

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

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;
  width: 24px;
  text-align: center;
  margin-left: 4px;
}

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;
  z-index: 10001;
}

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

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

.form-check-input[type=radio]:checked,
.form-check-input[type=checkbox]:checked {
  background-color: var(--main-text);
  border-color: var(--main-text);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

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

.form-check label {
  display: block;
}

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

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

.recap-disc a {
  color: var(--bg-dark);
  text-decoration: underline;
}

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

form .phone-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

form .phone-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

form .phone-wrapper input {
  margin-bottom: 0;
}

form .phone-wrapper .phone-input {
  flex: 1;
}

form .phone-wrapper .country-codes img {
  width: 25px;
  height: auto;
}

form .phone-wrapper .country-codes button,
form .phone-wrapper .country-codes li {
  display: flex;
  align-items: center;
  gap: 8px;
}

form .phone-wrapper .country-codes button {
  width: fit-content;
  padding: 14px 0;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid var(--main-text);
}

form .phone-wrapper .country-codes button:after {
  display: none;
}

form .phone-wrapper .country-codes .dropdown-menu {
  box-shadow: var(--box-shadow);
  max-height: 315px;
  overflow: auto;
}

form .phone-wrapper .country-codes li {
  padding: 5px 10px;
  cursor: pointer;
  transition: all .3s;
}

form .phone-wrapper .country-codes li:hover {
  background: #ebebeb;
}

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

#apply-side {
  padding: 19.5px 20px;
  background: var(--bg-dark);
  color: var(--main-text);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  rotate: -90deg;
  position: fixed;
  z-index: 10000;
  right: -85px;
  top: calc(25% + 140px);
  display: flex;
  gap: 10px;
  align-items: center;
  transition: all .3s;
}

#apply-side:hover {
  background: var(--bg-light);
}

/*--------------------------------------------------------------
5.0 Hotspot
--------------------------------------------------------------*/

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

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

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

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

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

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

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

/*--------------------------------------------------------------
6.0 Homepage
--------------------------------------------------------------*/
#home-slider {
  position: relative;
  padding: 0;
  min-height: 630px;
}

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

#home-slider img {
  min-height: 630px;
  object-fit: cover;
}

#home-slider .content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

#home-slider .container {
  height: 100%;
}

#home-slider .content .wrapper {
  color: #fff;
  padding: 55px 30px;
  background: rgba(77, 77, 77, .55);
  margin-left: 30px;
  width: fit-content;
  height: 100%;
  max-width: 630px;
  position: relative;
}

#home-slider .content .wrapper.grey {
  background: rgba(77, 77, 77, .55);
}

#home-slider .content .wrapper.black {
  background: rgba(5, 5, 5, .55);
}

#home-slider .content .wrapper.beige {
  background: rgba(215, 190, 170, .75);
}

#home-slider .content .wrapper.brown {
  background: rgba(144, 116, 93, .55);
}

#home-slider .content .wrapper.red {
  background: rgba(155, 0, 0, .55);
}

#home-slider .content .wrapper.grey {
  background: rgba(77, 77, 77, .55);
}

#home-slider .content .wrapper.green {
  background: rgba(164, 173, 143, .65);
}

#home-slider .content .wrapper.blue {
  background: rgba(134, 191, 226, .7);
}

#home-slider .content .subtitle {
  text-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

#home-slider .content h2 {
  font-size: 62px;
  line-height: 58px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

#home-slider .content .btns {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#home-slider .content .btns .btn {
  align-self: flex-start;
  background: none;
  border: 1.5px solid #fff;
}

#home-slider .content .btns .btn:hover {
  background: #fff;
  color: var(--main-text);
}

#home-slider .content .btns .btn:hover:after {
  filter: invert(0%) sepia(4%) hue-rotate(136deg) contrast(96%) brightness(0) saturate(100%);
}

#home-slider .pagination {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 75px;
}

#home-slider .pagination .wrapper {
  max-width: 650px;
  position: relative;
  margin-left: 30px;
}

#home-slider .swiper-pagination {
  bottom: 0 !important;
  z-index: 2;
  width: calc(100% - 30px);
}

#home-slider .pagination .wrapper {
  max-width: 650px;
  position: relative;
  margin-left: 30px;
}

#home-slider .swiper-pagination {
  bottom: 0 !important;
  z-index: 2;
  width: calc(100% - 30px);
}

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

#vacancies-block {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

#vacancies-block .vacancies {
  background: #B9D3E3;
  padding: 25px;
}

#vacancies-block .wrapper {
  background: #fff;
  padding: 25px;
}

#vacancies-block .search .input-group {
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main-text);
  margin-bottom: 30px;
}

#vacancies-block .search .input-group i {
  font-size: 24px;
}

#vacancies-block .search .input-group #search {
  margin-bottom: 0;
  border-bottom: 0;
  padding: 0 20px;
}

#vacancies-block .search .input-group #search::placeholder {
  text-transform: unset;
  color: var(--main-text);
}

#vacancies-block .search .input-group .form-select {
  text-transform: unset;
  padding: 8.5px 36px 8.5px 12px;
}

#vacancies-block .search .input-group .btn {
  margin: 0;
}

#vacancies-block .categories .swiper-wrapper {
  padding-bottom: 30px;
}

#vacancies-block .categories .swiper-slide {
  height: auto;
}

#vacancies-block .categories .category {
  padding: 18px 10px 10px 10px;
  background: var(--bg-light);
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  height: 100%;
  text-align: center;
}

#vacancies-block .categories .category img,
#vacancies-block .categories .category i {
  height: 25px;
  font-size: 25px;
  line-height: 1;
  width: auto;
  transition: all .3s;
}

#vacancies-block .categories .category:hover img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(55%) saturate(267%) hue-rotate(162deg) brightness(94%) contrast(88%);
}

#vacancies-block .categories .swiper-scrollbar {
  max-width: 400px;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  background: rgba(185, 211, 227, .5)
}

#vacancies-block .categories .swiper-scrollbar .swiper-scrollbar-drag {
  background: #B9D3E3;
}

#vacancies-block .list {
  margin-top: 30px;
}

#vacancies-block .titles,
#vacancies-block .items .item {
  display: flex;
  gap: 50px;
}

#vacancies-block .titles {
  padding-right: 48px;
}

#vacancies-block .titles h5 {
  font-weight: 700;
  font-size: 20px;
}

#vacancies-block .titles h5:nth-of-type(1),
#vacancies-block .items .item .category {
  flex: 0 0 calc(25% - 50px);
}

#vacancies-block .titles h5:nth-of-type(2),
#vacancies-block .items .item .vacancy {
  flex: 0 0 calc(60% - 50px);
}

#vacancies-block .titles h5:nth-of-type(3),
#vacancies-block .items .item .location {
  flex: 0 0 calc(15% - 50px);
}

#vacancies-block .items {
  max-height: 300px;
  overflow-y: scroll;
  padding-right: 40px;
}

#vacancies-block  .items::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
  position: relative;
  right: -20px;
  border-left: 10px solid #fff;
}

#vacancies-block  .items::-webkit-scrollbar-track {
  background-color: #BFBFBF;
  width: 8px;
  border-radius: 5px;
}

#vacancies-block .items::-webkit-scrollbar-thumb {
  background-color: var(--main-text);
  border-radius: 5px;
  border: 8px solid var(--main-text);
  background-clip: content-box;
}

#vacancies-block .items .item {
  padding: 14px 0;
  border-top: 1px solid #D5D5D5;
}

#vacancies-block .items .item .vacancy {
  text-decoration: underline;
}

#vacancies-block .btn-wrapper {
  text-align: right;
  margin-top: 10px;
}

#home-entries .entry {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#home-entries .entry .content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#home-entries .row .col-lg-3:nth-of-type(odd) .entry .content {
  background: var(--bg-dark);
}

#home-entries .row .col-lg-3:nth-of-type(even) .entry .content {
  background: var(--bg-light);
}

#home-entries .entry h3 {
  margin-bottom: 20px;
}

#home-entries .entry p {
  margin-bottom: 35px;
}

#home-entries .entry .btn {
  margin-top: auto;
  align-self: flex-start;
}

#cards .card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  height: 100%;
}

#cards .card img {
  width: 75px;
}

#cards .card .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#cards .card h3 {
  margin-bottom: 20px;
}

#cards .card .content .btn {
  margin-top: auto;
  align-self: flex-start;
}

#cards .card .content ul {
  margin-bottom: 20px;
}

#cards .card .content ul li {
  position: relative;
  padding-left: 24px;
  margin: 5px 0;
  width: 100%;
}

#cards .card .content ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  background-color: var(--bg-dark);
  border-radius: 50%;
}

#full-img {
  padding: 0;
}

#values .top {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 50px;
}

#values .top h2 {
  margin-bottom: 0;
}

#values .top p {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

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

#values .row .col-lg-6:not(:last-of-type) {
  margin-bottom: 100px;
}

#values .value {
  display: flex;
  align-items: center;
  gap: 35px;
}

#values .value img {
  height: 160px;
  flex: 0 0 160px;
  width: auto;
  max-width: 160px;
  margin: 0 auto;
}

#values .value .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

#values .value h3 {
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 19px;
}

#values .value p {
  margin-bottom: 0;
}

#social-media {
  text-align: center;
}

#social-media .links {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 35px;
}

#social-media .links i {
  font-size: 65px;
}

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

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

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

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

#home-textimg .img-col {
  text-align: center;
}

#home-textimg .img-wrapper > img {
  max-width: 630px;
}

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

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

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

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

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

#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,
p a {
  text-decoration: underline;
  color: var(--bg_dark);
}

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

#news.inspirations .text {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 50px;
}

#news.inspirations .text .title-wrapper {
  margin-bottom: -15px;
}

#news.inspirations .text h2 {
  white-space: nowrap;
  margin-bottom: 0;
}

#news.inspirations .text p {
  margin-bottom: 0;
}

#news.inspirations .dropdown {
  margin-bottom: 30px;
}

#news.inspirations .dropdown button {
  background: #fff;
  border: none;
}

#news.inspirations .items .item:nth-child(1),
#news.inspirations .items .item:nth-child(2) {
  flex: 0 0 calc(33% - 14px);
  margin-bottom: 0;
}

#news.inspirations .items .item h5 {
  font-size: 20px;
}

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

#locations {
  padding-top: 30px;
}

#locations .top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

#locations .top h1,
#locations .top p {
  margin-bottom: 0;
}

#vacancies .top p {
  max-width: 650px;
}

#locations .accordion-item {
  border: none;
  margin-bottom: 50px;
}

#locations .accordion-button {
  width: fit-content;
  gap: 15px;
  align-items: flex-start;
  font-size: 40px;
  font-family: 'Anek Devanagari';
  font-weight: 500;
  padding: 0;
  line-height: 35px;
}

#locations .accordion-button::after {
  width: 1.75rem;
  height: 1.75rem;
  background-size: 1.75rem 1.75rem;
}

#locations .accordion-body {
  border: none;
  padding-top: 50px;
}

#locations .accordion-body .row {
 --bs-gutter-x: 3rem;
}

#locations .accordion-body .row .col-lg-3:not(:last-of-type) {
  margin-bottom: 50px;
}

#locations .location {
  display: block;
}

#locations .location .icon {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 40px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#locations .location .icon:after {
  content: "\f054";
  font-family: "Font Awesome 7 Pro";
  font-weight: 300;
  font-size: 28px;
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
}

#locations .location .icon img {
  max-width: 70%;
  max-height: 70%;
  margin: 0 auto;
  object-fit: contain;
}

#locations .location .icon .amount {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #C11616;
  display: grid;
  place-content: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-top: 5px;
  z-index: 2;
}

#locations .location .location-name {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}

.selected-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}

.selected-filter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 20px;
	background: #f2f2f2;
	color: #000;
	text-decoration: none;
	font-size: 14px;
}

.selected-filter:hover {
	color: #000;
	text-decoration: none;
}

.selected-filter .remove {
	font-size: 18px;
	line-height: 1;
}

.clear-filters {
	display: inline-flex;
	align-items: center;
	color: #000;
	text-decoration: underline;
	font-size: 14px;
}

.no-results {
	margin-top: 20px;
}

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

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

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

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

#breadcrumbs {
  padding: 18px 0;
}

#breadcrumbs ul {
  display: flex;
}

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

#breadcrumbs ul li a {
  font-weight: 400;
}

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

#breadcrumbs ul li:last-child {
  font-weight: 700;
}

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

#content {
  padding: 0;
}

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

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

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

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

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

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

#content .content .btn-wrap {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

#content .content .btn {
  align-self: flex-start;
}

#content .content .text {
  margin-left: auto;
}

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

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

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

#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-wrapper {
  text-align: center;
}

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

#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.full-block .container {
  max-width: 1920px;
  padding: 0;
}

#content .full-block .text {
  margin-bottom: 20px !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: 20px;
}

#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%;
  text-align: center;
  margin: 20px auto 20px auto;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
}

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

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

#content .content.grey .desc {
  background: var(--bg-grey) !important;
}

#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: -1px !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;
}

body:has(#newsletter.vacancy) .breadcrumbs {
  margin-bottom: 0;
  padding: 25px 0 20px;
}

#newsletter.vacancy form select {
  max-width: unset;
}

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

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

#content .text-img-circle .img-wrapper {
  position: relative;
  text-align: center;
}

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

#content .text-img-circle .img-wrapper > img {
  max-width: 630px;
}

#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;
  gap: 0;
  text-align: center;
  position: relative;
}

#content .content.text.text-left .wrapper,
#content .content.text.text-left .subtitle {
  text-align: left;
  align-items: flex-start;
}

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

#content .content.text ul li {
  position: relative;
  padding-left: 24px;
  margin: 5px 0;
  width: 100%;
  list-style: none;
}

#content .content.text ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--bg-dark);
  border-radius: 50%;
}

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

#content .content.text .graphic img {
  width: 120px;
  margin-bottom: 0;
}

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

#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 .text-usps .wrapper {
  gap: 20%;
}

#content .text-usps ul {
  min-width: 40%;
  max-width: 50%;
  padding: 30px !important;
  border: 2px solid var(--bg-dark);
}

#content .text-usps ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

#content .text-usps ul li:not(:last-of-type) {
  margin-bottom: 18px;
}

#content .text-usps ul li i {
  font-size: 18px;
  color: var(--bg-dark);
}

#content .banner {
  padding: 0;
  position: relative;
}

#content .banner .content {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  color: #fff;
  padding: 0;
}

#content .banner .wrapper {
  display: block;
  position: relative;
  width: fit-content;
  min-width: 35%;
  padding: 60px 30px;
  background: rgba(134, 191, 226, .7);
  text-shadow: 0px 3px 6px rgba(0, 0, 0, .25);
}

#content .banner .content h1 {
  margin: 0;
}

#content .banner.banner-two .wrapper {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  min-width: unset;
  padding: 0;
  background: transparent;
  text-shadow: none;
}

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

#content .banner.banner-two.no-title .wrapper:after {
  display: none;
}

#content .banner.banner-two picture {
  width: 100%;
}

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

#content .banner.banner-two .content h1,
#content .banner.banner-two .content h2 {
  color: #fff;
  margin: 0;
}

#content .banner.banner-two .content .subtitle {
  color: #fff;
}

#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: 24px;
  margin: 40px 0;
}

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

#content .usps .usps-middle {
  background: #fff;
  padding: 60px 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: 18px;
  font-weight: 700;
}

#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: 18px;
  padding: 25px 40px;
  font-weight: 700;
}

#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 .usps .usps-values .usp .title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

#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 {
  padding-right: 75px;
}

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

#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: 60px 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,
#content .text ul {
	margin-bottom: 20px;
}

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

#intro.basic ul li:after,
#text.basic ul li:after,
#content .text ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--bg-dark);
  border-radius: 50%;
}

#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: 10px;
  font-weight: 500;
}

#downloads .list a i {
  color: #9B0000;
  font-size: 30px;
  transition: all .3s;
}

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

/*--------------------------------------------------------------
Summer Lounge
--------------------------------------------------------------*/
#breadcrumbs.summer {
  padding: 30px 0;
}

#summer-banner {
  position: relative;
  padding: 0;
}

#summer-banner .title {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 2;
}

#summer-banner .title .wrapper {
  color: #fff;
  font-size: 40px;
  line-height: 44px;
  background: rgba(77, 77, 77, .55);
  width: fit-content;
  padding: 60px 30px;
  max-width: 630px;
}

#summer-banner .title h1 {
  margin: 0;
}

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

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

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

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

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

#contact-block .wrapper {
  display: flex;
  gap: 100px;
}

#contact-block .text-wrapper {
  max-width: 650px;
  min-width: 550px;
}

#contact-block .form-checks {
  display: flex;
  align-items: center;
  gap: 25px;
}

#contact-block .form-check label {
  font-weight: 400;
}

#contact-block .form-check input {
  background-color: transparent;
}

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

#contact-block .form-select {
  background-color: transparent;
}

#contact-block .disc {
  font-size: 14px;
}

#contact-block .disc input {
  margin-top: 5px;
  background: none;
}

#contact-block .disc input:checked {
  background: var(--main-text);
}

.form-select {
  border-radius: 0;
  border: 1px solid var(--main-text);
  color: var(--main-text);
  font-weight: 500;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  cursor: pointer;
}

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

#menu-professionals {
  position: sticky;
  top: var(--header-height, 100px);
  z-index: 9999;
  padding: 18px 0;
  background: #F5F5F5;
  box-shadow: 0px 3px 6px 0 rgba(0,0,0,0.16);
}

#menu-professionals ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#menu-professionals ul li a {
  padding: 8px 10px;
  border: 1px solid var(--bg-dark);
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 500;
}

#menu-professionals ul li a.active {
  background: var(--bg-dark);
  pointer-events: none;
}

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

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

#colleagues .member {
  background: #fff;
  padding: 30px;
  display: flex;
}

#colleagues .member img {
  width: 35%;
  flex: 0 0 35%;
  object-fit: cover;
}

#colleagues .member .info {
  border-left: 1px solid var(--bg-dark);
  margin-left: 20px;
  padding-left: 20px;
}

#colleagues .member .info .role {
  font-weight: 700;
  margin-bottom: 20px;
} 

#opportunities .swiper-wrapper {
  padding-bottom: 40px;
}

#opportunities .swiper-slide {
  height: auto;
}

#opportunities .swiper-wrapper .swiper-slide:nth-of-type(odd) .opportunity {
  background: var(--bg-dark);
}

#opportunities .opportunity {
  padding: 30px;
  background: var(--bg-light);
  height: 100%;
}

#opportunities .opportunity img {
  background: #fff;
  padding: 30px;
}

#opportunities .opportunity .content {
  margin-top: 30px;
}

#opportunities .opportunity .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

#opportunities .swiper-scrollbar {
  max-width: 400px;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  background: rgba(185, 211, 227, .5)
}

#opportunities .swiper-scrollbar .swiper-scrollbar-drag {
  background: #B9D3E3;
}

#steps {
  background: #B9D3E3;
}

#steps .top,
#steps .title-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

#steps h2 {
  margin: 0;
}

#steps.article .top {
  margin-top: 30px;
}

#steps .top .text {
  font-weight: 700;
  position: relative;
  top: -15px;
}

#steps .steps {
  display: flex;
  margin-top: 20px;
  counter-reset: step-counter;
}

#steps .steps .step {
  flex: 0 0 26%;
  background: var(--bg-light);
  padding: 20px 140px 45px 50px;
  text-align: center;
  position: relative;
  counter-increment: step-counter;
}

#steps .steps .step:hover {
  color: var(--main-text);
}

#steps .steps .step[href]:hover {
  color: var(--main-color);
}

#steps .steps .step:after {
  content: counter(step-counter);
  font-size: 90px;
  color: var(--bg-dark);
  font-family: 'Anek Devanagari';
  top: 52%;
  transform: translateY(-50%);
  right: 65px;
  position: absolute;
  font-weight: 700;
}

#steps .steps .step:last-of-type:after {
  right: 20px;
}

#steps .steps .step:last-of-type {
  padding: 20px 100px 45px 50px;
  flex: 0 0 22%;
}

#steps .steps .step:last-child:after {
  visibility: hidden;
}

#steps .steps .step .icon {
  width: 190px;
  height: 190px;
  display: grid;
  place-content: center;
  background: #fff;
  border-radius: 50%;
  padding: 20px;
  margin: 0 auto 40px auto;
}

#steps .steps .step .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}

#steps .steps .step .edge {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 100%;
}

#steps .steps .step:last-of-type .edge {
  display: none !important;
}

#steps .steps .step .edge.mob {
  display: none;
}

.apply-form form > .row {
  --bs-gutter-x: 5rem;
}

.apply-form .form-select {
  margin-bottom: 18px;
  background-color: transparent;
}

.apply-form .form-floating label:after {
  background-color: transparent !important;

}
.apply-form .form-floating label {
  color: var(--main-text) !important;
  text-transform: uppercase;
  top: -4px;
  font-size: 15px;
}

.apply-form .salary-group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--main-text);
}

.apply-form .salary-group .currency {
  padding: 5px 16px;
  text-align: center;
  border: 1px solid var(--main-text);
  border-radius: 6px;
}

.apply-form .salary-group input {
  margin-bottom: 0;
  border-bottom: none;
}

.apply-form .upload-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.apply-form .upload-row:not(:last-of-type) {
  margin-bottom: 20px;
}

.apply-form .upload-row .input-box {
  padding: 11px 20px;
  border: 1px solid var(--main-text);
  flex: 1;
}

.apply-form .upload-row .hidden-input {
  display: none;
}

.apply-form .upload-row .btn {
  padding: 13px 20px 12px 20px;
  margin: 0;
}

.apply-form .upload-row .btn:after {
  display: none;
}

.apply-form .max-upload {
  text-align: center;
  font-size: 14px;
}

.apply-form .form-check label {
  font-weight: 400;
  cursor: pointer;
}

.apply-form .form-check-input[type=checkbox] {
  background-color: transparent;
  position: relative;
  top: 2px;
}

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

/*------------------------------
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;
  margin-bottom: 0;
}

#search-top .search .form-control::placeholder {
  text-transform: unset;
}

#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;
  display: block;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

#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: 730px;
  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;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

#error .content p:first-of-type{
  font-weight: 500;
  font-size: 23px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

#error .content p:last-of-type{
  margin-top: 110px;
  font-weight: 500;
  font-size: 18px;
}

/*--------------------------------------------------------------
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 7 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: 1.2;
  font-weight: 400;
}

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

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


.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;
  background: #fff;
}

#contact.destinations .wrapper {
  display: flex;
  gap: 90px;
}

#contact.destinations .left {
  flex: 1;
}

#contact.destinations .right {
    flex: 0 0 58.19%;
    width: 58.19%;
}

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

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

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

#content .logos .logo,
#contact.destinations .left .logos .logo {
  width: 75px;
  filter: brightness(0%);
  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 7 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;
}

/*--------------------------------------------------------------
Vacancies
--------------------------------------------------------------*/
#vacancies .top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

#vacancies .top h1,
#vacancies .top p {
  margin-bottom: 0;
}

#vacancies .top p {
  max-width: 650px;
}

#vacancies .col-lg-3 .title {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#vacancies .col-lg-3 li a {
  padding: 9px 0;
  font-size: 18px;
}

#vacancies .col-lg-3 .locations {
  margin-top: 50px;
}

#vacancies .col-lg-3 .locations li {
  display: flex;
  gap: 4px;
}

#vacancies .col-lg-3 .locations li .amount {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C11616;
  display: grid;
  place-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-top: 5px;
}

#vacancies .search .input-group {
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main-text);
  margin-bottom: 40px;
}

#vacancies .search .input-group i {
  font-size: 24px;
}

#vacancies .search .input-group #search {
  margin-bottom: 0;
  border-bottom: 0;
  padding: 0 20px;
}

#vacancies .search .input-group #search::placeholder {
  text-transform: unset;
  color: var(--main-text);
}

#vacancies .search .input-group .form-select {
  text-transform: unset;
  padding: 8.5px 36px 8.5px 12px;
}

#vacancies .search .input-group .btn {
  margin: 0;
}

#vacancies .filters {
  display: flex;
  gap: 10px;
}

#vacancies .filters .form-select {
  width: auto;
}

#vacancies .col-lg-9 .row {
  margin-top: 30px;
  --bs-gutter-y: 1.5rem;
}

#vacancies .vacancy {
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

#vacancies .vacancy .img-wrapper {
  position: relative;
  width: 100%;
}

#vacancies .vacancy img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  display: block;
}

#vacancies .vacancy .label {
  position: absolute;
  right: 0px;
  top: 5%;
  padding: 5px 10px;
  background: rgba(134, 191, 226, 0.85);
  color: white;
  z-index: 2;
  font-size: 14px;
}

#vacancies .vacancy .title {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  line-height: 22px;
}

.nav-pagination {
  margin-top: 80px;
  padding: 0 110px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  z-index: 2;
}

.nav-pagination .amount {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pagination .amount span {
  font-weight: 600;
}

.nav-pagination .amount button {
  background: #fff;
  outline: none;
  border: 1px solid var(--main-color);
  padding: 5px 8px;
}

.nav-pagination .amount .dropdown-menu {
  border-color: var(--main-color);
}

.nav-pagination .amount .dropdown-menu .dropdown-item:hover {
  background: var(--main-color);
}

.nav-pagination .shadow-sm {
  box-shadow: none !important;
  display: flex;
  flex-wrap: wrap;
}

.nav-pagination nav .relative.z-0.inline-flex {
  display: flex;
  box-shadow: none !important;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-pagination svg{
  width: 25px;
}

.nav-pagination > nav > div:first-child,
.nav-pagination p {
  display: none;
}

.nav-pagination [aria-current] {
  font-weight: bold;
  color: var(--main-text);
}

.nav-pagination [aria-current] span{
  font-size: 24px;
  padding: 0 !important;
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
}

.nav-pagination [aria-disabled] {
    display: none;
}

.nav-pagination nav a {
  color: var(--bg-dark);
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  font-size: 24px;
}

.nav-pagination .border {
  border: 1px solid var(--main-orange) !important;
  padding: 0 !important;
}

.nav-pagination [rel="next"],
.nav-pagination [rel="prev"] {
  color: #fff;
  background-color: var(--main-text) !important;
  border-radius: 0 !important;
}

/*--------------------------------------------------------------
Vacancy
--------------------------------------------------------------*/
#breadcrumbs.vacancy {
  padding: 18px 0;
}

#vacancy-banner {
  padding: 0;
  position: relative;
}

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

#vacancy-banner .content h1 {
  text-shadow: 0px 3px 6px rgba(0, 0, 0, .25);
  margin: 0;
}

#vacancy-details {
  padding: 0;
}

#vacancy-details .content {
  padding: 60px 12px;
}

#vacancy-details .content h2 {
  font-size: 40px;
}

#vacancy-details .content h3 {
  margin-top: 35px;
  font-size: 28px;
}

#vacancy-details .content ul {
  padding-left: 0;
}

#vacancy-details .content ul li {
  position: relative;
  padding-left: 24px;
  margin: 5px 0;
  width: 100%;
  list-style: none;
}

#vacancy-details .content ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--bg-dark);
  border-radius: 50%;
}

#cta-apply {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  gap: 25px;
}

#cta-apply h4 {
  font-size: 26px;
  margin: 7px 0 0 0;
}

#cta-apply .btn {
  margin: 0;
}

#vacancy-details .summary {
  padding: 60px 30px 30px 30px;
  background: var(--bg-light);
}

#vacancy-details .summary .top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  align-items: center;
}

#vacancy-details .summary .top > div {
  display: flex;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  gap: 8px;
  align-items: center;
}

#vacancy-details .summary .bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#vacancy-details .summary .bottom .title {
  font-weight: 700;
  margin-bottom: 4px;
}

#vacancy-details .location-details {
  padding: 30px;
  border: 1px solid var(--bg-dark);
  margin-top: 30px;
}

#vacancy-details .location-details .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

#vacancy-details .video {
  background: var(--bg-dark);
  margin-top: 30px;
  padding-bottom: 60px;
}

#vacancy-details .video h3 {
  padding: 30px;
  margin-bottom: 0;
}

#vacancy-details .video .thumbnail {
  position: relative;
}

#vacancy-details .video .play-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

/*--------------------------------------------------------------
Location
--------------------------------------------------------------*/
#location-vacancies h2 {
  text-align: center;
  margin-bottom: 50px;
}

#location-vacancies .titles,
#location-vacancies .items .item {
  display: flex;
  gap: 50px;
}

#location-vacancies .titles h5 {
  font-weight: 700;
  font-size: 18px;
}

#location-vacancies .titles h5:nth-of-type(1),
#location-vacancies .items .item .category {
  flex: 0 0 calc(30% - 50px);
}

#location-vacancies .titles h5:nth-of-type(2),
#location-vacancies .items .item .vacancy {
  flex: 0 0 calc(55% - 50px);
}

#location-vacancies .titles h5:nth-of-type(3),
#location-vacancies .items .item .location {
  flex: 0 0 calc(15% - 50px);
}

#location-vacancies .items .item {
  padding: 14px 0;
  border-top: 1px solid #D5D5D5;
}

#location-vacancies .items .item .category {
  display: flex;
  align-items: center;
  gap: 20px;
}

#location-vacancies .items .item .category img {
  height: 25px;
  width: auto;
}


#location-vacancies .items .item .vacancy {
  text-decoration: underline;
}

/*--------------------------------------------------------------
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(2) .division {
    min-width: unset;
    max-width: 350px;
  }
  #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;
  }
  #contact-block form {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

@media (max-width: 1600px) {
  :root {
    --text-width: 650px;
  }
  header {
    padding: 30px 0;
  }
  header nav .logo span {
    font-size: 14px;
  }
  header .search {
    margin-top: 8px;
  }
  header .menu li a {
    font-size: 15px;
  }
  header nav .right .top {
    width: 175px;
  }
  #menu-overlay .top {
    height: 108px;
    gap: 20px;
  }
  #menu-overlay .logo {
    width: 220px;
  }
  #menu-overlay .menu-content {
    margin-top: 40px;
  }
  #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;
  }
    #steps .steps .step {
    padding: 20px 85px 45px 20px;
  }
  #steps .steps .step:last-of-type {
    padding: 20px 65px 45px 15px;
  }
  #steps .steps .step:after {
    font-size: 65px;
    right: 48px;
  }

  #steps .steps .step:last-child:after {
    visibility: hidden;
  }
  #steps .steps .step .icon {
    width: 150px;
    height: 150px;
  }
  #steps .steps .step .title {
    font-size: 18px;
  }
  #steps .steps .step .edge {
    width: 85px;
  }
}

@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;
  }
  #locations .location .icon img {
    max-width: 92%;
    max-height: 92%;
  }
  #locations .location .icon .amount {
    top: 16px;
    right: 0px;
  }
}

@media (max-width: 1200px) {
  :root {
    --text-width: 470px;
  }
  header nav .logo, header nav .right .top,
  #menu-overlay .logo {
    width: 170px;
  }
  #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 .graphic {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    font-size: 13px;
  }
  #content .content.text .graphic img {
    width: 60px;
  }
  #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%;
  }
  #menu-professionals ul {
    flex-direction: column;
  }
  #colleagues .member {
    flex-direction: column;
  }
  #colleagues .member img {
    width: 60%;
  }
  #colleagues .member .info {
    border-top: 1px solid var(--bg-dark);
    margin-top: 20px;
    padding-top: 20px;
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
  #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;
  }
  #contact-block .wrapper {
    flex-direction: column;
    gap: 50px;
  }
  #contact-block .text-wrapper {
    min-width: unset;
    max-width: unset;
  }
  #steps .steps .step {
    padding: 20px 75px 45px 20px;
  }
  #steps .steps .step:after {
    font-size: 50px;
  }
  #steps .steps .step .icon {
    width: 120px;
    height: 120px;
  }
}

/*------------------------------
10.2 Portrait tablet to landscape and desktop
------------------------------*/
@media (min-width: 768px) and (max-width: 979px) {

}

/*------------------------------
10.3 Landscape phone to portrait tablet
------------------------------*/
@media (max-width: 992px) {
  body {
    font-size: 15px;
    line-height: 22px;
  }
  section {
    padding: 50px 0;
  }
  .btn {
    font-size: 15px;
    line-height: 16px;
  }
  h1 {
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 14px;
  }
  h3 {
    font-size: 28px;
    line-height: 28px;
  }
  h4 {
    font-size: 22px;
    line-height: 34px;
  }
  h5 {
    font-size: 18px;
    line-height: 25px;
  }
  h6 {
    font-size: 16px;
    line-height: 32px;
  }
  p {
    font-size: 15px;
  }
  header {
    padding: 17px 0;
  }
  header .banner .swiper {
    width: 100%;
    padding: 0;
  }
  header .banner .swiper-button-prev {
    left: 5px !important;
  }
  header .banner .swiper-button-next {
    right: 5px !important;
  }
  header .banner .swiper-slide {
    padding: 0 35px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  header .banner a {
    display: inline-block;
    max-width: 100%;
    position: relative;
    padding-right: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }
  header .banner a:after {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
    right: 0;
    margin-left: 0;
  }
  header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  header .container {
    position: relative;
  }
  .language-select {
    display: none;
  }
  header nav {
    align-items: center;
  }
  header nav .menu {
    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 .search {
    position: fixed;
    top: 70px;
    width: 100%;
    left: 0;
    z-index: 999;
    background: var(--bg-light);
    margin-top: 0;
    padding: 0 12px;
    display: none;
    border-bottom: 1px solid var(--main-text);
  }
  header .search.open {
    display: block;
  }
  header .search .input-group {
    flex-wrap: nowrap;
    border-bottom: none;
    padding: 10px 0 8px 0;
    align-items: center;
  }
  #search-overlay {
    top: 111px !important;
    border-top: 1px solid var(--main-text);
  }
  header .search input {
    padding: 0;
  }
  header .search .input-group .close {
    font-size: 18px;
  }
  header .search .desktop.close {
    display: none !important;
  }
  #search-overlay .results {
    padding: 35px 0;
  }
  #search-overlay #results .row {
    --bs-gutter-x: 1.5rem;
  }
  #search-overlay .results .desktop.close {
    display: none;
  }
  #search-overlay .results .product .title {
    margin: 0;
    min-height: unset;
  }
  .overlay-form {
    width: 40px;
    top: 70px;
    height: 0;
  }
  .overlay-form.open {
    border-top: 1px solid var(--main-text);
    height: calc(100vh - 70px);
  }
  .overlay-form .open-form {
    width: 40px;
    height: 47px;
    top: 10%;
  }
  .overlay-form .open-form img {
    width: 28px;
  }
  #rentnow {
    font-size: 18px;
    padding: 10px 18px;
    top: calc(20% + 140px);
  }
  #rentnow img {
    height: 22px;
  }
  #menu-overlay .menu-close {
    width: 30px;
    height: 30px;
    font-size: 22px;
    left: -40px;
  }
  #menu-overlay .menu-close span {
    width: 30px;
  }
  #menu-overlay .top .language {
    display: none;
  }
  #menu-overlay .language-select .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 5px 16px 5px 25px;
  }
  #menu-overlay .user-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
  }
  #menu-overlay .user-controls .icon.user img {
    filter: brightness(0) invert(1);
  }
  #menu-overlay .user-controls .langlocation span,
  #menu-overlay .user-controls .langlocation i {
    color: #fff;
  }
  #langlocationModal {
    z-index: 10001;
  }
  .modal-backdrop {
    z-index: 9999;
  }
  #menu-overlay .sub {
    width: 100%;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    position: relative;
  }
  #menu-overlay .sub li a {
    font-size: 14px;
    font-weight: 500;
  }
  header nav .right .top {
    width: auto;
  }
  header nav .right .top .icon.contact {
    order: 2;
    display: none;
  }
  header nav .right .top .icon.user {
    order: 3;
  }
  header nav .right .top .icon.cart {
    order: 4;
  }
  header nav .right .top .menu-toggle {
    order: 5;
  }
  header nav .right .top .langlocation {
    display: none;
  }
  header nav .search .form-outline {
    width: 100%;
  }
  header nav .right .bottom {
    display: none;
  }
  header nav .right .tooltip {
    display: none;
  }
  .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 a img {
    height: 10px;
    width: auto;
  }
  .bottom-header.links ul li:first-child a img {
    height: 12px;
    width: auto;
    transform: translateY(2px);
  }
  #menu-overlay .top {
    padding-left: 12px;
    padding-right: 12px;
    height: 80px;
  }
  #menu-overlay .menu {
    position: unset;
  }
  #menu-overlay .menu li a {
    font-size: 24px;
  }
  #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;
  }
  .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;
  }
  header .banner {
    height: auto;
  }
  #vacancies-block {
    display: none;
  }
  #home-entries .row .col-lg-3:not(:last-of-type) {
    margin-bottom: 24px;
  }
  #cards .row .col-lg-4:not(:last-of-type),
  #cards .row .col-lg-6:not(:last-of-type) {
    margin-bottom: 24px;
  }
  #cards .card {
    flex-direction: column;
  }
  #cards .card img {
    width: 55px;
  }
  #values .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 30px;
  }
  #values .top p {
    font-size: 20px;
  }
  #values .row {
    --bs-gutter-x: 1.5rem;
  }
  #values .row .col-lg-6:not(:last-of-type) {
    margin-bottom: 40px;
  }
  #values .value {
    gap: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  #values .value img {
    height: 60px;
    flex: 0 0 75px;
    margin: unset;
  }
  #social-media .links {
    gap: 25px;
  }
  #social-media .links i {
    font-size: 30px;
  }
  #vacancies .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  #vacancies .col-lg-3 {
    display: none;
  }
  #vacancies .filters {
    flex-direction: column;
  }
  #vacancies .search .input-group #search {
    padding: 0;
  }
  #vacancies .search .input-group .form-select {
    display: none;
  }
  #vacancy-banner img {
    min-height: 250px;
    object-fit: cover;
  }
  #vacancy-details .content {
    padding: 50px 12px;
  }
  #vacancy-details .content h2 {
    font-size: 30px;
  }
  #vacancy-details .content h3 {
    font-size: 24px;
  }
  #cta-apply {
    flex-direction: column;   
    gap: 10px;
  }  
  #cta-apply h4 {
    font-size: 22px;
    margin: 0;
  }
  #vacancy-details .summary .top,
  #vacancy-details .summary .bottom {
    gap: 20px;
  }
  #vacancy-details .summary .top > div {
    font-size: 18px;
  }
  #vacancy-details .location-details .title {
    font-size: 21px;
  }
  #vacancy-details .video h3 {
    font-size: 24px;
  }
  #vacancy-details .video .play-btn {
    width: 50px;
  }
  #vacancy-details .video {
    padding-bottom: 35px;
  }
  #home-slider .content .wrapper {
    margin-left: 0;
  }
  #home-slider .content h2 {
    font-size: 34px;
    line-height: 34px;
  }
  #home-slider .content .btn {
    text-align: left;
  }
  #home-slider .pagination {
    bottom: 20px;
  }
  #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;
  }
  #content-home .text {
    padding-right: 0;
  }
  #content-home.share {
    padding: 50px 0;
  }
  #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;
  }
  #apply-side {
    font-size: 18px;
    padding: 10px 18px;
    top: calc(20% + 140px);
    right: -200px;
  }
  .disable-foot-form-btn {
    pointer-events: none;
    background-color: var(--bg-light);
  }
  #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%;
  }
  #content .content .text {
    max-width: 100%;
    margin: unset;
    order: 1;
  }
  #content .content.text-img .text .share {
    display: none;
  }
  #content .content .text,
  #content .content.text-img .img,
  #content .content .thumbnail,
  #content .content .slider-wrapper {
    order: 2;
  }
  #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 .text-usps .wrapper {
    flex-direction: column-reverse;
    gap: 12px;
  }
  #content .text-usps ul {
    min-width: 100%;
    max-width: 100%;
    padding: 16px !important;
  }
  #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;
  }
  #summer-banner {
    min-height: 300px;
  }
  #summer-banner img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #locations .top {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  #locations .location .icon img {
    max-width: 95%;
    max-height: 95%;
  }
  #locations .location .icon .amount {
    top: 16px;
    right: 12px;
  }
  #locations .accordion-button {
    font-size: 29px;
  }
  #locations .accordion-button::after {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem 1.25rem;
  }
  #locations .location {
    text-align: center;
  }
  #locations .location .icon:after {
    font-size: 22px;
    right: -25px;;
  }
    #steps .top, #steps .title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #steps .top {
    gap: 10px;
  }
  #steps .top .text {
    top: unset;
  }
  #steps .steps {
    flex-direction: column;
    margin-top: 50px;
  }
  #steps .steps .step {
    flex: 0 0 100%;
    padding: 30px 50px 75px 20px !important;
  }
  #steps .steps .step:last-of-type {
    padding: 30px 50px 35px 20px !important;
  }
  #steps .steps .step:after {
    right: 22px;
  }
  #steps .steps .step .icon {
    margin: 0 auto 20px auto;
  }
  #steps .steps .step .edge.desk {
    display: none;
  }
  #steps .steps .step .edge.mob {
    display: block;
    width: 100%;
    left: 0;
    height: 55px;
    top: unset;
    bottom: 0;
  }
  #location-vacancies h2 {
    margin-bottom: 18px;
  }
  #location-vacancies .titles {
    display: none;
  }
  #location-vacancies .items .item {
    flex-direction: column;
  }
  #location-vacancies .items .item {
    padding: 14px 0;
    border-top: 1px solid #D5D5D5;
    gap: 18px;
  }
  #location-vacancies .items .item .category {
    gap: 12px;
  }
  #location-vacancies .items .item .category img {
    height: 20px;
  }
  .apply-form form > .row {
    --bs-gutter-x: 0;
  }
  .apply-form .upload-row {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--main-text);
  }
   .apply-form .upload-row:first-of-type {
    margin-top: 30px;

   }
  .apply-form .upload-row:last-of-type {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .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;
  }
  #locations .location .icon {
    width: 250px;
  }
  #locations .location .icon .amount {
    right: 19px;
  }
}

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

}



