.topnav {
  position: relative;
  overflow: hidden;
  background-color: #333;
  border-radius: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
  padding: 5px;
  z-index: 99999999;

}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 12px;
}

.topnav a:hover {
  border-radius: 15px;   
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  border-radius: 15px;  
  background-color: #F6670E;
  color: white;
}

.topnav-centered a {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.topnav-right {
  float: right;
}

/* Responsive navigation menu (for mobile devices) */
@media screen and (max-width: 600px) {
  .topnav a, .topnav-right {
    float: none;
    display: block;
  }
  
  .topnav-centered a {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: #2a2a2a;
	font-family: "Lato", sans-serif;
}

section {
	border-radius: 10px;
	width: 1024px;
	padding: 10px;
	display: table;
	max-width: none;
	background-color: #20344A;
	height: inherit;
	margin: auto;
	margin-top: 10px;

	&:nth-of-type(2n) {
		background-color: #2a2a2a;
		text-align: center;
		color: white;
		text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
	}
}

.intro {
	height: inherit;
}

.content {
	display: table-cell;
	vertical-align: middle;
}

footer {
	padding: 1% 5%;
	text-align: center;
	background-color: #20344A;
	color: white;
}

.heading {
	display: flex;
	width: 100%;
	position: relative;
	min-width: 150px;
	/* the 15px (10%) end caps determine the minimum header width */
}

.heading .label {
	flex: 1;
}

.heading .label {
	z-index: 10;
}

.heading .bg svg {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.heading .bg svg {
	width: 100%;
	height: 100%;
}

.heading .bg .teal {
	fill: #f6670e;
}

.heading .label {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	line-height: 40px;
	color: white;
	text-align: center;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
	padding: 20px 0;
}

header {
	font-size: 20px;
	line-height: 22px;
	font-family: "Lato", sans-serif;
}

a {
	text-align: center;
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	font-family: "Lato", sans-serif;
}

p {
	text-align: center;
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	font-family: "Lato", sans-serif;
   padding: 2em 0 1em;
}

/* == FOLDED CORNERS */

/* ROUNDED CORNERS VERSION * All modern browsers can produce this effect with a single pseudo-element. * However, they all have bugs (mainly to do with border-radius) that make this a bit tricky. * As far as I can tell, this is the only cross-browser method for the moment. * Can't use this method for the simple effect because Opera 11 will only show backgrounds * through transparent borders if there is a border-radius applied. */

/* == FOLDED CORNERS */

/* ROUNDED CORNERS VERSION * All modern browsers can produce this effect with a single pseudo-element. * However, they all have bugs (mainly to do with border-radius) that make this a bit tricky. * As far as I can tell, this is the only cross-browser method for the moment. * Can't use this method for the simple effect because Opera 11 will only show backgrounds * through transparent borders if there is a border-radius applied. */

.accordian {
	width: 90%;
	max-width: 1000px;
	margin: 2rem auto;
}

.accordian-item {
	background-color: white;
	color: #111;
	margin: 1rem 0;
	border-radius: 0.5rem;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.accordian-item p{
	color: #111;
}
.accordian-item-header {
	padding: 0.5rem 3rem 0.5rem 1rem;
	min-height: 3.5rem;
	line-height: 1.25rem;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.accordian-item-header::after {
	content: "\002B";
	font-size: 2rem;
	font-weight: bold;
	position: absolute;
	right: 1rem;
	/* transition: all 0.2s ease;
     */
}

.accordian-item-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.accordian-item-body-content {
	padding: 1rem;
	line-height: 1.5;
	border-top: 1px solid #34495e;
	text-align: left;
}

@media (max-width: 768px) {
	html {
		font-size: 14px;
	}
}
html {
  margin: 0;
  font-family: "Lato", sans-serif;
  text-align: center;
  background: #2a2a2a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.imgholder {
  position: relative;
  display: block;
  margin: 0 auto 2em;
  width: 1024px;
  max-width: 100%;
  height: auto;
}
.imgholder img {
  width: 100%;
  height: auto;
}
.imgholder .dot {
  position: absolute;
  display: block;
  height: 0.75rem;
  width: 0.75rem;
  margin: -1rem 0 0 -1rem;
  border-radius: 50%;
  background: #1ba1e2;
  border: 2px solid #a2d9f4;
  transition: all 0.2s;
}
.imgholder .dot.danger {
  background: #ff3333;
  border: 2px solid #ffcccc;
}
.imgholder .dot .info {
  position: absolute;
  line-height: 1.4;
  width: 13em;
  background: white;
  padding: 1rem;
  left: 2.5rem;
  top: -0.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.6));
  pointer-event: none;
}
.imgholder .dot .info:after {
  content: "";
  position: absolute;
  display: block;
  background: white;
  height: 1em;
  width: 1em;
  left: -0.45em;
  transform: rotate(45deg);
  top: 0.2em;
}
.imgholder .dot:hover {
  transform: scale(1.1);
  z-index: 999999;
}
.imgholder .dot:hover > .info {
  opacity: 1;
  visibility: visible;
}
.imgholder .one {
  left: 52.91%;
  top: 3.78%;
}
.imgholder .two {
  left: 91.44%;
  top: 71.84%;
}
.imgholder .three {
  left: 28.55%;
  top: 90.51%;
}
.imgholder .four {
  left: 88.38%;
  top: 28.39%;
}
.imgholder .five {
  left: 65.02%;
  top: 94.19%;
}
.imgholder .six {
  left: 84.37%;
  top: 91.81%;
}
.imgholder .seven {
  left: 49.18%;
  top: 90.51%;
}
.imgholder .eight {
  left: 8.02%;
  top: 71.71%;
}
.imgholder .nine {
  left: 90.02%;
  top: 49.63%;
}
.imgholder .ten {
  left: 6.95%;
  top: 87.14%;
}
.imgholder .eleven {
  left: 12.48%;
  top: 56.77%;
}
.imgholder .twelve {
  left: 6.56%;
  top: 28.52%;
}
.imgholder .thirteen {
  left: 3.72%;
  top: 46.16%;
}
.imgholder .fourteen {
  left: 11.7%;
  top: 16.64%;
}
.imgholder .fifteen {
  left: 28.79%;
  top: 5.6%;
}
.imgholder .sixteen {
  left: 16%;
  top: 5.99%;
}
.imgholder .seventeen {
  left: 72.44%;
  top: 7.55%;
}
.imgholder .eighteen {
  left: 92.07%;
  top: 12.33%;
}
.imgholder .nineteen {
  left: 18.24%;
  top: 15.34%;
}
.imgholder .twenty {
  left: 13.26%;
  top: 40.8%;
}
.imgholder .twentyone {
  left: 76.35%;
  top: 44.32%;
}
.imgholder .twentytwo {
  left: 24.2%;
  top: 85.08%;
}
.imgholder .twentythree {
  left: 73.91%;
  top: 15.86%;
}
.imgholder .twentyfour {
  left: 68.34%;
  top: 85.86%;
}
.imgholder .twentyfive {
  left: 72.83%;
  top: 62.23%;
}

.twentysix {
  left: 37.78%;
  top: 13.32%;
}

.twentyseven {
  left: 24.98%;
  top: 61.58%;
}

.twentyeight {
  left: 67.37%;
  top: 37.07%;
}

.twentynine {
  left: 51.25%;
  top: 37.85%;
  }

.thirty {
  left: 36.21%;
  top: 5.11%;
  }  
.thirtyone {
  left:46.86%;
  top: 52.80%;
  }  
  .thirtytwo {
  left:53.60%;
  top: 44.45%;
  } 
    .thirtythree {
  left:49.20%;
  top: 44.32%;
  }
      .thirtyfour {
  left:39.83%;
  top: 44.97%;
  } 
        .thirtyfive {
  left:49.88%;
  top: 49.38%;
  } 
          .thirtysix {
  left:38.46%;
  top: 40.83%;
  } 
            .thirtyseven {
  left:43.54%;
  top: 39.79%;
  } 
              .thirtyeight {
  left:42.95%;
  top: 48.21%;
  } 
#quoteContainer p {
	line-height: 22px;
	text-align: center;
}
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.card {
  position: relative;
  background: transparent;
  overflow: visible;
  border-top: 1px solid rgba(255, 49, 49, 0.5);
  border-right: 1px solid rgba(0, 255, 255, 0.5);
  border-bottom: 1px solid rgba(57, 255, 20, 0.5);
  border-left: 1px solid rgba(255, 255, 113, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width:1024px;
  height:770px;
}

p {
  font-size: 0.95rem;
  text-align: center;
}

span {
  position: absolute;
  border-radius: 100vmax;
}

.top {
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent 50%,
    rgba(255, 49, 49, 0.5),
    rgb(255, 49, 49)
  );
}

.bottom {
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgb(57, 255, 20),
    rgba(57, 255, 20, 0.5),
    transparent 50%
  );
}

.right {
  top: 0;
  right: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 255, 255, 0.5),
    rgb(0, 255, 255)
  );
}

.left {
  left: 0;
  bottom: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(
    180deg,
    rgb(255, 255, 113),
    rgba(255, 255, 113, 0.5),
    transparent 70%
  );
}

.top {
  animation: animateTop 3s ease-in-out infinite;
}

.bottom {
  animation: animateBottom 3s ease-in-out infinite;
}

.right {
  animation: animateRight 3s ease-in-out infinite;
}

.left {
  animation: animateLeft 3s ease-in-out infinite;
}

@keyframes animateTop {
  25% {
    width: 100%;
    opacity: 1;
  }

  30%,
  100% {
    opacity: 0;
  }
}

@keyframes animateBottom {
  0%,
  50% {
    opacity: 0;
    width: 0;
  }

  75% {
    opacity: 1;
    width: 100%;
  }

  76%,
  100% {
    opacity: 0;
  }
}

@keyframes animateRight {
  0%,
  25% {
    opacity: 0;
    height: 0;
  }

  50% {
    opacity: 1;
    height: 100%;
  }

  55%,
  100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes animateLeft {
  0%,
  75% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }

  100% {
    opacity: 1;
    height: 100%;
  }
}