@charset "UTF-8";

/*!
*
* Theme:  NNA
* Author:   Tim Marner Ltd
* website:  www.timmarner.co.uk
*
*/

html,
body {
  color: #222222;
  font-family: arial, sans-serif;
  font-size: 1rem;
  line-height: 25px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
p {
  padding: 0 0 1.5em;
  margin: 0;
}
p:empty {
  padding: 0;
  margin: 0;
}
*:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a,
a:visited {
  color: #ed1165;
  text-decoration: none;
}
a:hover,
a:active {
  color: #71bf44;
  text-decoration: none;
}
ul {
  padding-left: 1rem;
}
ul,
li {
}
img {
  max-width: 100%;
}
hr {
  border-bottom: 0.01rem solid #ededed;
  margin: 1rem 0rem;
}
small,
.small {
  font-size: 75%;
  font-weight: normal;
}

/*
 CONTENT
*/
article,
.content {
  padding: 0 1rem;
}
article a {
  color: #ed1165;
}
article a:hover,
article a:active {
}
article img {
  margin-bottom: 1rem;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  border-radius: 0.2rem;
  overflow: hidden;
}

/*
 HEADINGS
*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: bold;
}
h1,
.h1 {
  font-size: 175%;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 700;
}
h2,
.h2 {
  font-size: 150%;
  font-weight: 700;
}
h3,
.h3 {
  font-size: 140%;
}
h4,
.h4 {
  font-size: 130%;
}
h5,
.h5 {
  font-size: 120%;
}

h6,
.h6 {
  font-size: 110%;
  margin-bottom: 0px;
}
.heading {
  display: block;
  padding: 1rem;
  margin: 0;
  border-bottom: 0rem solid;
}

/*
 WRAPPERS
*/
main {
  padding: 0;
}
section {
}

/*
 LAYOUT
*/

/* 
 HEADING COLOURS
*/
.heading-pink {
  display: block;
  padding: 1.5rem;
  margin: 0;
  color: #ed1165;
  border-bottom: 0.5rem #ed1165 solid;
}

/* 
 BACKGROUNDS COLOURS
*/
.bg-black {
  background: #222222 !important;
  color: #fff;
}
.bg-black a {
  color: #fff !important;
}
.bg-black a:hover {
  color: #fff !important;
}
.bg-white {
  background: #fff !important;
  color: #222222;
}
.bg-white a {
  color: #222222 !important;
}
.bg-white a:hover {
  color: #222222 !important;
}
.bg-grey {
  background: #eceeef !important;
  color: #222222;
}
.bg-grey a {
  color: #222222;
}
.bg-grey a:hover {
  color: #222222;
}
.bg-pink {
  background-color: #ed1165 !important;
  color: #fff;
}
.bg-pink a {
  color: #fff !important;
}
.bg-pink a:hover {
  color: #fff !important;
}
.bg-blue {
  background-color: #00aeef !important;
  color: #ffffff;
}
.bg-blue a {
  color: #ffffff !important;
}
.bg-blue a:hover {
  color: #ffffff !important;
}
.bg-green {
  background: #71bf44 !important;
  color: #ffffff;
}
.bg-green a {
  color: #ffffff !important;
}
.bg-green a:hover {
  color: #ffffff !important;
}

/* 
 TEXT COLOURS
*/
.text-black {
  color: #222222 !important;
}
.text-black:hover {
  color: #222222 !important;
}
.text-white {
  color: #fff !important;
}
.text-white:hover {
  color: #fff !important;
}
.text-grey {
  color: #eceeef !important;
}
.text-grey:hover {
  color: #eceeef !important;
}
.text-pink {
  color: #ed1165 !important;
}
.text-blue {
  color: #00aeef !important;
}
.text-blue:hover {
  color: #00aeef !important;
}
.text-green {
  color: #71bf44 !important;
}
.text-green:hover {
  color: #71bf44 !important;
}

/* 
 SHADES
*/
.bg-lighter-1 {
  background: rgba(255, 255, 255, 0.1);
}
.bg-lighter-2 {
  background: rgba(255, 255, 255, 0.2);
}
.bg-lighter-3 {
  background: rgba(255, 255, 255, 0.3);
}
.bg-lighter-4 {
  background: rgba(255, 255, 255, 0.4);
}
.bg-lighter-5 {
  background: rgba(255, 255, 255, 0.5);
}
.bg-lighter-6 {
  background: rgba(255, 255, 255, 0.6);
}
.bg-lighter-7 {
  background: rgba(255, 255, 255, 0.7);
}
.bg-lighter-8 {
  background: rgba(255, 255, 255, 0.8);
}
.bg-lighter-9 {
  background: rgba(255, 255, 255, 0.9);
}
.bg-darker-1 {
  background: rgba(0, 0, 0, 0.1);
}
.bg-darker-2 {
  background: rgba(0, 0, 0, 0.2);
}
.bg-darker-3 {
  background: rgba(0, 0, 0, 0.3);
}
.bg-darker-4 {
  background: rgba(0, 0, 0, 0.4);
}
.bg-darker-5 {
  background: rgba(0, 0, 0, 0.5);
}
.bg-darker-6 {
  background: rgba(0, 0, 0, 0.6);
}
.bg-darker-7 {
  background: rgba(0, 0, 0, 0.7);
}
.bg-darker-8 {
  background: rgba(0, 0, 0, 0.8);
}
.bg-darker-9 {
  background: rgba(0, 0, 0, 0.9);
}

/* 
 OPACITYS
*/
.faded {
  opacity: 0.1;
}

/* 
 CUSTOM
*/
.partner {
  background: none;
  display: block;
  padding: 10px 15px;
  margin: 0;
  text-align: center;
}

/*
  Social
*/

.social-links {
  padding: 0;
  width: 100%;
}
.social-links i.fa {
  color: #fff;
  text-align: center;
  width: 42px;
  line-height: 42px;
  font-size: 1.5rem;
  margin-bottom: 0px;
  opacity: 0.9;
  border-radius: 0% !important;
  -moz-border-radius: 0% !important;
  -webkit-border-radius: 0% !important;
}
.social-links i.fa:hover {
  opacity: 1;
}
.social-links i.fa-brands.fa-facebook {
  background: #3b5998;
}
.social-links i.fa-brands.fa-facebook:hover {
  background: #3b5998;
}
.social-links i.fa-brands.fa-x-twitter {
  background: #000000;
}
.social-links i.fa-brands.fa-x-twitter:hover {
  background: #000000;
}
.social-links i.fa-brands.fa-linkedin {
  background: #0077b5;
}
.social-links i.fa-brands.fa-linkedin:hover {
  background: #0077b5;
}
.social-links i.fa-brands.fa-instagram {
  background: #3f729b;
}
.social-links i.fa-brands.fa-instagram:hover {
  background: #3f729b;
}
.social-links i.fa-brands.fa-google-plus {
  background: #dd4b39;
}
.social-links i.fa-brands.fa-google-plus:hover {
  background: #dd4b39;
}
.social-links i.fa-brands.fa-youtube {
  background: #cd201f;
}
.social-links i.fa-brands.fa-youtube:hover {
  background: #cd201f;
}
.social-links i.fa-brands.fa-pinterest {
  background: #cb2027;
}
.social-links i.fa-brands.fa-pinterest:hover {
  background: #cb2027;
}
.social-links i.fa-brands.fa-dribbble {
  background: #ea4c89;
}
.social-links i.fa-brands.fa-dribbble:hover {
  background: #ea4c89;
}
.social-links i.fa-brands.fa-reddit {
  background: #ff4500;
}
.social-links i.fa-brands.fa-reddit:hover {
  background: #ff4500;
}
.social-links i.fa-brands.fa-tumblr {
  background: #35465c;
}
.social-links i.fa-brands.fa-tumblr:hover {
  background: #35465c;
}

/*
  SCROLL TO TOP
*/
.scrollToTop {
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  text-align: center;
  opacity: 0.7;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 3.8rem;
  right: 1.4rem;
  display: none;
  cursor: pointer;
  -webkit-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  border-radius: 0.2rem;
}
.scrollToTop:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */
#map {
  height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#floating-panel {
  position: absolute;
  top: 10px;
  left: 25%;
  z-index: 5;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #999;
  text-align: center;
  font-family: "Roboto", "sans-serif";
  line-height: 30px;
  padding-left: 10px;
}

.results tr[visible="false"],
.no-result {
  display: none;
}

.results tr[visible="true"] {
  display: table-row;
}

.counter {
  padding: 8px;
  color: #ccc;
}

.slogan {
  font-weight: bold;
  font-size: 24px;
  margin: 2.9rem 2rem 0;
}

/*
 RESPONSIVE
*/
@media (max-width: 34em) {
}
@media (max-width: 48em) {
}
@media (max-width: 62em) {
}
@media (max-width: 75em) {
}
