*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--gotham);
  font-weight: 400;
  font-size: 1rem;
}

body.menu-open {
  overflow: hidden;
}

body,
ul,
li,
h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-family: var(--montserrat);
  font-weight: 400;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
}

main {
  position: relative;
}

.overlay {
  position: absolute;
  display: none;
  width: 100%;
  height: 100vh;
  height: 100%;
  opacity: 0.4;
  background-color: var(--dark-blue);
  z-index: 1;
}

.overlay.menu-open {
  display: block;
}

.mobile {
  display: flex;
}

@media screen and (min-width: 1024px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .desktop {
    display: flex;
  }
}

.container {
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .container {
    width: 1440px;
    margin: 0 auto;
  }
}

/*the container must be positioned relative:*/
.custom-select {
  position: relative;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: var(--white);
  border-right: 1px solid var(--main-grey);
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: '';
  top: 18px;
  right: 14px;
  width: 24px;
  height: 24px;
  -webkit-mask: url('../../images/access/icons/chevron.svg') no-repeat;
  mask: url('../../images/access/icons/chevron.svg') no-repeat;
  -webkit-mask-size: 24px;
  mask-size: 24px;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--black);
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transition: transform 0.2s ease-in-out;
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  -ms-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.select-items {
  overflow: auto;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  width: calc(100% - 56px);
  color: var(--black);
  padding: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--black);
  font-family: var(--gotham);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
}

.select-items div {
  width: calc(100% - 32px);
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: var(--white);
  border: 1px solid var(--main-grey);
  top: 102%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--light-grey);
}

.hiddenStyle {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
