@font-face {
  font-family: ItalicNo1;
  src: url(../fonts/BrunelDeck-Italic.ttf);
}
@font-face {
  font-family: ItalicNo2;
  src: url(../fonts//BrunelDeck-ItalicNo2.ttf);
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::-moz-selection {
  background-color: black;
  color: white;
}
*::selection {
  background-color: black;
  color: white;
}
body,
html {
  background: #ececec;
}
header {
  height: 680px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 15px 0 50px rgba(0, 0, 0, 0.2);
  box-shadow: 15px 0 50px rgba(0, 0, 0, 0.2);
}
.headerFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1080px;
  height: 100%;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.headerFlex__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.headerFlex__image img {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.headerFlex__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 27rem;
  width: 50%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-item-align: end;
  align-self: flex-end;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.headerFlex__titles * {
  width: 100%;
}
.page-title {
  font-family: ItalicNo1;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.page-title span{
  width: unset;
  padding-top: 6px;
}

.page-title img{
  height: 1.25rem;
  width: auto;
  margin-right: .3rem;
}
.headerFlex__titles h1 {
  font-family: ItalicNo2;
  text-transform: uppercase;
}
.headerFlex__titles h1 span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  background: black;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.headerFlex__titles h1 div {
  margin-top: 1rem;
  font-size: 4rem;
  font-weight: normal;
  line-height: 6rem;
}
.headerFlex__titles h2 {
  letter-spacing: 2rem;
  font-size: 0.9rem;
  margin-bottom: 4rem;
  margin-top: 0.5rem;
}
.headerFlex__titles h2,
.headerFlex__titles > span,
.headerFlex__titles > a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.headerFlex__titles div[link] span {
  color: black;
  text-decoration: none;
  margin-top: 1rem;
  text-transform: uppercase;
  border-bottom: 1px solid black;
  padding-bottom: 0.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.headerFlex__titles div[link] {
  width: 100%;
  text-align: center;
  margin: 1rem 0 0 0;
}
.methodology{
  background-color: #3e3e3e;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  overflow: hidden;
}
.methodology > div{
    max-width: 1000px;
    margin: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.methodology > div p{
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-align: justify;
  margin-bottom: 1rem;
}
.methodology > div i{
  cursor: pointer;
  font-size: 1.5rem;
}

/*****************************/
/*        MAIN SECTION       */
/*****************************/
.main {
  padding: 2rem 0 12.5rem 0;
  position: relative;
}
.container {
  max-width: 900px;
  margin: 0 auto 0 auto;
}
.flexContainer {
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 22rem;
  max-height: 22rem;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.item.new .item__head::before{
  content: "ÚJ";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: #d7b740;
  padding: 3px 15px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 2;
}

.item__img {
  width: 39%;
  height: 350px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.item__head {
  width: calc(61% - 1.5rem);
  background: white;
  margin-left: 1.5rem;
  padding: 2rem;
}
.item__head__title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item__head__title h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  width: calc(100% - 55px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.item__head h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid black;
  margin-top: .5rem;
}
.item__head__title h2 > span {
  font-family: ItalicNo2;
  margin-left: 0.25rem;
  font-weight: normal;
  margin-top: .4rem;
}
.content__head__count {
  width: 47px;
  height: 47px;
  background-color: black;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item__head__list {
  margin-top: 0.5rem;
}
.item__head__list div {
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}
.item__head__list div>span{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.item__content__large p{
    margin: 2rem 0 4rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
.item__content__large blockquote, .item__content__small blockquote{
    margin: 2rem 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    max-width: 75%;
    margin-left: 1.5rem;
}
.item__content__small{
    display: none;
    width: 100%;
    height: 100%;
    background: white;
    margin: 0;
    padding: 2rem 2rem 5rem;
    overflow: hidden;
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
.item__overlay {
  position: absolute;
  width: calc(61% - 1.5rem);
  bottom: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: -o-linear-gradient(
    bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.97) 60%,
    rgba(255, 255, 255, 0.9) 70%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom, left top,
    from(rgba(255, 255, 255, 1)),
    color-stop(50%, rgba(255, 255, 255, 1)),
    color-stop(60%, rgba(255, 255, 255, 0.97)),
    color-stop(70%, rgba(255, 255, 255, 0.9)),
    to(rgba(255, 255, 255, 0.3))
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.97) 60%,
    rgba(255, 255, 255, 0.9) 70%,
    rgba(255, 255, 255, 0.3) 100%
  );
  height: 7rem;
  z-index: 1;
}
.item__overlay__toggle {
  position: absolute;
  left: 2rem;
  bottom: 1rem;
  color: black;
  background-color: white;
  border: 2px solid black;
  padding: 0.5rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.item__content__toggle{
  display: none;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-size: 1.5rem;
  border: 2px solid black;
  width: 47px;
  height: 47px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}


/********************************/
/*             List Header      */
/********************************/

.listHeader {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 2rem 0 5rem;
}
.listHeader nav {
  width: 100%;
  max-width: 50rem;
  margin-bottom: 2rem;
}
.listHeader nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.listHeader nav ul li {
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
  margin: 0 0.5rem;
}
.listHeader nav ul li:hover {
  background: black;
  color: white;
}
.listHeader nav ul li[active] {
  background: white;
  color: black;
}
.listHeader p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  width: 90%;
  text-align: center;
}

@media (max-width: 1140px) {
  .headerFlex__image {
    overflow: hidden;
  }
}

@media (max-width: 960px) {
  .headerFlex__image {
    width: 30%;
  }
  .headerFlex__titles {
    width: 70%;
  }
  .flexContainer {
    max-width: 100%;
    margin: 0 1rem;
  }
}

@media (max-width: 768px) {
  .headerFlex__image {
    width: 100%;
    position: absolute;
    top: 0;
  }
  .headerFlex__image img {
    height: 275px;
    position: absolute;
    right: -7rem;
  }
  header {
    height: 250px;
    position: relative;
  }
  .headerFlex__titles {
    z-index: 2;
    height: 100%;
  }
  .headerFlex__titles > div {
    height: unset;
    font-size: 1rem;
    margin: 1rem 0 1rem 0;
  }
  .headerFlex__titles h1 span {
    font-size: 0.8rem;
  }
  .headerFlex__titles h1 div {
    font-size: 1.8rem;
    margin-top: 0.5rem;
    line-height: 2rem;
    margin-top: 1rem;
  }
  .headerFlex__titles h2 {
    margin: 0;
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  .headerFlex__titles > span {
    font-size: 0.6rem;
    margin-top: 0.5rem;
  }
  .headerFlex__titles div[link] {
    font-size: 0.6rem;
    margin-top: 0.4rem;
  }

  .listHeader {
    margin-top: 0;
  }
  .listHeader nav {
    margin-bottom: 1rem;
  }
  .listHeader nav ul li {
    font-size: 0.8rem;
    margin: 0.5rem;
  }
  .item{
    min-height: 280px;
    max-height: 280px;
  }
  .item__img{
    width: 30%;
    height: 280px;
  }
  .item__head, .item__overlay{
    width: calc(70% - 1.5rem);
  }
}

@media (max-width: 576px) {

  .item__head h3{
    font-size: .8rem;
    margin-top: 0;
    padding-bottom: .4rem;
  }
  .item__head__list div{
    font-size: .7rem;
  }
  .item__content__large{
    display: none;
  }
  .item__content__small{
    display: block;
    text-align: justify;
  }
  .item{
    background-color: white;
    padding: 1rem;
    min-height: 380px;
    max-height: 380px;
  }
  .item__img{
    width: 40%;
    height: 250px;
  }
  .item__head{
    width: calc(60% - 1rem);
    padding: 0;
    margin-left: 1rem;
  }
  .item__overlay{
    width: 100%;
    z-index: 2;
  }
  .item__overlay__toggle{
    left: 50%;
    TRANSFORM: translateX(-50%);
  }
  .content__head__count{
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
  }
  .item__head__title h2{
    width: 100%;
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .item__head__title h2>span{
    margin-top: .2rem;
  }
  .item__content__small blockquote{
    max-width: 100%;
    margin: 2rem 1rem 1rem;
  }
  .methodology > div i{
    margin-top: 2rem;
  }
}

@media (max-width: 400px) {
  .flexContainer{
    margin: 0;
  }
  .item__content__small{
    padding: 1rem 0rem 5rem;
  }
}

.bannerWrapper{
  width: 100%;
  margin-bottom: 3rem ;
}

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

.bannerWrapper .mobile{
  display: none;
}

@media (max-width: 600px){
  .bannerWrapper .mobile{
    display: block;
  }
  .bannerWrapper .desktop{
    display: none;
  }
}

.printedWrapper{
  position: fixed;
  left: calc(50% + 500px);
  bottom: 1rem;
  background-color: #fff;
  padding: 1rem;
  width: 300px;
  z-index: 3;
}

.printedWrapper img{
  width: 100%;
}

.printedWrapper h2{
  text-align: center;
  margin-bottom: 1rem;
}

@media(max-width: 1700px){
  .printedWrapper h2{
    font-size: 1.1rem;
  }
  .printedWrapper{
    width: 200px;
  }
}

@media(max-width: 1425px){
  .printedWrapper{
    left: unset;
    right: 1rem;
  }
}

@media(max-width: 1000px){
  .printedWrapper{
    display: none;
  }
}

@media(max-width: 576px){
  .content__head__count{
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .item.new{
    padding-top: 2rem;
  }
  .item.new .content__head__count{
    top: 2.5rem;
  }
  .item.new .item__head::before{
    bottom: unset;
    right: unset;
    top: -1px;
    left: 0;
    width: 100%;
  }
}

.nav-buttons{
  text-align: center;
  margin-top: 1rem;
}

.nav-buttons span{
  margin: 0 1rem;
  font-weight: 300;
  cursor: pointer;
}

.nav-buttons span:hover{
  text-decoration: underline;
}

.hidden{
  display: none;
}