/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/

@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic);

/* UNIVERSAL */

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
}

/* ROOT FONT STYLES */

* {
  font-family: 'Lato', Helvetica, sans-serif;
  color: #333447;
  line-height: 1.5;
}

/* TYPOGRAPHY */

ol {
    font-size: 1.125rem;
    font-weight: bold;
}

h1 {
  font-size: 2.5rem;
  color: #98002e;
}


h2 {
  font-size: 2rem;
}


h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1.8;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}
.footer {
    background-image: linear-gradient(#1f245b, #10122e);
    min-height: 280px;
    text-align: center;
    width: 100%;
    color: white;
}
.footer a {
    color: white;
}
.nav {
    height: auto;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-image: linear-gradient(#1f245b, #10122e);
}

.header {
    background-size: contain;
    background-repeat: no-repeat;
}
.header img {
    height: 100%;
    width: 100%;
}
.main {
    min-height: 310px;
    text-align: center;
    background-color: #d8cbbb;
    border-bottom: 1px solid brown;
}
.new_index {
    height: 100vh;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}
.new_index img {
    height: 100%;
    width: 100%;
}
/* ==== GRID SYSTEM ==== */

.container {
    /*width: 1260px;*/
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    background-color: #d8cbbb;
}

.row {
    position: relative;
    width: 100%;
    background-color: #d8cbbb;
}

    .row [class^="col"] {
        float: left;
        margin: 0.2rem 2%;
        min-height: 0.125rem;
    }

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 98%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
  .container {
    width: 90%;
    background-color: #d8cbbb;
  }
}

@media only screen and (min-width: 50em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }
}

@media only screen and (min-width: 60em) { /* 960px */
  .container {
    width: 75%;
    max-width: 60rem;
    background-color: #d8cbbb;
  }
}
/* ==== MENU ==== */
.nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    background-image: linear-gradient(#1f245b, #10122e);
    font-weight: bold;
}
    .nav ul ul {
        background-image: linear-gradient(#10122e, #1f245b);
    }
.nav ul li {
	width: 100%;
	position: relative;
    font-weight: bold;
	/*z-index: 1001;*/
}

.nav ul li a {
	color: white;
	text-decoration: none;
	padding: 20px;
	display: block;
}
.dropdown {
	position: absolute;
	width: 100%;
	flex-wrap: wrap;
	visibility: hidden;
	transition: 0.3s;
	left: 0;
	top: -10%;
	/*z-index: 1000;*/
}
.nav ul li:hover .dropdown {
	visibility: visible;
	top: 100%;
}
.dropbtn {
	border-right: 1px solid grey;
}
.nav ul ul li:hover {
    background-image: linear-gradient(#10122e, #1f245b);
}
table {
    font-weight: bold;
    font-size: 24px;
}
.sponsors img {
    width: 200px;
    height: 80px;
    padding-top: 10px;
}
input[type=submit] {
    border-radius: 10px;
    font-family: sans-serif;
    font-size: 18px;
    padding: 10px;
    width: auto;
    font-weight: bold;
    background-color: #98002e;
    color: #e6d4a0;
    box-shadow: 2px 2px;
    cursor: pointer;
}
table input {
    width: 220%;
    height: 150%;
    font-size: 24px;
    background-color: #FEF0DF;
    background-image: linear-gradient(#FEF0DF, #F6E8D7);
    border-radius: 10px;
}
input[type=text] {
    width: 325px;
}
input[type=number] {
    width: 325px;
}
input[type=tel] {
    width: 325px;
}
.menu-header {
    visibility: hidden;
    height: 0px;
}
@media (max-width: 767px) {
	.nav ul {
		display: table;
		width: 100%;
		z-index: 3;
		/*z-index: 1004;*/
	}
	.dropdown ul {
		position: relative;
		left: 0;
		top: 0;
		transition: none;
		visibility: visible;
		display: none;
		z-index: 3;
		/*z-index: 1003;*/
	}
	.display{
		display: block;
		z-index: 2;
		flex-wrap: wrap;
	}
    .vid {
        height: 400px;
    }
    .menu-content {
        visibility: hidden;
        height: 35px;
        font-size: 20px;
    }
    .menu-content-vis{
        visibility: visible;
        height: auto;
    }
    .menu-header {
        text-align: right;
        padding: 15px;
        visibility: visible;
        cursor: pointer;
    }
    .fa-bars{
        color: #fff;
        border: 1px solid #fff;
        padding: 5px 15px;
        border-radius: 4px;
        font-size: 20px;
    }
    input[type=text] {
        width: 240px;
    }

    input[type=number] {
        width: 240px;
    }

    input[type=tel] {
        width: 240px;
    }
}

/*scale mobile manually*/
.interview {
    min-height: 750px;
}
.interview iframe {
    height: 600px;
    width: 80%;
}
.vid {
    background-image: url("../../images/VidFrame.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 628px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid iframe {
    height: 60%;
    width: 84%;
}
@media (max-width: 1024px) {
    .vid iframe {
        height: 55%;
        width: 86%;
    }
    .vid {
        height: 420px;
    }
    .interview {
        height: 600px;
    }
    .interview iframe{
        height: 80%;
        width: 80%;
    }
}
@media (max-width: 799px) {
    .vid iframe {
        height: 77%;
        width: 82%;
    }

    .vid {
        height: 450px;
    }
}
@media (max-width: 768px) {
    .vid iframe {
        height: 74%;
        width: 82%;
    }

    .vid {
        height: 450px;
    }
    .interview {
        height: 400px;
    }
    .interview iframe{
        height: 80%;
        width: 80%;
    }
}
@media (max-width: 500px) {
    .vid iframe {
        height: 74%;
        width: 79%;
    }

    .vid {
        height: 240px;
    }
    .interview {
        height: 300px;
    }
    .interview iframe{
        height: 80%;
        width: 80%;
    }
}

/*@media (max-width: 2560px) {
    .vid iframe {
        height: 77%;
        width: 74%;
    }

    .vid {
        height: 628px;
    }
}
@media (max-width: 1600px) {
    .vid iframe {
        height: 60%;
        width: 84%;
    }

    .vid {
        height: 628px;
    }
}*/
/*iframe {
    display: block;
    vertical-align: middle;
    height: 60%;
    width: 88%;
    padding-top: 18%;
    padding-left: 6%;
    align-items: center;
}*/
.thank_you {
    height: 450px;
}
.thank_you img {
    height: 100%;
    width: 100%;
}
.puzzle {
    background-image: url("../../images/puzzle.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 450px;
    text-align: center;
    color: beige;
    font-weight: bold;
    min-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*SVG Hover Effects*/
#COVID:hover {
    fill: blue;
    opacity: 0.35;
}
#Safe_and_Easy:hover {
    fill: blue;
    opacity: 0.35;
}
#Med_Diet:hover {
    fill: blue;
    opacity: 0.35;
}
#Managing_Stress:hover {
    fill: blue;
    opacity: 0.35;
}
#Fall_Prevention:hover {
    fill: blue;
    opacity: 0.35;
}
#Medicare_Resource_Center:hover {
    fill: blue;
    opacity: 0.35;
}
#Health_Care_Assistants:hover {
    fill: blue;
    opacity: 0.35;
}
#Exercise_and_Brain_Power:hover {
    fill: blue;
    opacity: 0.35;
}
#Primary_Care_Physicians:hover {
    fill: blue;
    opacity: 0.35;
}
#Wellcare:hover {
    fill: blue;
    opacity: 0.35;
}
#SCAN:hover {
    fill: blue;
    opacity: 0.35;
}
#Insurance:hover {
    fill: blue;
    opacity: 0.35;
}
#Managed_Care:hover {
    fill: blue;
    opacity: 0.35;
}
#CELEBRATING:hover {
    fill: blue;
    opacity: 0.35;
}
#HDMG_x5F_TOP:hover {
    fill: blue;
    opacity: 0.35;
}
#HERITAGE:hover {
    fill: blue;
    opacity: 0.35;
}
#SOTY:hover {
    fill: blue;
    opacity: 0.35;
}
#VCSA:hover {
    fill: blue;
    opacity: 0.35;
}
#TIMES_x5F_OF_x5F_LIFE:hover {
    fill: blue;
    opacity: 0.35;
}
#SEAL:hover {
    fill: blue;
    opacity: 0.35;
}
#LAPTOP:hover {
    fill: blue;
    opacity: 0.35;
}
#WATCH:hover {
    fill: blue;
    opacity: 0.35;
}
#CAMERA:hover {
    fill: blue;
    opacity: 0.35;
}
#CLOCK:hover {
    fill: blue;
    opacity: 0.35;
}
#HDMG_x5F_LOGO:hover {
    fill: blue;
    opacity: 0.35;
}
#HDMG:hover {
    fill: blue;
    opacity: 0.35;
}

/*END SVG Hover Effects*/
.centered {
    text-align: center;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.puzzle img {
    height: 100%;
    width: 100%;
}
.puzzle iframe {
    height: 95%;
    width: 95%;
}
.portait {

}
.portrait img {
    height: 310px;
    width: auto;
}
.main img {
    width: 100%;
    height: 100%;
}

.jukebox {
    background-image: url(../../images/jukebox.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}


/* IMAGE SLIDERS */
.carousel {
    position: relative;
    height: 600px;
    width: 80%;
    margin: 0 auto;
}
.carousel_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel_track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.carousel_track {
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
    position: relative;
    transition: transform 250ms ease-in;
}
.carousel_slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.carousel_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    cursor: pointer;
}
.carousel_button--left {
    left: -40px;
}
.carousel_button--right {
    right: -40px;
}
.carousel_button img {
    width: 35px;
    height: 35px;
}
.carousel_nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    display: block; /* TAKE OUT - LEAVING IN TEMPORARILY */
}
.carousel_indicator {
    border: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: rgba(0,0,0,.3);
    margin: 0 8px;
    cursor: pointer;
}
.carousel_indicator.current-slide {
    background: rgba(0,0,0,.75);
}
.is-hidden {display: none;}
/*p span {
    display: block;
}*/

.olli {
    font-size: 1.125rem;
}
.newbutton {
    width: 200px;
    height: 70px;
    background-image: linear-gradient(#98002e, #000000);
    border: 3px solid #000000;
    border-radius: 5px;
    color: white;
    font-size: 34px;
    font-weight: bold;
    margin: 0 auto;
    display: block;
    box-shadow: rgba(140,114,114,0.4) 7px 7px;
}
.newbutton:hover {
    background-image: linear-gradient(#09339c , #000000);
    cursor: pointer;
}
.comment {
    font-weight: bold;
    margin: 15px;
}