*::after,
*::before,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: black;
}

html {
  font-size: 62.5%;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (min-width: 87.5em) {
  html {
    font-size: 69%;
  }
}
@media only screen and (max-width: 62.5em) {
  html {
    font-size: 58%;
  }
}
@media only screen and (max-width: 56.65em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 43.75em) {
  html {
    font-size: 45%;
  }
}
@media only screen and (max-width: 40.625em) {
  html {
    font-size: 45%;
  }
}
@media only screen and (max-width: 31.25em) {
  html {
    font-size: 42%;
  }
}

body {
  background-color: black;
}

nav {
  font-family: "Roboto", sans-serif;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3cqmin 5rem !important;
}
@media only screen and (max-width: 31.25em) {
  nav .container {
    padding: 1rem 1.5rem !important;
  }
}
nav .logo__image {
  width: 15rem;
}
nav ul li {
  display: inline-block;
}
nav ul li:not(:last-of-type) {
  margin-right: 2.2rem;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  height: 0.2rem;
  bottom: -4px;
  width: 0%;
  left: 0;
  background-color: #c6222e;
}
@media only screen and (max-width: 40.625em) {
  nav ul li {
    display: none;
  }
}
nav .burger-icon {
  position: relative;
  width: 4rem;
  height: 0.2rem;
  background-color: #c6222e;
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 40.625em) {
  nav .burger-icon {
    display: block;
  }
}
nav .burger-icon::before, nav .burger-icon::after {
  position: absolute;
  content: "";
  left: 0;
  width: 4rem;
  background-color: #c6222e;
  height: 0.2rem;
}
nav .burger-icon::before {
  top: -1rem;
}
nav .burger-icon::after {
  bottom: -1rem;
}

.sticky {
  position: fixed !important;
  padding: 0.1rem 0;
  width: 100%;
  background-color: black;
  box-shadow: 2px 2.5px 3.5px rgba(0, 0, 0, 0.2);
  z-index: 20;
}
.sticky ul li a {
  color: white !important;
}

.hero__main .text-1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #E5E5E5;
  text-align: center;
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
}
.hero__main .text-1__heading {
  font-size: 4rem;
}
.hero__main .text-2 {
  font-size: 3rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  margin: 3rem 0;
  letter-spacing: 1px;
}
.hero__main .small-about {
  text-align: center;
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  color: white;
}

.about__main {
  display: flex;
  flex: 50% 50%;
  align-items: center;
  margin: 7rem 0;
}
@media only screen and (max-width: 43.75em) {
  .about__main {
    flex-direction: column;
  }
}
.about__main--text {
  flex: 1;
}
.about__main--text p {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  color: white;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 4rem;
}
.about__main--text .resume {
  text-decoration: none;
  background-color: black;
  color: white;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 1rem;
  margin: 2rem 0;
}
.about__main--picture {
  flex: 1;
}
.about__main--picture img {
  width: 70%;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 43.75em) {
  .about__main--picture img {
    margin: 2rem 0;
  }
}
@media only screen and (max-width: 31.25em) {
  .about__main--picture img {
    width: 100%;
  }
}

.skills {
  display: flex;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.skills ul {
  margin-right: 3rem;
}
.skills ul li {
  list-style-type: none;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 400;
  position: relative;
}
.skills ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #c6222e;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -1.2rem;
}
.skills ul .design::before {
  background-color: #FE0098 !important;
}

.portifolio .filter {
  margin-bottom: 3.5rem;
}
.portifolio .filter__btn {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  background-color: transparent;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  outline: none;
  margin-right: 2rem;
}
.portifolio .project {
  display: flex;
  flex: 70% 30%;
  align-items: center;
  margin-bottom: 15rem;
}
@media only screen and (max-width: 40.625em) {
  .portifolio .project {
    flex-direction: column;
    align-items: flex-start;
  }
}
.portifolio .project__display {
  flex: 70%;
  position: relative;
  margin-right: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 40.625em) {
  .portifolio .project__display {
    order: 1;
  }
}
.portifolio .project__display img {
  width: 100%;
}
.portifolio .project__descr {
  flex: 30%;
}
@media only screen and (max-width: 40.625em) {
  .portifolio .project__descr {
    order: 2;
  }
}
.portifolio .project__descr p {
  font-size: 1.9rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
  position: relative;
}
.portifolio .project__descr p::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 2.3px;
  background-color: #c6222e;
  left: 0;
  bottom: -4px;
}
.portifolio .project__descr ul {
  margin: 2rem 0;
}
.portifolio .project__descr ul li {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  text-transform: capitalize;
  margin-bottom: 7px;
}
.portifolio .project__descr ul li svg {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 5px;
}
.portifolio .project__descr .tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.portifolio .project__descr .tools svg {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  fill: #C4C4C4;
}
.portifolio .project__descr .cta {
  display: flex;
  margin-top: 3rem;
}
.portifolio .project__descr .cta a {
  background-color: #004756;
  padding: 0.4rem 1.2rem;
  display: flex;
  color: #fff;
  border-radius: 5px;
  align-items: center;
  text-decoration: none;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
}
.portifolio .project__descr .cta a svg {
  width: 2.5rem;
  display: inline-block;
  height: 2.5rem;
  margin-left: 5px;
}
.portifolio .project__descr .cta a:hover {
  transform: translateY(-3px);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
.portifolio .project__descr .cta .inactive {
  background-color: #C4C4C4;
  cursor: default;
}
.portifolio .project__descr .cta .inactive:hover {
  transform: none;
  box-shadow: none;
}

.main-website__text {
  font-weight: 400;
  line-height: 2.3rem;
}
.main-website__text .text-1 {
  font-size: 1.8rem;
  text-transform: uppercase;
}
.main-website__text .text-2 {
  text-transform: capitalize;
  font-size: 1.8rem;
  margin: 2.4rem 0;
}

.plans {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10rem 0;
}
@media only screen and (max-width: 40.625em) {
  .plans {
    flex-direction: column;
  }
}
.plans__card {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  display: inline-block;
  background-color: #FFFFFF;
  padding: 2.3rem 2.4rem;
  transition: all 0.3s ease-in-out;
}
.plans__card:not(:last-of-type) {
  margin-right: 7rem;
}
@media only screen and (max-width: 40.625em) {
  .plans__card:not(:last-of-type) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 40.625em) {
  .plans__card {
    display: block;
    margin-bottom: 2rem;
    margin-right: 0;
  }
}
.plans__card:hover {
  cursor: pointer;
  transform: translateY(-5px);
  transform: scale(1.07);
}
.plans__card .plan-heading {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  color: black;
}
.plans__card .plan-heading__2 {
  color: #C4C4C4;
  margin-top: 3px;
}
.plans__card ul {
  margin: 3.5rem 0.3rem;
}
.plans__card ul li {
  font-weight: 400;
  margin: 1.4rem 0;
  list-style: none;
  font-size: 1.3rem;
  text-transform: uppercase;
  display: flex;
  font-weight: 400;
  align-items: center;
  color: black;
}
.plans__card ul li svg {
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 0.7rem;
}
.plans__card .price {
  font-size: 2rem;
  font-weight: 400;
  color: #363636;
  text-align: center;
}
.plans__card--standard {
  background-color: #004756;
  padding: 3rem 2.5rem;
}
.plans__card--standard .plan-heading {
  color: #fff;
}
.plans__card--standard .plan-heading__2 {
  color: #8A8A8A;
  margin-top: 3px;
}
.plans__card--standard ul {
  margin: 4rem 0.7rem;
}
.plans__card--standard ul li {
  color: #fff;
}
.plans__card--standard .price {
  color: #fff;
}

.main-contact {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 31.25em) {
  .main-contact {
    flex-direction: column;
    padding: 2rem 0;
    text-align: center;
  }
}
.main-contact__image {
  flex: 1;
}
.main-contact__image img {
  display: block;
  width: 80%;
}
@media only screen and (max-width: 40.625em) {
  .main-contact__image {
    display: none;
  }
}
.main-contact .contact-heading {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 1.7rem;
  font-weight: 400;
}
@media only screen and (max-width: 40.625em) {
  .main-contact .contact-heading {
    margin: 1.7rem;
  }
}
.main-contact__details {
  flex: 1;
}
.main-contact__details ul li {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}
.main-contact__details ul li svg {
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 5px;
}
.main-contact__details .socials {
  margin-top: 2.8rem;
}
.main-contact__details .socials__main a {
  text-decoration: none;
}
.main-contact__details .socials__main a svg {
  margin-right: 1.8rem;
  width: 2.5rem;
  fill: #004756;
  height: 2.5rem;
  transition: all 0.3s ease-in-out;
}
.main-contact__details .socials__main a svg:hover {
  transform: translateY(-3px);
}
.main-contact__email {
  font-family: "Montserrat", sans-serif;
}
.main-contact__email form input::-moz-placeholder {
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(85, 85, 85, 0.3333333333);
  font-family: "Montserrat", sans-serif;
}
.main-contact__email form input::placeholder {
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(85, 85, 85, 0.3333333333);
  font-family: "Montserrat", sans-serif;
}
.main-contact__email form input[type=text] {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.main-contact__email form input[type=email] {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.main-contact__email form textarea {
  margin-bottom: 1rem;
  resize: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.main-contact__email form textarea::-moz-placeholder {
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(85, 85, 85, 0.3333333333);
  font-family: "Montserrat", sans-serif;
}
.main-contact__email form textarea::placeholder {
  font-weight: 300;
  font-size: 1.3rem;
  color: rgba(85, 85, 85, 0.3333333333);
  font-family: "Montserrat", sans-serif;
}
.main-contact__email form textarea ::-moz-selection {
  font-weight: 400;
}
.main-contact__email form textarea ::selection {
  font-weight: 400;
}
.main-contact__email form input, .main-contact__email form textarea {
  display: block;
  font-weight: 300;
  border: none;
  width: 90%;
  padding: 0.7rem 0.5rem;
  outline: none;
  font-size: 1.5rem;
  transition: all 0.2s ease-in-out;
}
.main-contact__email form input:focus, .main-contact__email form textarea:focus {
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 40.625em) {
  .main-contact__email form input, .main-contact__email form textarea {
    width: 100%;
    padding: 1rem 0.5rem;
  }
}
.main-contact__email form .send {
  background-color: #004756;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
.main-contact__email form .send:hover {
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
}

.btn {
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Oswald";
  text-transform: capitalize;
  padding: 0.9rem 2.6rem;
  margin: 0 auto;
  border-radius: 2rem;
  cursor: pointer;
}
.btn--about {
  background-color: #C6222B;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 25px;
}
/* .btn--about:hover {
  background-color: l;
  color: white;
} */
.btn--portifolio {
  color: #004756;
  background-color: #C6222B;
}
.btn--portifolio:hover {
  background-color: #004756;
  color: #C6222B;
  transform: translateY(-5px) !important;
}

.heading {
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #363636;
  font-family: "Parisienne";
}

.active {
  width: 100%;
}

.container {
  max-width: 1500px;
  padding: 0 5rem !important;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 31.25em) {
  .container {
    padding: 0 1.5rem !important;
  }
}

.hero {
  height: 80vh;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/sixteen-miles-out-bdVmIkx_gIs-unsplash.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
.hero__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 40.625em) {
  .hero__main {
    top: 50%;
  }
}

.hero-sub-prayer {
  height: 45vh;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/ismael-paramo-I-YAoNw2nds-unsplash.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
.hero-sub-prayer__main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 40.625em) {
  .hero-sub-prayer__main {
    top: 50%;
  }
}

.hero-sub-prayer__purpose {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/david-iskander-GTnFf_44e7o-unsplash.jpg");
  background-position: center;
}

.hero-sub-prayer__outcome {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/mike-labrum-fvl4b1gjpbk-unsplash.jpg");
  background-position: center;
}

.hero-sub-prayer__contact {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/chirag-k-Pg2jm-PMVWs-unsplash.jpg");
  background-position: bottom;
}

.hero-sub-prayer__donation {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/katt-yukawa-K0E6E0a0R3A-unsplash.jpg");
  background-position: center;
}

.section {
  padding: 7rem 0;
}

.prayer p {
  font-size: 1.2rem;
  letter-spacing: 0.6px;
  line-height: 1.4rem;
  color: white;
}

.navbar_btn {
  background-color: #c6222e;
  color: white;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  margin-left: 2rem;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 40.625em) {
  .navbar_btn {
    display: none;
  }
}

.hire-me {
  background-image: url("../images/hire.jpg");
  background-size: cover;
  width: 60%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  background-position: center;
  padding: 7.5rem 1.4rem;
  margin-bottom: 12rem;
}
@media only screen and (max-width: 40.625em) {
  .hire-me {
    width: 90%;
  }
}
@media only screen and (max-width: 31.25em) {
  .hire-me {
    width: 100%;
  }
}
.hire-me__text p {
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: right;
}
.hire-me__btn {
  position: absolute;
  right: 2%;
  font-weight: 400;
  bottom: 4%;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  font-size: 1.6rem;
  border: solid 0.5px black;
  text-decoration: none;
  color: black;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}
.hire-me__btn:hover {
  background-color: #000;
  color: white;
  transform: translateY(-5px);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-website {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 40.625em) {
  .main-website {
    flex-direction: column;
  }
}
.main-website__text {
  flex: 1;
}
.main-website__image {
  flex: 1;
}
.main-website__image img {
  display: block;
  margin: 0 auto;
  width: 90%;
}

.contact {
  background-color: #E8E8EA;
  padding: 0.5rem 0;
}

footer {
  padding: 1rem 0;
}
footer .footer_logo {
  width: 12rem;
  margin: 2rem auto;
  display: block;
}
footer .footer_links {
  margin: 2rem 0;
  text-align: center;
}
footer .footer_links ul {
  margin: 2rem auto;
  text-align: center;
}
footer .footer_links li {
  list-style-type: none;
  display: inline-block;
  margin: 0 auto;
  margin-right: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
footer .footer_links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}
footer .main-footer {
  display: flex;
  justify-content: end;
}
@media only screen and (max-width: 31.25em) {
  footer .main-footer {
    justify-content: center;
  }
}
footer .main-footer p {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  text-align: center;
  color: white;
}
footer .main-footer svg {
  width: 1.8rem;
  height: 1.8rem;
  color: white;
  fill: white;
  margin-left: 5px;
}

.request-plan {
  position: fixed;
  overflow-y: scroll;
  padding: 2rem;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #fff;
  z-index: 50;
  display: none;
}
.request-plan .note h1 {
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 31.25em) {
  .request-plan .note h1 {
    text-align: center;
  }
}
.request-plan .note ul {
  margin: 3rem auto;
  display: block;
}
.request-plan .note ul li {
  text-transform: capitalize;
  font-size: 1.4rem;
  list-style: none;
  font-weight: 400;
  position: relative;
}
.request-plan .note ul li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.request-plan .note ul li::before {
  content: "";
  width: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2%;
  height: 2px;
  background-color: #00D0FE;
}
@media only screen and (max-width: 31.25em) {
  .request-plan .note ul li::before {
    left: -4%;
  }
}
.request-plan .note form {
  margin: 0 auto;
  text-align: center;
}
.request-plan .note form input, .request-plan .note form textarea, .request-plan .note form select {
  padding: 0.9rem 0.4rem;
  display: block;
  font-size: 1.4rem;
  width: 30%;
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  resize: none;
  background-color: #F8F8F8;
}
@media only screen and (max-width: 43.75em) {
  .request-plan .note form input, .request-plan .note form textarea, .request-plan .note form select {
    width: 60%;
    padding: 1.3rem 0.4rem;
  }
}
@media only screen and (max-width: 31.25em) {
  .request-plan .note form input, .request-plan .note form textarea, .request-plan .note form select {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
}
.request-plan .note form input:focus, .request-plan .note form textarea:focus, .request-plan .note form select:focus {
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
}
.request-plan .note form input:focus::-moz-placeholder, .request-plan .note form textarea:focus::-moz-placeholder, .request-plan .note form select:focus::-moz-placeholder {
  display: none;
}
.request-plan .note form input:focus::placeholder, .request-plan .note form textarea:focus::placeholder, .request-plan .note form select:focus::placeholder {
  display: none;
}
.request-plan .note form input::-moz-placeholder, .request-plan .note form textarea::-moz-placeholder, .request-plan .note form select::-moz-placeholder {
  font-size: 1.2rem;
  text-transform: uppercase;
}
.request-plan .note form input::placeholder, .request-plan .note form textarea::placeholder, .request-plan .note form select::placeholder {
  font-size: 1.2rem;
  text-transform: uppercase;
}
.request-plan .note form select {
  text-transform: uppercase;
}
.request-plan .note form label {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: rgba(85, 85, 85, 0.3333333333);
  margin: 4px 0;
  display: block;
}
.request-plan .note form .request {
  background-color: #004756;
  margin-top: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.request-plan .note form .request:hover {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.request-plan .close {
  position: absolute;
  top: 5%;
  right: 8%;
  cursor: pointer;
}
.request-plan .close__main {
  position: relative;
  cursor: pointer;
}
.request-plan .close__main::after, .request-plan .close__main::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 0.2rem;
  top: 0;
  background-color: #555;
}
.request-plan .close__main::after {
  left: 0;
  transform: rotate(45deg);
}
.request-plan .close__main::before {
  left: 0;
  transform: rotate(-45deg);
}
.request-plan .close__main:hover {
  background-color: #E8E8EA;
}

.sidenavbar {
  position: fixed;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #000;
  z-index: 100;
  display: block;
  transition: all 0.3s ease-in-out;
}
.sidenavbar ul {
  text-align: center;
  display: block;
  margin: 20rem 0;
}
.sidenavbar ul li {
  list-style: none;
  text-align: center;
}
.sidenavbar ul li:not(:last-of-type) {
  margin-bottom: 2rem;
}
.sidenavbar ul li a {
  font-size: 2.3rem;
  text-transform: uppercase;
  font-weight: 400;
  color: white;
}
.sidenavbar .close-side {
  position: absolute;
  top: 4%;
  left: 2%;
  cursor: pointer;
}
.sidenavbar .close-side__main {
  position: relative;
}
.sidenavbar .close-side__main::after, .sidenavbar .close-side__main::before {
  content: "";
  position: absolute;
  height: 0.2rem;
  width: 3rem;
  background-color: white;
  left: 2rem;
  top: 0;
}
.sidenavbar .close-side__main::before {
  transform: rotate(45deg);
}
.sidenavbar .close-side__main::after {
  transform: rotate(-45deg);
}/*# sourceMappingURL=main.css.map */