:root {
  --black: #212120;
  --dark-grey: #282828;
  --light-grey: #f2f2f2;
  --mid-grey: #bababa;
  --img-frame-color: #b7d8e3ab;
  --mid-grey-2: #7d7c80;
  --off-white: #fafafa;
  --light-blue: #18afe2;
  --purple: #00d9ff;
  --box-shadow: inset 1px 1px 01.25px rgba(0, 0, 0, 0.1),
    1px 1px 2px rgba(0, 0, 0, 0.3), 2px 2px 2px rgba(147, 147, 147, 0.3),
    12px 10px 15px rgba(0, 0, 0, 0.6);
  --box-shadow-2: rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
  --text-shadow: 01px 01px 2px rgba(88, 88, 88, 0.5),
    01px 01px 1px rgb(255, 255, 255);
}
.off-white {
  stroke: var(--off-white);
}

h1 {
  font-family: "Text Me One";
  font-variant: small-caps;
  font-weight: 600;
  color: var(--dark-grey);
  font-display: swap;
}
h2 {
  font-family: "Text Me One";
  font-display: swap;
}
a {
  text-decoration: none;
}
a:hover {
  transform: scale(1.075);
  color: var(--light-blue);
}
html {
  scroll-behavior: smooth;
  min-height: 100dvh;
}
body {
  overflow-x: hidden;
  background-color: var(--dark-grey);
}
.hidden {
  visibility: hidden;
}
.navbar {
  background-color: var(--black);
  position: fixed;
  margin: auto;
  width: 100%;
  min-height: 15dvh;
  z-index: 2;
  box-shadow: var(--box-shadow);
}
#logo {
  width: 15dvw; /* Adjust as needed */
  height: 13dvh; /* Adjust as needed */
  background-image: url("https://cheyannehewitt.dev/t_03/assets/logo_v1.webp");
  background-size: contain; /* Adjust based on how you want the image to scale */
  background-repeat: no-repeat;
  background-position: center;
  text-shadow: 4px 3px 3px rgb(255, 255, 255);
}
.nav-link {
  color: var(--off-white);
  text-decoration: none;
  font-family: "Text Me One";
  font-size: 1.25rem;
  letter-spacing: 0.15rem;
  font-weight: 600;
  font-variant: small-caps;
}

.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  color: var(--off-white);
  position: relative; /* Ensure the pseudo-element is positioned correctly */
  border-bottom: none; /* Remove the default border-bottom */
}

.nav-underline .nav-link.active::after,
.nav-underline .show > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px; /* Adjust the height to match the desired border thickness */
  background: linear-gradient(to right, #25aae1, #40e495);
}

.nav-link:hover {
  transform: scale(1.075);
  color: var(--light-blue);
}
#burger-container {
  visibility: hidden;
  display: none;
}
.burger-menu {
  visibility: hidden;
  display: none;
}
.sidenav {
  visibility: hidden;
  display: none;
}
.blue {
  color: var(--light-blue);
  background: #000000;
  background: repeating-linear-gradient(
    to right,
    #000000 0%,
    #5f8995 1%,

    #18afe2 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shadow {
  text-shadow: 4px 3px 3px rgb(0, 0, 0);
}
header {
  margin: auto;
  margin-top: 15dvh;
  position: relative;
  height: 75dvh;
  min-height: 25dvh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  background-color: var(--black) no-repeat center center scroll;
}
header h1 {
  color: var(--off-white);
  font-variant: small-caps;
  font-size: 3.75rem;
  letter-spacing: 0.25rem;
  text-shadow: 4px 3px 3px rgb(0, 0, 0);
}
header p {
  color: var(--purple);
  font-family: "Text Me One";
  font-size: 3rem;
  font-variant: small-caps;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75),
    -1px -1px 1px rgba(39, 46, 241, 0.939);
}
#player {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 107dvh;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black);
  opacity: 0.65;
  z-index: 1;
  box-shadow: inset 3px 0px 8px 6px rgba(0, 0, 0, 0.8),
    inset 0px 0px 8px 5px rgba(144, 144, 144, 0.75);
}

/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
  header {
    /* display: none; */
  }
  #mobileCarousel .carousel-item img {
    object-fit: contain;
    height: 100vh; /* Adjust height if necessary */
    width: 100%;
    height: 100%;
  }

  header #player {
    display: none;
    visibility: hidden;
  }
}
section {
  width: 100%;
}
.header-line {
  height: 0.11rem;
  margin: 0.19rem 0.55rem;
  border-radius: 30px;
  background-color: var(--light-grey);
  transition: 0.4s;
}
.img-text {
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--mid-grey-2);
}
#quad {
  box-shadow: rgba(167, 167, 167, 0.3) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.35) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}
#quad .quad-image-container {
  height: 8rem;
  overflow: hidden;
  padding-right: 0rem;
  padding-left: 0rem;
}

#quad .quad-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#triptych {
  width: 70%;
}
#triptych .col-md-3,
.triptych-image {
  position: relative;
  height: 200px; /* Adjust the height as needed */
  overflow: hidden;
  margin: 1rem;
  padding-left: 0rem;
  padding-right: 0rem;
  box-shadow: rgba(167, 167, 167, 0.3) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.35) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.triptych-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.triptych-img1 {
  object-position: 55% 75%;
  object-fit: 100%;
}

.triptych-img3 {
  transform: scaleX(-1);
}

.triptych-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  transform-origin: top center;
  will-change: transform;
  transform: skewX(0.001deg);
  transition: transform 0.35s ease-in-out;
}

.triptych-cover::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(
    226deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.3) 35%,
    rgba(255, 255, 255, 0.2) 42%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: translateY(-20%);
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.18, 0.9, 0.58, 1);
}

.triptych-image:hover .triptych-cover {
  transform: rotateX(7deg) translateY(-6px);
}

.triptych-image:hover .triptych-cover::after {
  transform: translateY(0%);
}

.triptych-image::before {
  display: block;
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: rgba(var(--c_0), 0.5);
  box-shadow: 0 6px 12px 12px rgba(var(--c_0), 0.4);
  will-change: opacity;
  transform-origin: top center;
  transform: skewX(0.001deg);
  transition: transform 0.35s ease-in-out, opacity 0.25s ease-in-out;
}

.triptych-image:hover::before {
  opacity: 0.35;
  transform: rotateX(7deg) translateY(-6px) scale(1.05);
}

.image4 {
  object-position: 25% 100%;
  object-fit: 100%;
}
.image5 {
  object-position: 25% 100%;
  object-fit: 100%;
}
@property --s {
  syntax: "<length>";
  initial-value: 0px;
  inherits: true;
}
#howdoes .img-frame {
  max-width: 17rem;
  height: 10rem;
}
.img-frame {
  --t: 1px; /* control the thickness (corner = 3*edge) */
  --s: 30px; /* control the size of the corners (that also affect the size of the edges) */
  --g: 8px; /* control the gap */
  --c: var(--img-frame-color);
  padding: calc(2 * var(--t) + var(--g));
  border: var(--t) solid #0000;
  border-radius: 4px;
  background: conic-gradient(
        at var(--s) calc(3 * var(--t)),
        #0000 75%,
        var(--c) 0
      )
      0 0 / calc(100% - var(--s)) calc(100% - 3 * var(--t)) border-box,
    conic-gradient(at calc(3 * var(--t)) var(--s), #0000 75%, var(--c) 0) 0 0 /
      calc(100% - 3 * var(--t)) calc(100% - var(--s)) border-box,
    linear-gradient(0deg, var(--c) calc(2 * var(--t)), #0000 0) 50% var(--t) /
      calc(100% - 2 * (var(--s) + var(--g))) 100% repeat-y padding-box,
    linear-gradient(-90deg, var(--c) calc(2 * var(--t)), #0000 0) var(--t) 50%/100%
      calc(100% - 2 * (var(--s) + var(--g))) repeat-x padding-box;
  transition: --s 0.5s;
  cursor: pointer;
}
.img-frame:hover {
  --s: 50px;
}
.slogan-sm {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Text Me One";
  background: #000000;
  background: linear-gradient(to right, #90cfe2 0%, #5f8995 70%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slogan-lg {
  font-size: 2.25rem;
  font-weight: 600;
  font-family: "Text Me One";
}
.services {
  color: var(--black);
  background-color: var(--off-white);
}
.services h1 {
  margin-bottom: 2rem;
}

.getting-started {
  color: var(--black);
  background-color: var(--light-grey);
}
.image {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
}

.numList1 {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/1.svg");
}

.numList2 {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/2.svg");
}

.numList3 {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/3.svg");
}

.numList4 {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/4.svg");
}

.numList5 {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/5.svg");
}

.contact {
  color: var(--light-grey);
  background-color: var(--dark-grey);
}
.contact h1 {
  color: var(--off-white);
}
.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  padding-left: 40px; /* Adjust based on the width of your SVGs */
  background-size: 24px 24px; /* Adjust to fit your SVG size */
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 10px; /* Space between list items */
}

.contact-phone {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/smartphone.svg");
}

.contact-email {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/send.svg");
}

.contact-address {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/map-pin.svg");
}
.logo {
  background-image: url("https://cheyannehewitt.dev/t_03/assets/logo_v2.webp");
  background-size: contain; /* Ensures the image covers the entire element */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat;
  width: 200px; /* Sets the width of the div */
  height: auto; /* Adjust the height automatically to maintain aspect ratio */
  aspect-ratio: 1 / 1; /* Maintains a square aspect ratio */
  display: inline-block; /* Makes sure the div respects its width */
}

footer {
  color: var(--light-grey);
  background-color: var(--black);
  width: 100%;
  margin: auto;
}
a {
  color: inherit;
}
footer a svg:hover {
  transform: scale(1.25);
  color: var(--light-blue);
}
hr {
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  border-width: 1px;
}

/* mobile */
@media (max-width: 992px) {
  /* The side navigation menu */
  .sidenav-bg {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 2;
    /* Stay on top */
    bottom: 0;
    left: 0%;
    overflow: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
  }
  .sidenav {
    background-color: var(--off-white);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    height: 60%;
    width: 0;
    /* 0 width - change this with JavaScript */
    margin-top: 20%;
    position: fixed;
    /* Stay in place */
    z-index: 3;
    /* Stay on top */
    top: 0;
    right: 5%;
    border-radius: 15px;
    box-shadow: var(--box-shadow-2);
    overflow-x: hidden;
    /* Disable horizontal scroll */
    overflow-y: hidden;
    /* Disable horizontal scroll */
    padding-top: 40px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
  }
  .sidenav-menu {
    margin-top: 1.75rem;
  }
  /* The navigation menu links */

  .sidenav ul {
    padding: 0rem 1rem;
    margin-bottom: 0rem;
    text-decoration: none;
    list-style-type: none;
    font-size: 1.35em;
    font-weight: 600;
    display: block;
    transition: 0.5s;
    z-index: 3;
  }

  .sidenav-expand {
    width: 50vw;
    box-shadow: var(--box-shadow-2);
    visibility: visible;
    display: block;
  }

  #close {
    margin-bottom: 0.1rem;
    margin-right: 1rem;
    position: relative;
    width: 55px;
    height: 55px;
    text-align: center;
    color: white;
    background-color: var(--mid-grey);
    overflow: hidden;
    cursor: pointer;
    display: block;
    border: none;
    border-radius: 15px;
  }

  #close span {
    position: absolute;
    content: " ";
    width: 35px;
    background-color: white;
    height: 5px;
    left: 10px;
    top: 25px;
  }
  #close span:nth-child(1) {
    transform: rotate(-45deg);
  }

  #close span:nth-child(2) {
    transform: rotate(45deg);
  }

  #burger-container {
    visibility: visible;
    display: block;
  }
  .burger-menu {
    position: relative;
    display: inline-block;
    visibility: visible;
    cursor: pointer;
    width: 2.75rem;
    height: 2.75rem;
    padding-left: 0.8rem;
    padding-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-width: 0px;
    border-radius: 5px;
    background-color: var(--black);
    border-top: 1px solid;
    border-left: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-radius: 10px;
    border-color: transparent;
  }
  .burger-menu:hover {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 45px;
    height: 45px;
    padding-left: 0.8rem;
    padding-right: 0.1rem;
    transform: translate(3px, 1px) scale(1.09);
  }
  .burger-line1,
  .burger-line2,
  .burger-line3 {
    height: 0.11rem;
    margin: 0.19rem 0.55rem;
    border-radius: 30px;
    background-color: var(--light-grey);
    transition: 0.4s;
  }
  #logo {
    width: 40dvw;
  }
  header {
    position: relative;
    background-color: var(--black);
    height: 28dvh;
    margin-top: 15dvh;
  }
  header h1 {
    font-size: 1.5rem;
  }
  header p {
    font-size: 1.3rem;
  }
  #triptych {
    width: 95%;
  }
  #triptych .col-12 {
    height: 200px; /* Adjust the height as needed */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin: 1rem;
    box-shadow: var(--box-shadow-2);
  }
}
#privacy {
  margin-top: 15dvh;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn {
  width: 200px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 20px;
  height: 55px;
  text-align: center;
  border: none;
  background-size: 300% 100%;

  border-radius: 50px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  transform: scale(1.1); /* Add this line to increase size on hover */
}

.btn:focus {
  outline: none;
}

.btn.blue-gradient {
  background-image: linear-gradient(
    to right,
    #25aae1,
    #40e495,
    #30dd8a,
    #2bb673
  );
  box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}
.btn.blue-gradient:hover {
  box-shadow: 0 4px 18px 0 rgba(110, 192, 190, 0.75);
}
.btn a {
  color: white;
  font-family: "Text Me One";
  font-variant: small-caps;
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.2rem;
  -webkit-text-stroke: 0.15px white;
  text-stroke: 0.15px white;
}
