* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:root {
  --background: white;
  --text-color: rgb(67, 186, 255);
}
/* ! header */

header {
  z-index: 999;
  background: var(--background);
  text-align: center;
  position: fixed;
  width: 100%;
  height: 60px;
  font-family: "Itim", cursive;
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 1, 0.541);
}
/* ! header End */
/*! navigation */

nav {
  background: var(--background);
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  height: auto;
  width: 100%;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 400ms ease-in-out;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li {
  text-align: center;
  height: 30px;
  margin-bottom: 1em;
  margin-left: 0em;
}

nav ul li a {
  color: rgb(41, 41, 41);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

nav ul li a:hover {
  color: var(--text-color);
}

.nav-toggle {
  display: none;
}

.nav-toggle:checked ~ nav {
  text-transform: none;
  transform: scale(1, 1);
}

.nav-toggle:checked ~ nav a {
  opacity: 1;
  transition: opacity 250ms ease-in-out 250ms;
}

/***************************/
/*     20. Extra Pages     */
/***************************/
.ex-header {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #153e52;
  text-align: center;
}

.ex-header h1 {
  color: #fff;
}

.ex-basic-1 {
  padding-top: 2rem;
  padding-bottom: 0.875rem;
  background-color: #fbfbfb;
}

.ex-basic-1 .breadcrumbs {
  margin-bottom: 1rem;
}

.ex-basic-1 .breadcrumbs .fa {
  margin-right: 0.5rem;
  margin-left: 0.625rem;
}

.ex-basic-2 {
  margin: 20px;
  padding-top: 4.75rem;
  padding-bottom: 4rem;
  padding-bottom: 4rem;
}

.ex-basic-2 h3 {
  margin-bottom: 1rem;
}

.ex-basic-2 .text-container {
  margin-bottom: 3.625rem;
  padding: 10px;
}

.ex-basic-2 .text-container.last {
  margin-bottom: 0;
}

.ex-basic-2 .list-unstyled .fas {
  color: #14bf98;
  font-size: 0.5rem;
  line-height: 1.375rem;
}

.ex-basic-2 .list-unstyled .media-body {
  margin-left: 0.625rem;
}

.ex-basic-2 .form-container {
  margin-top: 2.5rem;
}

.ex-basic-2 .btn-outline-reg {
  margin-top: 1.75rem;
}

@media screen and (max-width: 800px) {
  .nav-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 1em;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: rgb(41, 41, 41);
    height: 2px;
    width: 2em;
    border-radius: 2px;
    position: relative;
  }
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
    position: absolute;
  }
  .nav-toggle-label span::before {
    bottom: 7px;
  }
  .nav-toggle-label span::after {
    top: 7px;
  }
  nav ul li {
    text-align: center;
    height: 80px;
    margin-bottom: 1em;
    margin-left: 0em;
  }
  nav ul li a {
    color: rgb(41, 41, 41);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
  }
}

@media screen and (min-width: 800px) {
  .nav-toggle-label {
    display: none;
  }
  header {
    display: grid;
    grid-template-columns: 1fr auto minmax(600px, 3fr) 1fr;
  }
  .logo {
    grid-column: 2 / 3;
  }
  nav {
    all: unset;
    grid-column: 3 / 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  nav ul li a {
    opacity: 1;
    position: relative;
  }
  nav ul li a::before {
    content: "";
    display: block;
    height: 3px;
    background: var(--text-color);
    border-radius: 50px;
    position: absolute;
    top: -0.75em;
    left: 0;
    right: 0;
    transform: scale(0, 1);
    /* transform-origin: left; */
    transition: transform ease-in-out 250ms;
  }
  nav ul li a:hover::before {
    transform: scale(1, 1);
  }
  nav ul {
    display: flex;
  }
  nav ul li {
    margin-left: 3em;
    margin-bottom: 0;
  }
}
/*! navigation End*/
/* ! footer */

footer {
  font-family: "Itim", cursive;
  background-color: white;
  margin: 0;
  width: 100%;
  height: auto;
  padding: 10px;
  border-top: 1px solid rgba(128, 128, 128, 0.61);
  /* box-shadow: 6px 6px 0px 6px rgba(0, 0, 1, 0.541); */
}

.footer_column {
  color: rgb(41, 41, 41);
  display: flex;
  width: 65vh;
  text-align: left;
}

.footer_column p {
  color: rgb(41, 41, 41);
  text-align: left;
}
/* Style the list */

.footer_row {
  content: "";
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

ul.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 16px;
  list-style: none;
  text-align: left;
}
/* Display list items side by side */

ul.breadcrumb li {
  display: inline;
  font-size: 20px;
}
/* Add a slash symbol (/) before/behind each list item */

ul.breadcrumb li + li:before {
  padding: 2px;
  color: rgb(41, 41, 41);
  content: "/\00a0";
}
/* Add a color to all links inside the list */

ul.breadcrumb li a {
  color: rgb(41, 41, 41);
  font-family: "Itim", cursive;
  text-decoration: none;
  font-size: 15px;
}
/* Add a color on mouse-over */

ul.breadcrumb li a:hover {
  color: var(--text-color);
  text-decoration: none;
  /* text-shadow: 0px 0px 3px#000; */
}

footer ul li a:hover {
  color: var(--text-color);
  text-decoration: none;
  /* text-shadow: 0px 0px 3px#000; */
}

footer ul li a {
  margin-top: 25px;
  list-style: none;
  text-decoration: none;
  color: rgb(41, 41, 41);
  font-family: "Great Vibes";
  /* text-shadow: 2px 2px 3px#000; */
}

footer p {
  font-weight: 400;
  font-size: 15px;
}

.footer_column a {
  margin-top: 5px;
}
/* ! footer End */
/* ? common style hacks */

._row {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

._column {
  display: flex;
}

ul li {
  text-decoration: none;
  list-style: none;
}

ul li a {
  text-decoration: none;
  list-style: none;
}

.social_icons {
  font-family: "Itim", cursive;
  margin-top: 10%;
  margin-bottom: 5%;
  text-align: center;
}

.social_icons a {
  font-size: 25px;
  width: auto;
  margin: 10px;
  color: grey;
}

.fab.fa-facebook-f:hover {
  color: rgb(0, 56, 187);
  text-shadow: 1px 1px rgba(30, 30, 30, 0.548);
}

.fab.fa-twitter:hover {
  color: rgb(61, 120, 255);
  text-shadow: 1px 1px rgba(30, 30, 30, 0.548);
}

.fab.fa-linkedin-in:hover {
  color: rgb(9, 34, 92);
  text-shadow: 1px 1px rgba(30, 30, 30, 0.548);
}

.fab.fa-instagram:hover {
  background: -webkit-linear-gradient(
    rgb(184, 73, 212),
    rgb(228, 36, 36),
    rgb(49, 228, 36)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px rgba(30, 30, 30, 0.548);
}

.fab.fa-pinterest-p:hover {
  color: rgb(218, 10, 10);
  text-shadow: 1px 1px rgba(30, 30, 30, 0.548);
}

.fab.fa-youtube:hover {
  color: rgb(187, 0, 0);
  text-shadow: 1px 1px rgba(30, 30, 30, 0.548);
}

.fab.fa-snapchat-ghost:hover {
  color: yellow;
  text-shadow: 1px 1px rgba(30, 30, 30, 0.548);
}
