
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Big+Shoulders:opsz,wght@10..72,100..900&display=swap');
  #skip-nav{
    display: none;
  }
/* Flexbox utilities */
  .d-flex {
    display: flex;
  }

  .flex-wrap{
    flex-wrap: wrap;
  }
  /* Align items */
  .align-start { align-items: flex-start; }
  .align-center { align-items: center; }
  .align-end { align-items: flex-end; }
  .align-stretch { align-items: stretch; }
  .align-baseline { align-items: baseline; }
  
  /* Justify content */
  .justify-start { justify-content: flex-start; }
  .justify-center { justify-content: center; }
  .justify-end { justify-content: flex-end; }
  .justify-between { justify-content: space-between; }
  .justify-around { justify-content: space-around; }
  .justify-evenly { justify-content: space-evenly; }
  
  /* Flex direction */
  .flex-row { flex-direction: row; }
  .flex-col { flex-direction: column; }
  .flex-row-reverse { flex-direction: row-reverse; }
  .flex-col-reverse { flex-direction: column-reverse; }
  
  /* Flex wrap */
  .flex-wrap { flex-wrap: wrap; }
  .flex-nowrap { flex-wrap: nowrap; }
  .flex-wrap-reverse { flex-wrap: wrap-reverse; }
  
  /* Column structure */
  .col-1 { flex: 0 0 8.333333%; }
  .col-2 { flex: 0 0 16.666667%; }
  .col-3 { flex: 0 0 25%; }
  .col-4 { flex: 0 0 33.333333%; }
  .col-5 { flex: 0 0 41.666667%; }
  .col-6 { flex: 0 0 50%; }
  .col-7 { flex: 0 0 58.333333%; }
  .col-8 { flex: 0 0 66.666667%; }
  .col-9 { flex: 0 0 75%; }
  .col-10 { flex: 0 0 83.333333%; }
  .col-11 { flex: 0 0 91.666667%; }
  .col-12 { flex: 0 0 100%; }
  .col-auto { flex: 0 0 auto; }
  .col { flex: 1; }

  .inner-content{
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: calc(100% - 160px);
  }

  .m-auto{
    margin: auto;
  }

.button-clipped{
    --b: 2px;
    --s: 12px;
    --c: #151515;
    padding: 10px 20px;
    border: var(--b) solid var(--c);
    border-radius: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, var(--s) 100%, 0 calc(100% - var(--s)));
    background: linear-gradient(45deg, var(--c) calc(0.707 * var(--s) + var(--b)), #0000 0) border-box;
    font-family: "Barlow", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.clipped-black{
background-color: #151515; 
color: white;
}

.clipped-black:hover{
  background-color: transparent;
  color: #151515;
}

.clipped-clear{
  background-color: transparent;
  color: #151515;
}
.clipped-clear:hover{
  background-color: #151515; 
  color: white;
}
