/* Color Pallete */

:root {
  --color-primary: #fb3640;
  --color-secondary: #ff8a8a;
  --color-accent: #09458a;
  --color-headings: #2d3142;
  --color-body: #424242;
  --color-title-background: #d72323;
}

/* Entire Page */

*,
*::before,
*::after {
  box-sizing: border-box;
}


h3 {
  margin-bottom: 1.5rem;
}

h4 {
  margin: 5rem;
}

/* Typography */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--color-body);
  font-size: 2rem;
  line-height: 1.5;
}

h1,
h2 {
  color: var(--color-headings);
  margin-bottom: 1rem;
}

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 4.5rem;
}

h3 {
  font-size: 4rem;
}

p {
  margin-top: 0;
}

/* Links */

a {
  text-decoration: none;
}

.link-arrow {
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: bold;
}

.link-arrow::after {
  content: "→";
  font-size: 2.5rem;
  margin-left: 5px;
  transition: margin 0.15s;
}

.link-arrow:hover::after {
  margin-left: 10px;
}

/* Badge */

.badge {
  border-radius: 20px;
  padding: 0.5rem 2rem;
  font-weight: bold;
  white-space: nowrap;
}

.badge--primary {
  background-color: var(--color-primary);
  color: white;
}

.badge--secondary {
  background-color: var(--color-secondary);
  color: white;
}

.badge--small {
  font-size: 1.6rem;
}

/* Lists */

.list {
  list-style: none;
  padding-left: 0;
  color: var(--color-headings);
}

.list--inline .list__item {
  display: inline-block;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

/* Buttons */

.btn {
  font-size: 2.3rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 2rem 5rem;
  width: 35rem;
  border-radius: 40px;
  cursor: pointer;
  white-space: nowrap;
  margin: 0.5rem 0 0.5rem 1rem;
  display: flex;
  border: 0;
}

@media (min-width: 1700px) {
  .btn {
    font-size: 2.5rem;
}}

@media (max-width: 800px) {
  .btn {
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: capitalize;
    padding: 2rem 2rem;
    width: 10rem;
    border-radius: 40px;
    cursor: pointer;
    white-space: nowrap;
    margin: 0.5rem 0 0.5rem 0rem;
    display: flex;
    border: 0;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .btn {
    font-size: 2rem;
    font-weight: 500;
    text-transform: capitalize;
    padding: 2rem 2rem;
    width: 25rem;
    border-radius: 40px;
    cursor: pointer;
    white-space: nowrap;
    margin: 0.5rem 0 0.5rem 0rem;
    display: flex;
    border: 0;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .btn {
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: capitalize;
    padding: 2rem 2rem;
    width: 28rem;
    border-radius: 40px;
    cursor: pointer;
    white-space: nowrap;
    margin: 0.5rem 0 0.5rem 0rem;
    display: flex;
    border: 0;
}}


.btn--primary {
  background-color: white;
  color: #312d2a;
}

#button1,
#button2,
#button3,
#button4 {
  position: relative;
}

.btn-start-on {
  background-color: #312d2a;
  color: white;
  z-index: 1;
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn--secondary:hover {
  background-color: var(--color-body);
}

.btn--accent {
  background-color: var(--color-accent);
  color: white;
}

.btn--accent:hover {
  background-color: var(--color-body);
}

.btn--block {
  width: 100%;
  display: inline-block;
}

.btn-section2 {
  background-color: var(--color-title-background);
  color: white;
  font-size: 2.5rem;
  width: 30rem;
  height: 4.5rem;
  line-height: 4.5rem;
  margin-top: 1rem;
  padding-left: 2rem;
  text-align: center;
  box-shadow: 1px 1px 2px #c8c8c8;
}

/* Cards */

.card {
  border-radius: 8px;
  box-shadow: 0 0 20px 5px #6e6e6e;
  overflow: hidden;
}

.card__header .card__body {
  padding: 2rem 3rem;
}

.card--primary .card__header {
  background-color: var(--color-primary);
}

.card--secondary .card__header {
  background-color: var(--color-secondary);
}

/* Grids */

.grid {
  display: grid;
}

.grid--1x2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Navigation Bar */

.nav {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 800px) {
  .nav {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
}}

.nav--primary {
  background-color: white;
}

.logo {
  padding-left: 3rem;
}

@media (max-width: 800px) {
  .logo {
    padding-left: 0rem;
}}


.nav__list {
  width: auto;
  display: flex;
}

.nav__item {
  padding: 0 4rem;
  font-size: 2.8rem;
  padding-right: 3rem;
}

@media (max-width: 800px) {
  .nav__item {
    padding: 0 1rem;
    font-size: 1.2rem;
    padding-right: 0rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .nav__item {
    padding: 0 3rem;
    font-size: 2.2rem;
    padding-right: 0rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .nav__item {
    padding: 0 3rem;
    font-size: 2.6rem;
    padding-right: 0rem;
}}




.nav__item > a {
  color: var(--color-title-background);
  font-weight: 500;
  text-shadow: 1px 1px 2px #e3e3e3;
}

.nav__item > a:hover {
  color: #fe9393;
}

/* Collapsibles */

.collapsible__header {
  display: flex;
  justify-content: space-between;
}

.collapsible__heading {
  margin-top: 0;
  font-size: 3rem;
}

.collapsible__icon {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.collapsible__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.collapsible--expanded .collapsible__icon {
  transform: rotate(0);
}

.collapsible--expanded .collapsible__content {
  max-height: 100vh;
  opacity: 1;
}

/* Icons */

.icon {
  height: 40px;
  width: 40px;
}

.icon--primary {
  fill: var(--color-primary);
}

.icon-container {
  background-color: #1e1e1e;
  width: 175px;
  height: 175px;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Blocks */

.block {
  --padding-vertical: 6rem;
  padding: var(--padding-vertical) 2rem;
}

.block__header {
  text-align: center;
}

.block__heading {
  margin-top: 0;
}

.block--dark {
  background-color: black;
  color: #7b858b;
}

.block--dark .block__heading {
  color: white;
}

.block--skewed-right {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 80%);
  padding-bottom: calc(var(--padding-vertical) + 4rem);
}

.block--skewed-left {
  clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 0% 100%);
  padding-bottom: calc(var(--padding-vertical) + 4rem);
}

/* 1st Section */

.intro-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-items: center;
  height: 75rem;
}

@media (min-width: 1700px) {
  .intro-section {
    height: 95rem;
}}

@media (max-width: 800px) {
  .intro-section {
    height: 75rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .intro-section {
    height: 40rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .intro-section {
    height: 58rem;
}}

.intro-section--primary {
  background-color: var(--color-title-background);
}

.intro-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro__header {
  margin-top: 0;
  font-size: 9rem;
  color: white;
  text-align: center;
  animation: fadeIn 0.60s ease-in; 
}

@media (min-width: 1700px) {
  .intro__header {
    font-size: 10rem;
}}

@media (max-width: 800px) {
  .intro__header {
    font-size: 5rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .intro__header {
    font-size: 5.5rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .intro__header {
    font-size: 7rem;
}}


.intro__slogan {
  font-size: 4rem;
  color: white;
  animation: fadeIn 0.60s ease-in; 
}

@media (min-width: 1700px) {
  .intro__slogan {
    font-size: 5rem;
}}

@media (max-width: 800px) {
  .intro__slogan {
    font-size: 2rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .intro__slogan {
    font-size: 3rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .intro__slogan {
    font-size: 4rem;
}}

.section-1-text-shadow {
  text-shadow: 2px 2px 2px #262626;
}

.section-1-slogan-shadow {
  text-shadow: 2px 2px 1px #262626;
}

@keyframes fadeIn {  
  from {  
      opacity:0;  
  }  

  to {  
      opacity:1;  
  }  
}

.intro-icon {
  height: 35rem;
  width: 35rem;
  fill: white;
  cursor: pointer;
  margin-bottom: 5rem;
  animation: fadeIn 0.60s ease-in; 
}

@media (min-width: 1700px) {
  .intro-icon {
    height: 45rem;
    width: 45rem;
}}

@media (max-width: 800px) {
  .intro-icon {
    display:none;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .intro-icon {
    height: 20rem;
    width: 20rem;
}}

/* Navigation bar dashboard drop down */
  
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 2.8rem;  
  border: none;
  outline: none;
  color: var(--color-title-background);
  padding: 0;
  background-color: white;
  text-shadow: 1px 1px 2px #e3e3e3;
  margin: 0;
  cursor: pointer;
}

@media (max-width: 800px) {
  .dropdown .dropbtn {
    font-size: 1.2rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .dropdown .dropbtn {
    font-size: 2.2rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .dropdown .dropbtn {
    font-size: 2.6rem;
}}




.navbar a:hover, .dropdown:hover .dropbtn {
  color: #fe9393;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: var(--color-title-background);
  font-size: 2.5rem;
  font-weight: 500;
  padding: 6px 8px;
  text-decoration: none;
  display: block;
  text-align: left;
}

@media (max-width: 800px) {
  .dropdown-content a {
    font-size: 1.2rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .dropdown-content a {
    font-size: 2.2rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .dropdown-content a {
    font-size: 2.6rem;
}}




.dropdown-content a:hover {
  color: var(--color-secondary);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* .intro-icon-hover:hover {
  transition: margin-right 0.15s;
  transform: rotate(360deg);
  transition: transform 0.7s;
} */

/* .intro--skewed-right {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);
  padding-bottom: calc(var(--padding-vertical) + 4rem);
} */

/* 2nd Section */

.section-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-2-header {
  font-size: 7rem;
  margin-top: 10rem;
  margin-bottom: 0;
  color: black;
}

@media (min-width: 1700px) {
  .section-2-header {
    font-size: 8rem;
    margin-top: 12rem;
    margin-bottom: 1rem;  
}}

@media (max-width: 800px) {
  .section-2-header {
    font-size: 4rem;
    margin-top: 6rem;
    margin-bottom: 1rem;  
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-2-header {
    font-size: 5.5rem;
    margin-top: 6rem;
    margin-bottom: 1rem;  
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .section-2-header {
    font-size: 7rem;
    margin-top: 6rem;
    margin-bottom: 1rem;  
}}

.section-2-header-text {
  font-size: 2.5rem;
  width: 60vw;
  margin-top: 3rem;
  text-align: center;
  color: black;
}

@media (min-width: 1700px) {
  .section-2-header-text {
    font-size: 3rem;
    width: 60vw;
    margin-top: 3rem;
}}

@media (max-width: 800px) {
  .section-2-header-text {
    font-size: 1.4rem;
    width: 80vw;
    margin-top: 3rem;
    margin-bottom: 6rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-2-header-text {
    font-size: 2.2rem;
    width: 80vw;
    margin-top: 3rem;
    margin-bottom: 6rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .section-2-header-text {
    font-size: 3rem;
    width: 80vw;
    margin-top: 3rem;
    margin-bottom: 6rem;
}}


.section-2-text-shadow {
  text-shadow: 2px 2px 3px #b9b9b9;
}

.section-2-list {
  margin: 13rem 0 0 10vw;
}

@media (min-width: 1700px) {
  .section-2-list {
  margin: 16rem 0 0 15vw;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-2-list {
  margin: 16rem 0 0 3vw;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .section-2-list {
  margin: 22rem 0 0 3vw;
}}



.section-2-list-items > a {
  color: white;
}

.section-2-list-items > a:hover {
  color: black;
}

.section-2-container {
  justify-content: center;
  align-items: center;
}

.display-box {
  display: flex;
  position: relative;
  margin-bottom: 18rem;
}

@media (min-width: 1700px) {
  .display-box {
  margin-left: 7rem;
  margin-bottom: 25rem;
}}

@media (max-width: 800px) {
  .display-box {
  display: none;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .display-box {
    margin-left: 6rem;
    margin-bottom: 27rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .display-box {
    margin-left: 5rem;
    margin-bottom: 27rem;
}}



.display-box-text {
  width: 80rem;
  height: 45rem;
  margin-right: 20rem;
  padding: 0 10rem;
  border-radius: 20px;
  display: flex;
  font-size: 2.2rem;
  color: white;
  background-color: rgb(62, 80, 49);
  opacity: 0.95;
  position: absolute;
  top: 5vh;
  left: 32vw;
  box-shadow: 0px 0px 3px #d7d7d7;
  text-align: center;
  justify-content: center;
}

@media (min-width: 1700px) {
  .display-box-text {
    width: 85rem;
    height: 50rem;
    margin-right: 20rem;
    font-size: 2.5rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .display-box-text {
    width: 52rem;
    height: 55rem;
    margin-right: 20rem;
    font-size: 2rem;
    left: 27vw;
}} 

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .display-box-text {
    width: 72rem;
    height: 60rem;
    margin-right: 20rem;
    font-size: 2.5rem;
    left: 24vw;
}}  


.section-2-box-text-header {
  color: white;
  font-weight: 550;
  margin-bottom: 3rem;
}

@media (min-width: 1700px) {
  .section-2-box-text-header {
    font-size: 4.5rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-2-box-text-header {
    font-size: 3.5rem;
}}

@media only screen and (min-width: 1000px) and (max-width: 1250px) {
  .section-2-box-text-header {
    font-size: 5rem;
}}


.hidden {
  display: none;
}

.unhide {
  display: flex;
  flex-direction: column;
}

/* 3rd Section */

.section-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: rgb(15, 15, 15); */
  background-color: #1d1d1d;
  margin-bottom: 5rem;
}

@media (min-width: 1700px) {
  .section-3 {
    margin-bottom: 10rem;
  }}


.section-3-header {
  font-size: 7rem;
  margin-top: 10rem;
  margin-bottom: 3rem;
  color: white;
}

@media (min-width: 1700px) {
  .section-3-header {
    font-size: 8rem;
    margin-top: 12rem;
}}

@media (max-width: 800px) {
  .section-3-header {
    font-size: 4rem;
    margin-top: 6rem;
    margin-bottom: 2rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-3-header {
    font-size: 5.5rem;
    margin-top: 6rem;
    margin-bottom: 2rem;
}}




.section-3-text-shadow {
  text-shadow: 2px 2px 3px #3e3e3e;
}

/* .section-3--skewed-right {
  clip-path: polygon(0% 5%, 100% 0%, 100% 100%, 0% 100%);
} */

.fo-container,
.v-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: fit-content;
  margin-bottom: 3rem;
}

.sc-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: fit-content;
  margin-bottom: 3rem;
}

.fo,
.sc,
.v {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50vw;
  color: white;
  line-height: 2;
}

@media (min-width: 1700px) {
  .section-3-text-header {
    font-size: 4.5rem;
}}

@media (max-width: 800px) {
  .section-3-text-header {
    font-size: 2.5rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-3-text-header {
    font-size: 4rem;
}}




.section-3-text-odd {
  margin-right: 3rem;
}

.section-3-text-even {
  margin-left: 3rem;
}

.section-3-description {
  font-size: 2.2rem;
}

@media (min-width: 1700px) {
  .section-3-description {
    font-size: 2.5rem;
}}

@media (max-width: 800px) {
  .section-3-description {
    font-size: 1.3rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-3-description {
    font-size: 2rem;
}}




.family-icon,
.high-risk-icon,
.scales-icon {
  height: 150px;
  width: 150px;
  margin-top: 12rem;
}

@media (min-width: 1700px) {
  .family-icon,
  .high-risk-icon,
  .scales-icon {
    height: 175px;
    width: 175px;
}}

@media (max-width: 800px) {
  .family-icon,
  .high-risk-icon,
  .scales-icon {
    height: 110px;
    width: 110px;
    margin-top: 10rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .family-icon,
  .high-risk-icon,
  .scales-icon {
    height: 120px;
    width: 120px;
    margin-top: 13rem;
}}




/* 4th Section */

.section-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: rgb(15, 15, 15); */
  background-color: #1d1d1d;   
}

.section-4-header {
  font-size: 7rem;
  margin-top: 10rem;
  margin-bottom: 5rem;
  color: white;
}

@media (min-width: 1700px) {
  .section-4-header {
    font-size: 8rem;
    margin-top: 12rem;
    margin-bottom: 7rem;
}}

@media (max-width: 800px) {
  .section-4-header {
    font-size: 4rem;
    margin-top: 6rem;
    margin-bottom: 0rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-4-header {
    font-size: 5.5rem;
    margin-top: 6rem;
}}

.section-4-text-shadow {
  text-shadow: 2px 2px 3px #3e3e3e;
}

.map-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 5rem;
  margin-left: 5rem;
  margin-bottom: 20rem;
}

@media (max-width: 800px) {
  .map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    margin-left: 1rem;
    margin-bottom: 8rem;
}}


.section-4-all-map-container{
display: flex;
}

@media (max-width: 800px) {
  .section-4-all-map-container{
    display: block;
    margin-bottom: 7rem;
  }}


.tulsa-map,
.okc-map {
  overflow: hidden;
  height: 450px;
  width: 40vw;
  margin-bottom: -7rem;
border: 2px solid white;
box-shadow: 1px 1px 5px #ffffff;
}

@media (min-width: 1700px) {
  .tulsa-map,
  .okc-map {
    height: 600px;
    width: 40vw;
}}

@media (max-width: 800px) {
  .tulsa-map,
  .okc-map {
    height: 300px;
    width: 80vw;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .tulsa-map,
  .okc-map {
    height: 300px;
    width: 40vw;
}}

.section-4-map-header {
  color: white;
  text-shadow: 2px 2px 3px #3e3e3e;
  font-size: 4rem;
}

@media (min-width: 1700px) {
  .section-4-map-header {
    margin: 2rem;
    font-size: 4.5rem;
}}

@media (max-width: 800px) {
  .section-4-map-header {
    font-size: 2.5rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-4-map-header {
    font-size: 4rem;
}}




/* 5th Section */

.section-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.section-5-header {
  font-size: 7rem;
  margin-top: 10rem;
  margin-bottom: 3rem;
  color: black;
}

@media (min-width: 1700px) {
  .section-5-header {
    font-size: 8rem;
    margin-top: 12rem;
    margin-bottom: 3rem;
}}

@media (max-width: 800px) {
  .section-5-header {
    font-size: 4rem;
    margin-top: 6rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-5-header {
    font-size: 5.5rem;
    margin-top: 6rem;
}}

.section-5-text-shadow {
  text-shadow: 2px 2px 3px #c5c5c5;
}

.section-5-text {
  font-size: 2.2rem;
  color: black;
  width: 60vw;
  margin-top: 3rem;
  text-align: center;
}

@media (min-width: 1700px) {
  .section-5-text {
    font-size: 2.5rem;
}}

@media (max-width: 800px) {
  .section-5-text {
    font-size: 1.4rem;
    margin-top: 2rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-5-text {
    font-size: 2rem;
    margin-top: 2rem;
}}

.section-5-text-shadow {
  text-shadow: 2px 2px 3px #cdcdcd;
}

.section-5-form-container {
  display: flex;
}

@media (max-width: 800px) {
  .section-5-form-container {
    display: flex;
    flex-direction: column;
    margin-top: 0rem;
}}


.input-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .input-block {
    margin-bottom: 1rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .input-block {
    margin: 0 1rem;
  }}



.label {
  color: white;
}

.input {
  background-color: white(230, 230, 230);
  box-shadow: 2px 2px 3px #1e1e1e;
  width: 25rem;
  border-radius: 5px;
}

.input::placeholder {
  color: rgb(161, 161, 161);
  padding-left: 10px;
}

@media (max-width: 800px) {
  .input::placeholder {
    font-size: 1.5rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .input::placeholder {
    font-size: 2rem;
}}



.input-comments {
  width: 57.5vw;
  height: 75px;
}

.submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  border-radius: 10px;
  cursor: pointer;
  background-color: black;
  color: white;
  margin-bottom: 10rem;
}

@media (min-width: 1700px) {
  .submit-button {
    margin-bottom: 12rem;
}}

@media (max-width: 800px) {
  .submit-button {
    font-size: 1.5rem;
    margin-top: 3rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .submit-button {
    font-size: 2rem;
    margin-top: 3rem;
}}

.input-form {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* 6th Section */

.section-6 {
  background-color: var(--color-title-background);
  color: white;
  font-size: 2.5rem;
  font-weight: 300;
  height: 27rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

@media (max-width: 800px) {
  .section-6 {
    font-size: 1.5rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-6 {
    font-size: 2rem;
}}



.section-6-email {
  color: white;
}

.footer-icon {
  width: 60px;
  height: 60px;
}

@media (max-width: 800px) {
  .footer-icon {
    width: 30px;
    height: 30px;
}}

.footer-icon1 {
  width: 40px;
  height: 40px;
  margin-bottom: 11px;
}

@media (max-width: 800px) {
  .footer-icon1 {
    width: 20px;
    height: 20px;
    margin-bottom: 7px;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .footer-icon {
    width: 35px;
    height: 35px;
}}



/* 7th Section a.k.a. FAQ */

.section-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  margin-bottom: 8rem;
}

@media (min-width: 1700px) {
  .section-7 {
    margin-bottom: 13rem;
  }}


.section-7-header {
  font-size: 7rem;
  margin-top: 5rem;
  margin-bottom: 4rem;
  color: black;
}

@media (min-width: 1700px) {
  .section-7-header {
    font-size: 8rem;
    margin-top: 0rem;
    margin-bottom: 4rem;
}}

@media (max-width: 800px) {
  .section-7-header {
    font-size: 4rem;
    margin-top: 2rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .section-7-header {
    font-size: 5.5rem;
    margin-top: 2rem;
}}

.section-7-text-shadow {
  text-shadow: 2px 2px 3px #b9b9b9;
}

/* Slideshow container */
.slideshow-container {
  max-width: 70vw;
  position: relative;
  margin: auto;
}

@media (max-width: 800px) {
  .slideshow-container {
    max-width: 100vw;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .slideshow-container {
    max-width: 100vw;
}}



/* Hide the images by default */
.mySlides {
  display: none;
  padding: 0 5rem;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgb(197, 197, 197);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: black;
  padding: 8px 12px;
  /* position: absolute;
  bottom: 8px;
  width: 100%; */
  text-align: center;
}

.slideshow-header {
  font-size: 4rem;
  margin-bottom: 2rem;
}

@media (min-width: 1700px) {
  .slideshow-header {
    font-size: 4.5rem;
    margin-bottom: 3rem;
}}

@media (max-width: 800px) {
  .slideshow-header {
    font-size: 2.5rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .slideshow-header {
    font-size: 4rem;
}}

.slideshow-text {
  font-size: 2.2rem;
}

@media (min-width: 1700px) {
  .slideshow-text {
    font-size: 2.5rem;
}}

@media (max-width: 800px) {
  .slideshow-text {
    font-size: 1.4rem;
}}

@media only screen and (min-width: 801px) and (max-width: 999px) {
  .slideshow-text {
    font-size: 2rem;
}}


/* Number text (1/3 etc) */
.numbertext {
  color: black;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  height: 4.5rem;
  width: 4.5rem;
  border-radius: 2.25rem;
  color: white;
  background-color: rgb(15, 15, 15);
  border: none;
  font-size: 3rem;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 100%;
}

.back-to-top:hover {
  color: var(--color-primary);
}

/* Dashboard Page */

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 2.2rem;
  color: #818181;
  display: block;
  transition: 0.3s;
}

@media (min-width: 1700px) {
  .sidebar a {
    font-size: 2.5rem;
  }}


.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 2.5rem;
  cursor: pointer;
  background-color: white;
  color: black;
  padding: 10px 15px;
  border: none;
  height: 50px;
}

@media (max-width: 800px) {
  .openbtn {
    font-size: 2rem;
}}


.openbtn:hover {
  color: #818181;
}

#main {
  transition: margin-left 0.5s;
  /* padding: 16px; */
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {
    padding-top: 15px;
  }
  .sidebar a {
    font-size: 18px;
  }
}

.dashboard-display {
  justify-content: center;
  align-items: center;
}

.sub-dashboard-display, .job-status-update-dashboard-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.detail-dashboard-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dashboard__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  font-size: 7rem;
  background-color: var(--color-title-background);
  color: white;
}

@media (min-width: 1700px) {
  .dashboard__header {
    font-size: 8rem;
}}

@media (max-width: 800px) {
  .dashboard__header {
    font-size: 4rem;
    text-align: center;
  }}



.nav__text__display {
  text-align: center;
  font-size: 2rem;
  margin-top: 15rem;
  color: black;
}

.dashboard_display_subtitle {
  font-size: 5rem;
  margin-top: 5rem;
}

@media (max-width: 800px) {
  .dashboard_display_subtitle {
    font-size: 3rem;
    margin-top: 4rem;
    }}


.sub_dashboard_bottom {
  margin-bottom: 5rem;
}

/* .details_container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.detail-max-width {
  width: 50%;
} */

#countdown {
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-align: center;
}

.contractor_weekly_subtext {
  display: flex;
  font-size: 20px;
  margin-bottom: 20px;
}


.sub-dashboard-display-your-weekly {
  background-color:#fcfcfc;
}

.login-screen {
  background-color: #c72323;
}

.login-screen-hide {
  visibility: hidden;
}

#consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 8rem;
  background-color: #fff;
  transition: opacity 1s ease;

  &.hidden {
      opacity: 0;
  }
}

.sidebar_views::before {
  content: "";
  display: block;
  border-bottom: 1px dotted #474747fa;
  /* margin: 5px 0 0 0; */
}

.sidebar_views::after {
  content: "";
  display: block;
  border-bottom: 1px dotted #474747fa;
  /* margin: 5px 0 0 0; */
}

.sidebar_tools::after {
  content: "";
  display: block;
  border-bottom: 1px dotted #474747fa;
  /* margin: 5px 0 0 0; */
}