@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.6 !important;
  letter-spacing: -0.03em;
}

::-moz-selection {
    background-color: color-mix(in srgb, var(--primary), transparent 50%) !important;
  color: var(--white);
}

::selection {
    background-color: color-mix(in srgb, var(--primary), transparent 50%) !important;
  color: var(--white);
}

:root {
  --default-font: "Instrument Sans", sans-serif;
  --heading-font: "Instrument Sans", sans-serif;
  --nav-font: "Instrument Sans", sans-serif;
  --linked-font: "Instrument Sans", serif;


  --body: #f3f0f0;
  --white: #f3f0f0;
  --footer: rgb(134, 134, 134);
  --subfooter: #363636 !important;

  --background-color: #4c4c4c;
  --default-color: #000000 !important;
  --default-color-alph: rgba(0, 0, 0, 0.5) !important;

  /* Fonts */
  --primary: #04ecfd;
  --secondary: #a8c32d;
  --color: #08929c;

  --default-color-7: rgba(113, 112, 112, 0.7) !important;
  --grey-600-color: rgba(26, 26, 26, 0.6);
  --grey-500-color: rgba(26, 26, 26, 0.5);
  --grey-400-color: rgba(26, 26, 26, 0.4);
  --grey-300-color: rgba(26, 26, 26, 0.3);
  --grey-100-color: rgba(26, 26, 26, 0.1);
  --light-color: #000000;
  --active-light-color: #ced506 !important;
  --blue-900: #08aeb4 !important;
  --blue-800: rgba(71, 113, 237, 0.8) !important;
  --blue-700: rgba(71, 113, 237, 0.7) !important;
  --blue-600: rgba(71, 113, 237, 0.6) !important;
  --blue-500: rgba(71, 113, 237, 0.5) !important;
  --blue-400: rgba(71, 113, 237, 0.4) !important;

  --active-bright-color: #03dceb !important;


  scroll-behavior: smooth;
}

.linear-gradient-font {
  background-image: linear-gradient(90deg, #000000 47.59%, #06ccdb 77.84%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.2rem;
}

/* RGB */
.cyan {
  color: rgb(0, 255, 255) !important;
}

.magenta {
  color: rgb(233, 0, 255) !important;
}

.yellow {
  color: rgb(255, 255, 0) !important;
}

.secondary-color {
  color: var(--secondary);
}

.color {
  color: var(--color);
}



/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.red {
  color: var(--red);
}

.green {
  color: var(--green);
}

.blue {
  color: var(--blue-900);
}

.blue {
  color: var(--pink-900);
}

.pink {
  color: var(--pink);
}


.grey-600 {
  color: var(--grey-600-color);
}

.grey-500 {
  color: var(--grey-500-color);
}

.grey-400 {
  color: var(--grey-400-color);
}

.grey-300 {
  color: var(--grey-300-color);
}

.blue-900 {
  color: var(--blue-900);
}

.blue-800 {
  color: var(--blue-800);
}

.blue-700 {
  color: var(--blue-700);
}

.blue-600 {
  color: var(--blue-600);
}

.blue-500 {
  color: var(--blue-500);
}

.blue-400 {
  color: var(--blue-400);
}

.active-color {
  color: var(--active-bright-color) !important;
}


/*--------------------------------------------------------------
# H1
--------------------------------------------------------------*/

h1 {
  font-size: calc(1.775rem + 3.8vw) !important;
  line-height: calc(1.775rem + 3.2vw) !important;
  letter-spacing: -0.04em !important;
  font-weight: 600;
  text-align: left;
}

h1 span {
  color: var(--default-color);
}

.footer h1 {
  font-size: calc(1.175rem + 0.7vw) !important;
}

.linked {
  background: linear-gradient(90deg, rgb(76, 76, 76) 0%, rgb(0, 0, 0) 80%);
}

/*
@media screen and (max-width: 1440px) {
  h1 {
    letter-spacing: -0.06em !important;
  }
}

@media screen and (max-width: 992px) {
  h1 {
    letter-spacing: -2px !important;
  }
}

@media screen and (max-width: 640px) {
  h1 {
    letter-spacing: -1.5px !important;
  }
}
  */


h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  letter-spacing: 0em !important;
  font-weight: 600 !important;
}

p,
strong {
  letter-spacing: -0.02em !important;
  font-weight: 400;
}

h2 {
  font-weight: 200;
}

strong {
  font-weight: 600 !important;
}

.fs-2,
.fs-3,
.fs-4 {
  font-size: calc(20px + 4*((100vw - 500px) / 1420)) !important;
}


@media screen and (max-width: 768px) {
  p {
    font-size: 20px;
  }
}

a {
  color: var(--default-color);
  transition: all .2s linear;
  -moz-transition: all .2s linear;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  text-decoration: none;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}


h6.header {
  display: inline !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color);
  margin: 0 1rem;
  width: auto;
  white-space: nowrap;
}

.muted {
  color: var(--grey-500-color);
}





/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: var(--default-color);
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}*/

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  overflow-x: hidden;
  color: var(--default-color);
  font-optical-sizing: auto;
  font-family: var(--default-font);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 0 0px 20px rgba(0, 0, 0, 0.03);
  background: var(--white);
  background: radial-gradient(linear, #fff 0%, #e1e1e1 100%);
}

.bg-light {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-dark {
  color: var(--white) !important;
  border-color: var(--white) !important;
}

.bg-color h1 span {
  color: var(--color) !important;
}

.bg-dark-color,
.bg-dark-color h2,
.bg-dark-color h4,
.bg-dark-color h6,
.bg-dark-color p,
.bg-dark-color strong {
  color: var(--white);
  border-color: var(--white);
}

/*
.bg-dark-color,
.bg-dark-color h2,
.bg-dark-color h4,
.bg-dark-color h6,
.bg-dark-color p,
.bg-dark-color strong {
  color: var(--default-color) !important;
  border-color: var(--default-color);
}
  */


.bg-light h2,
.bg-light h5,
.bg-light p,
.bg-light li,
.bg-light strong,
.bg-light span {
  background-color: transparent !important;
}

.bg-dark h2,
.bg-dark h4,
.bg-dark h5,
.bg-dark li,
bg-light a .bg-dark strong {
  background-color: transparent !important;
  color: #ffffff !important;
}

.bg-dark p,
.bg-dark a {
  color: #ffffff !important;
}

.footer {
  background-color: color-mix(in srgb, var(--footer), transparent 30%) !important;
  color: var(--white) !important;
}

.footer h1,
.footer h1 span,
.footer p a {
  color: #eee !important;
}

.footer .sub-footer {
  background-color: color-mix(in srgb, var(--subfooter), transparent 50%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

@media screen and (max-width:1024px) {
  .footer .row {
    padding: 0 1.5rem;
  }
}

.footer-link {
  display: inline-block;
  color: var(--white);
  padding: 0.75rem 1.2rem 0 1.2rem !important;
  border-radius: 1000px;
  border: 4px solid var(--white);
}

.text-white {
  color: #fff !important;
}

.spacer {
  display: block;
  height: 2px !important;
  background-color: var(--grey-100-color);
}

.spacer-secondary {
  display: block;
  height: 2px !important;
  background-color: var(--secondary);
}

.bg-dark .spacer {
  background: #ffffff;
  margin: 2rem 0;
}

.footer-spacer {
  height: 2px !important;
  margin: 3rem 0;
}

.underline-links:hover {
  position: relative;
  border-bottom: 1px dashed var(--accent-color);
}

i {
  font-family: var(--italic-font);
}


.link,
.email-link {
  text-decoration-line: underline;
  text-decoration-thickness: from-font;
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
  white-space: nowrap;
}

.link::after,
.email-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.link::after {
  background-color: var(--default-color) !important;
}

.footer .link::after,
.bg-dark .link::after {
  background-color: var(--white) !important;
}

.link:hover::after,
.email-link:hover::after {
  width: 100%;
  /* Expand underline on hover */
}

.linked {
  display: inline-block;
  list-style: outside none none;
  background-color: var(--default-color-alph);
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 1rem 0.5rem;
  text-transform: uppercase;
}

.linked:hover {
  transition: all 0.4s;
  color: var(--white) !important;
  background-color: var(--default-color);
}

.email-me {
  display: flex;
  /*width: 280px;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  border: none;
  outline: none;
  line-height: 3.3;
  padding-left: 1.2rem;*/
}

.email-input {
  width: 100%;
  height: 54px;
  background: none;
  border: 0;
  padding: 0;
  outline: none;
}

.email-btn {
  line-height: 2.6;
  width: 160px;
  height: 50px;
  /*background-color: var(--default-color, transparent 80%);*/
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding-right: 16px;
  padding-left: 6px;
  cursor: pointer;
  outline: none;
}

.email-btn:hover {
  color: #fff;

}


/*--------------------------------------------------------------
# Logo
-------------------------------------------------------------- */

.logo {
  position: absolute !important;
  top: 36px !important;
  left: 20px !important;
  display: inline;
  padding: 1rem;
    font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  z-index: 0;
  transform: rotate(0deg);
}

.logo a {
    font-weight: 600 !important;
}

.logo::after,
.copyright::after {
  content:'©';
  font-weight: 900 !important;
  font-size: 73.543%;
  padding-left: 1px;
}


@media screen and (max-width: 768px) {
  .logo {
    background-color: color-mix(in srgb, var(--secondary), transparent 100%);
    font-size: 12px !important;
  }

}


@keyframes RGBColors {
  0% {
    color: var(--red);
  }

  33% {
    color: var(--green);
  }

  68% {
    color: var(--blue);
  }
}

p .logo-sm {
  letter-spacing: 0em !important;
  font-weight: 500;
}

p .logo-sm::after {
  content: '.©';
  padding-left: 1px;
  font-weight: 700 !important;
}

@media screen and (max-width: 768px) {
  .logo-jl-tablet {
    width: 200px !important;
  }
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

/*
.email {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  font-weight: 500;
  font-size: 15px !important;
  margin: 0.5em;
  padding: 0.5rem 1.5rem;
  background-color: rgba(75, 79, 197, 0.7);
  color: white;
  border-radius: 30px;
}

.email:hover {
  color: white;
  background-color: rgba(75, 79, 197, 1);
}
  */


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
html {
  position: relative;
  min-height: 100%;
}

.relative {
  position: relative !important;
}

/*--------------------------------------------------------------
# Social Media Buttons
--------------------------------------------------------------*/

.jump {
  display: inline-block;
  list-style: outside none none;
  margin: 0 0.3rem;
}

.jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(60px + 12 *((100vw - 500px) / 1420));
  height: calc(60px + 12 *((100vw - 500px) / 1420));
  background-color: transparent;
  box-shadow: 10px 20px 24px rgba(0, 0, 0, 0.01);
  border: 6px solid var(--white);
  backdrop-filter: blur(5.2px);
  -webkit-backdrop-filter: blur(5.2px);
  border-radius: 50%;
  font-size: calc(24px + 0*((100vw - 500px) / 1420));
  text-transform: none;
  transition: all 0.4s;
}

.jump:hover {
  transform: scale(1.17, 1.17) translateZ(0);
  /*background-color: var(--default-color);*/
  outline-color: var(--default-color) !important;
  color: var(--white);
}


.hyperlink {
  border: none;
}

/*--------------------------------------------------------------
# Footer & Social Media Buttons
--------------------------------------------------------------*/

.tooltip {
  letter-spacing: 0.5px;
}

.tooltip-inner {
  font-size: 12px !important;
  font-weight: 400;
  background: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
  text-align: center;
  text-transform: lowercase;
  position: relative;
  bottom: -10px !important;
  transform: scale(1.075, 1.075);
  transition: 0.3s all ease-in-out !important;
  box-shadow: 0px 6px 6px 6px rgba(160, 160, 160, 0.1);
}

.tooltip-arrow {
  display: none !important;
}

.bounce {
  animation: jumpInfinite 1.1s infinite;
}

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }

  50% {
    margin-top: -20px;
  }

  100% {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media screen and (max-width: 1024px) {
  .mobile-hidden {
    display: none !important;
    visibility: hidden !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
  padding: 9rem 1.5rem;
  /*scroll-margin-top: 100px;*/
  overflow: clip;
}

section p span {
  color: color-mix(in srgb, var(--primary), transparent 0%);
}


@media screen and (max-width: 768px) {

  section,
  .section {
    padding: 4rem 1.5rem;
    /*scroll-margin-top: 100px;*/
    overflow: clip;
  }
}

header {
  position: absolute;
}

/*--------------------------------------------------------------
# Hero and Intro Section
--------------------------------------------------------------*/

/*
.bg-image {
  background-size: 600% 100%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
  */

.hero,
.intro {
  position: relative;
  width: 100%;
  height: 100svh !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, #fff 0%, #d1d1d1 100%) !important;
}

@media screen and (max-width: 1440px) {
  .hero,
  .intro {
    height: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .hero,
  .intro {
    height: 100svh !important;
  }
}

@media screen and (max-width: 640px) {
  .hero,
  .intro {
    height: 100% !important;
    padding-top: 7rem;
  }
}

.container {
  max-width: 1440px !important;
  margin: auto;
}

@media screen and (max-width: 1440px) {
  .container {
    max-width: 1290px !important;
    margin: auto;
  }
}

.hero .link::after {
  background-color: var(--primary) !important;
}

.hero h1 {
  display: block;
  font-size: calc(1.275rem + 6vw) !important;
  line-height: calc(1.275rem + 5vw) !important;
  letter-spacing: -0.04em !important;
  font-weight: 600;
}

.intro h1 {
  font-size: calc(1.275rem + 6vw) !important;
  line-height: calc(1.275rem + 5vw) !important;
  letter-spacing: -0.04em !important;
  font-weight: 600;
}


@media screen and (max-width: 640px) {

  .hero h1,
  h1 {
    line-height: 1.2;
  }
}

.title-block {
  background: var(--default-color);
  background: radial-gradient(circle, rgba(6, 0, 45, 0.7) 0%, rgba(6, 0, 45, 0.6) 100%);
  color: var(--white) !important;
  padding: .3rem .5rem;
  font-weight: 600;
}



/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-primary, .btn-outline-secondary {
   font-weight: 600 !important;
  padding: 1rem 3rem;
  background-color: transparent;
  border-radius: 4px;
  border: 3px solid var(--default-color-7);
}

.btn-primary {
  background-color: var(--active-bright-color);
  border: 3px solid var(--active-bright-color);
  color: rgba(var(--white) 0.5, var(--bs-bg-opacity));
}

.btn-primary:hover, .btn-primary:active {
  background-color: var(--active-bright-color) !important;
  border: 3px solid var(--active-bright-color)  !important;
  color: rgba(var(--bs-dark-rgb) 0.5, var(--bs-dark-rgb) 1)  !important;
}

.btn-outline-secondary:hover {
    background-color: transparent;
  border: 3px solid var(--primary);
  color: rgba(var(--bs-dark-rgb) 0.5, var(--bs-bg-opacity));
}




/* Hero 
.hero a.btn {
  display: flex;
  justify-content: center;
  justify-items: center;
  border: 2px solid color-mix(in srgb, var(--grey-300-color), transparent 50%);
  background-color: color-mix(in srgb, var(--white), transparent 50%);
  border-radius: 50%;
  padding: calc(1.375rem + 8 *((100vw - 500px) / 1420));
  width: calc(68px + 24 *((100vw - 500px) / 1420));
  height: calc(68px + 24 *((100vw - 500px) / 1420));
  font-size: calc(14px + 4 *((100vw - 500px) / 1420));
  transition: all 300ms ease-out;
}

.hero a.btn:hover {
  color: var(--white) !important;
}

.hero a.btn:hover {
  transform: scale(1.8);
  transition: all 300ms ease-in-out;
  background-image: linear-gradient(90deg, #05daff 47.59%, #0084ff 77.84%);
  border: 0px;
}*/

/* Preview */
.preview-link {
  border: 3px solid #ccc;
  border-radius: 56px;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  width: 230px;
  touch-action: manipulation;
  z-index: 3;
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset,
    rgba(141, 141, 141, 0.1) 0 3px 5px,
    rgba(141, 141, 141, 0.1) 0 10px 13px;
}

.preview-link:before {
  background-color: initial;
  /*border-radius: 125px;*/
  content: "";
  height: 50%;
  left: 0;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 100%;
}

.preview-link:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .ppreview-link {
    padding: 16px 48px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Gallery Details Section
--------------------------------------------------------------*/

.gallery-details .portfolio-details-slider img {
  width: 100%;
}

.gallery-details .swiper-wrapper {
  height: auto;
}

.gallery-details .swiper-button-prev,
.gallery-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.gallery-details .swiper-button-prev:after,
.gallery-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gallery-details .swiper-button-prev:hover:after,
.gallery-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .gallery-details .swiper-button-prev,
  .gallery-details .swiper-button-next {
    display: none;
  }
}

.gallery-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.gallery-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*
.portfolio-info .grid {
  display: grid;
  grid-template-columns: auto;
  grid-column-gap: 20px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .portfolio-info .grid {
    display: grid;
    grid-template-columns: auto;
    grid-column-gap: 0px;
  }
}
  */


/*
.portfolio-info__bg {
    padding: calc(10px + 12 *((100vw - 500px) / 1420));
  background-color: color-mix(in srgb, var(--white), transparent 55%);
  border-radius: calc(10px + 12 *((100vw - 500px) / 1420));
}
  */

.portfolio-info .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 0px;
}

@media screen and (max-width: 768px) {
  .portfolio-info .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

.portfolio-info .grid p {
  border-bottom: 1px solid color-mix(in srgb, var(--grey-500-color), transparent 10%);
  background-color: color-mix(in srgb, var(--white), transparent 25%);
  padding: 0.65rem 0.5rem;
  letter-spacing: 0.5px !important;
  margin: 0 !important;
}

.portfolio-info .grid p span {
  display: inline !important;
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--color), transparent 0%);
  padding-right: 0.5rem;
  font-size: 14px;
}


.portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*
.portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

 */
#portfolio .btn-outline-dark {
   background: color-mix(in srgb, var(--white), transparent 30%); 
}
#portfolio .active {
   background: color-mix(in srgb, var(--default-color), transparent 0%); 
}

.gallery-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-details .portfolio-description p {
  padding: 0;
}

.gallery-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.gallery-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.gallery-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.gallery-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-left,
.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.gallery-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.gallery-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/

.divider {
  color: inherit;
  height: 20px !important;
}

.grid p,
.grid p span {
  font-weight: 600 !important;
}

.grid p span {
  display: inline-block;
  min-width: 200px !important;
}

/* Bnaners ad types */
.leaderboard {
  width: 970px !important;
  height: 250px !important;
}

.double-skyscraper {
  width: 300px !important;
  height: 600px !important;
}

.mpu {
  width: 300px !important;
  height: 250px !important;
}


.breadcrumbs a {
  color: black !important;
  font-weight: 500;
}

.breadcrumbs .nxt:after {
  content: '>';
  padding: 0 1rem;
}

.breadcrumbs .pre:before {
  content: '<';
  padding: 0 1rem;
}




.triangle {
  position: relative;
  top: 10%;
  left: 90%;
  width: 10%;
  height: 10%;
  transform: rotate(45deg);
  background: green;
}

/* Bttn */
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

button.learn-more {
  width: 12rem;
  height: auto;
}

button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button:hover .circle {
  width: 100%;
}

button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

button:hover .button-text {
  color: #fff;
}


.portfolio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 !important;
  /* background: rgb(238,174,202);
  background: radial-gradient(circle, rgba(238,174,202,1) 32%, rgba(255,255,255,1) 100%);*/
}

.apple-profile-icon {
  border-radius: 22%;
  display: block;
  border: .5px solid rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 6px 4px rgb(0 0 0 / 10%);
}

.breadcrumbs a {
  color: rgba(var(--bs-dark-rgb) 0.5, var(--bs-bg-opacity)) !important;
  font-weight: 500;
}

.breadcrumbs .nxt:after {
  content: '>';
  padding: 0 1rem;
}

.breadcrumbs .pre:before {
  content: '<';
  padding: 0 1rem;
}

/*--------------------------------------------------------------
# Accordion item
--------------------------------------------------------------*/

.accordion-item {
  background-color: transparent !important;
  border: none !important;
  padding: 0;
  margin: 0;
  border-radius: 0 !important;
}

.accordion-item .accordion-button {
  font-size: 16px !important;
  font-weight: 300 !important;
}

.accordion-button,
.accordion-body {
  padding: 10px 0 !important;
  font-size: 1rem;
}

.accordion-body ol,
.accordion-body ul {
  padding-left: 1rem;
}

.accordion-body ul li {
  display: inline-flex;
  gap: 0.2rem;
  margin-right: 0.5rem;
}
.accordion-body ul li:before {
   content: "\00B7";
   padding-right: 1px !important;
}


.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent !important;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none !important;
}

#icons div {
  margin: auto;
  justify-content: center;
  justify-items: center;
}

#icons img {
  width: calc(100px + 56 *((100vw - 500px) / 1420));
  height: calc(100px + 56 *((100vw - 500px) / 1420));

}

#icons div h6 {
  font-size: 14px !important;
  text-align: center !important;
}


.resume-title {
  color: var(--default-color) !important;
}

/*--------------------------------------------------------------
# Accordion - Button
-------------------------------------------------------------- */


.accordion-button-icon {
  background-image: url("../img/accordion-arrow-dn.svg");
}

.accordion-button-active-icon {
  background-image: url("../img/accordion-arrow-up.svg");
}


.accordion-header {
  border-top: 1px solid #333;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: flex-start;
  text-align: left !important;
}


.accordion-header,
.accordion-collapse,
.accordion-item {
  background-color: rgba(255, 255, 255, 0) !important;
}

.accordion-header:hover {
  transition: cubic-bezier(0.075, 0.82, 0.165, 0.5);
}

.accordion-button::after {
  display: none;
  visibility: hidden;
}

.accordion-button::before {
  position: relative;
  top: -4px;
  padding: 1rem;
  margin-right: 1rem;
  border-radius: 50%;

  background-position: center center;
  background-image: url(../img/doted-sqaure.svg);
  background-size: 30px;
  transform: rotate(-90deg) !important;
  /*background-color: var(--default-color);*/
}

.accordion-button:not(.collapsed)::before {
  background-image: url(../img/doted-sqaure.svg);
  transform: rotate(45deg) !important;
}

.accordion-button::before {
  content: "";
  flex-shrink: 0;

  background-repeat: no-repeat;
  /*background-size: var(--bs-accordion-btn-icon-width);*/
  transition: var(--bs-accordion-btn-icon-transition);
}


.resume-item {
  padding: 0rem 0rem 1rem 0rem;
}


*:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Buttons
-------------------------------------------------------------- */
.txt-box {
  background-color: #eee;
  border-radius: 20px;
  padding: 2rem;
}

.open,
.open a {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  /*background: radial-gradient(circle,rgba(71, 113, 237, 0.9) 32%, rgb(141, 167, 246, 1) 100%);*/
  background-color: #333;
  color: #fff;
  transition: all 0.4s;
  padding: 1rem;
}

.open:hover,
.open a:hover {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  /*background: radial-gradient(circle,rgba(71, 113, 237, 0.9) 32%, rgb(71, 113, 237, 0.9) 100%);*/
  background-color: #000000;
  color: #fff;
}

/*--------------------------------------------------------------
# iFrames
-------------------------------------------------------------- */

.iframe {
  display: flex;
  justify-content: center;
  justify-items: center;
  background: white;
}

@media (max-width: 575px) {
  iframe {
    position: relative;
    outline: none !important;
    border: none !important;
    padding: 0;
    margin: 0;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

.iframe-replace-img {
  visibility: hidden;
  display: none;
}

.bg-dark .iframe-tablet,
.bg-dark .iframe-mobile {
  outline: 14px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 22px 32px rgba(255, 255, 255, 0.31);
  display: flex;
}


.bg-dark .iframe-button {
  position: absolute;
  top: 0;
  text-decoration: none;
  position: relative;
  display: inline;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  /*background: radial-gradient(circle,rgba(71, 113, 237, 0.9) 32%, rgb(141, 167, 246, 1) 100%);*/
  background-color: #e1e1e1;
  border-radius: 0px;
  transition: all 0.4s;
  padding: 1rem;
  color: var(--default-color) !important;
  font-size: 16px;
}

.iframe-button {
  position: absolute;
  top: 0;
  text-decoration: none;
  position: relative;
  display: inline;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  /*background: radial-gradient(circle,rgba(71, 113, 237, 0.9) 32%, rgb(141, 167, 246, 1) 100%);*/
  background-color: #333;
  border-radius: 0px;
  transition: all 0.4s;
  padding: 1rem;
  color: #fff !important;
  font-size: 16px;
}

.iframe-button:hover {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  /*background: radial-gradient(circle,rgba(71, 113, 237, 0.9) 32%, rgb(71, 113, 237, 0.9) 100%);*/
  background-color: #000000;
  color: #fff !important;
}


/*
.play a {
  position: absolute;
  top: 120px;
  right: 10px;
  width: 100px;
  height: 100px;
  color: #fff !important;
  font-weight: 700;
  font-size: 20px;
  color: #666;
  letter-spacing: 1px;
  padding: 2.3rem 0;
  outline: 6px solid rgba(224, 224, 223, 0.7);
  background-color: rgba(176, 176, 176, 0.7) !important;
  border-radius: 50%;
  box-shadow: 0 10px 10px rgba(217, 217, 217, 0.5);
  z-index: 0;
}

.play a:hover {
  background-color: rgba(255, 255, 1) !important;
  color: var(--default-color) !important;
  box-shadow: 0 10px 10px rgba(217, 217, 217, 1);
}
*/

.disabled {
  display: none !important;
}

.scroll-top {
  font-weight: 500;
  padding: 1rem;
  background-color: var(--white);
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--white);
}

.scroll-top:hover {
  transition: 0.3s all ease-in-out !important;
  background-color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 600;
  color: var(--white);
}

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

.disabled {
  display: none !important;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  z-index: 1;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


.scroll-top {
  position: fixed;
  align-items: center;
  justify-content: center;
  width: calc(50px + 22 *((100vw - 500px) / 1420));
  height: calc(50px + 22 *((100vw - 500px) / 1420));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.9)) !important;
  backdrop-filter: blur(10.2px);
  border-radius: 50%;
  outline: 4px solid rgba(0, 0, 0, 0.3) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: calc(18px + 8*((100vw - 500px) / 1420));
  text-transform: none;
  transition: all 0.4s;
  -webkit-backdrop-filter: blur(10.2px);
  color: var(--nav-hover-color) !important;

  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -10px;
  z-index: 99999;
  transition: all 0.4s;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

.scroll-top {
  color: #fff;
  font-weight: 300;
  position: fixed;
  border-radius: 5rem;
  visibility: hidden;
  opacity: 0;
  right: 2rem;
  bottom: -15px;
  z-index: 99999;
  background: rgb(236, 236, 238);
  background: linear-gradient(0deg, rgba(51, 51, 51, 0.7) 0%, rgba(51, 51, 51, 0.3) 100%);
  padding: 0.5rem;
  outline: 2px solid #fff;
  transition: all 0.4s;
  z-index: 1;

}

.scroll-top:hover {
  color: #fff;
  transition: all 0.4s;
  background: linear-gradient(0deg, rgba(51, 51, 51, 0.3) 0%, rgba(51, 51, 51, 0.7) 100%);
  font-weight: 400;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 3rem;
}


.scroll-top {
  color: #fff;
  font-weight: 300;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 2rem;
  bottom: -15px;
  z-index: 99999;
  background: rgba(26, 26, 26, 0.5);
  padding: 0.2rem 0.5rem;
  transition: all 0.4s;
  z-index: 1;
  visibility: hidden !important;

}

.scroll-top:hover {
  color: #fff;
  transition: all 0.4s;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.6) 0%, rgba(51, 51, 51, 0.9) 100%);
  font-weight: 400;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 3rem;
}*/


.page-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title .heading {
  width: 100%;
}

/*--------------------------------------------------------------
# Hide in small browsers
--------------------------------------------------------------*/

@media screen and (max-width: 1140px) {

  .banner-tablet-none,
  .hidden-sm {
    visibility: hidden;
    display: none;
  }
}

/*--------------------------------------------------------------
# Call to Action - Link
--------------------------------------------------------------*/

.call-to-action {
  display: flex;
  font-weight: 800;
  background: var(--default-color);
  color: #fff !important;
  padding: 3rem;
}

.call-to-action:hover {
  color: #fff !important;
  transition: all 0.8s;
  background: var(--light-color);
  font-weight: 400;
  font-weight: 800;
}

/*--------------------------------------------------------------
# Copy Email - Link
--------------------------------------------------------------*/

.copy-link {
  display: flex;
  color: #fff;
}

.copy-link-input {
  font-weight: 800 !important;
  flex-grow: 1;
  border: none;
  border-right: none !important;
  background-color: transparent;
  width: 260px;
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .copy-link-input {
    width: 220px;
  }
}

.copy-link-input::hover {
  background-color: transparent;
}

.copy-link-button {
  flex-shrink: 0;
  color: #fff !important;
  background-color: transparent;
}

.mailto-link {
  position: relative;
  padding: 8px 0;
}

.mailto-link:hover .mailto-message,
.mailto-link:focus .mailto-message,
.mailto-link:focus-within .mailto-message {
  display: block;
}

/*--------------------------------------------------------------
# Grid 2
--------------------------------------------------------------*/

.parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 0px;
}

@media screen and (max-width: 768px) {
  .parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    /*grid-row-gap: 16px;*/
    grid-row-gap: 0px;
  }
}

@media screen and (max-width: 390px) {
  .parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

/*--------------------------------------------------------------
# Grid 4
--------------------------------------------------------------*/

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

@media screen and (max-width: 1560px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 390px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

/*--------------------------------------------------------------
# Grid 4
--------------------------------------------------------------*/

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

@media screen and (max-width: 1290px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 16px;
  }
}

@media screen and (max-width: 390px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

/*--------------------------------------------------------------
# Grid 3
--------------------------------------------------------------*/

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

@media screen and (max-width: 1290px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 16px;
  }
}

@media screen and (max-width: 390px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

/*--------------------------------------------------------------
# Grid 2
--------------------------------------------------------------*/

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

@media screen and (max-width: 992px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

.text-align-center {
  text-align: center !important;
}

.grid-line-start {
  border-top: 1px dashed #ccc;
  padding: 1rem 0;
}

.project-info p span {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--active-light-color), transparent 0%);
  font-size: 20px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  margin-right: 4px;
  background-color: 4px;
  border-radius: 0;
}

/*--------------------------------------------------------------
# Links - img
--------------------------------------------------------------*/

.img-link {
  padding-top: 5rem;
  padding-bottom: 0 !important;
}

.img-link .header-title {
  padding: 4rem;
}

.img-link_img {
  mix-blend-mode: multiply;
}

.bottom>* {
  position: absolute;
  bottom: 0;
}

/*--------------------------------------------------------------
# Glazed background
--------------------------------------------------------------*/

.glazed {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.5px);
  -webkit-backdrop-filter: blur(11.5px);
}

.rotate-180 {
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Carousel :: Mobile
-------------------------------------------------------------- */

.carousel-inner {
  background-color: transparent;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -160px;
  padding: 1.25rem;
  width: 100%;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8spx;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-caption h5 {
  color: var(--default-color);
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
}


.carousel-control-next {
  right: -30px !important;
}

.carousel-control-prev {
  left: -30px !important;
}

.carousel-control-next-icon {
  background-image: url(../../assets/img/arrow-dark.svg) !important;
  transform: rotate(-90deg);
}

.carousel-control-prev-icon {
  background-image: url(../../assets/img/arrow-dark.svg) !important;
  transform: rotate(90deg);
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: black;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
}

/* Tests 
.ServiceItem__button-icon {
  display: grid;
  height: var(--icon-size);
  position: absolute;
  right: calc(100% - var(--icon-size));
  top: 50%;
  transform: translateY(calc(-50% - 0.33rem));
  width: var(--icon-size);
  background: var(--colour-black);
  place-content: center;
  transition: 1s cubic-bezier(0.16, 0.88, 0.32, 1);
}

.ServiceItem__button-icon svg {
  height: calc(var(--icon-size)*.5);
  width: calc(var(--icon-size)*.5)
}

.ServiceItem__button-icon svg rect {
  transition: all .4s ease;
  fill: var(--accent)

  :root {
  }*/


/*--------------------------------------------------------------
# LinkedIn 
-------------------------------------------------------------- */

.avatar,
.back {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  min-width: -moz-fit-content;
  min-width: fit-content;
  transition: all 0.4s;
  /*color: var(--default-color) !important;*/
  font-size: 18px;
}

.avatar a:hover,
.back a:hover {
  color: var(--color-link) !important;
}

.avatar-img {
  width: calc(120px + 22 *((100vw - 500px) / 1420));
  height: auto;
  display: block;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}


/*
figure {
  padding: calc(50px + 22 *((100vw - 500px) / 1420)) 10px;
}
  */

/*--------------------------------------------------------------
# Logos Grid:: Clients
-------------------------------------------------------------- */

.LogoGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}


@media screen and (max-width: 1290px) {
  .LogoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .LogoGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}



.LogoGridItem {
  border-bottom: 1px solid var(--default-color);
  padding: 0 0 .25rem;
  position: relative;
}

.LogoGridItem::after {
  content: "";
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 0;
  height: 80%;
  background-color: color-mix(in srgb, var(--primary), transparent 5%);
  transition: width 0.3s ease;
  z-index: 0;
}

.LogoGridItem:hover::after {
  width: 100%;
}

.LogoGridItem__icon {
  opacity: 0;
  position: absolute;
  right: .5rem;
  top: .5rem;
  transform: translateX(-1rem) rotate(-45deg);
  transition: all .4s cubic-bezier(.175, .885, .32, 1.04);
  z-index: 1;
}

.LogoGridItem__icon svg {
  height: auto;
  width: 100%;
}

.LogoGridItem__image {
  align-items: center;
  /*aspect-ratio: 16/9;*/
  display: flex;
  height: auto;
  justify-content: center;
  padding: 10%;
  position: relative;
  width: 100%;
}

.LogoGridItem__image:before {
  content: "";
  height: 100%;
  position: absolute;
  transform: scaleX(0) rotate(0deg);
  transform-origin: left;
  transition: transform .64s cubic-bezier(.175, .885, .32, 1);
  animation: transform 1000ms ease-in-out 1s forwards;
  width: 100%;
  z-index: 0;
}

.LogoGridItem__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  width: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}

.LogoGridItem__label {
  line-height: 120%;
  padding: .5rem 0;
  text-align: center;
  z-index: 1;
}

@media (min-width: 430px) {
  .LogoGridItem__image {
    aspect-ratio: 16 / 10;
    padding: 16%;
  }
}


/*--------------------------------------------------------------
# Back-To-Top Button
-------------------------------------------------------------- */

#myBtn {
  position: fixed;
  bottom: 40px;
  right: 2%;
  display: none;
  padding: 0;
  width: calc(36px + 4 * ((100vw - 500px) / 1420));
  height: calc(50px + 10 * ((100vw - 500px) / 1420));
  transition: all .3s;
  cursor: pointer;
  background-image: linear-gradient(45deg,
      var(--background-color) 0%, var(--background-color) 100%);
  background-size: 600% 100%;
  animation: gradient 15s ease infinite;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2;
  transform: translateY(-50%);
  font-size: 20px;
}

#myBtn:hover {
  color: white !important;
    background-image: linear-gradient(45deg,
      var(--background-color) 0%, var(--primary) 50%);
}

/*--------------------------------------------------------------
# glightbox Container
-------------------------------------------------------------- */
.glightbox-container .ginner-container {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.target:active {
  cursor: url('../img/icons/icon-zoom-out.svg'), auto !important;
}


/*--------------------------------------------------------------
# Cursor
-------------------------------------------------------------- */
a.cursor,
a.cursor:hover {
  cursor: url('../img/icon-open-1.svg') 50 50, move;
  transform-origin: center;
  overflow: visible;
  z-index: 5;
}

/*--------------------------------------------------------------
# Social
-------------------------------------------------------------- */
.social {
  list-style: outside none none;
  padding: 0;
}

.social li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 2px;
}

.social li a {
  display: flex;
  justify-content: center;
  justify-items: center;
  border: 5px solid var(--default-color);
  display: block;
  font-size: 21px;
  height: 90px;
  width: 90px;
  line-height: 4;
  text-align: center;
  border-radius: 50px;
  color: var(--default-color);
}

.social li a:hover {
  border: 5px solid #16d3b8;
  color: #ccc;
}

.pinterest:hover {
  border: 5px solid #e80021 !important;
  color: #e80021 !important;
}

.linkedin:hover {
  border: 5px solid #006da9 !important;
  color: #006da9 !important;
}

.instagram:hover {
  border: 5px solid #c40078 !important;
  color: #c40078 !important;
}

.social li a.contact {
  display: block;
  font-size: 21px;
  height: 58px;
  padding: 0 22px;
  font-size: 14px;
  text-align: center;
  width: auto !important;
  border-radius: 50px;
  transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

/*--------------------------------------------------------------
# Header + Navbar
-------------------------------------------------------------- */

header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100 !important;
}

.back-arrow-right {
  position: relative;
  top: 5px;
  width: 24px;
  height: 24px;
  background: url("../img/arrow-dark-lft.svg") no-repeat 0 0;
  background-size: contain;
  display: inline-block;
}

.bdr-white-desktop {
  border: 18px solid rgba(255, 255, 255, 1);
  outline: 2px solid rgb(237, 237, 237);
  border-radius: 0px;
}

.bdr-white-mobile {
  border: 18px solid rgba(255, 255, 255, 1);
  outline: 2px solid rgb(237, 237, 237);
  border-radius: 36px;
}

.img-outline-light {
  display: flex;
  outline: 20px solid rgba(255, 255, 255, 1);
  /* filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.31)); */
  box-shadow: 0 22px 32px rgba(0, 0, 0, 0.31);
}

/*--------------------------------------------------------------
# Notes
-------------------------------------------------------------- */

.foot-note {
  position: absolute;
  bottom: 0;
  right: 80px;
  text-align: right;
  background-color: color-mix(in srgb, var(--white), transparent 35%);
  padding: 0.5rem 1rem;
  font-size: 12px !important;
}

.note {
  display: inline !important;
  padding: 0.8rem !important;
  border-radius: 4px !important;
  letter-spacing: 0.1px;
}

/*--------------------------------------------------------------
# grid-10
-------------------------------------------------------------- */

.LogoGrid-toolkit {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

@media screen and (max-width: 1560px) {
  .LogoGrid-toolkit {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 1290px) {
  .LogoGrid-toolkit {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .LogoGrid-toolkit {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .LogoGrid-toolkit {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 940px) {
  .LogoGrid-toolkit {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 640px) {
  .LogoGrid-toolkit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 390px) {
  .LogoGrid-toolkit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

.no-wrap {
  text-wrap: nowrap;
}


.autohide {
  position: fixed;
  top: 0;
  width: auto;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.scrolled-up {
  transform: translateY(0);
}

.scrolled-down {
  transform: translateY(-300%);
}