/* anton-regular - latin */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  /* font-weight: 400; */
  src: url('/fonts/anton-v23-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/fonts/anton-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/anton-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/anton-v23-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/anton-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/anton-v23-latin-regular.svg#Anton') format('svg'); /* Legacy iOS */

  font-display: swap;
}


body {
  margin: 0;
  padding-bottom: env(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-top);
  
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #191b30;
}

h1, h2, h3, h4, h5 {
  font-family: Anton;
  text-transform: uppercase;
  font-weight: normal;
}

.content-wrapper {
  max-width: 960px;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.center {
  text-align: center;
}

.logo {
  padding-bottom: 20px;
  text-align: center;
}

.logo img {
  max-width: 80%;
}

.contact-wrapper {
  display: flex; 
  flex-direction: row;
  justify-content: space-around; 
  margin-top: 20px
}

.contact-details {
  font-family: Anton;
  font-size: 1.5em;
  font-weight: normal;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.contact-details2 {
  font-family: Anton;
  font-size: 1em;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

.footer {
  background-color: #191b30;
  color: #ffffff;
  min-height: 60px;
  margin-top: 20px;

  display:flex;
  align-items: center;

  font-family: Anton;
}

.footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer .content-wrapper span{
  padding: 10px;
}

.footer a.home-link {
  color: white
}
.footer a.home-link:hover {
  color: #e84f13;
}

a,
a:link,
a:visited {
  text-decoration: none;
  color: #e84f13;
}

a:hover {
  text-decoration: none;
  color: #191b30
}

.footer a:hover {
  text-decoration: none;
  color: #ffffff
}

.subtext_video {
  font-family: Anton;
  margin-top: 12px;
  display:flex;
  flex-direction: column;
}

.subtext_video p{
  margin-top:2px;
  margin-bottom: 0;
  padding: 0;
}


@media screen and (max-width: 390px) {

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  } 

  .footer .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

}