/************************************************
                   Variables
************************************************/
/* General */
/************************************************
                Base Styles Reset
************************************************/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

html {
  direction: ltr;
  overflow-x: hidden;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
body {
  background-color: #fff;
  color: #212529;
  font-family: "Inter", sans-serif;
  line-height: 26px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body a {
  outline: none !important;
  text-decoration: none;
}
body a:not(.btn):hover {
  text-decoration: underline;
}

body {
  font-size: 1rem;
}
@media (max-width: 1200px) {
  body {
    font-size: 0.95rem;
  }
}
@media (max-width: 992px) {
  body {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  body {
    font-size: 0.8rem;
  }
}

h1 {
  font-size: 2rem;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1.2rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 992px) {
  h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 1rem;
  }
}

p {
  font-size: 1rem;
}
@media (max-width: 992px) {
  p {
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  p {
    font-size: 0.85rem;
  }
}

::-moz-selection {
  color: var(--primary-inverse);
  background: var(--primary);
}

::selection,
::-moz-selection {
  color: var(--primary-inverse);
  background: var(--primary);
}

html.safari:not(.no-safari-overflow-x-fix) .body {
  overflow-x: hidden;
}

ul {
  margin: 0;
}

li {
  line-height: 24px;
}

@media (max-width: 575px) {
  body {
    font-size: 0.875rem;
  }
}
/* Bootstrap Vars */
.offcanvas,
.offcanvas-xxl,
.offcanvas-xl,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm {
  --bs-offcanvas-zindex: 10000;
}

/************************************************
                Button Styles
************************************************/
.btn {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: #fff;
  color: #212529;
  border-color: #fff;
  border-radius: 8px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.btn i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}
.btn:hover i {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.worklist {
  padding: 0;
}
.worklist p {
  margin-bottom: 10px;
}
.worklist ul {
  padding: 0;
}
.worklist ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0;
  padding: 4px 0;
  padding-left: 20px;
}
.worklist ul li .worklist-title {
  color: #fff;
  font-family: "Playfair Display", sans-serif;
  font-size: 1.25rem;
  line-height: 32px;
  letter-spacing: -0.6px;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none !important;
}
.worklist ul li .worklist-title svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -22px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.worklist ul li .worklist-title svg path {
  fill: #FFFFFF;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.worklist ul li:hover .worklist-title svg path {
  fill: #f39c12;
}
.worklist ul li .career-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-itmes: baseline;
  color: #969696;
}
.worklist ul li .career-line .years {
  font-style: italic;
}

.section-title-block {
  padding: 20px 0;
  color: #fff;
}
.section-title-block .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Playfair Display", sans-serif;
  font-style: italic;
  line-height: 18px;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding: 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.content-title {
  margin-bottom: 20px;
}

.dot-bg:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background-image: url("../images/dots.png");
  background-repeat: repeat;
  opacity: 0.1;
}
.dot-bg.w-100:after {
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
}

/************************************************
                Header Styles
************************************************/
.logo img{
  max-width: 170px;
}
.navbar {
  position: absolute;
  width: 100%;
  left: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 9999999;
}
.navbar .navbar-toggler {
  background: transparent !important;
  color: #fff !important;
  border: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.navbar .navbar-nav {
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  margin-left: auto;
  gap: 8px;
}
.navbar .navbar-nav .nav-link {
  padding: 4px 20px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  line-height: 26px;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}
.navbar.nav-scroll {
  position: fixed;
  top: -80px;
  padding: 15px 0;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 80px;
    width: 100%;
    left: 0;
    padding: 0;
    margin: 0;
  }
}
/************************************************
                Hero Styles
************************************************/
.hero-area {
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: bottom;
  background-color: #000033;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 160px 0 100px 0;
  position: relative;
  min-height: calc(100vh - 100px);
}

.about-me {
  position: relative;
  max-width: 400px;
}

.little-about-me {
  color: #fff;
  position: relative;
  padding: 0;
}
.little-about-me .intro,
.little-about-me .experience {
  color: #fff;
}
.little-about-me .experience {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.little-about-me .experience div {
  font-family: "Playfair Display", sans-serif;
  font-size: 3rem;
  line-height: 34px;
}
.little-about-me .experience span {
  max-width: 100px;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 20px;
}

.word-cloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  background-color: transparent;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  z-index: 1;
}

@-webkit-keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.6;
  }
}
.word {
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  position: relative;
  font-size: 0.875rem;
  opacity: 0.5;
  -webkit-animation: fadeInOut 0.2s ease forwards;
          animation: fadeInOut 0.2s ease forwards;
  -webkit-animation-delay: var(--animation-delay, 0s);
          animation-delay: var(--animation-delay, 0s);
  word-wrap: break-word;
  text-align: justify;
  font-weight: 300;
}
.word.size-1 {
  font-size: 0.875rem;
}
.word.size-2 {
  font-size: 1rem;
}
.word.size-3 {
  font-size: 1.25rem;
}
.word.size-4 {
  font-size: 1.5rem;
}
.word.size-5 {
  font-size: 2rem;
}

.design-is {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  background-color: transparent;
  padding: 0;
  position: relative;
  z-index: 10;
  margin: 0;
  line-height: unset;
}
.design-is span {
  font-family: "Playfair Display", sans-serif;
  font-style: italic;
  font-weight: bold;
  color: #fff;
  opacity: 1;
  margin: 0 5px;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.design-is span.word {
  color: rgba(255, 255, 255, 0.1);
  opacity: 0.5;
}
.design-is.not span {
  font-size: 1rem;
  font-weight: 300;
  margin: 0 2px;
}
.design-is.not svg {
  display: inline-block;
  width: 44px;
  height: 30px;
  vertical-align: middle;
}
.design-is.not svg path {
  fill: #FFFFFF;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.marquee-wrapper {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  background: #f39c12;
  overflow: hidden;
}
.marquee-wrapper .boxes {
  position: relative;
}
.marquee-wrapper .boxes .box {
  height: 100px;
  position: absolute;
  background: transparent;
  font-size: 1.25rem;
  line-height: 100px;
  margin: 0 20px;
  text-align: center;
  color: #fff;
  text-transform: Capitalize;
}

.marquee-wrapper .boxes .box::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url%28%23clip0_336_3439%29%22%3E%3Cpath%20d%3D%22M8%200C8.99388%204.99059%2010.9805%206.99647%2016%208C10.9793%209.00353%208.99272%2011.0094%208%2016C7.00612%2011.0094%205.01952%209.00235%200%208C5.02068%206.99647%207.00728%204.99059%208%200Z%22%20fill%3D%22%23121416%22%3E%3C/path%3E%3C/g%3E%3Cdefs%3E%3CclipPath%3E%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%3E%3C/rect%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -10px;
  top: 34px;
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 991px) {
  .custom-shape {
    margin-top: 40px;
  }
  .custom-shape .word-cloud {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.explore-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 50%;
  top: 95%;
  -webkit-transform: translate(-50%, -95%);
          transform: translate(-50%, -95%);
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s ease-out, visibility 0s linear 1s;
  transition: opacity 1s ease-out, visibility 0s linear 1s;
}
.explore-container .circle-button-wrapper {
  position: relative;
}
.explore-container .circle-button-wrapper .circle-button {
  position: relative;
  display: inline-block;
}
.explore-container .circle-button-wrapper .circle-button .rotating-text-circle {
  font-size: 44px;
  text-transform: uppercase;
  -webkit-animation: rotateCircle 20s linear infinite;
          animation: rotateCircle 20s linear infinite;
}
.explore-container .circle-button-wrapper .circle-button .rotating-text-circle svg.text-circle-svg {
  width: 120px;
  fill: #fff;
}
.explore-container .circle-button-wrapper .circle-button .circle-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
}
.explore-container .circle-button-wrapper .circle-button .circle-arrow svg {
  width: 20px;
  height: 20px;
}
.explore-container .circle-button-wrapper::before, .explore-container .circle-button-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.explore-container .circle-button-wrapper::before {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
}
.explore-container .circle-button-wrapper::after {
  width: 100px;
  height: 100px;
}

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

@keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/************************************************
                About Styles
************************************************/
.about-section .wrapper {
  background-image: url("../images/about-bg.png");
  background-size: cover;
  background-position: top;
  background-color: #000033;
  position: relative;
}
.about-section .about-wrapper {
  padding: 100px 0;
}
.about-section .about-intro {
  position: relative;
  overflow: hidden;
  padding: 0 0 100px 0;
  color: #fff;
}

.about-details {
  color: #fff;
}
.about-details .about p {
  line-height: 28px;
}
.about-details .about p span {
  color: #f39c12;
}
.about-details .about-image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about-details .about-image img {
  width: 80%;
  height: auto;
}
.hero-banner {
  width: 150px;
  height: 172px;
  background-color: #f39c12;
  border-radius: 10px;
  margin-inline: auto;
  margin-block-end: 30px;
}

.hero-banner img {
  border-radius: inherit;
}
@media (min-width: 992px) {

  .hero-banner {
    position: relative;
    margin-block-end: 0;
    order: 1;
    width: 340px;
    height: 390px;
    margin-inline: 0;
    margin-inline-start: auto;
  }

  .elem {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bs-white);
    border-radius: 8px;
    padding: 20px;
  }

  .elem-1 {
    top: 20px;
    left: -130px;
  }

  .elem-1 .elem-title {
    color: #f39c12;
  }

  .elem-2 {
    bottom: 30px;
    right: -80px;
  }

  .elem-2 .elem-title {
    color: #f39c12;
  }

  .elem-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin:0;
  }

  .elem-text {
    max-width: 10ch;
    color: var(--bs-black);
    font-weight: 700;
    line-height: 1.1;
    margin:0;
  }

  .elem-3 {
    top: -40px;
    right: -30px;
  }

  .elem-3 ion-icon {
    color: #f39c12;;
    font-size: 6rem;
  }

  .rotate-img {
    display: block;
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 120px;
    animation: rotate360 15s linear infinite reverse;
  }

  @keyframes rotate360 {
    0% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(1turn);
    }
  }

}

.works-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-process {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.work-process .process-line {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.work-process .process-container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .work-process .process-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
@media (max-width: 991px) {
  .work-process .process-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.work-process .process-item {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 10px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  position: relative;
  z-index: 3;
  text-align: left;
}
.work-process .process-item .process-title {
  font-family: "Playfair Display", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: left;
}
.work-process .process-item .process-title span {
  font-size: 1rem;
  text-align: left;
}
.work-process .process-item .process {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2e8f0;
}
@media (max-width: 768px) {
  .work-process .process-item .process {
    font-size: 0.8rem;
  }
}

/************************************************
                Skills Styles
************************************************/
.skill-section {
  padding: 100px 0;
  position: relative;
  background-color: #000033;
}

.skill-details {
  position: relative;
  z-index: 1;
}
.skill-details .career-info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.skill-details .career-info .worklist {
  width: 100%;
}
.skill-details .career-info .worklist ul li {
  line-height: 44px;
}

.skills-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 0 40px;
}
.skills-list .skills-wrap {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.skills-list .skills-wrap .skill-icon img {
  width: 38px;
  height: auto;
}
.skills-list .skills-wrap .skill-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  width: 100%;
}
.skills-list .skills-wrap .skill-item .skill-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.875rem;
}
.skills-list .skills-wrap .skill-item .progress {
  height: 4px !important;
  width: 100%;
}
.skills-list .skills-wrap .skill-item .progress-bar {
  background: #f39c12;
}

@media (max-width: 991px) {
  .skills-list {
    margin-top: 40px;
    padding: 0;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .skill-item {
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .skill-item {
    padding: 8px;
  }
}
/************************************************
                Works Styles
************************************************/
.works-section {
  background-image: url("../images/about-bg.png");
  background-size: cover;
  background-position: top;
  background-color: #000033;
}
.works-section .o-hidden {
  overflow: hidden;
}
.works-section .mb-30 {
  margin-bottom: 30px !important;
}
.works-section .works-wrapper {
  padding: 100px 0;
}
.works-section .works-wrapper .filtering {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.works-section .works-wrapper .filtering .filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  gap: 8px;
}
.works-section .works-wrapper .filtering .filter span {
  padding: 4px 20px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  border: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  line-height: 24px;
  cursor: pointer;
}
.works-section .works-wrapper .filtering .filter span.text {
  pointer-events: none;
}
.works-section .works-wrapper .filtering .filter span:hover, .works-section .works-wrapper .filtering .filter span.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.works-section .works-wrapper .gallery .items.height-1 {
  height: 530px;
}
.works-section .works-wrapper .gallery .items.height-1 img {
  height: 530px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.works-section .works-wrapper .gallery .items.height-2 {
  height: 250px;
}
.works-section .works-wrapper .gallery .items.height-2 img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.works-section .works-wrapper .gallery .items .item-img {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.works-section .works-wrapper .gallery .items .item-img a {
  width: 100%;
}
.works-section .works-wrapper .gallery .items .item-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1d1d1d;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  pointer-events: none;
  opacity: 0;
}
.works-section .works-wrapper .gallery .items .item-img:hover:after {
  opacity: 0.8;
}
.works-section .works-wrapper .gallery .items .item-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1d1d1d;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  pointer-events: none;
  opacity: 0;
}
.works-section .works-wrapper .gallery .items .item-img .info {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
  z-index: 2;
  text-align: center;
}
.works-section .works-wrapper .gallery .items .item-img .info .sub-title {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.works-section .works-wrapper .gallery .items .item-img .info h3,
.works-section .works-wrapper .gallery .items .item-img .info .tag {
  color: #fff !important;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.works-section .works-wrapper .gallery .items .item-img .info h3 a,
.works-section .works-wrapper .gallery .items .item-img .info .tag a {
  color: #fff !important;
}
.works-section .works-wrapper .gallery .items .item-img:hover .info h3,
.works-section .works-wrapper .gallery .items .item-img:hover .info .tag {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.works-section .works-wrapper .gallery .items .item-img:hover .info .tag {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/************************************************
                Footer Styles
************************************************/
.footer-section {
  padding: 0;
  background-image: url("../images/about-bg.png");
  background-size: cover;
  background-position: top;
  background-color: #000033;
  position: relative;
}
.footer-section .footer-wrapper {
  padding: 140px 0 80px;
}
.footer-section .lets-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 100px;
  z-index: 1;
  position: relative;
  gap: 20px;
}
.footer-section .lets-start h3 {
  font-family: "Playfair Display", sans-serif;
  font-size: 3rem;
  color: #fff;
}
.footer-section .lets-start p {
  font-size: 1.25rem;
  color: #fff;
}
.footer-section .contact-me {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  position: relative;
  z-index: 1;
}
.footer-section .contact-me .info {
  font-size: 1.5rem;
  color: #fff;
}
.footer-section .contact-me .info a {
  color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.footer-section .contact-me .info.social {
  -ms-grid-column-align: center;
      justify-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.footer-section .contact-me .info.social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.footer-section .contact-me .info.social a i {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.footer-section .contact-me .info.social a:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.footer-section .contact-me .info.social a:hover i {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: rgba(255, 255, 255, 0.3);
}
.footer-section .contact-me .info:first-child {
  -ms-grid-column-align: start;
      justify-self: start;
}
.footer-section .contact-me .info:last-child {
  -ms-grid-column-align: end;
      justify-self: end;
}
.footer-section .bottom-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  padding: 30px 0;
}
.footer-section .bottom-copyright p {
  font-size: 0.875rem;
  color: #fff;
  margin: 0;
}
.footer-section .bottom-copyright p a {
  font-family: "Playfair Display", sans-serif;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .contact-me {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    gap: 40px;
  }
  .contact-me .info {
    -ms-grid-column-align: center !important;
        justify-self: center !important;
    font-size: 1.25rem !important;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 60px;
  right: 60px;
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  text-decoration: none !important;
}
.scroll-to-top:hover, .scroll-to-top:focus {
  text-decoration: none;
}
.scroll-to-top::before {
  content: '';
  position: absolute;
  left: -30px;
  top: -28px;
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_336_3439)'%3E%3Cpath d='M8 0C8.99388 4.99059 10.9805 6.99647 16 8C10.9793 9.00353 8.99272 11.0094 8 16C7.00612 11.0094 5.01952 9.00235 0 8C5.02068 6.99647 7.00728 4.99059 8 0Z' fill='%23f39c12'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_336_3439'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}