﻿
html,
body {
  overflow-x: hidden;
}
:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.resources-page-banner {
  max-width: 1200px;
  min-width: 500px;

  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
.resources-gallery {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}
.resources-paragraph {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #00264b;
  text-align: center;

  padding-bottom: 20px;
  word-break: keep-all;
  hyphens: none;
}

.resource-img {
  width: 250px;
  height: 250px;
}

.resource-img:hover {
  opacity: 90%;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2.6s25),
  only screen and (min--moz-device-pixel-ratio: 2.625),
  only screen and (-o-min-device-pixel-ratio: 2.625/1),
  only screen and (min-device-pixel-ratio: 2.625),
  only screen and(max-width:970px) {
  .resources-page-banner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .background-color-baner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .resource-img {
    width: 100%;
    height: auto;
  }
}

