html {
  background-color: #333333;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 10pt;
  margin: 0;
  background-color: #fff;
}

h2 {
  margin-bottom: 5px;
}

/* HEADER */

.header-logo {
  user-select: none;
  height: 40px;
  cursor: pointer;
}

.header-logo-text {
  color: #3566a6;
  font-weight: 800;
  font-size: 16pt;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
}

.header-img-container {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  z-index: 1;
}

.header-img-container.small {
  height: 450px;
}

#header {
  background-color: #fffffff2;
  width: 100%;
  max-width: 100%;
  height: 80px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0px 100px;
  position: absolute;
}

#header.opaque {
  opacity: 1;
  top: 0;
  background-color: #fff;
}

#header,
#header * {
  z-index: 20;
}

#header h1 {
  cursor: pointer;
}

.header-title-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #111;
  user-select: none;
}

.header-options {
  text-transform: uppercase;
  font-weight: 600;
  color: #3566a6;
  margin-left: 80px;
}

a {
  color: #3566a6;
  text-decoration: none;
  transition: color 0.05s;
}

a:focus {
  color: #1f3b60;
  text-decoration: none;
}

a:hover {
  color: #222;
  text-decoration: none;
}

.header-options :not(:first-child) {
  margin-left: 40px;
}

.language-button {
  min-width: 140px;
  height: 32px;
  position: relative;
  border: 2px solid #333;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.language-button .globe {
  position: absolute;
  left: 10px;
  font-size: 18pt;
  top: 50%;
  transform: translateY(-50%);
}

.language-button .language-string {
  /* Also used by sort button, careful modifying */
  min-width: 140px;
  height: 32px;
  position: relative;
  border: 2px solid #333;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.language-button .chevron-down {
  position: absolute;
  right: 10px;
  font-size: 10pt;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu-btn {
  display: none;
  font-size: 14pt;
  user-select: none;
  cursor: pointer;
}

#hamburger-menu-section {
  width: 100%;
  max-width: 600px;
  height: auto;
  z-index: 10;
  align-items: flex-end;
  position: absolute;
  padding: 20px 0;
  top: -280px;
  right: 0;
  background: linear-gradient(0deg,#fffffff7,#fffffff2);
  transition: 0.1s ease-out;
  border: solid 1px #ccc;
  border-top: none;
  border-right: none;
  box-shadow: 0 2px 2px #2222;
}

#hamburger-menu-section.opaque {
  background-color: #fffffff7;
}
#hamburger-menu-section.visible {
  top: 80px;
}

.hamburger-options {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.header-link {
  text-transform: uppercase;
  font-weight: 600;
  color: #3566a6;
  user-select: none;
}

.hamburger-options > :not(:first-child) {
  margin-top: 10px;
}
.hamburger-options .language-button {
  display: block;
}

/* LANDING SECTION */
.landing-img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 720px;
  object-fit: cover;
  object-position: center;
  z-index: -10;
}

.landing-img.small {
  height: 450px;
}

/* FORM */

.landing-box-container {
  background-color: #ffffffcc;
  box-shadow: 0 3px 6px #0003;
  width: 70%;
  padding: 50px 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.landing-box-title {
  font-size: 16pt;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #1c385c;
  padding: 0 20px;
}

.landing-search-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.form-box {
  background-color: #fff;
  box-shadow: 0px 3px 6px #0003;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 20px;
  color: #333333;
  font-weight: 400;
  font-size: 8pt;
  padding: 10px 15px;
  margin-bottom: 20px;
}

.form-box.long {
  width: 380px;
}

.form-box.relative {
  position: relative;
}

.form-box.short {
  width: 190px;
}

.form-box.border-blue {
  box-shadow: 0px 0px 4px #00000002;
  border: solid 2px rgba(131, 171, 203, 0.4);
}

.form-box.border-blue.focus {
  border: solid 2px rgba(81, 147, 201, 0.877);
}

.form-box.border-error {
  border-color: #ff3939;
}

.form-icon-small {
  color: #1c385cdd;
  font-size: 17pt;
  user-select: none;
}

.form-icon-med {
  color: #1c385cdd;
  font-size: 22pt;
  user-select: none;
}

.form-icon-big {
  color: #1c385cdd;
  font-size: 25pt;
  user-select: none;
}

.form-text {
  border: none;
  background: none;
  margin-left: 10px;
  width: 100%;
  height: 90%;
  font-family: "Open Sans";
}

.form-text.no-icon {
  margin-left: 0;
}

.form-text:focus {
  outline: none;
}

/* DATE AND PICKER SELECT */
/* DOESNT WORK ON MOBILE */
/* https://stackoverflow.com/questions/50545478/input-date-format-with-dd-mm-yyyy-in-the-input-field */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button {
  display: none;
}

select:invalid {
  color: #888888;
}

.form-search-button {
  padding: 15px 50px;
  width: 150px;
  height: 50px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 10pt;
  color: #000;
  background-color: #ffcc2e;
  box-shadow: 0 3px 6px #0003;
  user-select: none;
  font: inherit;
  font-weight: 800;
  border: none;
  transition: background-color 0.2s;
}

.form-search-button:hover {
  background-color: #f1bf25;
}

.picker-container {
  display: flex;
  flex-direction: column;
}

.picker-title {
  font-weight: 600px;
  font-size: 9pt;
  margin-bottom: 10px;
}

/* PAGE CONTENT */

.privacy-content { 
  padding: 0 100px;
  max-width: 1400px;
}

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 80px;
}

.landing-title {
  font-size: 45pt;
  font-weight: 800;
  color: #222;
  text-align: center;
}

.landing-title.nomargin {
  margin-bottom: 0;
}

.landing-title.long {
  max-width: 800px;
  font-size: 20pt;
  padding: 0 50px;
}

.landing-title.white, .landing-subtitle.white { 
  color: white;
}

.landing-subtitle {
  font-size: 12pt;
  font-weight: 600;
  color: #444;
  margin-top: 15px;
  text-align: center;
  margin-left: 40px;
  margin-right: 40px;
}

.landing-head-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
}

.landing-sections-container {
  margin-top: 85px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

section {
  padding: 50px;
  font-size: 12pt;
  max-width: 1000px;
}

section b {
  color: #fd275d;
}

.content-image {
  width: 100%;
  max-width: 1000px;
  object-fit: cover;
  min-height: 300px;
}


.landing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #222;
  /*width: 800px;*/
  width: 50%;
  min-width: 450px;
  max-width: 800px;
  margin-bottom: 80px;
}

.landing-section .title {
  font-size: 16pt;
  color: #222;
  font-weight: 800;
}

.landing-section .desc {
  font-weight: 400;
  font-size: 12pt;
  text-align: center;
  width: 70%;
}

.dropdown-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 80%;
}

.dropdown-container > :not(:first-child) {
  margin-top: 25px;
}

.dropdown {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.dropdown .plus {
  font-size: 18pt;
}

.plus-item .title {
  cursor: pointer;
  user-select: none;
}

.plus-item .title .text {
  margin-top: 0;
}

.plus-item .title .plus-icon {
  transition: 0.1s;
}

.plus-item.expanded .title .plus-icon {
  transform: rotate(45deg);
}

.plus-item .title:hover .plus-icon {
  color: #fec000;
}

.plus-icon {
  font-size: 25pt;
  margin-right: 10px;
}

.plus-item .separator {
  background: none;
  height: 1px;
  flex-grow: 100;
  margin-left: 20px;
}

.plus-item .content {
  height: 0;
  overflow: hidden;
  width: 70%;
  opacity: 0;
  font-size: 11pt;
  font-weight: 400;
  color: #333333;
  transition: padding-top 0.1s, opacity 0.1s;
}

.plus-item.expanded .content {
  height: auto;
  padding: 10px 10px 20px 10px;
  opacity: 1;
}

.dropdown .text {
  font-size: 12pt;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 15px;
}

.dropdown .separator {
  height: 1px;
  background-color: #ccc;
  flex-grow: 100;
  margin-left: 40px;
  min-width: 30px;
}

/* BUTTON */
.red-button {
  font-family: "Open Sans";
  padding: 15px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 10pt;
  font-weight: 800;
  color: #fff;
  background-color: #fd275d;
  box-shadow: 0 3px 6px #0003;
  user-select: none;
  transition: background-color 0.2s;
}

.red-button:hover {
  background-color: #ec2356;
}

.red-button.loading {
  position: relative;
  color: #00000000;
}

/* LOADING SPINNER */
.spinner {
  height: 30px;
  width: 30px;
  margin: 0 auto;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  -webkit-animation: rotation 1s infinite linear;
  -moz-animation: rotation 1s infinite linear;
  -o-animation: rotation 1s infinite linear;
  animation: rotation 1s infinite linear;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
}

.spinner:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -3px;
  height: 100%;
  width: 100%;
  border-top: 3px solid rgba(255, 255, 255, 0.8);
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-right: 3px solid transparent;
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* FOOTER */
footer {
  height: 500px;
  width: 100%;
  background-color: #333;
  position: relative;
}

footer.spaced {
  margin-top: 50px;
}

.footer-content {
  position: absolute;
  left: 50%;
  width: 25%;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  transform: translateX(-50%);
}

.footer-col-1,
.footer-col-2 {
  display: flex;
  flex-direction: column;
}

.footer-section-title {
  font-family: "Open Sans Condensed";
  font-size: 14pt;
  font-weight: 800;
  color: #fff;
}

.footer-section-option,
.footer-section-option:focus {
  color: #666;
  font-size: 10pt;
  transition: color 0.05s;
  margin-bottom: 5px;
}

.footer-section-option:hover {
  color: #cfcfcf
}

.social-media-container {
  display: flex;
  flex-direction: row;
}

.social-media-container i {
  color: #fff;
  font-size: 25px;
  transition: color 0.1s;
}

.social-media-container i:hover {
  color: #FEC000;
}

.social-media-container > :not(:first-child) {
  margin-left: 12px;
}


@media (max-width: 710px) {
  .header-img-container {
    height: 900px;
  }

  .landing-img {
    height: 900px;
  }

  .landing-box-container {
    top: 120px;
    transform: translateX(-50%);
  }

  .form-box.long {
    width: 190px;
  }
  .landing-section {
    min-width: 400px;
  }
}

@media (max-width: 820px) {
  .footer-content {
    position: absolute;
    left: 150px;
    transform: none;
  }
}

@media (max-width: 300px) {
  .footer-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* HEADER */

@media (max-width: 1130px) {
  #header {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1130px) and (min-width: 950px) {
  #header .language-button {
    min-width: 40px;
  }
  #header .language-button i {
    display: none;
  }
  #header .language-button .chevron-down {
    display: none;
  }
  #header .language-button .globe {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

@media (max-width: 950px) {
  .header-options {
    display: none;
  }
  #header .language-button {
    display: none;
  }
  .hamburger-menu-btn {
    display: block;
  }
}

@media (max-width: 650px) {
  #hamburger-menu-section {
    max-width: inherit;
  }
}
