/* FONTS */

/* Barlow */
.barlow-thin {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Barlow Condensed */
.barlow-condensed-thin {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-condensed-extralight {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-condensed-light {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-condensed-regular {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-condensed-extrabold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-condensed-black {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-condensed-thin-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-condensed-extralight-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-condensed-light-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-condensed-regular-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-condensed-medium-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-condensed-semibold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-condensed-bold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-condensed-extrabold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-condensed-black-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* END FONTS */

:root{
  --vm-color: #012345;
  --vm-border-radius: 4px;
}

body {
    min-height: 100dvh;

    background-image: url('../resources/vm_bg.webp');
    background-position: center;
    background-color: var(--vm-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    min-height: 100dvh;
    grid-template-rows: auto 25% auto;
}

.vm_logo img {
    max-width: 350px;
}

/* .logos {
    grid-row: 2 / 3;
} */
.logos > * {
    aspect-ratio: 1 / 1;
}

.logo {
    /* width: 100px; */
    height: 100px;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: auto;
    max-height: 100%;
}

.vm-card_overlay {
    background-color: rgba(0 0 0 / .4);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    overflow: hidden;
    border-radius: var(--vm-border-radius);
    backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    transition: all 500ms ease-in-out;
}

.vm-card:where(:hover,:focus) .vm-card_overlay {
    height: 100%;
}

.vm-card_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .775rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 1500ms ease;
}

.vm-card_overlay {
  color: #ffffff;
  font-size: .775em;
  line-height: 1.2;
}

.vm-card_overlay h2 {
  font-size: 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

.vm-card_btn,
.vm-card_btn:visited {
    opacity: 0;
    transition: opacity 1500ms ease;
    display: inline-block;
    border: solid 1px #ffffff;
    border-radius: var(--vm-border-radius);
    padding: .25rem 1rem;
    color: #ffffff;
    text-decoration: none;
    width: auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: .775rem;
    transition: all 250ms ease-in;
}
.vm-card:where(:hover,:focus) :where(.vm-card_content, .vm-card_btn) {
    opacity: 1;
}

.vm-card_btn:is(:hover, :focus) {
  background-color: #ffffff;
  color: #000000;
}

footer {
    color: #ffffff;
    font-size: .775rem;
    line-height: 1.3;
    opacity: .75;
}

@media (min-width: 576px) {
  .container {
    grid-template-rows: auto 30% 100px;
  }
  .vm-card_overlay {
    font-size: .675rem;
  }
  .vm-card_overlay h2 {
    font-size: 1.2rem;
  }
  .vm-card_btn {
    font-size: .85rem;
  }
}
@media (min-width: 768px) {
  .vm-card_content {
    gap: .5rem;
  }
  .vm-card_overlay {
    font-size: .85rem;
  }
  .vm-card_overlay h2 {
    font-size: 1.4rem;
  }
  .vm-card_btn {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  /* .container {
    grid-template-rows: auto 20% 100px;
  } */
}

@media (min-width: 1200px) {
    .logos .col-xl-1 {
        width: 14.28%;
    }
}