:root {
  --cc-bg: #fff;
  --cc-text: black;
  --cc-btn-primary-bg: #2bbada;
  --cc-btn-primary-text: var(--cc-bg);
  --cc-btn-primary-hover-bg: #1f98b3;
  --cc-btn-secondary-bg: #eaeff2;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #d8e0e6;
  --cc-toggle-bg-off: #919ea6;
  --cc-toggle-bg-on: var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly: #d5dee2;
  --cc-toggle-knob-bg: #fff;
  --cc-toggle-knob-icon-color: #ecf2fa;
  --cc-block-text: var(--cc-text);
  --cc-cookie-category-block-bg: #f0f4f7;
  --cc-cookie-category-block-bg-hover: #e9eff4;
  --cc-section-border: #f1f3f5;
  --cc-cookie-table-border: #e9edf2;
  --cc-webkit-scrollbar-bg: #cfd5db;
  --cc-webkit-scrollbar-bg-hover: #9199a0;
}

.navigation {
  width: 100%;
  background-color: #474747;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  color: #fff;
  height: 4em;
}

.navigation .navigation-item-link {
  text-decoration: none;
  margin: 0 1vw;
  color: inherit;
}

.navigation li {
  list-style-type: none;
  font-size: 1.2em;
  display: flex;
  align-items: center;
}

.navigation li .navigation-item-link {
  padding: 10px 20px;
  margin: 0;
}

.nav-bar-link-ul {
  width: 100%;
  height: 100%;
  display: flex;
  margin: 0 2vw 0 0;
  padding: 0;
}

.nav-bar-link-ul li {
  transition: .27s;
}

.nav-bar-link-ul li:nth-of-type(1) {
  margin-left: auto;
}

.nav-bar-link-ul li:hover {
  background-color: #fff;
  cursor: pointer;
  color: #000;
}

.nav-bar-link-ul li.active {
  background-color: #e9e9e9;
  cursor: default;
}

.nav-bar-link-ul li.active a {
  cursor: default;
  pointer-events: none;
}

li.logo-li {
  padding: 0 2vw 0 2vw;
}

.navigation-logo {
  text-decoration: none;
  color: inherit;
  font-family: "Montserrat",sans-serif;
  white-space: nowrap;
}

.navigation-logo .title {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1100px) {
  .navigation-logo .title {
    font-size: 1.2rem;
  }
}

.navigation-logo .subtitle {
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1100px) {
  .navigation-logo .subtitle {
    font-size: .8rem;
  }
}

.navigation-logo:hover {
  color: #fff;
  text-decoration: none;
}

li.nav-bar-expand-button-li {
  display: none;
}

.nav-bar-expand-button-li i {
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 1300px) {
  .navigation li {
    font-size: 1em;
  }

  .navigation li .navigation-item-link {
    padding: 10px 15px;
  }
}

@media screen and (max-width: 1100px) {
  .navigation li {
    font-size: .9em;
  }
}

@media screen and (max-width: 1000px) {
  .navigation li {
    font-size: .8em;
  }

  .navigation li .navigation-item-link {
    padding: 10px 8px;
  }
}

@media screen and (max-width: 800px) {
  .nav-bar-link-ul {
    flex-direction: column;
    position: fixed;
    top: 4em;
    left: 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    z-index: 200;
    background-color: #000 !important;
    display: none;
    align-items: center;
  }

  .nav-bar-link-ul li.active {
    background-color: transparent;
  }

  .nav-bar-link-ul.expanded {
    display: flex;
  }

  .nav-bar-link-ul li.nav-bar-expand-button-li {
    display: flex;
  }

  .navigation {
    width: 100vw;
    background-color: #474747;
    border-radius: 0;
    position: fixed;
    margin: 0 0 0 0;
    top: 0;
    z-index: 10;
  }

  .navigation-logo {
    display: block;
  }

  .nav-bar-link-ul li:nth-of-type(1) {
    margin-left: 0;
    margin-top: 10vh;
  }

  .navigation-item-link {
    display: flex;
    text-align: center;
    color: #fff !important;
    padding: 2vw 3vw;
  }

  .nav-bar-link-ul li:hover {
    background-color: transparent;
  }

  li.nav-bar-expand-button-li {
    display: flex;
    position: relative;
    margin-left: auto;
    margin-right: 3vw;
    height: 100%;
    z-index: 201;
    font-size: 18px;
    color: #fff;
    padding: 10px 15px 10px 15px;
    border-radius: 0;
  }

  .navigation li .navigation-item-link {
    font-size: 18px;
  }

  .content {
    margin-top: 4em;
  }
}

.contact-section {
  padding-top: 5rem;
  margin-bottom: 10rem;
}

@media (max-width: 992px) {
  .contact-section {
    padding-top: 3rem;
    margin-bottom: 5rem;
  }
}

@media only screen and (max-width: 768px) {
  .contact-section {
    padding-top: 2rem;
    margin-bottom: 5rem;
  }
}

.contact-section .negative-shift {
  margin-top: 8rem;
}

.contact-section .contact-info-card {
  box-shadow: 0 0 15px rgba(0,0,0,.15);
  background-color: #fff;
  position: relative;
  text-align: center;
  padding: 6rem 3rem 2rem;
  height: 100%;
}

@media (max-width: 768px) {
  .contact-section .contact-info-card {
    padding: 4rem 1rem 2rem;
  }
}

.contact-section .contact-info-card .title {
  margin-bottom: 2rem;
}

.contact-section .contact-info-icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to left, #2bbada 0%, #003a65 100%);
  width: 120px;
  height: 120px;
  color: #fff;
  fill: #fff;
  margin: 0 auto;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

@media (max-width: 768px) {
  .contact-section .contact-info-icon {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

.contact-section .qr-image {
  max-width: 200px;
  height: auto;
}

.deli-justify-cc {
  display: flex;
  justify-content: center;
  align-items: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  border-bottom: 1px solid #fff;
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 30px rgba(0,0,0,.85) inset !important;
  background-color: transparent;
}

.noFocus:focus {
  outline: none;
  box-shadow: none;
}

body {
  margin: 0 0 50px 0;
  font-size: 16px;
  color: #000;
  font-family: "Montserrat",sans-serif;
  font-weight: 400;
}

li.language-dropdown-li {
  padding-right: 0;
  display: flex;
  align-items: center;
}

.language-dropdown-button {
  padding: 13px 13px 13px 18px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
}

.language-dropdown-button.arrow-white:after {
  content: "";
  color: #fff;
}

.language-dropdown-button.arrow-black:after {
  content: "";
  color: #000;
}

.language-dropdown-button:focus,
.language-dropdown-button:hover,
.language-dropdown-button:active {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.language-dropdown-button a:focus,
.language-dropdown-button a:hover {
  background-color: transparent;
}

.language-dropdown-button>.dropdown-item {
  padding: 0;
}

.language-dropdown .white-font span {
  color: #fff;
}

.language-dropdown .black-font span {
  color: #000;
}

@media screen and (max-width: 800px) {
  .language-dropdown .dropdown-toggle::after {
    margin-top: 10px;
  }
}

.language-dropdown .dropdown-menu {
  min-width: 70px;
  width: 100%;
  border-radius: 0;
  position: absolute;
}

.language-dropdown .dropdown-menu .dropdown-item {
  padding-left: 0;
  padding-right: 0;
}

.language-dropdown .dropdown-menu .dropdown-item:focus,
.language-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #003a65;
  color: #fff;
}

.language-dropdown .dropdown-menu a {
  display: flex;
  justify-content: center;
}

.language-dropdown .dropdown-menu .flag-icon {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .language-dropdown-button:after {
    content: "";
    color: #fff !important;
  }
}

.back-to-top {
  display: none;
  position: fixed;
  right: 25px;
  bottom: 25px;
  padding: 4px 10px;
  font-size: 20px;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  z-index: 9;
  cursor: pointer;
}

