@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap");
/* ................profile card............... */

body {
  font-family: "Nunito", sans-serif;
  color: rgb(255, 255, 255);
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: url("files/3D2BCA84-2CE2-4EB1-A712-F743E15B8392.jpeg") no-repeat center;
  background-size: cover;
  width: 100%;
  -webkit-animation: backgroundZoomAnimate 20s forwards;
  animation: backgroundZoomAnimate 20s forwards;
  animation: zoom-in-zoom-out 20s ease-in-out infinite;
  animation-delay: 1s;
}

@-webkit-keyframes backgroundZoomAnimate {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.3);
  }
}

@keyframes backgroundZoomAnimate {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.3);
  }
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
.profile-card {
  box-shadow: 15 1px 20px 210px rgb(0, 0, 0);
  border-radius: 50px;
  width: 320px;
  position: relative;
  border: 2px solid rgb(255, 145, 0);
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-100px);
  perspective: 1000px;
 
}
@media screen and (max-width: 1080px) {
  .profile-card {
    width: auto;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
}
@media screen and (max-height: 1920px) {
  .profile-card {
    height: auto;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
}
.backavatar{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  -webkit-transform: translateZ(-200px);
  opacity: 0.5;
}


.avatar {
  /* border-bottom: 4px solid rgb(0, 240, 72); */
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateZ(50px);
  box-shadow: 15 1px 20px 210px rgb(0, 0, 0);
}

.avatar img{
  max-width: 200px;
  border-radius: 100%;
  animation: rotateAnimation 10s  ease infinite;
}
@-webkit-keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  20%
  {
    transform: rotate(5deg);
  }
  40%
  {
    transform: rotate(-5deg);
  }
  50%
  {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(10deg);
  }
  85% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.backavatar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em;
  -webkit-transform: translateZ(-50px);
  z-index: 3;
}
.profile-card__desc {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform-style: preserve-3d;
  transform: translateZ(10px);
}
.profile-card__desc h1 {
  font-size: 2rem;
  font-weight: bold;
  transform: translateZ(80px);
}
.profile-card__desc h1 + div {
  font-size: 15px;
  transform: translateZ(40px);
}
.profile-card__info {
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateZ(20px);
}
@media screen and (max-width: 1000px) {
  .profile-card__info {
    gap: 10px;
    transform: translateZ(30px);
  }
}
.profile-card__info > div {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  transform: translateZ(35px);
}
.profile-card__info > div > *:first-child {
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 10px;
  transform: translateZ(35px);
}
.profile-card__info > div > *:last-child {
  font-size: 10px;
  opacity: 0.7;
  transform: translateZ(30px);
}
.profile-card__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform: translateZ(50px);
}
.profile-card__social a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  margin: 10px;
  border-radius: 40%;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
  transform-style: preserve-3d;
  transform: translateZ(40px);
}
@media screen and (max-width: 2000px) {
  .profile-card__social a {
    width: 40px;
    height: 40px;
    margin: 5px;
    transform-style: preserve-3d;
  }
}
@media screen and (min-width: 100px) {
  .profile-card__social a:hover {
    transform: scale(1.2) translateY(-5px);
  }
}
.profile-card__social a.facebook {
  background: linear-gradient(45deg, #527ad1, #094579, #108dfa);
  box-shadow: 0 4px 30px rgba(43, 98, 169, 0.5);
}
.profile-card__social a.linkedin {
  background: linear-gradient(45deg, #1da1f2, #0078d7);
  box-shadow: 0 4px 30px rgba(19, 127, 212, 0.7);
}
.profile-card__social a.instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  box-shadow: 0 4px 30px rgba(120, 64, 190, 0.6);
}
.profile-card__social a.youtube {
  background: linear-gradient(45deg, #ff4b4b, #ff0000, #bd0000, #ff4343);
  box-shadow: 0 4px 30px rgba(43, 98, 169, 0.4);
}
.profile-card__social a.github {
  background: linear-gradient(45deg, #333333, #2e3235, #626b73);
  box-shadow: 0 4px 30px rgba(63, 65, 67, 0.6);
}
.profile-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: translateZ(40px);
}
@media screen and (max-width: 2000px) {
  .profile-card__actions {
    flex-direction: row;
    transform: translateZ(40px);
  }
}
.profile-card__actions > button {
  font-weight: bold;
  font-size: 15px;
  padding: 10px 0;
  min-width: 150px;
  text-align: center;
  --colors-secondary--500: #00f7ff;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 2000px) {
  .profile-card__actions > button {
    min-width: 100px;
  }
}
@media screen and (max-width: 2000px) {
  .profile-card__actions > button {
    min-width: inherit;
    width: 100%;
    max-width: 250px;
  }
}
@media screen and (min-width: 100px) {
  .profile-card__actions > button:hover {
    transform: translateY(-5px);
    transform: translateZ(10px);
    transition: 0.2s ease;
  }
}


.profile-card__actions > button.blue1 {
  background: linear-gradient(-45deg, #1df288, #87c80e);
  box-shadow: 0 4px 30px rgba(19, 212, 45, 0.4);
  border-radius: 50px;
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 5rem;
}
.profile-card__actions > button.blue1:hover {
  box-shadow: 0 7px 30px rgba(19, 212, 19, 0.75);
}

.profile-card__actions > button.orange2 {
  background: linear-gradient(45deg, #d5135a, #f05924);
  box-shadow: 0 4px 30px rgba(223, 45, 70, 0.35);
  border-radius: 50px;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 5rem;
}
.profile-card__actions > button.orange2:hover {
  box-shadow: 0 7px 30px rgba(223, 45, 70, 0.75);
}
.profile-card__actions > button.orange2 .active {
  background: linear-gradient(45deg, #33d513, #5024f0);
  box-shadow: 0 4px 30px rgba(255, 174, 0, 0.384);
  transform: translateZ(-15px);
  transform: scale(1.2) translateY(-5px);
}
/*
! tailwindcss v3.2.2 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
@tailwind base;
@tailwind components;
@tailwind utilities;
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/

html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  font-family: Nunito, Poppins, Arial, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 100%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;s
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;

}


Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

.relative {
  position: relative;
}

.ml-auto {
  margin-left: auto;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.h-screen {
  height: 100vh;
}

.h-6 {
  height: 1rem;
}

.w-6 {
  width: 1.5rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: 1rem;
}

.overflow-auto {
  overflow: auto;
}

.rounded-full {
  border-radius: 99px;
}

.border-t {
  border-top-width: 1px;
}

.border-white\/10 {
  border-color: rgb(255, 123, 0);
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.bg-gray-900 {
  --tw-bg-opacity: 1;
}

.bg-pink-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 39 119 / var(--tw-bg-opacity));
}

.bg-orange-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity));
}

.p-7 {
  padding: 1.75rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pr-9 {
  padding-right: 1.25rem;
}

.text-2xl {
  font-size: 1rem;
  line-height: 1rem;
}

.text-xs {
  font-size: 0.5rem;
  line-height: 1rem;
}

.text-lg {
  font-size: 0.7rem;
  line-height: 1.75rem;
}

.font-extralight {
  font-weight: 50;
}

.text-white\/80 {
  color: rgb(255 222 0);
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-white\/70 {
  color: rgb(255 110 0);
}
/* ...............................................58565656565656....... */

.mn {
  position: fixed;
  max-width: 350px;
  left: -310px;
  display: flex;
  flex-direction: inherit;
  font-family: nunito, poppins, sans-serif;
  font-size: 0.2rem !important;
  transition: all 1s ease;
  z-index: 1000px;
}
.mn__img img {
  margin: auto;
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.menu {
  height: auto !important;
  border: 2px solid rgb(255, 174, 0);
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 120px;
  border-top-right-radius: 120px;
  overflow: hidden;
  background-color: #100516f2;
}
@media screen and (max-height: 650px) {
  .menu {
    height: 74vh !important;
  }
}
@media screen and (max-height: 750px) {
  .menu {
    height: 80vh !important;
  }
}

.menu.active {
  transform: translateX(300px);
  -webkit-transform: translateX(300px);
  transition: 0.4s;
}
.top {
  position: fixed;
  top: 30px;
  right: 30px;
  display: flex;
  gap: 0px;
  transition: all 0.7s;
  z-index: 2;
  border-radius: 26px;
  background: linear-gradient(98deg, #015a58, #00611f, #063000);
  background-blend-mode: overlay;
}
@media screen {
  .top:hover {
    transform: scale(1.2);
  }
}
.topbar-right {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  backdrop-filter: linear-gradient(
    180deg,
    rgb(21, 255, 0) 0%,
    rgb(255, 115, 0) 100%
  );
}

.line-container {
  width: 34px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.line {
  width: 100%;
  height: 3px;
  background-color: rgb(255, 238, 0);
  border-radius: 20px;
  transition: transform 0.2s ease, opacity 0.1s ease;
  transform-origin: left;
}

.topbar-right .line-container:hover .line {
  background-color: rgb(0, 255, 179);
}

.topbar-right .active .line {
  background-color: rgb(255, 0, 0);
}
.topbar-right .active {
  transition: 0.6s;
}
.topbar-right:hover {
  transition: 0.2s;
}
.line-container.active .line-1 {
  transform: rotate(45deg);
}

.line-container.active .line-2 {
  opacity: 0;
}

.line-container.active .line-3 {
  transform: rotate(-45deg);
}

.nav-link {
  @apply flex items-center gap-4 whitespace-nowrap text-white/70 pl-6 pr-2 py-4 rounded-tr-3xl rounded-br-3xl text-xl;
}

.nav-link.active {
  @apply text-white font-medium bg-orange-700;
}

.sub-nav-link {
  @apply flex items-center gap-4 whitespace-nowrap text-white/70 pl-6 py-3 rounded-tr-3xl rounded-br-3xl font-extralight text-sm;
}

.sub-nav-link.active {
  @apply text-white;
}

nav nav:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  top: 1rem;
  bottom: 1rem;
  right: auto;
  margin-left: 2.3rem;
  background: rgba(0, 0, 0, 0.2);
  width: 1px;
}

nav nav a {
  padding-left: 4.3rem !important;
}

nav a.open .icon-tabler-chevron-left {
  transform: rotate(-90deg);
}

nav a.open + nav {
  display: flex !important;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.75rem;
  color: rgb(0 255 103);
}

.nav-link.active {
  --tw-bg-opacity: 1;
  background-color: rgb(194 65 12 / var(--tw-bg-opacity));
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.sub-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 200;
  color: rgb(255 255 255 / 0.7);
}

.sub-nav-link.active {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

nav nav:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  top: 1rem;
  bottom: 1rem;
  right: auto;
  margin-left: 2.3rem;
  background: rgba(255, 255, 255, 0.2);
  width: 1px;
}

nav nav a {
  padding-left: 4.3rem !important;
}

nav a.open .icon-tabler-chevron-left {
  transform: rotate(-90deg);
}

nav a.open + nav {
  display: flex !important;
}

.hover\:bg-white\/10:hover {
  background-color: rgba(0, 183, 255, 0.205);
  transform: translatey(5px);
}

.hover\:bg-white\/5:hover {
  background-color: rgba(187, 0, 0, 0.247);
}

.hover\:text-white:hover {
  var--tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

/* contact form */
