body {
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont arial, sans-serif !important;
}

.text-wide {
  letter-spacing: 4px;
}

.center5t {
  text-align: center;
}

.white5t {
  color: white;
}

h2,
h1 {
  font-weight: 400;
  margin-bottom: 10px;
}

h1 {
  font-size: 36px;
}

.gray5t {
  color: gray;
  font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.buttonaninat {
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}

.buttonaninat:hover {
  top: -8px;
}

/*hover animation */
.imgcssflex {
  filter: brightness(100%);
  /*opasity animation when mouse leaves hovering state */
  transition: all 0.2s ease-in-out 0s;
  /* vendorless fallback */
  -o-transition: all 0.2s ease-in-out 0s;
  /* opera */
  -ms-transition: all 0.2s ease-in-out 0s;
  /* IE 10 */
  -moz-transition: all 0.2s ease-in-out 0s;
  /* Firefox */
  -webkit-transition: all 0.2s ease-in-out 0s;
  /*safari and chrome */
}

.imgcssflex::before {
  filter: brightness(100%);
}

/*css on hover of images to daken with ease */
.imgcssflex:hover {
  filter: brightness(70%);
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
}


/*----LARGE TITLE CSS----- */

.titlexs {
  font-size: 50px;
  font-weight: 500;
  color: white;
  letter-spacing: 4px;
}

@media only screen and (max-width: 999px) {
  .titlexs {
    font-size: 45px;
  }
}

@media only screen and (max-width: 780px) {
  .titlexs {
    font-size: 35px;
  }
}

/*---small title css------*/
.smallxs {
  font-size: 20px;
  line-height: 0.7;
  color: white;
  font-weight: 500;
  letter-spacing: normal;
}

@media only screen and (max-width: 999px) {
  .smallxs {
    font-size: 17px;
  }
}

@media only screen and (max-width: 780px) {
  .smallxs {
    font-size: 15px;
  }
}


.largexs {
  font-size: 40px;
  padding-top: 100px;
  padding-bottom: 50px;
  letter-spacing: 4px;
}

/*------END OF TITLE CSS----- */

/*footer css */

.padsi {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
  margin-top: 100px;
  position: relative;
  line-height: 1.7;
  text-align: center;
}

.footer {
  height: 270px;
  width: 100%;
  background-color: transparent;
  position: absolute;
}

.ali {
  text-align: center;
  font-size: 15px;
}

.img11 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

@media only screen and (max-width: 407px) {
  .padsi {
    margin-left: 16px !important;
    margin-right: 16px !important;
    text-align: center;
  }
}

.pri {
  color: gray;
  border-right: 1px solid #d2d2d7;
  margin-top: 40px;
  margin-right: 7px;
  padding-right: 10px;
  font-size: 14px;
}

.pri:link {
  text-decoration: none;
}

.pri:visited {
  text-decoration: none;
}

.pri2 {
  color: gray;
  margin-top: 40px;
  margin-right: 7px;
  padding-right: 10px;
  font-size: 14px;
}

.pri2:link {
  text-decoration: none;
}

.pri2:visited {
  text-decoration: none;
}

.copyright {
  color: #bababa;
  font-size: 13px;
}

.autr {
  color: #c4c4c4;
  font-size: 12px;
  text-align: center;
}

/*This is the css for the animation - you must use a class here that is the container of the hyperlink. In this case class texta is the container while class hyperlink is styled directly on the anker tag or text. */
.texta>a {
  position: relative;
  text-decoration: none;
}

.texta a:hover {
  color: rgb(173, 173, 173);
}

.texta>a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: rgb(173, 173, 173);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.texta>a:hover::before {
  visibility: visible;
  transform: scaleX(1);
}

/*end of footer css */

/*This is the highlight color of the website */

::-moz-selection {
  /* Code for Firefox */
  background: #af534c !important;
}

::selection {
  background: #af534c !important;
}

/*This is the css for the zoom animation of images THIS first class NEEDS to be the container */

/*This class styles the sup html element to allow text to be a superscript - This is used for the TM letters in the nationalpix logo*/
.super-tm {
  vertical-align: super;
  font-size: 8px;
}