/* @font-face {
    font-family: "Grotesque";
    src: url("../BrandonGrotesque-Regular/BrandonGrotesque-Regular.eot"),
         url("../BrandonGrotesque-Regular/BrandonGrotesque-Regular.ttf"),
         url("../BrandonGrotesque-Regular/BrandonGrotesque-Regular.woff");
    font-weight: normal;
  }
  @font-face {
    font-family: "Grotesque Black";
    src: url("../BrandonGrotesque-Black/BrandonGrotesque-Black.eot"),
         url("../BrandonGrotesque-Black/BrandonGrotesque-Black.ttf"),
         url("../BrandonGrotesque-Black/BrandonGrotesque-Black.woff");
    font-weight: bold;
  }
  * {
    box-sizing: border-box;
  }
  
  html, body {
    font-size: 100%;
  } */
  
  /* body {
    padding: 0;
    margin: 0;
    background: #152536;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  } */
  
  /* a[href] {
    position: relative;
  }
  a[href], a[href]:link, a[href]:visited, a[href]:active {
    text-decoration: none;
    color: #d8276c;
    text-shadow: 2px 2px 2px #070c11;
    padding-bottom: 3px;
    font-weight: bold;
  }
  a[href]::after {
    content: "";
    position: absolute;
    left: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 0;
    height: 1px;
    transition: 0.35s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  }
  a[href]:hover::after {
    width: 100%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  } */
  
  .note {
    margin-top: 30px;
    color: #fff;
    font-size: 1rem;
    font-family: "Merriweather", sans-serif;
    line-height: 1.5;
    text-align: center;
  }
  
  .cards-container {
    margin-left: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    justify-content: center;
  }
  
  article.card {
    position: relative;
    width: 400px;
    height: 350px;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  
  .thumb1 {
    width: auto;
    height: 260px;
    background: url("img/tracking.gif") no-repeat center;
    background-size: cover;
    border-radius: 3px;
  }

  .thumb2 {
    width: auto;
    height: 260px;
    background: url("img/tsa.jpg") no-repeat center;
    background-size: cover;
    border-radius: 3px;
  }

  .thumb3 {
    width: auto;
    height: 260px;
    background: url("img/webdev.avif") no-repeat center;
    background-size: cover;
    border-radius: 3px;
  }

  .thumb4 {
    width: auto;
    height: 260px;
    background: url("img/blog.jpeg") no-repeat center;
    background-size: cover;
    border-radius: 3px;
  }

  .thumb5 {
    width: auto;
    height: 260px;
    background: url("img/compare.png") no-repeat center;
    background-size: cover;
    border-radius: 3px;
  }
  
  article.card .infos {
    width: auto;
    height: 350px;
    position: relative;
    padding: 14px 24px;
    background: #fff;
    transition: 0.4s 0.15s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  }
  
  article.card .infos .title {
    position: relative;
    margin: 10px 0;
    letter-spacing: 3px;
    color: #152536;
    font-family: "Grotesque Black", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 0px #32577f;
  }
  
  article.card .infos .flag {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 35px;
    height: 23px;
    background: url("img/bird.jpeg") no-repeat top right;
    background-size: 62% auto;
    display: inline-block;
  }
  
  article.card .infos .date,
  article.card .infos .seats {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(21, 37, 54, 0.7);
    font-family: "Grotesque", sans-serif;
  }
  
  article.card .infos .seats {
    display: inline-block;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  }
  
  article.card .infos .txt {
    font-family: "Merriweather", sans-serif;
    line-height: 2;
    font-size: 1.1rem;
    color: rgba(21, 37, 54, 0.7);
    opacity: 0;
    transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  }
  
  article.card .infos .details {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 10px 0;
    padding: 20px 24px;
    letter-spacing: 1px;
    color: #4e958b;
    font-family: "Grotesque Black", sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: 0.5s 0.25s cubic-bezier(0.17, 0.67, 0.5, 1.03);
  }
  
  article.card:hover .infos {
    transform: translateY(-260px);
  }
  
  article.card:hover .infos .seats,
  article.card:hover .infos .txt,
  article.card:hover .infos .details {
    opacity: 1;
  }
  