/*------------------------------------------------
*
* Template name : Gray
* Version       : 1.0
* Author        : FlaTheme
* Author URL    : http://themeforest.net/user/flatheme
* Table of Contents: 
* 1.  Base
* 2.  Forms
* 3.  Image
* 4.  Lists
* 5.  Typography
* 6.  Buttons
* 7.  Clients
* 8.  Lightbox
* 9.  Maps
* 10. Resume
* 11. Services
* 12. Sliders
* 13. Testimonial
* 14. Blog Posts
* 15. Portfolio
* 16. Preloader
* 17. Section Nav
* 18. Toggle Menu
* 19. Utilities
*
-------------------------------------------------*/
/*------------------------------------------------
  1. Base
-------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Mono:wght@300;400;500;600;700&display=swap");
html, body {
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  background: #f2f5f8;
  min-height: 100%;
}

.container, .container-fluid {
  position: relative;
}

.sections-wrapper {
  padding-bottom: 3em;
}

.section-box {
  background: white;
  border-radius: 0.5em;
  padding: 3em;
  -webkit-box-shadow: 0 8px 26px 0 rgba(22, 24, 26, 0.07);
  box-shadow: 0 8px 26px 0 rgba(22, 24, 26, 0.07);
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.section-box:hover {
  -webkit-box-shadow: 0 8px 32px 0 rgba(22, 24, 26, 0.11);
  box-shadow: 0 8px 32px 0 rgba(22, 24, 26, 0.11);
}

@media (max-width: 991.98px) {
  .section-box {
    padding: 2.5em 2em;
  }
}

@media (max-width: 767.98px) {
  .section-box {
    padding: 2em 1.5em;
  }
}

.bg-lines {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.bg-lines .bg-line-1,
.bg-lines .bg-line-2,
.bg-lines .bg-line-3,
.bg-lines .bg-line-4 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-right: 1px solid #dcdfe2;
}

.bg-lines .bg-line-1:before,
.bg-lines .bg-line-2:before,
.bg-lines .bg-line-3:before,
.bg-lines .bg-line-4:before {
  content: '';
  position: absolute;
  top: -80px;
  right: -1px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  width: 1px;
  height: 80px;
  -webkit-animation: bgLine 8s linear infinite;
  animation: bgLine 8s linear infinite;
}

.bg-lines .bg-line-1 {
  width: 20%;
}

.bg-lines .bg-line-2 {
  width: 40%;
}

.bg-lines .bg-line-2:before {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.bg-lines .bg-line-3 {
  width: 60%;
}

.bg-lines .bg-line-3:before {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.bg-lines .bg-line-4 {
  width: 80%;
}

.bg-lines .bg-line-4:before {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

@media (max-width: 991.98px) {
  .bg-lines .bg-line-1 {
    width: 25%;
  }
  .bg-lines .bg-line-2 {
    width: 50%;
  }
  .bg-lines .bg-line-3 {
    width: 75%;
  }
  .bg-lines .bg-line-4 {
    display: none;
  }
}

@-webkit-keyframes bgLine {
  0% {
    top: -80px;
  }
  100% {
    top: 100%;
  }
}

@keyframes bgLine {
  0% {
    top: -80px;
  }
  100% {
    top: 100%;
  }
}

.link-decoration {
  color: rgba(0, 0, 0, 0.9);
}

.link-decoration:hover, .link-decoration:focus {
  color: black;
  text-decoration: underline;
}

.bg-black .link-decoration,
.bg-dark .link-decoration {
  color: white;
}

.bg-black .link-decoration:hover, .bg-black .link-decoration:focus,
.bg-dark .link-decoration:hover,
.bg-dark .link-decoration:focus {
  color: white;
}

.box-shadow {
  -webkit-box-shadow: 0 8px 26px 0 rgba(22, 24, 26, 0.11);
  box-shadow: 0 8px 26px 0 rgba(22, 24, 26, 0.11);
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.box-shadow:hover {
  -webkit-box-shadow: 0 8px 32px 0 rgba(22, 24, 26, 0.15);
  box-shadow: 0 8px 32px 0 rgba(22, 24, 26, 0.15);
}

.border-radius {
  border-radius: 0.5em;
  overflow: hidden;
}

.border-radius-1 {
  border-radius: 1em;
  overflow: hidden;
}

.border-radius-2 {
  border-radius: 2em;
  overflow: hidden;
}

.hero-avatar {
  position: relative;
}

.hero-avatar img {
  width: 100%;
  height: auto;
  max-width: 256px;
  max-height: 256px;
  border-radius: 50%;
}

.hero-avatar .hero-avatar-text {
  position: absolute;
  bottom: 1em;
  left: 0.5em;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 2em;
  padding: 0.5em 1em;
  color: white;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 8px 26px 0 rgba(22, 24, 26, 0.11);
  box-shadow: 0 8px 26px 0 rgba(22, 24, 26, 0.11);
}

/*------------------------------------------------
  2. Forms
-------------------------------------------------*/
input:not(.form-check-input),
textarea {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
    --bs-alert-border-radius: var(--bs-border-radius);
    --bs-alert-link-color: inherit;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: #052c65;
    background-color: #cfe2ff;
    border: 1px solid #9ec5fe;
    border-radius: var(--bs-alert-border-radius);
}

input:not(.form-check-input):focus, input:not(.form-check-input):active,
textarea:focus,
textarea:active {
  outline: 0;
  box-shadow: none;
  border-color: black;
}

textarea {
  height: 140px;
}

input:not(.form-check-input), textarea,
.form-control {
  color: black;
}

input:not(.form-check-input)::-webkit-input-placeholder, textarea::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #aaabac;
}

input:not(.form-check-input)::-moz-placeholder, textarea::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #aaabac;
}

input:not(.form-check-input):-ms-placeholder, textarea:-ms-placeholder,
.form-control:-ms-placeholder {
  color: #aaabac;
}

input:not(.form-check-input)::-ms-placeholder, textarea::-ms-placeholder,
.form-control::-ms-placeholder {
  color: #aaabac;
}

input:not(.form-check-input)::placeholder, textarea::placeholder,
.form-control::placeholder {
  color: #aaabac;
}

label {
  font-size: 14px;
}

.required:after {
  content: '*';
  padding-left: 3px;
}

.bg-black input:not(.form-check-input), .bg-black textarea, .bg-black .form-control, .bg-dark input:not(.form-check-input), .bg-dark textarea, .bg-dark .form-control {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.bg-black input:not(.form-check-input)::-webkit-input-placeholder, .bg-black textarea::-webkit-input-placeholder, .bg-black .form-control::-webkit-input-placeholder, .bg-dark input:not(.form-check-input)::-webkit-input-placeholder, .bg-dark textarea::-webkit-input-placeholder, .bg-dark .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.bg-black input:not(.form-check-input)::-moz-placeholder, .bg-black textarea::-moz-placeholder, .bg-black .form-control::-moz-placeholder, .bg-dark input:not(.form-check-input)::-moz-placeholder, .bg-dark textarea::-moz-placeholder, .bg-dark .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.bg-black input:not(.form-check-input):-ms-placeholder, .bg-black textarea:-ms-placeholder, .bg-black .form-control:-ms-placeholder, .bg-dark input:not(.form-check-input):-ms-placeholder, .bg-dark textarea:-ms-placeholder, .bg-dark .form-control:-ms-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.bg-black input:not(.form-check-input)::-ms-placeholder, .bg-black textarea::-ms-placeholder, .bg-black .form-control::-ms-placeholder, .bg-dark input:not(.form-check-input)::-ms-placeholder, .bg-dark textarea::-ms-placeholder, .bg-dark .form-control::-ms-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.bg-black input:not(.form-check-input)::placeholder, .bg-black textarea::placeholder, .bg-black .form-control::placeholder, .bg-dark input:not(.form-check-input)::placeholder, .bg-dark textarea::placeholder, .bg-dark .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.bg-black input:not(.form-check-input):focus, .bg-black textarea:focus, .bg-black .form-control:focus, .bg-dark input:not(.form-check-input):focus, .bg-dark textarea:focus, .bg-dark .form-control:focus {
  border-color: white;
}

.submit-result span {
  display: none;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}

.submit-result span.show-result {
  margin-top: 30px;
  display: block;
}

.submit-result span#success {
  color: #32CD32;
}

.submit-result span#error {
  color: #E32227;
}

.submit-result span .error-color {
  background: rgba(255, 0, 0, 0.1);
}

/*------------------------------------------------
  3. Image
-------------------------------------------------*/
img {
  width: auto;
  max-width: 100%;
  height: auto;
}

img[class*='img-mask-avatar'] {
  border-radius: 50%;
}

img.img-mask-avatar-sm {
  min-width: 70px;
  width: 70px;
  height: 70px;
}

img.img-mask-avatar-md {
  min-width: 90px;
  width: 90px;
  height: 90px;
}

img.img-mask-avatar-lg {
  min-width: 110px;
  width: 110px;
  height: 110px;
}

/*------------------------------------------------
  4. Lists
-------------------------------------------------*/
ol {
  margin: 0 0 -7px;
}

ol li {
  margin: 0 0 7px;
}

ul {
  margin: 0 0 -7px;
}

ul li {
  margin: 0 0 7px;
}

ul li ul, ul li ol {
  margin-top: 7px;
}

ul li a {
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

ul[class*=' list-'], ul[class^='list-'] {
  padding: 0;
}

ul.list-unstyled li, ul.list-dash li, ul.list-circle li {
  list-style-type: none;
}

ul.list-dash li:before {
  content: '-';
  padding-right: 7px;
}

ul.list-dash li ul, ul.list-dash li ol {
  padding-left: 40px;
}

ul.list-circle li {
  position: relative;
  padding-left: 13px;
}

ul.list-circle li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 0.7;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: black;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

ul.list-circle li:hover:before {
  opacity: 1;
}

ul[class*=' list-inline'] li, ul[class^='list-inline'] li {
  display: inline-block;
}

ul.list-inline-lg {
  margin-right: -14px;
  margin-left: -14px;
}

ul.list-inline-lg li {
  padding: 0 14px;
}

ul.list-inline {
  margin-right: -7px;
  margin-left: -7px;
}

ul.list-inline li {
  padding: 0 7px;
}

ul.list-inline-sm {
  margin-right: -3px;
  margin-left: -3px;
}

ul.list-inline-sm li {
  padding: 0 3px;
}

ul.list-inline-dash li:after {
  content: '-';
  padding: 0 3px 0 6px;
}

ul.list-inline-dash li:last-child:after {
  content: '';
  padding: 0;
}

ul.list-inline-pills {
  margin: 0;
}

ul.list-inline-pills li {
  display: inline-flex;
  align-items: center;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 2em;
  margin: 0 7px 10px 0;
  padding: 0.5em 1em;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

ul.list-inline-pills li i {
  font-size: 1.2em;
}

ul.list-inline-pills li:hover {
  color: black;
}

.bg-black ul.list-inline-pills li, .bg-dark ul.list-inline-pills li {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-black ul.list-inline-pills li:hover, .bg-dark ul.list-inline-pills li:hover {
  color: white;
}

@media (max-width: 991.98px) {
  ol {
    margin: 0 0 -5px;
  }
  ol li {
    margin: 0 0 5px;
  }
  ul {
    margin: 0 0 -5px;
  }
  ul li {
    margin: 0 0 5px;
  }
  ul li ul, ul li ol {
    margin-top: 5px;
  }
  ul.list-dash li:before {
    content: '-';
    padding-right: 6px;
  }
  ul.list-dash li a:hover {
    padding-left: 2px;
  }
  ul.list-dash li ul, ul.list-dash li ol {
    padding-left: 30px;
  }
  ul.list-inline-lg {
    margin-right: -12px;
    margin-left: -12px;
  }
  ul.list-inline-lg li {
    padding: 0 12px;
  }
  ul.list-inline {
    margin-right: -6px;
    margin-left: -6px;
  }
  ul.list-inline li {
    padding: 0 6px;
  }
  ul.list-inline-sm {
    margin-right: -2px;
    margin-left: -2px;
  }
  ul.list-inline-sm li {
    padding: 0 2px;
  }
}

/*------------------------------------------------
  5. Typography
-------------------------------------------------*/
body {
  color: #838485;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 991.98px) {
  body {
    font-size: 0.938rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.3px;
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 6px;
  }
}

p {
  margin: 0;
  line-height: 1.74;
  /* 26px */
}

@media (max-width: 991.98px) {
  p {
    line-height: 1.6;
    /* 24px */
  }
}

.uppercase {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.font-small {
  font-size: 0.9em;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .font-small {
    font-size: 0.9em;
    line-height: 1.7;
  }
}

.font-large {
  font-size: 1.063em;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .font-large {
    font-size: 1.063em;
  }
}

.title-heading {
  position: relative;
  padding-top: 16px;
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.title-heading:before {
  content: '//';
  padding-right: 8px;
}

.title-heading:after {
  content: attr(data-backdrop-text);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.15;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 0.9;
  color: black;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

@media (max-width: 1199.98px) {
  .title-heading {
    padding-top: 14px;
  }
}

.mono-heading {
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hover-text {
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.hover-text:hover {
  color: black;
}

i {
  display: inline-block;
}

.icon-4xl i {
  font-size: 2.4em;
}

.icon-3xl i {
  font-size: 2.13em;
}

.icon-2xl i {
  font-size: 1.86em;
}

.icon-xl i {
  font-size: 1.6em;
}

.icon-lg i {
  font-size: 1.33em;
}

.icon-sm i {
  font-size: 0.0938em;
}

/*------------------------------------------------
  6. Buttons
-------------------------------------------------*/
a {
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
  text-decoration: none;
}

a:hover {
  color: black;
  text-decoration: none;
}

button {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a:focus, a:active, button:focus, button:active {
  box-shadow: none;
  outline: 0;
}

.button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2em;
  padding: 14px 32px;
  color: black;
  font-size: 0.9em;
  font-family: "Roboto Mono", monospace;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.button i {
  margin-right: 8px;
  font-size: 15px;
}

.button:hover {
  background: rgba(0, 0, 0, 0.2);
  color: black;
}

.button.button-dark {
  background: black;
  color: white;
}

.button.button-dark:hover {
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

.button.button-outline-dark {
  background: transparent;
  border: 1px dashed black;
  color: black;
}

.button.button-outline-dark:hover {
  background: black;
  color: white;
}

.button.button-white {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.button.button-white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.button.button-outline-white {
  background: transparent;
  border: 1px dashed white;
  color: white;
}

.button.button-outline-white:hover {
  background: white;
  color: black;
}

.button-sm {
  padding: 10px 22px;
}

.button-lg {
  padding: 16px 42px;
}

.button-circle {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: black;
  text-align: center;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.button-circle i {
  line-height: 50px;
}

.button-circle:hover {
  color: #838485;
}

.button-circle.button-circle-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.button-circle.button-circle-sm i {
  line-height: 40px;
}

.button-circle.button-circle-lg {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.button-circle.button-circle-lg i {
  line-height: 60px;
}

.button-circle-gray, a.button-circle-gray {
  background: rgba(0, 0, 0, 0.1);
  border: 0;
}

.button-circle-gray:hover, .button-circle-gray:focus, a.button-circle-gray:hover, a.button-circle-gray:focus {
  background: rgba(0, 0, 0, 0.2);
  color: black;
}

.button-circle-dark, a.button-circle-dark {
  background: black;
  border: 0;
  color: white;
}

.button-circle-dark:hover, .button-circle-dark:focus, a.button-circle-dark:hover, a.button-circle-dark:focus {
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

.button-circle-outline-dark, a.button-circle-outline-dark {
  background: transparent;
  border: 1px dashed black;
  color: black;
}

.button-circle-outline-dark:hover, .button-circle-outline-dark:focus, a.button-circle-outline-dark:hover, a.button-circle-outline-dark:focus {
  background: black;
  color: white;
}

.button-circle-white, a.button-circle-white {
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  color: white;
}

.button-circle-white:hover, .button-circle-white:focus, a.button-circle-white:hover, a.button-circle-white:focus {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.button-circle-outline-white, .button-circle-outline-white {
  background: transparent;
  border: 1px dashed white;
  color: white;
}

.button-circle-outline-white:hover, .button-circle-outline-white:focus, .button-circle-outline-white:hover, .button-circle-outline-white:focus {
  background: white;
  color: black;
}

/*------------------------------------------------
  7. Clients
-------------------------------------------------*/
.client-box a img {
  opacity: 0.5;
  width: 100%;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.client-box a:hover img {
  opacity: 1;
}

/*------------------------------------------------
  8. Lightbox
-------------------------------------------------*/
.lightbox-image-box,
.lightbox-media-box {
  position: relative;
  overflow: hidden;
  display: block;
}

.lightbox-image-box[class*='border-radius'],
.lightbox-media-box[class*='border-radius'] {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lightbox-image-box:after,
.lightbox-media-box:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.lightbox-image-box img,
.lightbox-media-box img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-image-box i,
.lightbox-media-box i {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.lightbox-image-box.icon-xl i, .lightbox-image-box.icon-2xl i,
.lightbox-media-box.icon-xl i,
.lightbox-media-box.icon-2xl i {
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.lightbox-image-box.icon-3xl i, .lightbox-image-box.icon-4xl i, .lightbox-image-box.icon-5xl i,
.lightbox-media-box.icon-3xl i,
.lightbox-media-box.icon-4xl i,
.lightbox-media-box.icon-5xl i {
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.lightbox-image-box:hover:after,
.lightbox-media-box:hover:after {
  opacity: 1;
}

.lightbox-image-box:hover img,
.lightbox-media-box:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-filter: blur(1.5px);
  filter: blur(1.5px);
}

.mfp-bg {
  background: black;
}

.mfp-container,
.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.mfp-container {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
  padding: 0 20px;
}

.mfp-ready .mfp-container {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.mfp-ready.mfp-bg {
  opacity: 0.97;
}

.mfp-removing .mfp-container, .mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-removing .mfp-container {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}

button.mfp-close {
  display: block;
  top: -5px;
  opacity: 1;
  width: auto;
  height: auto;
  line-height: auto;
  font-size: 24px;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

button.mfp-close:hover {
  top: -5px;
  opacity: 1;
  color: #fff;
}

.mfp-iframe-holder .mfp-close {
  top: -45px;
}

.mfp-iframe-holder .mfp-close:hover {
  top: -45px;
}

.mfp-close-btn-in .mfp-close {
  color: rgba(255, 255, 255, 0.7);
}

.mfp-arrow {
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.mfp-arrow-left:before {
  border-right: 0;
}

.mfp-arrow-right:before {
  border-left: 0;
}

@media (max-width: 575.98px) {
  button.mfp-arrow {
    background: rgba(0, 0, 0, 0.5);
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
  button.mfp-arrow:active {
    margin-top: -35px;
  }
  button.mfp-arrow-left {
    margin-left: 20px;
  }
  button.mfp-arrow-left:before, button.mfp-arrow-left:after {
    margin-top: 15px;
    margin-left: 20px;
  }
  button.mfp-arrow-right {
    margin-right: 20px;
  }
  button.mfp-arrow-right:before, button.mfp-arrow-right:after {
    margin-top: 15px;
    margin-left: 30px;
  }
}

.mfp-bottom-bar {
  margin-top: -30px;
}

.mfp-bottom-bar .mfp-title {
  color: rgba(255, 255, 255, 0.7);
}

.mfp-bottom-bar .mfp-counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.mfp-iframe-scaler iframe, .mfp-figure::after {
  -webkit-box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.3);
}

/*------------------------------------------------
  9. Maps
-------------------------------------------------*/
.gmap {
  width: 100%;
}

.gmap-sm {
  height: 350px;
}

.gmap-md {
  height: 400px;
}

.gmap-lg {
  height: 450px;
}

@media (max-width: 991.98px) {
  .gmap-sm {
    height: 300px;
  }
  .gmap-md {
    height: 350px;
  }
  .gmap-lg {
    height: 400px;
  }
}

/*------------------------------------------------
  10. Resume
-------------------------------------------------*/
.resume-wrapper {
  position: relative;
  padding-left: 20px;
}

.resume-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-left: 1px dashed rgba(0, 0, 0, 0.2);
}

.resume-wrapper .resume-box {
  /*margin-bottom: 30px;*/
}

.resume-wrapper .resume-box:last-child {
  margin-bottom: 0;
}

.resume-wrapper .resume-box .resume-date {
  position: relative;
  display: inline-block;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 2em;
  margin-bottom: 1em;
  padding: 0.5em 1em;
  font-family: "Roboto Mono", monospace;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.resume-wrapper .resume-box .resume-date:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
}

.resume-wrapper .resume-box .resume-date:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -23px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: black;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.resume-wrapper .resume-box:hover .resume-date {
  color: black;
}

@media (max-width: 991.98px) {
  .resume-wrapper .resume-box {
    margin-bottom: 24px;
  }
  .resume-wrapper .resume-box:last-child {
    margin-bottom: 0;
  }
}

/*------------------------------------------------
  11. Services
-------------------------------------------------*/
.services-list {
  margin: 0;
  padding: 0;
}

.services-list .services-item {
  list-style-type: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
}

.services-list .services-item:first-child {
  border-top: 0;
}

.services-list .services-item .services-title i {
  color: black;
}

@media (min-width: 1200px) {
  .services-list .services-item {
    display: flex;
    align-items: center;
    padding: 30px 0;
  }
  .services-list .services-item:first-child {
    padding-top: 0;
  }
  .services-list .services-item:last-child {
    padding-bottom: 0;
  }
  .services-list .services-item .services-number {
    min-width: 90px;
  }
  .services-list .services-item .services-number * {
    margin-bottom: 0;
  }
  .services-list .services-item .services-title {
    min-width: 270px;
    padding-right: 36px;
  }
  .services-list .services-item .services-title * {
    margin-bottom: 0;
  }
}

@media (max-width: 1199.98px) {
  .services-list .services-item {
    padding: 20px 0;
  }
  .services-list .services-item:first-child {
    padding-top: 0;
  }
  .services-list .services-item:last-child {
    padding-bottom: 0;
  }
  .services-list .services-item .services-number {
    margin-bottom: 6px;
  }
}

/*------------------------------------------------
  12. Sliders
-------------------------------------------------*/
.swiper {
  width: 100%;
  height: auto;
}

.swiper-custom-prev:focus,
.swiper-custom-next:focus {
  background: transparent;
  color: black;
}

.swiper-custom-prev:focus:hover,
.swiper-custom-next:focus:hover {
  background: black;
  color: white;
}

.swiper-custom-next {
  margin-left: 6px;
}

/*------------------------------------------------
  13. Testimonial
-------------------------------------------------*/
.testimonial-box {
  position: relative;
  padding-top: 16px;
  padding-left: 16px;
}

.testimonial-box:before {
  content: '\f10e';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
  font-family: "Font Awesome 6 Free";
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

/*------------------------------------------------
  14. Blog Posts
-------------------------------------------------*/
.blog-post-box .blog-post-img {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border-radius: 0.5em;
}

.blog-post-box .blog-post-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-post-box .blog-post-img .blog-post-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 2em;
  padding: 0.5em 1em;
  color: white;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-box .blog-post-img .blog-post-category a {
  color: white;
}

.blog-post-box .blog-post-img .blog-post-category a:hover {
  color: white;
}

.blog-post-box .blog-post-img:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-filter: blur(1.5px);
  filter: blur(1.5px);
}

@media (min-width: 1200px) {
  .blog-post-box {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
  }
  .blog-post-box:last-child {
    margin-bottom: 0;
  }
  .blog-post-box .blog-post-img {
    display: inline-block;
  }
  .blog-post-box .blog-post-img img {
    width: 340px;
  }
  .blog-post-box .blog-post-caption {
    display: inline-block;
    padding-left: 30px;
  }
}

@media (max-width: 1199.98px) {
  .blog-post-box {
    margin-bottom: 40px;
  }
  .blog-post-box:last-child {
    margin-bottom: 0;
  }
  .blog-post-box .blog-post-img img {
    width: 100%;
  }
  .blog-post-box .blog-post-caption {
    padding-top: 20px;
  }
}

@media (max-width: 991.98px) {
  .blog-post-box {
    margin-bottom: 30px;
  }
  .blog-post-box:last-child {
    margin-bottom: 0;
  }
}

/*------------------------------------------------
  15. Portfolio
-------------------------------------------------*/
.filter ul {
  margin: 0;
  padding: 0;
}

.filter ul li {
  position: relative;
  display: inline-block;
  border: 1px dashed black;
  border-radius: 2em;
  margin: 0 7px 10px 0;
  padding: 0.5em 1em;
  font-size: 0.9em;
  font-family: "Roboto Mono", monospace;
  color: black;
  cursor: pointer;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.filter ul li:hover, .filter ul li.mixitup-control-active {
  background: black;
  color: white;
}

.portfolio-box {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  border-radius: 0.5em;
}

.portfolio-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  width: 100%;
  height: 100%;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.portfolio-box img {
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
  -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-box .portfolio-category {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 2em;
  padding: 0.5em 1em;
  color: white;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-box .portfolio-caption {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  margin-bottom: -6px;
  padding: 0 30px 24px;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.portfolio-box .portfolio-caption * {
  margin: 0;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  -webkit-transition: linear 0.06s;
  transition: linear 0.06s;
}

.portfolio-box .portfolio-caption *:hover {
  text-shadow: 0 0 white;
}

.portfolio-box:hover:after {
  opacity: 1;
}

.portfolio-box:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-filter: blur(1.5px);
  filter: blur(1.5px);
}

.portfolio-box:hover .portfolio-caption {
  visibility: visible;
  opacity: 1;
  margin-bottom: 0;
}

/*------------------------------------------------
  16. Preloader
-------------------------------------------------*/
body:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background: black;
  width: 100%;
  height: 100%;
}

body.loaded:after {
  display: none;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: visible;
  opacity: 1;
  background: black;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
}

.preloader div span {
  opacity: 1;
  display: inline-block;
  padding: 0 8px;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
  -webkit-animation: loader 1s linear infinite;
  animation: loader 1s linear infinite;
}

.preloader div span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.preloader div span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.preloader div span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.preloader div span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.preloader div span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.preloader div span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loaded .preloader {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

@-webkit-keyframes loader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes loader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*------------------------------------------------
  17. Section Nav
-------------------------------------------------*/
.section-nav {
  background: black;
  border-radius: 0.5em;
  padding: 1.7em 2.5em;
}

.section-nav ul {
  margin: 0;
  padding: 0;
}

.section-nav ul li {
  list-style-type: none;
  position: relative;
  margin: 0;
  padding: 0;
}

.section-nav ul li a, .section-nav ul li button {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.section-nav ul li a:focus, .section-nav ul li button:focus {
  color: rgba(255, 255, 255, 0.7);
}

.section-nav ul li a:hover, .section-nav ul li a.active, .section-nav ul li button:hover, .section-nav ul li button.active {
  color: white;
}

@media (min-width: 992px) {
  .nav-wrapper {
    -webkit-position: sticky;
    position: sticky;
    top: 24px;
  }
  .section-nav ul li {
    width: 100%;
  }
  .section-nav ul li a, .section-nav ul li button {
    width: 100%;
    padding: 0.8rem 0;
    text-align: left;
    letter-spacing: 0.5px;
  }
  .section-nav ul li a:hover .nav-circle:before, .section-nav ul li a.active .nav-circle:before, .section-nav ul li button:hover .nav-circle:before, .section-nav ul li button.active .nav-circle:before {
    opacity: 1;
  }
  .section-nav ul li a.active, .section-nav ul li button.active {
    letter-spacing: 1px;
  }
  .section-nav ul li a.active .nav-circle:before, .section-nav ul li button.active .nav-circle:before {
    background: transparent;
    width: 30px;
    height: 30px;
    -webkit-animation: translateRotate 10s linear infinite;
    animation: translateRotate 10s linear infinite;
  }
  .section-nav ul li .nav-link-mobile {
    display: none;
  }
  .section-nav ul li .nav-circle {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .section-nav ul li .nav-circle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.7;
    background: white;
    width: 5px;
    height: 5px;
    border: 1px dashed white;
    border-radius: 50%;
    -webkit-transition: ease-out 0.2s;
    transition: ease-out 0.2s;
  }
}

@media (max-width: 991.98px) {
  .nav-wrapper {
    position: relative;
    height: 57px;
  }
  .section-nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 0.7em;
    -webkit-transition: linear 0.1s;
    transition: linear 0.1s;
  }
  .section-nav.fixed {
    z-index: 994;
    position: fixed;
    top: 8px;
    right: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.9);
  }
  .section-nav ul {
    justify-content: center;
  }
  .section-nav ul li {
    display: inline-block;
    width: auto;
  }
  .section-nav ul li .nav-link-desktop {
    display: none;
  }
  .section-nav ul li .nav-circle {
    display: none;
  }
  .section-nav ul li a, .section-nav ul li button {
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 36px;
  }
  .section-nav ul li a:before, .section-nav ul li button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed white;
    border-radius: 50%;
    -webkit-transition: ease-out 0.14s;
    transition: ease-out 0.14s;
  }
  .section-nav ul li a:hover, .section-nav ul li a.active, .section-nav ul li button:hover, .section-nav ul li button.active {
    color: white;
  }
  .section-nav ul li a.active, .section-nav ul li button.active {
    letter-spacing: 1px;
  }
  .section-nav ul li a.active:before, .section-nav ul li button.active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-animation: scaleRotate 10s linear infinite;
    animation: scaleRotate 10s linear infinite;
  }
}

@-webkit-keyframes translateRotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes translateRotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes scaleRotate {
  0% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

@keyframes scaleRotate {
  0% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

/*------------------------------------------------
  18. Toggle Menu
-------------------------------------------------*/
.menu-dots {
  position: relative;
  z-index: 994;
  display: inline-block;
  background: black;
  width: 50px;
  height: 50px;
  margin-left: 24px;
  border-bottom-right-radius: 0.5em 0.5em;
  border-bottom-left-radius: 0.5em 0.5em;
}

.menu-dots span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  display: inline-block;
  background: white;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.menu-dots span:before {
  content: '';
  position: absolute;
  top: 0;
  right: calc(100% + 5px);
  background: white;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.menu-dots span:after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  background: white;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.menu-dots:hover span, .menu-dots.active span {
  -webkit-transform: translate(-50%, -50%) scale(3);
  transform: translate(-50%, -50%) scale(3);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.menu-dots:hover span:before, .menu-dots.active span:before {
  opacity: 0;
  right: 0;
}

.menu-dots:hover span:after, .menu-dots.active span:after {
  opacity: 0;
  left: 0;
}

.toggle-menu {
  z-index: 995;
  position: fixed;
  top: 0;
  right: -10px;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  background: black;
  width: 400px;
  height: 100%;
  height: auto;
  padding: 50px 40px;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
  color: rgba(255, 255, 255, 0.7);
}

.toggle-menu ul.list-circle li:before {
  background: white;
}

.toggle-menu.show {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.toggle-menu .toggle-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  color: white;
  text-align: center;
  font-size: 1.33em;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.toggle-menu .toggle-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.toggle-menu .tm-bottom {
  position: absolute;
  right: 40px;
  bottom: 48px;
  left: 40px;
}

@media (max-width: 991.98px) {
  .toggle-menu {
    width: 350px;
    padding: 50px 30px 30px;
  }
  .toggle-menu .toggle-close {
    top: 12px;
    right: 12px;
  }
  .toggle-menu .tm-bottom {
    right: 30px;
    bottom: 48px;
    left: 30px;
  }
}

/*------------------------------------------------
  19. Utilities
-------------------------------------------------*/
.bg-gray {
  background: #f2f5f8;
}

.bg-dark {
  background: #131415;
}

.bg-black {
  background: black;
}

.bg-white {
  background: white;
}

.bg-light-content, .bg-white, .bg-gray, .bg-black .bg-white, .bg-black .bg-gray, .bg-dark .bg-white, .bg-dark .bg-gray {
  color: #838485;
}

.bg-light-content h1, .bg-white h1, .bg-gray h1, .bg-black .bg-white h1, .bg-black .bg-gray h1, .bg-dark .bg-white h1, .bg-dark .bg-gray h1, .bg-light-content h2, .bg-white h2, .bg-gray h2, .bg-black .bg-white h2, .bg-black .bg-gray h2, .bg-dark .bg-white h2, .bg-dark .bg-gray h2, .bg-light-content h3, .bg-white h3, .bg-gray h3, .bg-black .bg-white h3, .bg-black .bg-gray h3, .bg-dark .bg-white h3, .bg-dark .bg-gray h3, .bg-light-content h4, .bg-white h4, .bg-gray h4, .bg-black .bg-white h4, .bg-black .bg-gray h4, .bg-dark .bg-white h4, .bg-dark .bg-gray h4, .bg-light-content h5, .bg-white h5, .bg-gray h5, .bg-black .bg-white h5, .bg-black .bg-gray h5, .bg-dark .bg-white h5, .bg-dark .bg-gray h5, .bg-light-content h6, .bg-white h6, .bg-gray h6, .bg-black .bg-white h6, .bg-black .bg-gray h6, .bg-dark .bg-white h6, .bg-dark .bg-gray h6 {
  color: black;
}

.bg-light-content a:not([class*='button']):not(.link-decoration):not(.nav-link), .bg-white a:not([class*='button']):not(.link-decoration):not(.nav-link), .bg-gray a:not([class*='button']):not(.link-decoration):not(.nav-link) {
  color: #838485;
}

.bg-light-content a:not([class*='button']):not(.link-decoration):not(.nav-link):hover, .bg-white a:not([class*='button']):not(.link-decoration):not(.nav-link):hover, .bg-gray a:not([class*='button']):not(.link-decoration):not(.nav-link):hover, .bg-light-content a:not([class*='button']):not(.link-decoration):not(.nav-link):focus, .bg-white a:not([class*='button']):not(.link-decoration):not(.nav-link):focus, .bg-gray a:not([class*='button']):not(.link-decoration):not(.nav-link):focus {
  color: black;
}

.bg-dark-content, .bg-black, .bg-dark {
  color: rgba(255, 255, 255, 0.7);
}

.bg-dark-content h1, .bg-black h1, .bg-dark h1, .bg-dark-content h2, .bg-black h2, .bg-dark h2, .bg-dark-content h3, .bg-black h3, .bg-dark h3, .bg-dark-content h4, .bg-black h4, .bg-dark h4, .bg-dark-content h5, .bg-black h5, .bg-dark h5, .bg-dark-content h6, .bg-black h6, .bg-dark h6 {
  color: white;
}

.bg-dark-content h1 a, .bg-black h1 a, .bg-dark h1 a, .bg-dark-content h2 a, .bg-black h2 a, .bg-dark h2 a, .bg-dark-content h3 a, .bg-black h3 a, .bg-dark h3 a, .bg-dark-content h4 a, .bg-black h4 a, .bg-dark h4 a, .bg-dark-content h5 a, .bg-black h5 a, .bg-dark h5 a, .bg-dark-content h6 a, .bg-black h6 a, .bg-dark h6 a {
  color: rgba(255, 255, 255, 0.8);
}

.bg-dark-content h1 a:hover, .bg-black h1 a:hover, .bg-dark h1 a:hover, .bg-dark-content h1 a:focus, .bg-black h1 a:focus, .bg-dark h1 a:focus, .bg-dark-content h2 a:hover, .bg-black h2 a:hover, .bg-dark h2 a:hover, .bg-dark-content h2 a:focus, .bg-black h2 a:focus, .bg-dark h2 a:focus, .bg-dark-content h3 a:hover, .bg-black h3 a:hover, .bg-dark h3 a:hover, .bg-dark-content h3 a:focus, .bg-black h3 a:focus, .bg-dark h3 a:focus, .bg-dark-content h4 a:hover, .bg-black h4 a:hover, .bg-dark h4 a:hover, .bg-dark-content h4 a:focus, .bg-black h4 a:focus, .bg-dark h4 a:focus, .bg-dark-content h5 a:hover, .bg-black h5 a:hover, .bg-dark h5 a:hover, .bg-dark-content h5 a:focus, .bg-black h5 a:focus, .bg-dark h5 a:focus, .bg-dark-content h6 a:hover, .bg-black h6 a:hover, .bg-dark h6 a:hover, .bg-dark-content h6 a:focus, .bg-black h6 a:focus, .bg-dark h6 a:focus {
  color: white;
}

.bg-dark-content a:not([class*='button']):not(.link-decoration):not(.nav-link), .bg-black a:not([class*='button']):not(.link-decoration):not(.nav-link), .bg-dark a:not([class*='button']):not(.link-decoration):not(.nav-link) {
  color: rgba(255, 255, 255, 0.8);
}

.bg-dark-content a:not([class*='button']):not(.link-decoration):not(.nav-link):hover, .bg-black a:not([class*='button']):not(.link-decoration):not(.nav-link):hover, .bg-dark a:not([class*='button']):not(.link-decoration):not(.nav-link):hover, .bg-dark-content a:not([class*='button']):not(.link-decoration):not(.nav-link):focus, .bg-black a:not([class*='button']):not(.link-decoration):not(.nav-link):focus, .bg-dark a:not([class*='button']):not(.link-decoration):not(.nav-link):focus {
  color: white;
}

.font-family-primary {
  font-family: "Open Sans", sans-serif;
}

.font-family-secondary {
  font-family: "Poppins", sans-serif;
}

.font-family-mono {
  font-family: "Roboto Mono", monospace;
}

.fw-thin {
  font-weight: 100;
}

.fw-medium {
  font-weight: 500;
}

.fw-semi-bold {
  font-weight: 600;
}

.fw-black {
  font-weight: 900;
}

.letter-spacing-05 {
  letter-spacing: 0.5px;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.letter-spacing-3 {
  letter-spacing: 3px;
}

.letter-spacing-4 {
  letter-spacing: 4px;
}

.line-height-100 {
  line-height: 1;
}

.line-height-110 {
  line-height: 1.1;
}

.line-height-120 {
  line-height: 1.2;
}

.line-height-130 {
  line-height: 1.3;
}

.line-height-140 {
  line-height: 1.4;
}

*.text-white-09 {
  color: rgba(255, 255, 255, 0.9);
}

*.text-white-08 {
  color: rgba(255, 255, 255, 0.8);
}

*.text-white-07 {
  color: rgba(255, 255, 255, 0.7);
}

*.text-white-06 {
  color: rgba(255, 255, 255, 0.6);
}

*.text-white-05 {
  color: rgba(255, 255, 255, 0.5);
}

*.text-white-04 {
  color: rgba(255, 255, 255, 0.4);
}

*.text-white-03 {
  color: rgba(255, 255, 255, 0.3);
}

*.text-white-02 {
  color: rgba(255, 255, 255, 0.2);
}

*.text-white-01 {
  color: rgba(255, 255, 255, 0.1);
}

*.text-black {
  color: black;
}

*.text-black-09 {
  color: rgba(0, 0, 0, 0.9);
}

*.text-black-08 {
  color: rgba(0, 0, 0, 0.8);
}

*.text-black-07 {
  color: rgba(0, 0, 0, 0.7);
}

*.text-black-06 {
  color: rgba(0, 0, 0, 0.6);
}

*.text-black-05 {
  color: rgba(0, 0, 0, 0.5);
}

*.text-black-04 {
  color: rgba(0, 0, 0, 0.4);
}

*.text-black-03 {
  color: rgba(0, 0, 0, 0.3);
}

*.text-black-02 {
  color: rgba(0, 0, 0, 0.2);
}

*.text-black-01 {
  color: rgba(0, 0, 0, 0.1);
}

*.text-primary {
  color: #838485;
}

*.text-green {
  color: #32CD32;
}

*.text-red {
  color: #E32227;
}

*.text-yellow {
  color: #FFB657;
}

.stroke-text {
  color: black;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1.4px;
  -webkit-text-stroke-color: black;
}

@media (max-width: 1199.98px) {
  .stroke-text {
    -webkit-text-stroke-width: 1.2px;
  }
}
