*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

a{
  color: #000;
}

h3{
  font-size: 65px;
  font-weight: 900;
  margin-bottom: 25px;
}

main{
  display: flex;
  flex-direction: column;
}

header, footer {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

header img, footer img{
    max-width: 92px;
}

section {
    width: 100%;
    position: relative;
    display: inline-flex;
}

#first-section{
  margin-bottom: 30px;
}

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

section .blurred {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

section .blurred .text-container {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
}

section .blurred .text-container div{
  text-align: center;
}

section .blurred .text-container div p{
  margin-bottom: 25px;
}

section .not-blurred {
    width: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

section .not-blurred .text-container{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 40px 0;
}

section .not-blurred .text-container div{
  text-align: center;
  color: #FFF;
}

section .not-blurred .text-container div img{
  width: 20%;
}

section .not-blurred .text-container div picture{
  margin: 0 10px;
}

section .not-blurred .text-container .qr-code img{
  display: inline-block;
}

.mob_d-none{
  display: block;
}

.desk_d-none{
  display: none;
}

footer{
  background-color: #000;
  flex-direction: column;
  align-items: center;
}

footer a#text{
  color: #fff;
  margin-bottom: 30px;
  text-decoration: none;
}

footer img{
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {

  h3{
    font-size: 28px;
  }

  header{
    padding: 15px 0;
  }

  header img {
    max-width: 92px;
  }

  section{
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #first-section{
    margin-bottom: 0;
  }

  section .blurred{
    position: relative;
    width: 100%;
    top: inherit;
    transform: none;
    left: inherit;
    background-color: #fff;
    height: auto;
  }

  section .blurred .text-container{
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 0 0;
  }

  section .blurred .text-container div{
    margin-bottom: 40px;
  }

  section .not-blurred{
    width: 100%;
    position: absolute;
    bottom: 0;
    top: inherit;
    transform: none;
  }

  section .not-blurred .text-container .qr-code{
    position: absolute;
    top: 0;
  }

  section .not-blurred .text-container p{
    margin-bottom: 10px;
  }

  .mob_d-none{
    display: none;
  }

  .desk_d-none{
    display: block;
  }

  .desk_d-none .qr-code{
    padding: 0 15%;
  }

  .desk_d-none .qr-code img{
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 650px) and (max-width: 991px) {
  p, a{
    font-size: 22px;
  }

  h3{
    font-size: 50px;
  }

  section .not-blurred .text-container{
    padding: 70px 0;
  }
}

@media screen and (min-width: 991px) and (max-width: 1250px) {
  h3{
    font-size: 55px;
  }
}
