﻿.d-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.noSelect {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

.nav-brand {
  text-decoration: none !important;
  line-height: 1.6rem;
}
.nav-brand span {
  color: #1c1c1c;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  font-size: 2.6rem;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}
.nav-brand span .small {
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.73rem;
}
.nav-top {
  background: white;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 800;
}
@media (max-width: 575px) {
  .nav-top .custom-container {
    box-sizing: border-box;
    padding-left: 7vw;
    padding-right: 7vw;
  }
}
.nav-top .nav-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-top .navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media (max-width: 767px) {
  .nav-top .navigation {
    display: none;
  }
}
.nav-top .navigation-item {
  display: inline-block;
}
.nav-top .navigation-item-link {
  display: block;
  margin-right: 4rem;
  font-size: 1.6rem;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  -moz-transition: 0.25s ease-in-out all;
  -o-transition: 0.25s ease-in-out all;
  -webkit-transition: 0.25s ease-in-out all;
  position: relative;
}
.nav-top .navigation-item-link:not(.btn) {
  color: #3C3C3C;
}
.nav-top .navigation-item-link:not(.btn)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #3C3C3C;
  width: 0;
  opacity: 0;
  -moz-transition: 0.25s ease-in-out all;
  -o-transition: 0.25s ease-in-out all;
  -webkit-transition: 0.25s ease-in-out all;
}
.nav-top .navigation-item-link:hover {
  text-decoration: none;
}
.nav-top .navigation-item-link:hover:not(.btn) {
  color: #3C3C3C;
}
.nav-top .navigation-item-link:hover::before {
  width: 100%;
  opacity: 1;
}
.nav-top .navigation-item:last-child a {
  margin-right: 0 !important;
}
@media (min-width: 767px) {
  .nav-top .nav-mobile-toggle {
    display: none;
  }
}
.nav-top .nav-mobile-toggle i {
  font-size: 3.5rem;
  color: #1c1c1c;
}
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  background: white;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(128, 128, 128, 0.2);
  -moz-box-shadow: 2px 2px 5px 0px rgba(128, 128, 128, 0.2);
  box-shadow: 2px 2px 5px 0px rgba(128, 128, 128, 0.2);
  height: 100vh;
  -moz-transition: 0.25s ease-in-out all;
  -o-transition: 0.25s ease-in-out all;
  -webkit-transition: 0.25s ease-in-out all;
  z-index: 1000;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 8rem 0;
  clip-path: circle(0% at 100% 0%);
  opacity: 0;
}
@media (min-width: 767px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile.show {
  clip-path: circle(150% at 100% 0%);
  opacity: 1;
}
.nav-mobile-wrapper {
  position: relative;
  width: 100vw;
}
.nav-mobile-close {
  position: absolute;
  padding: 1rem;
  top: -6rem;
  right: 2rem;
}
.nav-mobile-close i {
  font-size: 2rem;
  color: #1c1c1c;
}
.nav-mobile .nav-brand {
  margin: 0 auto;
  margin-bottom: 3rem;
  display: block;
  width: 12.5rem;
  line-height: 2rem;
}
.nav-mobile .nav-brand span {
  font-size: 3rem;
}
.nav-mobile .nav-brand span .small {
  font-size: 2rem;
  letter-spacing: 1rem;
}
.nav-mobile .navigation {
  text-align: center;
  margin: 2rem 0;
}
.nav-mobile .navigation-item-link {
  margin: 1rem 0;
  display: block;
  font-size: 1.8rem;
}
.nav-mobile .navigation-item-link.btn {
  display: inline-block;
}
.nav-mobile .navigation-item-link:not(.btn) {
  color: #3C3C3C;
}
.nav-mobile .social-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 20rem;
  margin: 0 auto;
}
.nav-mobile .social-item {
  height: 4rem;
  width: 4rem;
  background: #ccc;
  border-radius: 50%;
  margin: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.nav-mobile .social-item i {
  font-size: 2rem;
  color: #1c1c1c;
}
.nav-mobile hr {
  width: 50%;
  margin: 0 auto;
}
.nav-backdrop {
  z-index: 900;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
  opacity: 0;
  -moz-transition: 0.25s ease-in-out all;
  -o-transition: 0.25s ease-in-out all;
  -webkit-transition: 0.25s ease-in-out all;
}
.nav-backdrop.show {
  opacity: 0.5;
  pointer-events: all;
}

.footer {
  background: white;
  border-top: 1px solid rgba(28, 28, 28, 0.08);
  color: #3C3C3C;
  padding: 2rem 1rem 4rem 1rem;
}
.footer .footer-item-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  /*outline: 1px solid #ccc;*/
  padding: 5rem 5rem 0rem 5rem;
}
@media (max-width: 575px) {
  .footer .footer-item-container {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0rem;
  }
}
@media (max-width: 575px) {
  .footer .footer-item-container div {
    margin: 2rem 0 0 0;
  }
}
.footer h1 {
  color: #1c1c1c;
  margin-bottom: 2rem;
}
.footer .footer-contact-list {
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.9rem;
}
.footer p.footer-contact-item {
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 1.8rem;
  line-height: 1.35;
  margin: 0;
  padding-left: 0;
}
.footer p.footer-contact-item i {
  color: #1c1c1c;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex: 0 0 2.4rem;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 0.2rem;
  position: static;
  top: auto;
  width: 2.4rem;
}
.footer ul {
  padding: 0;
  list-style: none;
}
.footer ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.footer a {
  color: #3C3C3C;
  -moz-transition: 0.25s ease-in-out all;
  -o-transition: 0.25s ease-in-out all;
  -webkit-transition: 0.25s ease-in-out all;
  position: relative;
}
.footer a::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  opacity: 0;
  border-bottom: 1px solid #1c1c1c;
  -moz-transition: 0.25s ease-in-out all;
  -o-transition: 0.25s ease-in-out all;
  -webkit-transition: 0.25s ease-in-out all;
}
.footer a:hover {
  color: #1c1c1c;
  text-decoration: none;
}
.footer a:hover::before {
  width: 100%;
  opacity: 1;
}
.footer .social-wrapper {
  margin-top: 2rem;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .social-item {
  margin: 0 1rem;
  height: 4rem;
  width: 4rem;
  background: #F5F5F6;
  border: 1px solid rgba(28, 28, 28, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.footer .social-item i {
  color: #1c1c1c;
}
