/* MVP.css v1.12 - https://github.com/andybrewer/mvp */
:root {
  --active-brightness: 0.85;
  --border-radius: 5px;
  --box-shadow: 2px 2px 10px;
  --color-accent: #2f99cc;
  --color-bg: #fff;
  --color-bg-secondary: #e9e9e9;
  --color-link: #0d679a;
  --color-secondary: #0d679a;
  --color-secondary-accent: babyblue;
  --color-shadow: #f4f4f4;
  --color-table: #2f99cc;
  --color-text: #000;
  --color-text-secondary: #999;
  --font-family: poppins, Roboto, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --hover-brightness: 1.2;
  --justify-important: center;
  --justify-normal: left;
  --line-height: 1.5;
  --width-card: 285px;
  --width-card-medium: 460px;
  --width-card-wide: 800px;
  --width-content: 1785px;
  --primary-color: #202020;
  --secondary-color: #fff;
}

/* Layout */
article aside {
  background: var(--color-secondary-accent);
  border-left: 4px solid var(--color-secondary);
  padding: 0.01rem 0.8rem;
}

article h2 {
  text-align: center;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  line-height: var(--line-height);
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

/* footer,
header,
main {
  margin: 0 auto;
 max-width: var(--width-content); 
padding: 3rem 1rem; 
} */

footer,
header {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 3rem 1rem;
}

.publications,
.technology {
  margin: 0 auto;
  max-width: var(--width-content);
  padding: 3rem 1rem;
}

hr {
  background-color: #f7bc02;
  border: none;
  height: 2px;
  margin: 4rem 0;
  width: 100%;
}

section {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--justify-important);
}

section img,
article img {
  max-width: 100%;
}

section pre {
  overflow: auto;
}

section aside {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: none;
  margin: 1rem;
  padding: 1.25rem;
  width: var(--width-card);
}

[hidden] {
  display: none;
}

/* Headers */
article header,
div header,
main header {
  padding-top: 0;
}

header {
  text-align: var(--justify-important);
}

header a b,
header a em,
header a i,
header a strong {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

header nav img {
  margin: 1rem 0;
}

section header {
  padding-top: 0;
  width: 100%;
}

/* Nav */
nav {
  align-items: center;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  margin-bottom: 7rem;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 0.5rem;
  position: relative;
  text-align: left;
}

/* Nav Dropdown */
nav ul li:hover ul {
  display: block;
}

nav ul li ul {
  background: var(--color-bg);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  display: none;
  height: auto;
  left: -2px;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 1.7rem;
  white-space: nowrap;
  width: auto;
  z-index: 1;
}

nav ul li ul::before {
  /* fill gap above to make mousing over them easier */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

nav ul li ul li,
nav ul li ul li a {
  display: block;
}

/* Typography */
code,
samp {
  background-color: var(--color-accent);
  border-radius: var(--border-radius);
  color: var(--color-text);
  display: inline-block;
  margin: 0 0.1rem;
  padding: 0 0.5rem;
}

details {
  margin: 1.3rem 0;
}

details summary {
  font-weight: bold;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height);
}

mark {
  padding: 0.1rem;
}

ol li,
ul li {
  padding: 0.2rem 0;
}

p {
  margin: 0.75rem 0;
  padding: 0;
  width: 100%;
}

pre {
  margin: 1rem 0;
  max-width: var(--width-card-wide);
  padding: 1rem 0;
}

pre code,
pre samp {
  display: block;
  max-width: var(--width-card-wide);
  padding: 0.5rem 2rem;
  white-space: pre-wrap;
}

small {
  color: var(--color-text-secondary);
}

sup {
  background-color: var(--color-secondary);
  border-radius: var(--border-radius);
  color: var(--color-bg);
  font-size: xx-small;
  font-weight: bold;
  margin: 0.2rem;
  padding: 0.2rem 0.3rem;
  position: relative;
  top: -2px;
}

/* Links */
a {
  color: var(--color-link);
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}

a:active {
  filter: brightness(var(--active-brightness));
}

a:hover {
  filter: brightness(var(--hover-brightness));
}

a b,
a em,
a i,
a strong,
button,
input[type="submit"] {
  border-radius: var(--border-radius);
  display: inline-block;
  font-size: medium;
  font-weight: bold;
  line-height: var(--line-height);
  margin: 0.5rem 0;
  padding: 1rem 2rem;
}

button,
input[type="submit"] {
  font-family: var(--font-family);
}

button:active,
input[type="submit"]:active {
  filter: brightness(var(--active-brightness));
}

button:hover,
input[type="submit"]:hover {
  cursor: pointer;
  filter: brightness(var(--hover-brightness));
}

a b,
a strong,
button,
input[type="submit"] {
  background-color: var(--color-link);
  border: 2px solid var(--color-link);
  color: var(--color-bg);
}

a em,
a i {
  border: 2px solid var(--color-link);
  border-radius: var(--border-radius);
  color: var(--color-link);
  display: inline-block;
  padding: 1rem 2rem;
}

article aside a {
  color: var(--color-secondary);
}

/* Images */
figure {
  margin: 0;
  padding: 0;
}

figure img {
  max-width: 100%;
}

figure figcaption {
  color: var(--color-text-secondary);
}

/* Forms */
button:disabled,
input:disabled {
  background: var(--color-bg-secondary);
  border-color: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  cursor: not-allowed;
}

button[disabled]:hover,
input[type="submit"][disabled]:hover {
  filter: none;
}

form {
  display: block;
  width: auto;
  padding: 1.5rem;
  text-align: var(--justify-normal);
}

form header {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
}

input,
label,
select,
textarea {
  display: block;
  font-size: inherit;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
  font-weight: normal;
  position: relative;
  top: 1px;
}

input[type="range"] {
  padding: 0.4rem 0;
}

input,
select,
textarea {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
}

input[readonly],
textarea[readonly] {
  background-color: var(--color-bg-secondary);
}

label {
  margin-bottom: 0.2rem;
}

/* Popups */
dialog {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow) var(--color-shadow);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 999;
}

/* Tables */
table {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  border-spacing: 0;
  display: inline-block;
  max-width: 100%;
  overflow-x: auto;
  padding: 0;
  white-space: nowrap;
}

table td,
table th,
table tr {
  padding: 0.4rem 0.8rem;
  text-align: var(--justify-important);
}

table thead {
  background-color: var(--color-table);
  border-collapse: collapse;
  border-radius: var(--border-radius);
  color: var(--color-bg);
  margin: 0;
  padding: 0;
}

table thead th:first-child {
  border-top-left-radius: var(--border-radius);
}

table thead th:last-child {
  border-top-right-radius: var(--border-radius);
}

table thead th:first-child,
table tr td:first-child {
  text-align: var(--justify-normal);
}

table tr:nth-child(even) {
  background-color: var(--color-accent);
}

/* Quotes */
blockquote {
  display: block;
  font-size: x-large;
  line-height: var(--line-height);
  margin: 1rem auto;
  max-width: var(--width-card-medium);
  padding: 1.5rem 1rem;
  text-align: var(--justify-important);
}

blockquote footer {
  color: var(--color-text-secondary);
  display: block;
  font-size: small;
  line-height: var(--line-height);
  padding: 1.5rem 0;
}

/*
  Colorbox Core Style:
  The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
  User Style:
  Change the following styles to modify the appearance of Colorbox.  They are
  ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 20px;
  background: #000;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  border: 5px solid #000;
  background: #fff;
}

#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc;
}

#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc;
}

#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}

#cboxPrevious {
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -32px;
  background: url(images/controls.png) no-repeat top left;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: bottom left;
}

#cboxNext {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -32px;
  background: url(images/controls.png) no-repeat top right;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: bottom right;
}

#cboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: url(images/controls.png) no-repeat top center;
  width: 38px;
  height: 19px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: bottom center;
}

/****************APST*********************/
@font-face {
  font-family: poppins;
  src: url("fonts/Poppins-Regular.woff2");
  font-display: swap;
}

#header {
  max-width: 100%;
  padding: 0px;
  height: calc(100vh - 75px);
  overflow: hidden;
  position: relative;
}

#header nav {
  max-width: var(--width-content);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (min-width: 1200px) {
  #vbg {
    width: 100%;
    left: 0px;
  }
}

@media screen and (max-width: 1200px) {
  #vbg {
    height: 100vh;
    left: 0px;
  }
}

@media screen and (max-width: 720px) {
  #vbg {
    height: 100vh;
    left: -25%;
  }
}

@media screen and (max-width: 640px) {
  #vbg {
    height: 100vh;
    left: -50%;
  }
}

#vbg {
  position: absolute;
}

.overlay {
  background: linear-gradient(140deg, rgba(13, 103, 154, 0.5) 25%, transparent 100%);
  position: absolute;
  color: white;
  top: 0px;
  left: 0px;
  text-align: left;
  height: 100vh;
  width: 100%;
  display: block;
  min-height: 920px;
}

.overlay h1 {
  max-width: 870px;
  padding: 5% 13%;
  width: auto;
}

.overlay p {
  max-width: 810px;
  padding: 0% 13%;
  font-size: 16px;
  width: auto;
}

article aside {
  margin-bottom: 10px;
  border-radius: var(--border-radius);
}

article aside:nth-child(even) {
  background-color: #f4f4f4;
}

#nav,
#nav nav {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 85px;
}

.contact {
  padding: 0.5rem 1.5rem;
  text-shadow: 0px 0px 1px var(--color-secondary);
  box-shadow: 0px 0px 1px var(--color-secondary);
}

section aside,
button {
  border: none;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--color-secondary);
}

.counter {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  color: #fff;
}

.counted {
  font-size: 30px;
  text-align: right;
  color: #fff;
  font-weight: bold;
}

.fade {
  opacity: 0;
  transition: 1.5s opacity;
}

#particles-js {
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
}

main {
  z-index: 99;
  position: relative;
}

.flat-footer {
  text-align: center;
}

/* .block-image {} */

.block1 div {
  background-image: url("../media/1.webp");
}

.block2 div {
  background-image: url("../media/2.webp");
}

.block3 div {
  background-image: url("../media/3.webp");
}

.block4 div {
  background-image: url("../media/4.webp");
}

.block5 div {
  background-image: url("../media/5.webp");
}

.block6 div {
  background-image: url("../media/6.webp");
}

.block7 div {
  background-image: url("../media/7.webp");
}

.block8 div {
  background-image: url("../media/8.webp");
}

.block9 div {
  background-image: url("../media/9.webp");
}

.color-block {
  transition: box-shadow 1s;
}

section aside div {
  max-width: 100%;
  height: 250px;
  background-size: cover;
  background-position: top center;
}

.description {
  min-height: 50px;
}

small {
  color: #444;
}

iframe {
  width: 100%;
  border: none;
}

footer {
  text-align: center;
}

/* #technology {} */

#technologyqt {
  background-image: url("../media/quote.webp");
  background-color: #f55a37;
  /* border-radius: var(--border-radius); */
  background-size: contain;
  background-position: left bottom;
  min-height: 500px;
  width: 100%;
  background-repeat: no-repeat;
  box-shadow: #f7bc02 0px 0px 10em inset;
}

#gif {
  width: 100%;
  transform: scale(1.2);
  margin-top: 35px;
}

@media screen and (max-width: 720px) {
  #technologyqt {
    background-position: center 200px;
  }
}

@media screen and (max-height: 700px) {
  #gif {
    display: none;
  }
}

#hidden {
  display: none;
}

#legal {
  padding: 50px;
}

#footer {
  border-top: 5px solid #f7bc02;
}

.block6 h3,
.block7 h3,
.block8 h3,
.block9 h3 {
  min-height: 50px;
}

#getintouch {
  background: whitesmoke;
  border-radius: 5px;
}

#getintouch header {
  padding: 0px;
}

#getintouch div {
  width: 90%;
  max-width: 1000px;
}

button {
  background-color: #f55a37;
}

blockquote {
  color: white;
}

blockquote footer {
  color: #f7bc02;
}

#logo {
  max-height: 100px;
}

.publication-thumbnail {
  float: left;
  margin: 25px 25px 5px 15px;
  max-height: 10em;
  box-shadow: 0px 0px 10px #bbb;
}

.download {
  margin: 10px 0px 15px 0px;
  background-color: var(--color-secondary);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

.gg-pin {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: rotate(45deg) scale(var(--ggs, 1));
  width: 18px;
  height: 18px;
  border-radius: 100% 100% 0 100%;
  border: 2px solid;
  margin-top: -4px;
}

.gg-pin::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid;
  top: 3px;
  left: 3px;
  border-radius: 40px;
}

.gg-phone {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  transform: scale(var(--ggs, 1));
}

.gg-phone::after,
.gg-phone::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
}

.gg-phone::after {
  width: 18px;
  height: 18px;
  border-top-left-radius: 1px;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 12px;
  border-left: 4px solid;
  border-bottom: 4px solid;
  left: 2px;
  bottom: 2px;
  background: linear-gradient(to left, currentColor 10px, transparent 0) no-repeat right 11px/6px 4px, linear-gradient(to left, currentColor 10px, transparent 0) no-repeat -1px 0/4px 6px;
}

.gg-phone::before {
  width: 20px;
  height: 20px;
  border: 6px double;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
  bottom: 2px;
  left: 2px;
}

form p {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: bold;
}

#submit {
  text-shadow: 0px 0px 1px var(--color-secondary);
  box-shadow: 0px 0px 1px var(--color-secondary);
}

/***************************************************************************** new***********************************************************************************/
.nfl-section.page-section {
  background: #1b3a76 !important;
}

.color-block {
  background-color: rgb(176, 195, 204);
}

.nfl-section {
  min-height: 700px !important;
  background-image: linear-gradient(to left, rgba(245, 246, 252, 0.15), #136caa), url("../media/lab.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.nfl-section .nfl-items {
  display: flex;
  justify-content: space-between;
  top: 20px;
  position: relative;
}

.nfl-section .nfl-items .description h2 {
  color: #acd8e6;
}

.nfl-section .nfl-items .description a .nflbutton {
  border: 2px solid var(--secondary-color);
  padding: 0.5rem 1.5rem;
  background-color: #2f99cc;
  border-radius: 0px;
}

.nfl-section .nfl-items .description {
  /* width: 50%; */
  padding: 30px;
  color: #fff;
  margin-top: 20px;
  padding-left: 90px;
}

.nfl-section .nfl-items .description .withline {
  border-left: 6px solid #fff;
  padding-left: 20px;
  color: #fff;
}

.nfl-section .nfl-items .description .withline h2 {
  margin-bottom: 10px;
  color: #acd8e6;
}

.nfl-section .nfl-items .description .withline p {
  font-size: 16px;
  margin-bottom: 10px;
}

.nfl-section .nfl-items .description .withline .nflbutton {
  background-color: #016caa;
  border: 2px solid #acd8e6;
  border-radius: 0px;
  padding: 8px 20px;
}

.image {
  max-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50%;
}

/* buttons */
/* .buttons-container {
  display: flex;
  align-items: center;
  gap: 20px;
} */

.button-container {
  display: flex;
  align-items: center;
  /* padding: 10px; */
  /* gap: 10px; */
  cursor: pointer;

  border: 2px solid var(--secondary-color);
  border-radius: 10px;
}

.button-container.button-container-dark {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.button-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Outfit", sans-serif;
  margin: 2px;
}

.button-title {
  font-size: 12px;
}

.home-store-buttons {
  display: flex;
  position: absolute;
  right: 5rem;
  bottom: 40px;
}

.home-store-buttons .button-container {
  margin: 2px;
  /* height: 30px; */
  border-radius: 5px;
}

.home-store-buttons .button-container .button-store-name {
  font-size: 15px;
  font-weight: bold;
}

.nfl-store-buttons {
  display: flex;
}

.nfl-store-buttons .button-container {
  margin: 2px;
  /* height: 40px; */
  border-radius: 5px;
}

.nfl-store-buttons .alogo img {
  height: 68px;
}

/* buttons */

.research-pub {
  margin: 10px;
}

.nfl-section-page {
  min-height: 500px;
  background-image: linear-gradient(to left, rgba(245, 246, 252, 0.15), #136caa), url("../media/lab.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border-radius: 5px;
}

.nfl-section-page img {
  align-self: center;
  width: auto;
  max-height: 200px;
}

.nfl-text-section {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 50px 0;
}

.nfl-text-section .text {
  width: 70%;
  margin-top: 15px;
}

.nfl-text-section .text p {
  padding: 10px;
}

.how-it-work-section {
  background: #00a7bc;
  padding: 50px 0;
}

.how-it-work-section .work {
  text-align: center;
}

.how-it-work-section .title {
  color: var(--color-secondary);
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.how-it-work-section .work h3 {
  color: #acd8e6;
}

.how-it-work-section .work .image-holder {
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px;
  height: 20px;
}

.how-it-work-section .work {
  color: #fff;
}

/* Media query for tablet screens */
@media screen and (max-width: 804px) {
  .nfl-section .nfl-items {
    display: grid;
  }

  .nfl-section .nfl-items .description .image {
    height: min-content;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nfl-section .nfl-items .description .image img {
    height: "800px";
    position: "absolute";
  }

  .nfl-section .nfl-items .description .image img .home-store-buttons {
    display: grid;
  }
}

/* Media query for mobile screens */
@media screen and (max-width: 480px) {
  #logo {
    max-height: 80px;
  }

  .contact {
    padding: 0.3rem 1.2rem;
    font-size: 12px;
  }

  .language {
    font-size: 12px;
  }

  .nfl-section .nfl-items {
    display: grid;
  }

  .nfl-section .nfl-items .description {
    padding-left: 20px;
  }

  .nfl-section .nfl-items .description .image {
    height: min-content;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nfl-section .nfl-items .description .image img {
    height: "800px";
    position: "absolute";
  }

  .nfl-section .nfl-items .description .image img .home-store-buttons {
    display: grid;
  }
}

.nfl-icon-section {
  padding: 50px 0;
  background: #faf9f9;
}

.nfl-icon-section .title {
  color: var(--color-secondary);
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.nfl-icon-section .card {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--border-radius);
  box-shadow: none;
  margin: 1rem;
  padding: 1.25rem;
  width: var(--width-card);
  text-align: center;
}

.nfl-icon-section .card .card-icon {
  display: flex;
  justify-content: center;
}

.nfl-icon-section .card .card-icon .icon {
  height: 35px;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5px;
  border-radius: var(--border-radius);
}

.nfl-publications-section {
  padding: 50px 0;
  display: grid;
  text-align: center;
}

.nfl-publications-section .publication-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--justify-important);
}

.nfl-publications-section .card {
  border-radius: var(--border-radius);
  box-shadow: none;
  margin: 1rem;
  padding: 1.25rem;
  width: var(--width-card);
  text-align: center;
}

.nfl-publications-section .card .card-icon {
  display: flex;
  justify-content: center;
}

.nfl-publications-section .card .card-icon .icon {
  /* height: 35px; */
  background-repeat: no-repeat;
  background-position: center;
  padding: 5px;
  border-radius: var(--border-radius);
}
