* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*-------- Colors --------*/
:root {
  --primary-color: #077fa5;
  --primary-color-transp: #0d628db2;
  --primary-color-light: #81a8bbb9;
  --dark-color: #0d638d;
  --color-accent: #cf8344;
  --color-accent-dark: #79500b;
  --color-red: #d34707;
  --ligth-color: #fff1e6;
  --box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  --box-shadow-hover: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  --light-grey: #f1f1f1;
  --dark-grey: rgb(82, 82, 82);
}

/*-------- Typography --------*/
h1 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
h2 {
  /*Bold black text centered*/
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
h3 {
  /*Thin LARGE black text*/
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 0;
  color: black;
}
h4 {
  /*Bold red smaller heading*/
  margin-top: 1rem;
  margin-bottom: 0rem;
  font-size: 39px;
  text-align: center;
  color: var(--primary-color);
}
h5 {
  /*Bold black body heading text aligned left*/
  font-size: 25px;
  font-weight: 700;
  text-align: left;
  padding-left: 1rem;
}
h6 {
  /*Small thin black body heading text NO PADDING*/
  font-size: 25px;
  font-weight: 500;
  text-align: left;
  padding: 0.5rem 0rem;
}
p {
  color: var(--dark-grey);
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  padding: 10px;
}
.sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-top: 0;
  text-decoration: underline;
}
a {
  color: var(--dark-color);
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
}

.txt--light-grey {
  color: #cfcfcf;
}
.txt--light {
  color: #fff;
}

.txt--warning {
  color: var(--color-red);
}

.txt--green {
  color: var(--primary-color);
}

.mob--hide {
  display: inline-block;
}
@media screen and (max-width: 786px) {
  .mob--hide {
    display: hidden;
  }
}

/*-------- Object Oriented Programming--------*/
.head {
  width: 100vw;
  background-position: center;
  background-size: cover;
  position: relative;
}
.badge {
  font-size: 21px;
  padding: 0.5rem 1rem;
  display: inline-flex;
  border-radius: 0.4rem;
}

/*-------- Styles--------*/
.light {
  background-color: var(--ligth-color);
  color: var(--dark-color);
}
.dark {
  background-color: var(--dark-color);
  color: var(--ligth-color);
}
.txt-white {
  color: #fff;
  text-align: left;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

/*-------- HEADER / NAV BAR --------*/
.index {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.296), rgba(15, 118, 150, 1)),
    url(images/scrubs.jpg);
}
nav,
.admin--nav {
  display: flex;
  padding: 0.5vw 6vw;
  justify-content: space-between;
  align-items: center;
}
.admin--nav {
  background-color: #000;
  height: 8vh;
}
nav img {
  width: 150px;
  margin-right: 5rem;
}
.admin--nav img {
  width: 100px;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul{
  display: inline-block;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.nav-links ul li a button,
.nav-links form  {
 outline: 0;
 padding: 0;
 margin: 0;
 background-color: inherit;
 color: inherit;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 4.5rem;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 780px) {
  .text-box p {
    font-size: 0.9rem;
    line-height: 1.3rem;
    margin: 10px 2.5rem 40px 2.5rem;
  }
}
.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 1s;
}
.hero-btn:hover {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color-transp);
}
nav .fas {
  display: none;
}

/*drop down*/
.dropbtn {
  /* background-color: var(--primary-color-light); */
  color: white;
  padding: 0;
  font-size: 16px;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 100%;
}
.dropbtn > i::before,
.dropbtn > p {
  width: 40px;
  height: 40px;
  margin: 2.5px;
}
.dropbtn > p{
color: #fff;
font-size: 1.5rem;
font-weight: 700;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1b7;
  min-width: 140px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  left: -30px;
  z-index: 2;
}

.dropdown-content a {
  color: black;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: var(--primary-color-transp);}

@media (max-width: 700px) {
  .text-box h1 {
    font-size: 20px;
    margin-top: 5rem;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: absolute;
    background: var(--dark-grey);
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fas {
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  nav .fa-times{
    display: block;
  }
  nav .fa-bars{
    display: inline-block;
    margin-left: 1rem;
  }
  .nav-links ul {
    padding: 30px;
  }
  nav img {
    margin-right: 1rem;
  }
}

/*-------- FLEX BOX --------*/
.flex-space {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.flex--box2 {
  flex-basis: 1fr;
  min-width: 15vw;
}

.flex--left {
  justify-content: left;
}
@media screen and (max-width: 920px) {
  .flex-space {
  display: flex;
  align-content: space-between;
  flex-direction: column;
  }
  .flex--box2 {
    flex-basis: 100%;
    min-width: 80vw;
  }
}

/*-------- Admin Grid  $ RESPONSIVENESS--------*/
.grid {
  display: grid;
  margin: 0 5rem;
}
.grid--c12 {
  grid-template-columns: 25vw 65vw;
}

.grid > div,
.grid > span {
  padding: 2rem;
}

.scroll {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 92vh;
}

.push {
  margin-left: 2rem;
}

button {
  border: none;
  border-radius: 10px;
  padding: 1rem;
  white-space: nowrap;
}

button:hover {
  cursor: pointer;
}

/*-------- SERVICES --------*/
.services {
  width: 100vw;
  height: 60vh;
  margin: auto;
  text-align: center;
  padding-left: 15rem;
  padding-right: 15rem;
  flex-basis: 31%;
  background-image: linear-gradient(rgba(15, 118, 150, 1), #fff);
  display: block;
}
.services h1,
.services p {
  color: var(--light-grey);
}
.service--line {
  width: 100vw;
  height: 5vw;
  background-color: rgba(15, 118, 150);
  border: 1px solid rgba(15, 118, 150);
  display: block;
  margin: 0;
}
.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.service-col {
  flex-basis: 28%;
  background: rgba(142, 156, 158, 0.438);
  border: 1px solid var(--light-grey);
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  transition: 0.5s;
}
.service-col:hover {
  box-shadow: var(--box-shadow);
  background: rgba(108, 130, 135, 0.761);
  /* border: 1px solid rgba(108, 130, 135, 0.761); */
}

@media (max-width: 700px) {
  .services {
    background-image: linear-gradient(#fff, #fff);
    padding: 2rem;
    height: 140vh;
  }
  .row {
    flex-direction: column;
  }
  .service--line {
    display: none;
  }
}

/*-------- LOCATIONS --------*/
.locations {
  width: 75vw;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}
.row {
  display: flex;
  justify-content: space-evenly;
}
.location-col {
  flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.location-col img {
  width: 100%;
  display: block;
}
.layer {
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.layer:hover {
  background: var(--primary-color-transp);
}
.layer h3 {
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}
.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .layer {
    background: var(--primary-color-transp);
  }
  .layer h3 {
    bottom: 49%;
    opacity: 1;
  }
}

/*-------- FACILITIES --------*/
.facilities {
  width: 75vw;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
.facilities-col {
  flex-basis: 25%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
}
.facilities-col img {
  width: 100%;
  border-radius: 10px;
}
.facilities-col p {
  padding: 0;
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
}
.facilities-col h6 {
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 780px) {    
.facilities-col img {
  max-height: 20vh;
  object-fit: cover;
}
}

/*-------- TESTIMONIALS --------*/
.testimonials {
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}
.testimonials-col {
  flex-basis: 44%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
  background: var(--ligth-color);
  padding: 25px;
  cursor: pointer;
  display: flex;
}
.testimonials-col img {
  height: 50px;
  margin-left: 5px;
  margin-right: 30px;
  border-radius: 50%;
}
.testimonials-col p {
  padding: 0;
}
.testimonials-col h3 {
  margin-top: 15px;
  text-align: left;
}
.testimonials-col .fas,
.far {
  color: var(--primary-color);
}

@media (max-width: 700px) {
  .testimonials-col img {
    margin-left: 0px;
    margin-right: 15px;
  }
}

/*-------- CALL TO ACTION --------*/
.cta {
  margin: 100px auto;
  width: 89vw;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/banner.png);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
}
.cta h1 {
  color: #fff;
  margin-bottom: 40px;
  padding: 0;
}

@media (max-width: 700px) {
  .cta h1 {
    font-size: 24px;
  }
}

/*-------- FOOTER --------*/
.footer {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
.footer h4 {
  margin-top: 02px;
  font-weight: 600;
}
.footer .far {
  color: black;
}
.icons .fab {
  margin: 0 13px;
  padding: 0 0 18px 0;
}
.icons p {
  display: inline-block;
}
.icons .fab,
.icons p {
  color: var(--primary-color);
  cursor: pointer;
}
.icons .fab:hover {
  color: var(--dark-color);
}

/*----C-O-N-T-A-C-T----*/
.contact {
  min-height: 45vh;
  background-image: linear-gradient(rgba(61, 61, 61, 0.9), rgba(4, 9, 30, 0.5)),
    url(images/contactus.png);
}
/*-------- MAP --------*/
#map-container {
  width: 87vw;
  height: 50vh;
  position: relative;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  transition: 0.5s;
  border-radius: 15px;
  overflow: hidden;
}
#map-container:hover {
  box-shadow: var(--box-shadow);
}
#map-container button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  cursor: pointer;
  border-radius: 15px;
}
#map {
  position: absolute;
  left: 22em;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  overflow: hidden;
}
#locations-panel {
  position: absolute;
  left: 0;
  width: 22em;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  background: white;
  padding: 0.5em;
  box-sizing: border-box;
}

@media only screen and (max-width: 876px) {
  #map {
    left: 0;
    bottom: 50%;
  }
  #locations-panel {
    top: 50%;
    right: 0;
    width: unset;
  }
  #map-container {
    margin: 0;
    width: 100vw;
    height: 60vh;
  }
}

#locations-panel-list > header {
  padding: 1.4em 1.4em 0 1.4em;
}
#locations-panel-list h1.search-title {
  font-size: 1em;
  font-weight: 500;
  margin: 0;
}
#locations-panel-list h1.search-title > img {
  vertical-align: bottom;
  margin-top: -1em;
}
#locations-panel-list .search-input {
  width: 100%;
  margin-top: 0.8em;
  position: relative;
}
#locations-panel-list .search-input input {
  width: 100%;
  border: 1px solid rgba(0, 40, 66, 0.2);
  border-radius: 0.3em;
  height: 2.2em;
  box-sizing: border-box;
  padding: 0 2.5em 0 1em;
  font-size: 1em;
}
#locations-panel-list .search-input-overlay {
  position: absolute;
}
#locations-panel-list .search-input-overlay.search {
  right: 2px;
  top: 2px;
  bottom: 2px;
  width: 2.4em;
}
#locations-panel-list .search-input-overlay.search button {
  width: 100%;
  height: 100%;
  border-radius: 0.2em;
  color: black;
  background: transparent;
}
#locations-panel-list .search-input-overlay.search .icon {
  margin-top: 0.05em;
  vertical-align: top;
}
#locations-panel-list .section-name {
  font-weight: 500;
  font-size: 0.9em;
  margin: 1.8em 0 1em 1.5em;
}
#locations-panel-list .location-result {
  position: relative;
  padding: 0.8em 3.5em 0.8em 1.4em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
#locations-panel-list .location-result:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
#locations-panel-list .location-result:last-of-type {
  border-bottom: none;
}
#locations-panel-list .location-result.selected {
  border-radius: 15px;
  outline: 2px solid var(--primary-color);
}
#locations-panel-list button.select-location {
  margin-bottom: 0.6em;
}
#locations-panel-list .location-result h2.name {
  font-size: 1em;
  font-weight: 500;
  margin: 0;
}
#locations-panel-list .location-result .address {
  font-size: 0.9em;
  margin-bottom: 0.5em;
}
#locations-panel-list .location-result .distance {
  position: absolute;
  top: 0.9em;
  right: 0;
  text-align: center;
  font-size: 0.9em;
  width: 5em;
}
#locations-panel-list .show-directions {
  position: absolute;
  right: 1.2em;
  top: 2.3em;
}
#location-results-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/*-------- CONTACT FORM --------*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.cont-row {
  margin-top: 1%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 80%;
  margin: 0 auto;
}
.contact-form-col {
  padding: 1rem 0;
  flex-basis: 50%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.contact-form-col > h5 {
  font-size: 190%;
}
.topic-col {
  padding: 1rem 2rem;
  flex-basis: 50%;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.contact-form {
  border: 0.3rem solid var(--light-grey);
  border-radius: 10px;
}
.cont-fa {
  color: var(--primary-color);
}
.inv-fa {
  color: transparent;
}
.contact--point {
  font-size: 150%;
  line-height: 2.1rem;
}

.contact--point b {
  font-size: 80%;
}
.topic-box {
  margin-top: 1.5rem;
  margin-left: 1rem;
  background: var(--light-grey);
  border-radius: 10px;
  transition: 0.3s;
}
.topic-box:hover {
  box-shadow: var(--box-shadow);
}
.topic-box h3 {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  padding-bottom: 0;
  font-size: 20px;
  color: var(--dark-grey);
  font-weight: 300;
}
.topic-box p {
  padding-top: 0.6rem;
  padding-left: 1.5rem;
  padding-bottom: 0;
  padding-right: 2rem;
  font-size: 15px;
  line-height: 18px;
}
.topic-box a {
  text-decoration: underline;
  padding-bottom: 0.6rem;
  font-size: 15px;
}
.topic-box a ol {
  line-height: 18px;
  font-size: 15px;
}
.topic-box a:hover {
  color: var(--primary-color);
}
.follow {
  margin: 2rem 5rem;
  text-align: right;
}
.follow .fab {
  margin-top: 2rem;
  margin-left: 0rem;
  color: var(--primary-color);
}
.follow .fab:hover {
  color: var(--dark-color);
}
.contact-form-col label {
  display: block;
  font-size: 20px;
  margin-left: 2rem;
  margin-top: 3rem;
}
.contact-form-col input,
.contact-form-col textarea {
  border: 0.15rem solid var(--light-grey);
  border-radius: 5px;
  display: block;
  margin-left: 2rem;
  margin: 1rem;
  padding: 0.8rem 0.8rem;
  font-size: 20px;
  width: 85%;
}
.contact-form-col h3 {
  font-size: 30px;
  margin-left: 1rem;
  margin-top: 1rem;
  color: var(--dark-grey);
  font-weight: 400;
}
.contact-form-col p {
  color: var(--dark-grey);
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  margin: 0 .5rem;
}
.contact-form-col textarea {
  resize: none;
  margin-bottom: 1rem;
}
.contact-form-col button {
  padding: 1rem 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 2rem;
  color: var(--dark-grey);
  font-size: 21px;
  font-weight: 400;
  background-color: var(--light-grey);
  border: var(--light-grey);
  border-radius: 10px;
}
.contact-form-col button:hover {
  background-color: #f44336;
  color: #fff;
}

@media (max-width: 700px) {
  .cont-row {
    flex-direction: column;
    width: 100%;
  }
  .contact-form-col input {
    margin: 2rem 0;
    padding: 0.5rem 0.8rem;
    font-size: 18px;
  }
  .contact-form-col textarea {
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 0.5rem 0.8rem;
    font-size: 18px;
    margin-top: 0.5rem;
  }
  .contact-form {
    border-top: 1rem solid #f1f1f1;
    border-bottom: 1rem solid #f1f1f1;
    border-right: none;
    border-left: none;
    border-radius: 10px;
  }
  .contact-form-col {
    padding: 1rem 1rem;
    flex-basis: 25%;
  }
  .topic-box {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  .contact-form-col h3 {
    color: black;
    margin-top: 4rem;
    margin-left: 0;
  }
  .contact-form-col p {
    margin-left: 0;
  }
  .contact-form-col label {
    font-size: 18px;
    margin-left: 0rem;
    margin-top: 4rem;
    margin-bottom: 0;
  }
  .topic-col {
    padding: 1rem 1rem;
  }
  .follow {
    text-align: center;
  }
}

/*-------- LOCATIONS CARDS --------*/
.loc-cards {
  margin-top: 3rem;
  padding: 1rem 2rem;
  text-align: center;
}
.loc-cards h3 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 0;
}
.loc-row {
  margin-top: 1rem;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}
.location-card {
  text-align: left;
  background-color: var(--light-grey);
  border-radius: 10px;
  padding: 1rem 1rem;
  margin-top: 1rem;
  flex-basis: 30%;
  transition: 0.2s;
}
.location-card:hover {
  border-top: 5px solid var(--primary-color);
  flex-basis: 33%;
  padding: 1rem 2.5rem;
  font-weight: 600;
}
.location-card:hover .contact-button {
  background-color: var(--primary-color);
  color: #fff;
}
.location-card h4 {
  text-align: left;
  margin-bottom: 0;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  font-size: 45px;
  font-weight: 400;
}
.bold {
  margin-top: 1rem;
  font-weight: 600;
}
.location-card ul {
  margin-left: 3rem;
}
.contact-button {
  padding: 1rem 1rem;
  margin: 2rem 2rem;
  font-size: 18px;
  border: 0.2rem solid var(--primary-color);
  border-radius: 10px;
  background-color: #fff;
  color: var(--primary-color);
  cursor: pointer;
}
.empty {
  list-style: none;
}
@media (max-width: 700px) {
  .loc-row {
    flex-direction: column;
  }
  .contact-button {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .loc-cards h3 {
    font-size: 40px;
    font-weight: 600;
  }
  .location-card:hover {
    text-align: left;
    background-color: var(--light-grey);
    border-radius: 10px;
    padding: 1rem 1rem;
    margin-top: 1rem;
    flex-basis: 20%;
    transition: 0.2s;
  }
}

/*----S-E-R-V-I-C-E-S----*/
.serv {
  min-height: 60vh;
  background-image: linear-gradient(rgba(61, 61, 61, 0.9), rgba(4, 9, 30, 0.5)),
    url(images/service.jpg);
}
@media screen and (max-width: 425px) {
  .serv {
    min-height: 60vh;
    background-image: linear-gradient(rgba(61, 61, 61, 0.9), rgba(4, 9, 30, 0.5)),
      url(images/service1.jpg);
  }
}
.proj {
  margin-top: -15vh;
  min-height: 100vh;
  background-image: linear-gradient(rgba(61, 61, 61, 0), rgba(255, 255, 255, 1)),
    url(images/MMunit.webp);
    z-index: -3;
}
.proj > .text-box > h1 {
  margin-top: 30vh;
  color: #914e5d;
  text-shadow: 0 0 24px #FFF;
  font-weight: 300;
  width: 100vw;
  text-align: center;
  margin-left: -5vw;
}
.proj > .text-box > p {
  color: #c37390;
  letter-spacing: 0.6rem;
}
.proj > nav {
background-color: #4c152059;
}

/* FLOWERS */
.sticky-flower {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-attachment: scroll;
}

.flower1 {
  margin-top: 35vh;
  left: 0;
  width: 20vw;
  height: auto;
  position: absolute;
  z-index: -1;
}
.flower2 {
  margin-top: 20vh;
  right: 0;
  width: 20vw;
  height: auto;
  position: absolute;
  z-index: -1;
}
.flower3 {
  margin-top: -10vh;
  left: 0;
  z-index: -2;
  width: 10vw;
  height: auto;
}
.flower4 {
  margin-top: -15vh;
  width: auto;
  height: 50vh;
  float: right;
  z-index: -1;
}


@media screen and (max-width: 425px) {
  .proj {
    min-height: 60vh;
    background-image: linear-gradient(rgba(61, 61, 61, 0), rgba(255, 255, 255, 1)),
      url(images/MMunit.webp);
      text-shadow: 0 0 20px #4c1520;
  }
  .proj > .text-box > h1 {
    font-size: 200%;
  }
  .sticky-flower {
    width: 40vw;
    height: auto;
  }
  .flower2 {
    margin-top: 50vh;
    width: 20vw;
    height: auto;
  }
  .flower3 {
    padding-top: 10vh;
    width: 20vw;
  }
  .flower4 {
    height: 30vh;
    width: auto;
  }
}


/*-------- INTRODUCTION --------*/
.intro {
  width: 100vw;
  height: auto;
  padding: 0 7rem;
  background-color: var(--dark-color);
}
.intro h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}
@media screen and (max-width: 425px) {
  .intro {
    padding: 0 1rem;
  }
}


/*-------- start count stats --------*/
section#counter-stats {
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  width: 80%;
}
.stats {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0 2rem;
}
.stats .fas {
  color: var(--dark-color);
  font-size: 80px;
  margin: 1rem auto;
}
.stats h6 {
  text-align: center;
  line-height: 1.6rem;
}

/*-------- MOBILE UNIT SERVICES --------*/
.services_container {
  height: auto;
  width: 90vw;
  margin: 0 auto 3.5rem auto; 
  display: grid;
  padding: 0;
  grid-template-columns: 50vh;
  grid-template-rows: auto 1fr;
  background-color: #e5eff0;
  border-radius: 15px;
  overflow: hidden;
}

.services_container img {
  height: 35vh;
  width: 90vw;
  background-size: contain;
}

.services_container div {
  padding: 0 2rem 1.2rem 2rem;
  width: 90vw;
}

.services_container > div > h4 {
  font-size: 25px;
  text-align: left;
}

.services_container > div > p {
  padding: 0;
  line-height: normal;
}

@media screen and (min-width: 780px) {
  .services_container {
    height: 250px;
    width: 70vw;
    grid-template-columns: auto 1fr;
    grid-template-rows: 50vh;
  }
  .services_container img {
    height: auto;
    max-width: 300px;
    background-size: contain;
  }
  .services_container div {
    width: auto;
  }
  .services_container > div > h4 {
    font-size: 30px;
  }
}

/*-----A-B-O-U-T-----*/
.about {
  min-height: 55vh;
  background-image: linear-gradient(rgba(4, 9, 30, 0.3), rgba(61, 61, 61, 1)),
    url(images/about.jpg);
}

.about__head {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1600' height='800' preserveAspectRatio='none' viewBox='0 0 1600 800'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1024%26quot%3b)' fill='none'%3e%3crect width='1600' height='800' x='0' y='0' fill='rgba(61%2c 61%2c 61%2c 1)'%3e%3c/rect%3e%3cpath d='M 0%2c33 C 80%2c61.8 240%2c160.2 400%2c177 C 560%2c193.8 640%2c118.8 800%2c117 C 960%2c115.2 1040%2c171.2 1200%2c168 C 1360%2c164.8 1520%2c114.4 1600%2c101L1600 800L0 800z' fill='rgba(99%2c 99%2c 99%2c 1)'%3e%3c/path%3e%3cpath d='M 0%2c463 C 106.8%2c424.6 320.4%2c268.4 534%2c271 C 747.6%2c273.6 854.8%2c458.6 1068%2c476 C 1281.2%2c493.4 1493.6%2c381.6 1600%2c358L1600 800L0 800z' fill='rgba(207%2c 131%2c 68%2c 1)'%3e%3c/path%3e%3cpath d='M 0%2c537 C 106.8%2c587.6 320.4%2c775.6 534%2c790 C 747.6%2c804.4 854.8%2c619 1068%2c609 C 1281.2%2c599 1493.6%2c713.8 1600%2c740L1600 800L0 800z' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1024'%3e%3crect width='1600' height='800' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
  background-size: 100% 101%;
  height: 25vh;
  margin-top: -0.8rem;
  width: 100vw;
  display: block;
  position: relative;
}

.about__head-txt {
  /* margin-top: 25vw; */
  /* height: 25vh; */
  padding: 1rem 15rem;
  color: #000;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 1.2;
  /* position: absolute; */
  top: -150px;
  text-align: center;
}

.doctors {
  width: 80%;
  display: block;
  margin: 0 auto;
}

.doc__card {
  display: flex;
  flex-direction: row;
  border-top: 2px soid var(--color-red);
  width: 100%;
  background-color: var(--ligth-color);
  padding: 1.5rem 3rem;
  border-radius: 15px;
}

.doc__card img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin-right: 2rem;
  border: 1px solid var(--color-accent-dark);
  size: fit-content;
  size: cover;
}

.doc__card-txt {
  flex-basis: 70%;
  line-height: 1.1;
  color: #000;
}

.doc__card-txt h2 {
  text-align: left;
  padding: 0.5rem 0.5rem 0 0.5rem;
  margin: 0;
}
.qual {
  padding: 0.2rem 0 0 0.5rem;
  color: var(--dark-grey);
  line-height: 1.3;
}

.doc__card-txt p {
  font-size: 1.4rem;
  color: black;
  line-height: 1.3;
  letter-spacing: 1.2;
  font-weight: 500;
}

.doc__card-txt ul {
  padding-left: 2rem;
  font-size: 1.4rem;
}

.doc__cta {
  padding: 1rem;
  flex-basis: 15%;
  display: flex;
  flex-direction: column;
}

.doc__cta p {
  margin: 1rem 0 0 0.5rem;
}

.doc__cta a {
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 1rem;
  color: #fff;
  text-align: center;
}

.doc__cta a:hover {
  background-color: var(--dark-color);
}

@media screen and (max-width: 768px) {
  .doctors {
    margin: 0;
    padding: 1rem;
    width: 100vw;
  }
  .about__head-txt {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    line-height: 1.1;
    top: -100px;
  }
  .doc__card {
    flex-direction: column;
    width: 80%;
    margin: auto;
    display: inline-block;
    padding: 1rem;
  }
  .doc__card-txt p,
  .doc__card-txt ul {
    font-size: 1.2rem;
    line-height: 1.1;
  }
  .doc__card img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: auto;
    border: 1px solid var(--color-accent-dark);
    size: fit-content;
    size: cover;
  }
}

/*-----B-L-O-G-----*/
.blog {
  min-height: 45vh;
  background-image: linear-gradient(rgba(4, 9, 30, 0.9), rgba(4, 9, 30, 0.5)),
    url(images/blog.jpg);
}

/*----POPULAR POSTS----*/
.popular {
  width: 100vw;
  height: 55vh;
  background-color: var(--dark-grey);
}

/*----Blog Flex Box Specs----*/
.blog-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 2rem auto;
  width: 85vw;
}
.post {
  border-radius: 1rem;
  flex: 1 1 auto;
  margin: 1rem 2rem;
  padding: 1.5rem 2rem;
  line-height: 1.2;
  color: #fff;
  overflow: hidden;
  transition: 0.3s;
}
.post:hover {
  box-shadow: var(--box-shadow);
}

/*----POPULAR----*/
.pop-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 95vw;
  height: 55vh;
  margin: auto;
}
.pop-row h1 {
  color: #fff;
}
.clear {
  height: 50%;
  visibility: hidden;
}
.blog-col {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.post-col {
  flex-basis: 45%;
  background-color: var(--light-grey);
}

@media (max-width: 700px) {
  .pop-row {
    flex-direction: column;
  }
  .blog-container {
    flex-direction: column;
    justify-content: space-evenly;
    margin: 2rem auto;
    width: 90vw;
  }
  aside {
    border-left: none;
    border-top: 0.5rem solid var(--dark-color);
  }
}

/*----BLOG----*/
main {
  flex-basis: 75%;
  justify-content: flex-start;
}

/*----SOCIALS----*/
aside {
  justify-content: flex-end;
  flex-basis: 25%;
  flex-grow: 0%;
  border-left: 0.5rem solid var(--dark-color);
  border-top: none;
  border-radius: 1rem;
  overflow: hidden;
}
.social {
  position: relative;
  border-radius: 0.5rem;
  margin: 1rem 1.5rem;
}
.social:hover {
  box-shadow: var(--box-shadow);
}
.social-banner {
  max-width: 20vw;
  height: 15vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.profile-image {
  position: absolute;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  float: left;
  width: 25%;
  height: auto;
  margin: 0.4rem 1rem;
  bottom: 10%;
}
.white-banner {
  background-color: #fff;
  height: 10vh;
  border-bottom: 0.2rem solid var(--light-grey);
  border-radius: 0.5rem;
}
.social-name {
  padding-left: 28%;
  padding-top: 3%;
}
.social-btn {
  background-color: var(--primary-color);
  border-radius: 0.6rem;
  width: 70%;
  margin-left: 1.5rem;
  margin-bottom: 3rem;
}

.social-btn .fab {
  padding: 0rem 1rem;
}
.social-btn:hover {
  background-color: var(--dark-color);
  cursor: pointer;
}

/*-- Blog Backgroung images (800x1300)--*/
.b1 {
  background-image: linear-gradient(rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 1)),
    url(images/blog.jpg);
}
.b2 {
  background-image: linear-gradient(rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 1)),
    url(images/blog.jpg);
}
.fb {
  background-image: linear-gradient(rgba(4, 9, 30, 0), rgba(4, 9, 30, 0)),
    url(https://www.facebook.com/IMEmedSouthAfrica/photos/a.105828557793070/279534723755785/);
}

/*-- BOOKINGS --*/
.bookings {
  height: 80vh;
  background-image: linear-gradient(rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0)),
    url(images/travel.jpg);
  z-index: -1;
}
.bookings--container > h1 {
  font-size: 130%;
  text-align: left;
  font-weight: 300;
}

.booking--container {
  width: 70vw;
  display: block;
  margin: -60vh auto 10vh auto;
  background-color: rgba(255, 255, 255, 0.713);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  font-size: 110%;
  z-index: 3;
  padding: 1rem 3rem;
}

.booking--search {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  width: 90%;
  display: block;
  margin: 1rem auto;
  padding: 2.5rem 2rem;
}

.grid--bookings {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: 1fr;
}

.grid--bookings select option:hover {
  background-color: var(--primary-color);
}

.grid--bookings > select {
  width: 100%;
}
.grid--bookings > div {
  margin: 0 2rem;
}

.bookings--availability-btn {
  width: 30%;
  margin: 2rem 0 2rem 65%;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

.bookings--availability-btn:hover {
  color: #fff;
  background-color: var(--primary-color);
  cursor: pointer;
}

.book--form {
  padding: 0 3rem;
}

.book--form label {
  color: var(--dark-grey);
}

.book--form select,
.book-form input {
  font-size: 90%;
}
.grid--bookings input,
.grid--bookings select {
  margin: 0.5rem 0;
  padding: 0.5rem;
  /* border-radius: 10px; */
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 2px solid var(--primary-color);
}

/* PRODUCT CARDS */
.bookings-avail-contrainer {
  width: 70vw;
  display: block;
  margin: auto;
}

.avail--products {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 2rem 3rem;
}

.avail--products:hover {
  box-shadow: var(--box-shadow-hover);
}

.avail--products img {
  width: 277px;
  height: 155px;
  size: fit-content;
  display: inline-block;
}

.avail--products > div {
  padding-left: 3rem;
}

.avail--products > div:first-child {
  padding-left: 0;
}

.avail--products h6 {
  display: inline-block;
  text-align: left;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 0;
  font-size: 200%;
  margin-top: -1rem;
}

.avail--products > div:last-of-type {
  margin-top: 1rem;
}

.avail--products .fab {
  color: #a6b5b8;
}

/*-------- MODAL --------*/
/* Float cancel and delete buttons and add an equal width */
.cancelbtn, .deletebtn {
  float: left;
  width: 50%;
}

/* Add a color to the cancel button */
.cancelbtn {
  background-color: #ccc;
  color: #fff;
}
.cancelbtn:hover {
  background-color: #888;
}

/* Add a color to the delete button */
.deletebtn {
  background-color: var(--color-accent);
  color: #fff;
}
.deletebtn:hover {
  background-color: var(--color-red);
}

/* Add padding and center-align text to the container */
.container {
  padding: 3rem;
  text-align: left;
}
.container input,
.container select, 
.container textarea {
  margin: 1rem 0;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #474e5d;
  padding-top: 50px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
 
/* The Modal Close Button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

.close:hover,
.close:focus {
  color: #f44336;
  cursor: pointer;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .deletebtn {
     width: 100%;
  }
}

/*-------- Serch Bar --------*/
.search {
  width: 100%;
  /* position: relative; */
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 3px solid var(--primary-color);
  border-right: none;
  padding: 5px;
  height: 36px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
}

.searchTerm:focus{
  color: #00B4CC;
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
  width: 100%;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

/*-------- Units --------*/
.units--list {
  background-color: #f1f1f1;
}

.unit--list_button {
  width: 100%;
  height: 10vh;
  text-align: left;
  border: none;
  margin: 5px 0;
  padding: 0 1.5rem;
  border-radius: 10px;
}
.unit--list_button:hover {
  cursor: pointer;
}

.new{
  background-color: var(--primary-color-transp);
  color: #fefefed6;
}
.new:hover {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: var(--box-shadow);
}

.plain {  
  background-color: rgba(255, 255, 255, 0.87);
  color: #a6b5b8;
}
.plain:hover {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  color: #000;
}

.unit--list_button h6 {
  padding: 0;
  margin: 0;
  
}

.unit--list_button p{
  padding: 0;
  margin: 0;
}

.unit--details {
  background-color: #fff;
}

.unit--details > .flex-space > div {
  flex-basis: 50%;
}
.unit--details > .flex-space > div >img {
  width: 90%;
  padding: 5%;
}
.unit--details > .flex-space > div > h5,
.unit--details > .flex-space > div > p {
  padding: 0;
}

.unit--details > .flex-space > div > button{
  border: none;
  border-radius: 10px;
  color: #fff;
  padding: 0.5rem;
  margin: 1rem 0 0 0;
}
.unit--details > .flex-space > div > button:hover {
  cursor: pointer;
}

/* buttons */
.btn--stretch {
  width: 90%;
}

.btn--prim {  
  background-color: var(--primary-color-transp);
  color: #fff;
}
.btn--prim:hover {
  background-color: var(--primary-color);
}

.btn--warn {
  background-color: var(--color-accent);
}
.btn--warn:hover {
  background-color: var(--color-red);
}

.btn--inactive {
  background-color: var(--dark-grey);
  color: #fff;
}
.btn--inactive:hover {
  background-color: var(--light-grey);
  cursor: not-allowed;
}

.log--list {
  border: 2px solid var(--primary-color-transp);
  border-radius: 10px;
  width: 90%;
  display: block;
  margin-top: 5px;
}

.log--list > table {
  width: 100%;
}

.log--list > table > tbody > tr> th{
  text-align: left;
  border-bottom: 1px solid var(--dark-grey);
}

/* .log--list > table > tbody > tr> th >button {

} */


/*-------- FORM --------*/
input,
textarea,
select {
  padding: 5px;
  border: 1px solid var(--primary-color-transp);
  border-radius: 5px;
  margin: 1rem 2rem;
}

.margin--clear {
  margin: 0;
}

.padding--clear {
  padding: 0;
}


/*-------- Special Search Tables --------*/
.data--table-body {
  background-color: var(--light-grey);
}
.data--table {
  width: 80%;
  display: block;
  margin: auto;
  position: relative;
}

.filter_container {
  background-color: var(--dark-grey);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  margin: 1rem;
  display: inline-block;
}

.add_button_left {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.add_button {
  color: #fff;
  padding: 8px 125px;
  margin: 15px;
}
.add_button:hover {
  background-color: #000;
}

input[type="date"]:hover,
input[type="date"]::-webkit-inner-spin-button:hover,
input[type="date"]::-webkit-calendar-picker-indicator:hover  {
  cursor: pointer;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    z-index: +1;
    margin-left: -6rem;
    padding-left: 4rem;
}
.filter_input ,
.filter_text,
.filter_radio,
.add_button {
  display: inline-block;
  /* float: left; */
  background-color: var(--dark-grey);
  margin: 0 .5rem;
  color: #fff;
}

.filter_input ,
.filter_text,
.filter_radio {
  padding: 8px;
}

.filter_input {
  border: none;
}

.filter_input:focus, 
.heading_input:focus {
  border: none;
  outline: none;
}

.filter_text {
  text-transform: uppercase;
  font-weight: 600;
}

.data--table-view {
  margin: 0 15px;
  width: 97%;
}

.data_table_h {
  background-color: var(--dark-grey);
  color: #fff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.data_table_h >span {  
  border-left: 1px solid var(--light-grey);
}

.col_1,
.col_2,
.col_3,
.col_4,
.col_5,
.col_6{
  display: inline-block;
  padding: 8px;
}

.repairs_data > .col_1 {width: 8%;}
.repairs_data > .col_2 {width: 30%;}
.repairs_data > .col_3 {width: 30%;}
.repairs_data > .col_4 {width: 7%;}
.repairs_data > .col_5 {width: 7%;}
.repairs_data > .col_6 {width: 14%;}

.bookings_data > .col_1 {width: 10%;}
.bookings_data > .col_2 {width: 14%;}
.bookings_data > .col_3 {width: 14%;}
.bookings_data > .col_4 {width: 35%;}
.bookings_data > .col_5 {width: 24%;}

.data_table_h-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
}

.data_table_data > .data_table_tr {
  border-bottom: 1px solid var(--light-grey);
}
.data_table_data > .data_table_tr > span {
  margin-right: .1rem;
}
.data_table_data > div.w3-hide {
  border-bottom: 1px solid var(--light-grey);
}

.toggle {
  background-color: inherit;
  margin: 0;
  padding: 0;
  color: #fff;
  transition: 0.3s;
}
.toggle-a{transform: rotate(90deg);} /*down*/
.toggle-b{transform: rotate(270deg);} /*up*/

.data_table_h-grid  > .heading_input {
  border: none;
  margin: 0;
  padding: 0;
  background-color: inherit;
  color: #fff;
  width: 100%;
  border-radius: 0;
}

.data_table_h-grid  > .heading_input::placeholder {
  color: #fff;
}

.data_table_container {
  max-height: 80vh;
  overflow-y: scroll;
}

.data_table_data {
  background-color: #fff;
  border-radius: 0 0 10px 10px ;
  overflow: hidden;
}

.data_table_tr {
  width: 100%;
  padding: .2rem;
  text-align: left;
  color: #000;
  background-color: #fff;
  border-radius: 0;
}

.data_table_tr:hover {
  background-color: var(--primary-color-light);
}

div.w3-hide > span {
  padding: 1rem ;
}

div.w3-hide > span > div > button,
div.w3-hide > span > div > form > button,
div.w3-hide > span > div > form.log--list {
  padding: .5rem;
  margin: .5rem;
}

.flex--left > div > form> input {
  margin: 0.5rem ;
}

/*-------- SIGN UP FORM --------*/
.reg_form {
  width: 600px;
  margin: 1rem auto;
  display: block;
}

.reg_form label {
  display: inline-block;
  margin: 0;
  padding: 0.5rem 0.5rem 0 0;
  float: left;
  color: var(--dark-grey);
}

.reg_form button {
  width: 100%;
  margin: 1rem 0;
  color: #fff;
  background-color: var(--primary-color);
}
.reg_form button:hover {
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.field--border {
  width: 100%;
  border: 1px solid var(--primary-color-light);
  border-radius: 5px;
  padding: 0.5rem 3rem;
}

.field--border h6 {
  margin: 0;
}

.input--stretch {
  width: 95%;
  resize: none;
}

@media screen and (max-width: 920px) {
  .reg_form {
    width: 80%;
    margin: 1rem auto;
    display: block;
  }
}