@font-face {
  font-family: Roboto-Regular;
  src: url(../fonts/Roboto-Regular.ttf); }

@font-face {
  font-family: Roboto-Medium;
  src: url(../fonts/Roboto-Medium.ttf); }

* {
  margin: 0;
  padding: 0;
  font-family: Roboto-Regular, sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.active {
  border-bottom: 2px solid #F9F017; }

.wrapper {
  background: url(../img/background.png) no-repeat;
  background-size: cover;
  overflow: auto;
  height: 100vh;
  width: 100vw; }

.content-wrap {
  max-width: 1220px;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px; }
  .header__links {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-transform: uppercase; }
  .header__link {
    margin-right: 80px; }
    .header__link:last-child {
      margin-right: 0; }
  .header__href {
    outline: none;
    text-decoration: none;
    color: #F9F017;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 5px; }
    .header__href:hover {
      font-weight: bold;
      color: #FFD540; }
  .header__input {
    outline: none;
    border: 2px solid #F9F017;
    padding: 3px 30px 3px 20px;
    color: #6b778d; }

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 90%; }

.cards {
  padding-top: 100px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto; }
  .cards__items {
    list-style-type: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    -webkit-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px; }
  .cards__item {
    position: relative;
    cursor: pointer; }
    .cards__item:hover {
      -webkit-filter: drop-shadow(0px 20px 140px #7032AC);
      filter: drop-shadow(0px 20px 140px #7032AC); }
  .cards__image {
    max-width: 220px;
    max-height: 300px; }
  .cards__text {
    position: absolute;
    color: #F9F017;
    bottom: 11px;
    left: 10px; }
  .cards__title {
    margin: 10px 0 15px 0;
    font-family: Roboto-Medium, sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em; }
  .cards__info {
    font-family: Roboto-Regular, sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 80%; }
  .cards__info-smaller {
    font-family: Roboto-Regular, sans-serif;
    font-size: 12px;
    opacity: 60%; }

.pagination {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; }
  .pagination__active {
    font-size: 16px;
    border-bottom: 2px solid #F9F017; }
  .pagination__items {
    padding: 34px 0 34px;
    list-style-type: none;
    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; }
  .pagination__item {
    cursor: pointer;
    color: #F9F017;
    font-family: Roboto-Regular, sans-serif;
    font-size: 14px;
    line-height: 16px;
    margin-right: 10px;
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out; }
    .pagination__item:hover {
      font-size: 20px;
      opacity: 90%;
      text-shadow: #F9F017; }

.info-wrap {
  max-width: 500px;
  width: 100%;
  margin: 0 auto; }

.full-info {
  padding-top: 100px;
  font-family: Roboto-Medium, sans-serif;
  font-size: 26px;
  text-align: center;
  font-weight: 500; }
  .full-info__items {
    list-style-type: none; }
  .full-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px; }
  .full-info__title {
    color: #FFFFFF;
    text-transform: uppercase; }
  .full-info__description {
    color: #F9F017; }
  .full-info__btn {
    outline: none;
    border: none;
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    padding: 16px 53px;
    border-radius: 40px;
    background: #F9F017;
    font-style: normal;
    color: black;
    cursor: pointer;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    letter-spacing: 0.03em; }
    .full-info__btn:hover {
      -webkit-box-shadow: 0 4px 42px #F9F017;
      box-shadow: 0 4px 42px #F9F017; }
