:root {
  --green: #007a3d;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}

body {
  font-family: Mulish, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: 'Recoleta-Bold';
  src: url('./fonts/recoleta-bold.ttf') format('truetype'),
    url('./fonts/recoleta-bold-webfont.woff2') format('woff2'),
    url('./fonts/recoleta-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./fonts/gothammedium-webfont.woff2') format('woff2'),
         url('./fonts/gothammedium-webfont.woff') format('woff'),
         url('./fonts/gothammedium-webfont.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;

}

h2 {
  font-family: 'Recoleta-Bold';
  color: var(--green);
  font-size: 1.875rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.75rem;
    line-height: 1.136363636363636;
    letter-spacing: 0.125rem;
  }
}

h3 {
  font-family: 'Recoleta-Bold';
  font-size: 2.4375rem;
  line-height: 1.282051282051282;
  font-weight: normal;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

p {
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.461538461538462;
  color: #848689;
  letter-spacing: 0.05rem;
}

@media screen and (min-width: 768px) {
  p {
    font-size: 1.125rem;
    line-height: 1.666666666666667;
  }
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.mb-45 {
  margin-bottom: 2.8125rem;
}

.mb-50 {
  margin-bottom: 3.125rem;
}

.mb-84 {
  margin-bottom: 5.25rem;
}

.header {
  height: 4.625rem;
  background-color: #007a3d;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .header {
    height: 5.625rem;
  }
}

.container {
  max-width: 90rem;
  margin: 0 auto;
}

.icon-navbar-btn {
  height: 1.0625rem;
  width: 1.125rem;
  color: #fff;
}

.icon-navbar-btn[name='close-outline'] {
  display: none;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  position: relative;
}

@media screen and (min-width: 992px) {
  .navbar {
    justify-content: flex-end;
    height: 5.625rem;
  }
}

.main-amsterdam {
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .main-amsterdam {
    margin-bottom: 2.8125rem;
  }
}

.menu {
  display: none;
  align-items: center;
  gap: 3.8125rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  opacity: 0;
}

.menu-open .menu {
  opacity: 1;
  pointer-events: auto;
  display: flex;
  width: 100%;
  background-color: #007a3d;
  gap: 1.25rem;
  padding: 4.125rem 1.25rem 3.75rem;

  a {
    font-size: 0.9375rem;
    line-height: 1.333333333333333;
    letter-spacing: 0.0625rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }

  .lang {
    img {
      display: none;
    }
  }

  li:first-child {
    a {
      font-weight: 700;
    }
  }
}

[lang="nl-NL"] {
  .menu {
    .lang-item-nl {
      a {
        font-weight: 700;
      }
    }

    .lang-item-en {
      a {
        font-weight: normal;
      }
    }
  }
}

[lang="en-US"] {
  .menu {
    .lang-item-en {
      a {
        font-weight: 700;
      }
    }

    .lang-item-nl {
      a {
        font-weight: normal;
      }
    }
  }
}

@media screen and (min-width: 992px) {
  .menu-open .menu {
    padding: 0;
    width: auto;
  }
}

.logo {
  position: absolute;
  top: 0.625rem;
  left: calc(50% - 3.875rem);
  padding-left: 0;

  img {
    max-width: 7.75rem;
  }
}

@media screen and (min-width: 992px) {
  .logo {
    padding-top: 1.25rem;
    padding-left: 2.25rem;
    left: 0;
    top: 0;

    img {
      max-width: 100%;
    }
  }
}

.menu-open {
  .logo {
    display: none;
  }
}

.menu-open .icon-navbar-btn[name='close-outline'] {
  display: block;
}

.menu-open .icon-navbar-btn[name='menu-outline'] {
  display: none;
}


@media screen and (min-width: 992px) {
  .menu-open {
  .logo {
    display: block;
  }
}
}

.navbar-btn {
  position: absolute;
  top: 0.9375rem;
  left: 1.0625rem;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .navbar-btn {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .menu {
    display: flex;
    opacity: 1;
    flex-direction: row;
    visibility: visible;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0 1.25rem 0 0;

    li:first-child {
      display: none;
    }

    a {
      display: block;
      font-size: 1rem;
      letter-spacing: 0.025rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      padding-top: 0.3125rem;
      padding-bottom: 0.3125rem;
    }

    .lang {
      margin-left: 0.375rem;

      a {
        padding: 0;
      }

      img {
        display: block;
      }

      a {
        span {
          display: none;
        }
      }
    }
  }
}

@media screen and (min-width: 992px) {
  .menu {
    gap: 2rem;
    margin: 0 1.75rem 0 0;

    a {
      letter-spacing: 0.05rem;
    }
  }
}

@media screen and (min-width: 1200px) {
  .menu {
    gap: 3.8125rem;
  }
}

.news {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr;
  gap: 1.61rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1.875rem;

  .news-info {
    display: grid;
    gap: 0.625rem;

    span {
      font-size: 0.6875rem;
      font-weight: 700;
      line-height: 1.272727272727273;
      letter-spacing: 0.02349525rem;
      color: #848689;
      display: block;
    }
  }

  .news-btn {
    font-size: 0.8125rem;
    line-height: 1.461538461538462;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: #007a3d;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border: 0.0625rem solid #007a3d;
    border-radius: 0.1875rem;
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .news {
    gap: 2.75rem;
    margin-left: 2.9375rem;
    margin-right: 2.9375rem;
    margin-bottom: 3.125rem;

    .news-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;

      span {
        font-size: 1.125rem;
        letter-spacing: 0.05rem;
      }
    }

    .news-btn {
      font-size: 1.0625rem;
      font-weight: 600;
      letter-spacing: 0.0625rem;
      padding: 0.5rem 1rem;
    }
  }
}

@media screen and (min-width: 992px) {
  .news {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1400px) {
  .news {
    align-items: normal;
  }
}

.premium-lager {
  display: flex;
  justify-content: center;
  margin-bottom: 0.4375rem;
}

.premium-lager-header {
  display: none;
  font-family: 'Recoleta-Bold';
  font-weight: 400;
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
}

@media screen and (min-width: 576px) {
  .premium-lager-block {
    background: url('./img/premium-lager-bg.png') bottom, linear-gradient(180deg, #007A3D 0%, #004C08 100%);
    background-size: contain, cover;
    background-repeat: repeat-x;
  }

  .premium-lager-header {
    display: block;
  }

  .premium-lager {
    margin-top: -1.5rem;
    margin-bottom: 1.875rem;
	margin-left: 3.125rem;
	margin-right: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .premium-lager {
    margin-top: -2rem;
    margin-bottom: 5.25rem;
  }

  .premium-lager-header {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 992px) {
  .premium-lager {
    margin-top: -2.75rem;
  }

  .premium-lager-header {
    font-size: 4.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .premium-lager-header {
    font-size: 5.5rem;
  }
}

@media screen and (min-width: 1400px) {
  .premium-lager {
    margin-top: -3.75rem;
  }

  .premium-lager-header {
    font-size: 6.65rem;
  }
}

.ingredients {
  max-width: 35.9375rem;
  margin: 0 auto;
  text-align: center;

  p {
    margin-left: 1.4375rem;
    margin-right: 1.4375rem;
    margin-bottom: 1rem;
  }

  h2 {
    margin-bottom: 1rem;
  }

  .ingredients-item {
    max-width: 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .ingredients {
    max-width: 50.5rem;

    p {
      margin-left: 4.71875rem;
      margin-right: 4.71875rem;
      margin-bottom: 1.5rem;
    }

    .ingredients-item {
      max-width: 100%;
    }
  }
}

.ingredients-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  .ingredients-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.625rem;
    margin-bottom: 1.875rem;
  }

  span {
    font-weight: 700;
    font-size: 0.6875rem;
    line-height: 1.545454545454545;
    letter-spacing: 0.0268666875rem;
    text-transform: uppercase;
    color: #007a3d;
  }
}

@media screen and (min-width: 576px) {
  .ingredients-items {
    gap: 1.875rem;
    margin-left: 4.71875rem;
    margin-right: 4.71875rem;
  }
}

@media screen and (min-width: 768px) {
  .ingredients-items {
    justify-content: space-between;
    margin: 0 0 5.25rem 0;

    span {
      font-size: 1.3125rem;
      line-height: 0.67741935483871;
      letter-spacing: 0.05rem;
    }
  }
}

.brewery {
  text-align: center;
  margin: 0 1.4375rem 1.875rem;
  max-width: 58.9375rem;

  h2 {
    margin-bottom: 1rem;
  }
}

.brewery-item:nth-of-type(1) {
  order: 2;
}

.brewery-items {
  display: grid;
  row-gap: 1.875rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 2.375rem;
}

.brewery-img {
  position: relative;
}

.brewery-desc {
  background: linear-gradient(180deg, #007A3D 0%, #004C08 100%);
  color: #fff;
  text-align: center;
  position: relative;
  margin: -4.455rem 1.875rem 0;
  padding: 1.875rem 1.3125rem;

  h3 {
    font-size: 1.875rem;
  }

  p {
    color: #fff;
    font-size: 0.8125rem;
    line-height: 1.461538461538462;
  }
}

@media screen and (min-width: 576px) {
  .brewery-desc {
    padding-left: 3.625rem;  
    padding-right: 3.625rem; 
  }
}


@media screen and (min-width: 768px) {
  .brewery {
    margin: 0 auto 2.9375rem;
    padding: 2.125rem 3.625rem;
  }

  .brewery-item:nth-of-type(2) {
    order: 2;
  }

  .brewery-items {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.875rem;
  }

  .brewery-desc {
    p {
      color: #fff;
      font-size: 0.8125rem;
      line-height: 1.461538461538462;
    }
  }
}

@media screen and (min-width: 992px) {
    .brewery-items {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 2.375rem;
      margin-left: 2.875rem;
      margin-right: 2.875rem;
    }

    .brewery-desc {
    h3 {
      font-size: 2.4375rem;
    }

    p {
      color: #fff;
      font-size: 1rem;
      line-height: 1.25;
    }
  }
}

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

  .brewery-desc { 
    min-height: 13.875rem;
    margin: -6.8125rem 5.75rem 0;
  }
}

.pop-up-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pop-up-img-block {

}

.pop-up-img-block {
  position: relative;
  display: block;
  cursor: pointer;
}

.pop-up-img {
  display: block;
}

.pop-up-img-block::before {
  content: '';
  opacity: 0;
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6) url('./img/youtube-hover.svg') center center/50px no-repeat;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.pop-up-img-block:hover::before {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .pop-up-img-wrapper {
    margin-bottom: 2.375rem;
  }

  .pop-up-img-block::before {
    background-size: 82px 94px;
  }
}

.amsterdam-beer-history-block {
  background: linear-gradient(180deg, #007A3D 0%, #004C08 100%);
}

.amsterdam-beer-history {
  display: flex;
}

.amsterdam-beer-history-info {
  padding: 1.875rem 1.5rem;
  background: url('./img/amsterdam-street.webp') top center no-repeat, linear-gradient(180deg, #007A3D 0%, #004C08 100%);
  background-blend-mode: multiply;
  background-size: contain;

  p {
    font-size: 0.8125rem;
    line-height: 1.461538461538462;
    letter-spacing: 0.05rem;
    color: #fff;
    margin-bottom: 1rem;
  }

  h4 {
    display: block;
    font-family: 'Recoleta-Bold';
    font-weight: 400;
    font-size: 3.1rem;
    line-height: 0.95404984423676;
    letter-spacing: 0.062057rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.9375rem;
  }
}

.amsterdam-beer-history-title {
  display: none;
  background: url('./img/amsterdam-street.webp') no-repeat, linear-gradient(180deg, #007A3D 0%, #004C08 100%);
  background-blend-mode: multiply;
  background-size: cover;
  flex: 0 0 50%;

  img {
    display: block;
    position: relative;
  }

  h4 {
    position: absolute;
    font-family: 'Recoleta-Bold';
    font-size: 3.1875rem;
    line-height: 0.909090909090909;
    letter-spacing: 0.115131875rem;
    text-transform: uppercase;
    color: #fff;
    z-index: 1;
    padding: 1.8125rem 0.8125rem 1.8125rem 2rem;
  }
}

@media screen and (min-width: 576px) {
  .amsterdam-beer-history-info {
    background-size: cover;
    padding: 6rem 3.5rem 6rem 4.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .amsterdam-beer-history {
    margin-bottom: 3.125rem;
  }

  .amsterdam-beer-history-info {
    background: url('./img/background-x.png') center center no-repeat, linear-gradient(180deg, #007A3D 0%, #004C08 100%);
    flex: 0 0 50%;
    background-blend-mode: normal;
    padding: 8rem 3.5rem 8rem 4.0625rem;

    h4 {
      display: none;
    }

    p {
      font-size: 1rem;
      line-height: 1.625;
      letter-spacing: 0.0625rem;
      text-align: center;
      margin-bottom: 1.625rem;
    }
  }

  .amsterdam-beer-history-title {
    display: block;

    h4 {
      width: min-content;
      font-size: 3rem;
    }
  }
}

@media screen and (min-width: 992px) {
  .amsterdam-beer-history-title {
    h4 {
      font-size: 4.25rem;
    }
  }
}

@media screen and (min-width: 1440px) {
  .amsterdam-beer-history-title {
    h4 {
      font-size: 6.1875rem;
    }
  }
}

.instagram-link {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2rem;

  img {
    display: block;
  }

  a {
    color: #007a3d;
    text-decoration: none;
  }
}

.instagram-link-mob {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;

  img {
    display: block;
    width: 1.46375rem;
    height: auto;
  }

  a {
    color: #007a3d;
    text-decoration: none;
  }

  h2 {
    font-weight: 400;
    font-size: 1.2922375rem;
    line-height: 1.112411611642597;
    letter-spacing: 0.0587381875rem;
  }
}

@media screen and (min-width: 768px) {
  .instagram-link {
    display: flex;
  }

  .instagram-link-mob {
    display: none;
  }
}

.follow-us {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  list-style-type: none;
  margin-bottom: 3.375rem;
}

.follow-us-mob {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  list-style-type: none;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1.125rem;
}

@media screen and (min-width: 768px) {
  .follow-us {
    display: flex;

    img {
      width: 19.6875rem;
    }
  }

  .follow-us-mob {
    display: none;
  }
}

.contact-block {
  background: linear-gradient(180deg, #007A3D 0%, #004C08 100%);
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  background: linear-gradient(180deg, #007A3D 0%, #004C08 100%);
  margin-bottom: 0.4375rem;
}

@media screen and (min-width: 768px) {
  .contact {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }
}

.contact-img {
  position: relative;

  img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  span {
    position: absolute;
    bottom: 1.1875rem;
    left: 0;
    font-family: 'Recoleta-Bold';
    font-weight: 400;
    font-size: 3.625rem;
    line-height: 0;
    letter-spacing: 0.067896875rem;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    width: 100%;
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .contact-img {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .contact-img {
    display: block;
    height: 100%;

    span {
      font-size: 4.5rem;
      line-height: 0.25;
    }
  }
}

@media screen and (min-width: 1200px) {
  .contact-img {
    span {
      font-size: 5.7rem;
      line-height: 0.25;
    }
  }
}

@media screen and (min-width: 1400px) {
  .contact-img {
    span {
      bottom: 0;
      font-size: 6.6rem;
      line-height: 0.67;
      letter-spacing: 0.125rem;
    }
  }
}

.contact-form {
  padding: 1.8125rem 1.6875rem 1.9375rem;
}

@media screen and (min-width: 576px) {
  .contact-form {
    padding: 3.25rem 5.0625rem 5.4375rem 5.4375rem;
  }
}

@media screen and (min-width: 992px) {
  .contact-form {
    padding: 1rem 2.25rem 1rem 2.25rem;
  }
}

@media screen and (min-width: 1200px) {
  .contact-form {
    padding: 1rem 5.0625rem 1rem 5.4375rem;
  }
}

form {
  display: grid;
  gap: 0.4375rem;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.form-group {
  display: grid;
  gap: 0.125rem;

  label {
    font-size: 0.625rem;
    line-height: 1.2;
    letter-spacing: 0.04375rem;
    color: #fff;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    font-family: 'Mulish';
    font-size: 0.8125rem;
    line-height: 1.538461538461538;
    letter-spacing: 0.0625rem;
    padding: 0.0625rem;
    border-radius: 0.1875rem;
    border: none;
    width: 100%;
  }
}

@media screen and (min-width: 576px) {
  form {
    gap: 1rem;
  }

  .form-group {
    label {
      font-size: 0.8125rem;
      line-height: 1.4;
      letter-spacing: 0.0625rem;
    }

      input[type="text"],
      input[type="email"],
      textarea {
      padding: 0.5rem;
    }
  }
}

@media screen and (min-width: 992px) {
  form {
    gap: 0.5rem;
  }

  .form-group {
    label {
      line-height: 1.538461538461538;
    }

      input[type="text"],
      input[type="email"],
      textarea {
      padding: 0.2rem;
    }
  }
}

@media screen and (min-width: 1200px) {
  form {
    gap: 1rem;
  }

  .form-group {
      input[type="text"],
      input[type="email"],
      textarea {
      padding: 0.5rem;
    }
}
}

.form-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.6875rem;

  .submit {
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .form-action {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.wpcf7-not-valid-tip {
  color: #fff;
  font-size: 0.625rem;
}

@media screen and (min-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 0.875rem;
  }
}

.checkbox {
  position: relative;

  label {
    display: flex;
    align-items: center;
    height: 100%;

    a {
      color: #fff;

      &:hover {
        text-decoration: none;
      }
    }
  }

  input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  input:checked ~ .wpcf7-list-item-label:after {
    display: block;
  }

  .wpcf7-list-item{
    margin: 0;
    display: block;
  }

  .wpcf7-list-item-label {
    position: relative;
    width: 100%;
    padding-left: 2rem;
    padding-top: 0.3125rem;
    padding-bottom: 0.25rem;
  }

  .wpcf7-list-item-label::before {
    position: absolute;
    top: 0.0625rem;
    left: 0;
    height: 1.125rem;
    width: 1.125rem;
    background-color: transparent;
    border: 0.0625rem solid #fff;
    border-radius: 0.11375rem;
  }

  .wpcf7-list-item-label:after {
    content: '';
    position: absolute;
    display: none;
    left: 0.46rem;
    top: 0.2rem;
    width: 0.1875rem;
    height: 0.5625rem;
    border: solid white;
    border-width: 0 0.125rem 0.125rem 0;
    transform: rotate(45deg);
  }
}

.wpcf7-spinner {
  display: none;
}

@media screen and (min-width: 576px) {
  .checkbox {
    padding-top: 0.375rem;

    .wpcf7-list-item-label {
      padding-top: 0;
      padding-bottom: 0;
    }
  }
}

@media screen and (min-width: 768px) {
  .wpcf7-list-item-label::before {
    height: 1.125rem;
    width: 1.125rem;
    border-radius: 0.1875rem;
  }
}

input.submit-btn {
  font-family: Mulish, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.461538461538462;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #fff;
  background-color: transparent;
  border: 0.0625rem solid #fff;
  border-radius: 0.118125rem;
  padding: 0.1875rem 2.2305rem;

  &:hover {
    cursor: pointer;
  }

  &:disabled {
    opacity: 0.6;
  }
}

@media screen and (min-width: 768px) {
  input.submit-btn {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    letter-spacing: 0.0625rem;
    font-weight: 400;
    border-radius: 0.1875rem;
    padding: 0.40625rem 3.28125rem;
  }
}

.contact-form-reply {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.625rem;

  p {
    font-weight: 300;
    font-size: 0.8125rem;
    line-height: 1.461538461538462;
    letter-spacing: 0.0625rem;
    color: #FFFFFF;
    width: 50%;
  }
}

.back-btn {
  font-family: 'Mulish';
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.538461538461538;
  letter-spacing: 0.0625rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0.1875rem;
  background-color: transparent;
  text-transform: uppercase;
  padding: 0.41rem 2.932rem;
}

.contact-form-reply-header {
  font-size: 1.875rem;
  line-height: 1.361702127659574;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 25rem;
}

@media screen and (min-width: 576px) {
  .contact-form-reply-header {
    font-size: 2.9375rem;
    max-width: 100%;
  }
}

footer {
  background-color: #17341a;
  text-align: center;
  padding: 1.375rem;

  p {
    font-size: 0.448125rem;
    line-height: 1.255230125523013;
    letter-spacing: 0.02349525rem;
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  footer {
    p {
      font-size: 0.6875rem;
      line-height: 1.272727272727273;
      letter-spacing: 0.05rem;
    }
  }
}

.menu-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.9375rem;

  li {
    font-weight: 500;
    font-size: 0.5625rem;
    line-height: 1.222222222222222;
    letter-spacing: 0.0272078125rem;

    padding: 0;
    list-style-type: none;
  }

  .lang {
    img {
      width: 1.375rem;
    }
  }

  a {
    text-decoration: none;
    color: #fff;
    padding: 0.4375rem 0;
  }
}

@media screen and (min-width: 768px) {
  .menu-footer {
    gap: 6rem;
    margin-bottom: 1.875rem;

    li {
      font-weight: 500;
      font-size: 0.8125rem;
      line-height: 1.230769230769231;
      letter-spacing: 0.05rem;
      text-transform: uppercase;
    }

    .lang {
      img {
        width: auto;
      }
    }
  }
}

.footer-logo {
  width: 3.75rem;
  margin-bottom: 0.5625rem;
}

@media screen and (min-width: 768px) {
  .footer-logo {
    width: auto;
    margin-bottom: 1.125rem;
  }
}

.swiper-slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding: 3.75rem 1.4375rem;

  h3 {
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    color: #fff;
  }

  p {
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.461538461538462;
    letter-spacing: 0.05rem;
    color: #fff;
  }
}

@media screen and (min-width: 576px) {
  .swiper-slide-text {
    top: 0;
    left: 50%;
    justify-content: center;
    padding-left: 0;
  }
}

@media screen and (min-width: 992px) {
  .swiper-slide-text {
    padding: 4.75rem;
    max-width: 43.75rem;

    h3 {
      font-size: 2.5rem;
      line-height: 1.136363636363636;
      letter-spacing: 0.125rem;
    }

    p {
      font-size: 1rem;
      line-height: 1.5;
      letter-spacing: 0.05rem;
    }
  }
}

@media screen and (min-width: 1200px) {
  .swiper-slide-text {
    h3 {
      font-size: 2.75rem;
    }

    p {
      font-size: 1.125rem;
      line-height: 1.722222222222222;
    }
  }
}

.swiper-container {
  list-style: none;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .swiper-container {
    margin-bottom: 4.5rem;
  }
}

.swiper-wrapper {
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  width: 100%;
  z-index: 1;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
	bottom: 1.875rem;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8125rem;
}

.swiper-pagination-bullet {
    width: 0.8125rem;
    height: 0.8125rem;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--green);
}


/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; 
  z-index: 11; 
  padding-top: 2rem;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .modal {
    align-items: center;
    justify-content: center;
    padding-top: 0;
  }
}

.container-iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* Modal Content */
.modal-content {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  position: relative;
  width: 95%
}

@media screen and (min-width: 768px) {
  .modal-content {
    width: 80%;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .modal-content {
    width: 60%;
  }
}

/* Close button (X) */
.close {
  position: absolute;
  top: -13px;
  right: -2px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
}


.modal-content-age {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--green);
  max-width: 40.125rem;
  margin: 0 auto;
  width: 90%;
  padding: 1.5625rem 2.8125rem 3.25rem;
  color: white;

  img {
    margin-bottom: 0.5625rem;
  }

  h3 {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.875rem;
  }

  p {
    font-family: 'Mulish';
    font-weight: 500;
    font-size: 0.6875rem;
    line-height: 1.545454545454545;
    text-align: center;
    color: #fff;
  }
}

.age-verification {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.age-verification-btn {
  font-family: 'Mulish';
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.538461538461538;
  letter-spacing: 0.0625rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0.1875rem;
  background-color: transparent;
  text-transform: uppercase;
  padding: 0.25rem 1.625rem;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .modal-content-age {
    width: 100%;
    padding-left: 8.8125rem;
    padding-right: 8.8125rem;
  }
}

.privacy-policy {
  max-width: 96%;
  background-color: #fff;
  margin: 0 auto;
  max-height: calc(100vh - 64px);
  min-height: 320px;
  overflow-y: auto;

    h3 {
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;

  }
}

@media screen and (min-width: 768px) {
  .privacy-policy {
    max-height: calc(100vh - 120px);
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .privacy-policy {
    max-width: 60.875rem;
  }
}



.privacy-policy-header {
  background-color: var(--green);
  padding-top: 2.375rem;
  padding-bottom: 2.375rem;
  margin-bottom: 1.5rem;
  position: relative;

  h3 {
        color: #fff;
  }
}

.privacy-policy-close {
  content:'';
  position: absolute;
  top: 0.75rem;
  right: 1.375rem;
  cursor: pointer;
}

.privacy-policy-content {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.625rem;

  h3 {
    color: #000;
  }

  p {
    font-family: 'Mulish';
    font-weight: 500;
    font-size: 0.6875rem;
    line-height: 1.363636363636364;
    text-align: center;
    letter-spacing: 0.03125rem;
    color: #000000;
  }
}

@media screen and (min-width: 768px) {
  .privacy-policy-content {
    padding: 0 2rem 2rem;
  }
}

@media screen and (min-width: 1200px) {
  .privacy-policy-content {
    padding: 0 10.4375rem 3.9375rem;
  }
}

@media screen and (min-width: 992px) {
  .menu .lang-item {
    display: none;
  }
}

.lang-menu-icon {
  list-style-type: none;
  margin-left: 0;
}

.lang-item-first {
  position: relative;
  padding-top: 1.5625rem;
}

.lang-item-first:before {
  content: '';
  top: 0;
  left: calc(50% - 0.9375rem);
  position: absolute;
  height: 0.0625rem;
  width: 1.875rem;
  background-color: #fff;
  opacity: 50%;
}

[lang="nl-NL"] .amsterdam-beer-history-info h4 {font-size: 2.75rem;}


@media screen and (min-width: 768px) {
  [lang="nl-NL"] {
    .brewery-desc {
      padding-left: 1.625rem;
      padding-right: 1.625rem;

      h3 {
          font-size: 1.675rem;
      }
    }

    .amsterdam-beer-history-title {
      h4 {
          font-size: 2.65rem;
      }
    }
  }
}

@media screen and (min-width: 992px) {
  [lang="nl-NL"] {
    .brewery-desc {
      h3 {
          font-size: 2.2375rem;
      }
    }

    .amsterdam-beer-history-title {
      h4 {
          font-size: 3.5rem;
      }
    }
  }
}

@media screen and (min-width: 1200px) {
  [lang="nl-NL"] {
    .brewery-desc {
      padding-left: 3.625rem;
      padding-right: 3.625rem;

      h3 {
          font-size: 2.4375rem;
      }
    }

    .amsterdam-beer-history-title {
      h4 {
          font-size: 4.45rem;
      }
    }
  }
}

@media screen and (min-width: 1440px) {
  [lang="nl-NL"] {
    .amsterdam-beer-history-title {
      h4 {
          font-size: 5rem;
      }
    }
  }
}
