@font-face {
  font-family: 'UbuntuMono-Regular';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/UbuntuMono-Regular.ttf);
  src: local(''), url(fonts/UbuntuMono-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'UbuntuMono-Italic';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/UbuntuMono-Italic.ttf);
  src: local(''), url(/fonts/UbuntuMono-Italic.ttf) format('truetype');
}

@font-face {
  font-family: 'Calligraffitti-Regular';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/Calligraffitti-Regular.ttf);
  src: local(''), url(/fonts/Calligraffitti-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Rokkitt-Regular';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/Rokkitt-Regular.ttf);
  src: local(''), url(/fonts/Rokkitt-Regular.ttf) format('truetype');
}

:root {
  --secondary: #bd9d31;
}

.my-1 {
  margin: 1rem 0;
}

.mb-2 {
  margin: 0 0 2rem 0;
}

* {
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'UbuntuMono-Regular', sans-serif;
  background-color: #1e1e1e;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

.loading nav,
.loading #home {
  display: none;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #262626;
}

#loader-text {
  position: relative;
  /* font-size: 5em; */
  color: #222;
  text-transform: uppercase;
  background: linear-gradient(90deg, #000, var(--secondary), #000);
  /* border-bottom: 10px solid #222; */
  background-repeat: no-repeat;
  background-size: 80%;
  animation: animate 3s linear infinite;
  letter-spacing: 0.05em;
  line-height: 1.2em;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

/* #heading-text:before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden; */
/* border-bottom: 10px solid #fc041b; */
/* color: #fc041b;
  animation: animate 10s linear infinite;
} */

@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}

.brand_logo a {
  text-decoration: none;
  color: inherit;
}

.menu-btn {
  /* position: relative; */
  z-index: 99;
  /* right: rem; */
  top: 2rem;
  display: none;
  height: 20px;
  width: 28px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger {
  position: absolute;
  right: 2rem;
  top: 2.5rem;
  width: 28px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::before {
  content: '';
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger::after {
  content: '';
  position: absolute;
  top: 8px;
  width: 20px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__burger.open {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  background: transparent;
}

.menu-btn__burger.open::before {
  -webkit-transform: rotate(45deg) translate(5px, 8px);
  transform: rotate(45deg) translate(5px, 8px);
}

.menu-btn__burger.open::after {
  width: 28px;
  -webkit-transform: rotate(-45deg) translate(3px, -7px);
  transform: rotate(-45deg) translate(3px, -7px);
}

.text-slider-items {
  display: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  display: none;
  box-shadow: inset 0 0 5px var(--secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #666;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rokkitt-Regular', sans-serif;
}

input,
textarea {
  font-family: 'UbuntuMono-Italic', sans-serif;
}

.container {
  max-width: 1250px;
  margin: auto;
  padding: 0 1rem;
}

.footer_containter {
  max-width: 1250px;
  margin: auto;
  padding: 0 1rem;
}

.smooth-scroll-wrapper {
  position: relative;
  width: 100%;
}

.watermark {
  position: absolute;
  font-family: 'Calligraffitti-Regular', sans-serif;
  color: #fff;
  font-size: 4vw;
  font-weight: bolder;
  opacity: 0.035;
  z-index: -1;
}

@media screen and (max-width: 600px) {
  .watermark {
    display: none;
  }
}

.watermark_about {
  left: 0;
  right: 0;
  /* white-space: pre; */
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  top: 25%;
}

.watermark_about span {
  white-space: pre;
}
@media screen and (max-width: 600px) {
  .watermark_about {
    left: 15%;
    top: 35%;
  }
}
.watermark_contact {
  left: 5%;
  top: 25%;
}

@media screen and (max-width: 600px) {
  .watermark_contact {
    top: 40%;
  }
}

.heading1 {
  font-size: 4rem;
}

@media screen and (max-width: 1024px) {
  .heading1 {
    font-size: 3.35rem;
  }
}

@media screen and (max-width: 900px) {
  .heading1 {
    font-size: 3.15rem;
  }
}

@media screen and (max-width: 768px) {
  .heading1 {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 480px) {
  .heading1 {
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 320px) {
  .heading1 {
    font-size: 2.35rem;
  }
}

.heading2 {
  font-size: 3rem;
}

@media screen and (max-width: 1024px) {
  .heading2 {
    font-size: 2.65rem;
  }
}

@media screen and (max-width: 900px) {
  .heading2 {
    font-size: 2.55rem;
  }
}

@media screen and (max-width: 768px) {
  .heading2 {
    font-size: 2.35rem;
  }
}

@media screen and (max-width: 480px) {
  .heading2 {
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 320px) {
  .heading2 {
    font-size: 2rem;
  }
}

.lead {
  font-size: 1.5rem;
  line-height: 1.75rem;
  opacity: 0.8;
  /* text-align: center; */
}

@media screen and (max-width: 1024px) {
  .lead {
    font-size: 1.65rem;
  }
}

@media screen and (max-width: 900px) {
  .lead {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 1.45rem;
  }
}

@media screen and (max-width: 480px) {
  .lead {
    font-size: 1.35rem;
  }
}

.description {
  font-size: 1.25rem;
  line-height: 2rem;
  opacity: 0.8;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  box-shadow: 0px 3px 6px #00000029;
  /* background: #2f2f2f 0% 0% no-repeat padding-box; */
  background: #1e1e1e 0% 0% no-repeat padding-box;
  z-index: 80;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}

nav .container img {
  width: 3rem;
  height: auto;
}

nav .container ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}

@media screen and (max-width: 600px) {
  .menu-btn {
    display: block;
  }

  nav .container ul {
    visibility: visible;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 101vh;
    /* width: 100vw; */
    position: fixed;
    right: 0;
    overflow: hidden;
    /* z-index: 99; */
    background: #272727;
    list-style-type: none;
    padding-right: 2rem;
    /* -webkit-transform: translateY(51%); */
    /* transform: translateY(46%); */
    transform: translateY(-100%);

    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  nav .container ul.open {
    display: flex;
    /* -webkit-transform: translateY(0); */
    /* transform: translateY(0); */
    transform: translateY(43%);
  }

  nav .container .nav-link {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  nav .container .nav-link.open {
    display: inline-block;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 300;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  nav .container .nav-link:nth-child(1) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }

  nav .container .nav-link:nth-child(2) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
  }

  nav .container .nav-link:nth-child(3) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
  }
}

nav .container ul li:not(:last-of-type) {
  cursor: pointer;
}

nav .container ul li:not(:last-of-type):hover {
  opacity: 1;
}

nav .container ul li {
  margin: 2rem;
}

nav .container ul li a {
  opacity: 0.7;
  text-decoration: none;
  color: #fff;
}

nav .container ul li a:hover {
  opacity: 1;
}

nav .container ul li button {
  color: var(--secondary);
  opacity: 1;
  padding: 0.8rem 0;
  outline: none;
  min-width: 8rem;
  font-size: 1rem;
  background: linear-gradient(to right, var(--secondary) 50%, transparent 50%);
  background-size: 200%;
  background-position: right;
  border: 1px solid var(--secondary);
  cursor: pointer;
}

nav .container ul li button:hover {
  color: #fff;
  background-position: left;
  transition: all 300ms linear;
}

header {
  height: 100vh;
  position: relative;
  background-image: url(https://images.unsplash.com/photo-1534972195531-d756b9bfa9f2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1650&q=80);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
  header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    row-gap: 2rem;
    align-items: center;
  }
}

header .header-content {
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background: radial-gradient(
      closest-side at 50% 50%,
      rgba(30, 30, 30, 0.35) 0%,
      rgb(30, 30, 30) 100%
    )
    transparent;
}

header .intro-text .solve {
  color: var(--secondary);
}

.about__wrapper {
  position: relative;
  max-width: 1070px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin: auto;
  margin-top: 5rem;
  min-height: 20rem;
}

@media screen and (max-width: 600px) {
  .about__wrapper {
    flex-direction: column;
    /* margin-top: 5rem; */
  }
}

.about__box {
  display: flex;
  justify-content: center;
  width: 50%;
}

@media screen and (max-width: 600px) {
  .about__box {
    width: 100%;
    text-align: center;
  }
}

.about_text_wrapper {
  max-width: 78%;
}

@media screen and (max-width: 600px) {
  .about_text_wrapper {
    max-width: 100%;
  }
}

.about_text_wrapper ul {
  display: list-item;
  list-style-type: none;
}

.about_text_wrapper ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

@media screen and (max-width: 600px) {
  .about_text_wrapper ul li {
    align-items: center;
  }
}

.about_text_wrapper ul li h3 {
  opacity: 1;
}

.about_text_wrapper ul li p {
  opacity: 0.8;
  line-height: 1.5rem;
}

.about_text_wrapper ul li span:nth-of-type(1) {
  background-color: var(--secondary);
  margin: 0.5rem 0;
}

.about_text_wrapper ul li .list_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 2rem;
  margin-right: 0.5rem;
  background-position: center;
  background-size: center;
  background-repeat: no-repeat;
  border-radius: 3px;
}

.projects__wrapper {
  margin-top: 10rem;
}

.projects_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px 10px;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-auto-rows: auto;
  margin: auto;
  /* max-width: 1070px; */
  /* width: 60vw;
  margin: 2rem auto 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 2rem; */
}

@media screen and (max-width: 1100px) {
  .projects_wrapper {
    grid-template-columns: repeat(2, 1fr);
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .projects_wrapper {
    grid-template-columns: 1fr;
    width: 90%;
  }
}

.project figure {
  /* display: block; */
  position: relative;
  border-bottom: 5px solid var(--secondary);
  overflow: hidden;
  /* height: 300px; */
  cursor: pointer;
}

.project h2 {
  margin: 10px 0 5px 0;
}

.project img {
  width: 100%;
  /* height: 300px; */
  display: block;
}

.project figure::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--secondary);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.project figure:hover::after {
  top: 0;
  opacity: 0.9;
}

.project figure:hover .projects__btn {
  opacity: 1;
}

.projects__btns {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  justify-content: space-around;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.projects__btns a {
  text-decoration: none;
}

.projects__btn {
  opacity: 0;
  /* color: #000; */
  color: #fff;
  z-index: 99;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.projects__btn:hover {
  color: #fff;
}

.contact__wrapper {
  position: relative;
  min-height: 30vh;
  /* margin: 10rem 0; */
  margin-top: 10rem;
}

@media screen and (max-width: 600px) {
  .contact__wrapper {
    flex-direction: column;
    margin: 5rem 0;
    /* margin: 2rem 0 10rem 0; */
  }
}

.contact_wrapper {
  max-width: 700px;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .contact_wrapper {
    max-width: 100%;
  }
}

.contact_wrapper h2 {
  text-align: center;
}

.contact_wrapper p {
  text-align: center;
}

.contact_wrapper .success {
  opacity: 0;
  width: 100%;
  border: 2px solid green;
  margin-top: -1rem;
  margin-bottom: -1rem;
  transition: all 500ms linear;
  text-align: center;
  font-weight: bold;
}

::placeholder {
  /* padding-left: 10px; */
  color: var(--secondary);
}

.contact_wrapper form {
  width: 400px;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .contact_wrapper form {
    width: 100%;
    margin: 0;
  }
}

.contact_wrapper form > div {
  margin: 1.75rem 0;
}

.contact_wrapper form > div input,
.contact_wrapper form > div textarea {
  width: 95%;
  /* padding: 0.8em 0; */
  padding: 0.8em 5px;
  font-size: 16px;
  border: none;
  border: 1px solid #8c8c8c;
  color: #c9c9c9;
  background-color: transparent;
  outline: none;
}

.contact_wrapper form > div input:focus,
.contact_wrapper form > div textarea:focus {
  border: 1px solid var(--secondary);
  transition: all 300ms linear;
}

.contact_wrapper form > div textarea {
  height: 10rem;
}

.contact_wrapper form > div input:-webkit-autofill,
.contact_wrapper form > div input:-webkit-autofill:hover,
.contact_wrapper form > div input:-webkit-autofill:focus,
.contact_wrapper form > div input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: var(--secondary);
}

.contact_wrapper form > div input[type='submit'] {
  color: var(--secondary);
  padding: 0.8rem 0;
  outline: none;
  width: 50%;
  font-size: 1rem;
  background: linear-gradient(to right, var(--secondary) 50%, transparent 50%);
  background-size: 200%;
  background-position: right;
  border: 1px solid var(--secondary);
  cursor: pointer;
}

.contact_wrapper form > div input[type='submit']:hover {
  color: #fff;
  background-position: left;
  transition: all 300ms linear;
}

.footer_bg {
  background-position: center;
  background-size: center;
  background-repeat: no-repeat;
  padding: 3rem 0 1.5rem 0;
}

.footer_bg .footer {
  display: flex;
  align-self: center;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer_bg .footer p {
  font-size: 1rem;
  opacity: 0.6;
  line-height: 1.5rem;
}

.footer_bg .footer p:first-child {
  opacity: 1;
  margin-bottom: 0.25rem;
}

.footer_bg .footer a {
  text-decoration: none;
  color: #fff;
  opacity: 0.6;
  font-size: 2rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.footer_bg .footer a:hover {
  opacity: 1;
}

.footer_bg .footer > div:nth-of-type(1) img {
  max-width: 10rem;
  width: 100%;
  height: auto;
}

.footer_bg .footer > div:nth-of-type(3) .contact_info div {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer_bg .footer > div:nth-of-type(3) .contact_info div img {
  opacity: 0.6;
  margin-right: 0.5rem;
}

.footer_bg .footer > div:nth-of-type(4) {
  min-width: 15%;
}

.footer .social_icons {
  align-self: center;
  display: none;
}

header .social_icons {
  align-self: center;
  /* margin: 2rem 0; */
  position: fixed;
  bottom: 10px;
  left: 5px;
}

@media screen and (max-width: 600px) {
  bottom: 50px;
}

.social_icons a {
  color: #fff;
  opacity: 0.6;
  font-size: 2rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.footer_bg .footer > div:nth-of-type(4) .social_icons {
  display: flex;
  justify-content: space-between;
}

.footer_bg .footer > div:nth-of-type(4) .social_icons a:not(:last-of-type) {
  margin-right: 1rem;
}

.footer_bg .footer > div:not(:last-of-type) {
  margin-right: 2rem;
}
