/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/main.scss ***!
  \*************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
}

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

html,
body {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  min-height: 100%;
}

img {
  max-width: 100%;
}

.page-wrapper {
  overflow-x: hidden;
}

/* page body */
/* ========================================= */
.page-body {
  line-height: 1.75em;
  background-color: white;
}

.page-body :nth-child(n+2):not(p) {
  margin-top: 2rem;
}

/* content sections */
/* ========================================= */
.content-section {
  padding: 3em;
  position: relative;
}

.content-section > *:not(.angle-divider) {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.color-section {
  background-color: lightblue;
}

.section__title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

section p {
  margin-top: 0.75rem;
}

.section__list {
  padding-left: 1rem;
  line-height: 1rem;
}

/* dividers */
/* ========================================= */
.angle-divider {
  position: absolute;
  bottom: -40px;
  left: -10%;
  right: 0;
  width: 200%;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  transform-origin: center;
  z-index: 0;
  height: 80px;
  background-color: white;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

/* page footer */
/* ========================================= */
.site-footer {
  position: sticky;
  top: 100vh;
  padding: 2rem 1rem;
}

.site-footer address {
  line-height: 1.5em;
  display: block;
  text-align: center;
}

/*--site-footer--*/
.site-footer {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

address {
  margin-top: 0.75rem;
  text-transform: capitalize;
  line-height: 4rem;
}

/*-sub-footer-*/
.sub-footer {
  position: relative;
  text-align: center;
  background-color: white;
}

.copyright-text {
  font-size: 0.75rem;
}

/* intersection states */
/* ========================================= */
.hide {
  opacity: 0;
}

.show {
  transition: 1s;
  opacity: 1;
}

body {
  background-color: lightblue;
}

.site-header {
  padding: 0.6rem;
  text-align: center;
}

.page-body {
  padding: 1rem 3rem;
}

.tab-menu {
  position: fixed;
  min-width: 100%;
  background-color: red;
  top: 0;
  left: 0;
  z-index: 1000;
}

tab-menu .side-menu {
  position: absolute;
  z-index: 1001;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 6px 0.2px white;
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transition: all 500ms ease;
  transform: translate(-100%);
  background-color: lightblue;
  display: inline-flex;
  padding: 2rem;
}
tab-menu .side-menu:hover {
  cursor: pointer;
  transform: translate(0);
}
tab-menu .side-menu .menu-link-active {
  font-size: 1.3em;
  color: black;
}
tab-menu .side-menu .tab {
  color: white;
  position: absolute;
  background-color: inherit;
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-left: 1px solid white;
  border-radius: 6px 6px 0 0;
  padding: 4px 8px 10px;
  top: 10%;
  right: -44px;
  transform: rotate(90deg);
}
tab-menu .side-menu .menu-heading {
  font-weight: bold;
  font-size: 1.25em;
  text-transform: capitalize;
  display: block;
  margin-bottom: 1rem;
}
tab-menu nav {
  display: flex;
  flex-direction: column;
}
tab-menu nav > :not(:last-child) {
  margin-bottom: 1rem;
}
tab-menu nav a {
  text-decoration: none;
  color: blue;
}
tab-menu nav a:hover {
  color: rgb(2, 2, 99);
  cursor: pointer;
}

body {
  background-color: red;
}
