@import url('https://fonts.googleapis.com/css?family=Audiowide&display=swap');
:root {
    --bg: #111216;
    --footer: #0d0e11;
    --blue: #ff5f00;
    --dark-blue: #e65703;
    --white: #f0f0f0;
    --dark: #191717;
    --grey: #2d2f36;
    --text: #838383;
}

/* @font-face {
   font-weight: bold;
    src: url(../fonts/Inter-ExtraBold.ttf);
}

@font-face {
    font-weight: bold;
    src: url(../fonts/Inter-Bold.ttf);
}

@font-face {
    font-family: Medium;
    src: url(../fonts/Inter-Medium.ttf);
}

@font-face {
    font-family: Light;
    src: url(../fonts/Inter-Medium.ttf);
} */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a i:hover {
    color: #43fc62; /* Change to a green shade on hover */
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    background-color: #191919;
    overflow-x: hidden;
    background-image: url("../images/another-bg.jpg");
    background-position: center center;
    background-attachment: fixed;
  }
body,
html {
    /* background-color: var(--bg);
    background-image: url(/images/background.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed; */
    margin: 0;
    overflow-x: hidden;
}

@media screen and (max-width: 1000px) {
    html {
        font-size: 14px;
    }
  }
a,
ul,
li,
h1 {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Montserrat ,sans-serif; 
}

/* Apply styles to the scrollbar itself */

::-webkit-scrollbar {
    width: 10px;
    /* Thickness of the scrollbar */
    height: 5px;
    /* Used for horizontal scrollbars */
}

/* Handle the scrollbar track (part the thumb slides within) */

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
    /* Rounded corners on the track */
}

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

/* Handle state when the thumb is hovered over */

::-webkit-scrollbar-thumb:active {
    background-color: var(--dark-blue)
}

/* Nav Start */

nav {
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 16%);
    padding: 0 8%;
    z-index: 99;
    height: 3.5rem;
    background-color: rgba(13, 14, 17, 0.7);
    backdrop-filter: blur(10px);
    /* Adjust the blur level as needed */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari support */
    box-sizing: content-box;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    width: 5rem;
}

.logo:hover {
    transform: scale(1.15);
}

.logo img {
    width: 125%;
    height: auto;
    margin: auto;
}

.login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
}

.login img:hover {
    transform: scale(1.3225);
}

.login img {
    transition: transform 0.3s ease;
    transform: scale(1.15);
    width: 100%;
    height: auto;
    margin: auto;
}

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 60%;
}

.nav-link {
    display: flex;
    align-items: center;
    margin: 0 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-link.selected span i {
    color: var(--blue)
}

.nav-link-mobile.selected span i {
    color: var(--blue)
}

.nav-link:hover {
    box-shadow: none;
    transform: translateY(4px);
}

.nav-link h1 {
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
}

.selected h1 {
    color: var(--blue);
}

.nav-link i {
    margin-right: .5rem;
}

.mobile-btn {
    display: none;
    padding: 0 2rem;
    z-index: 99;
}

.mobile-active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-3px, 4px);
}

.mobile-active .bar:nth-child(2) {
    display: none;
}

.mobile-active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-3px, -4px);
}

.nav-links-mobile {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    top: 3.5rem;
    left: 0;
    background-color: rgba(13, 14, 17, 1);
    height: 0;
    width: 100%;
    overflow: hidden;
    transition: height ease-in-out 150ms;
    z-index: 99999;
}

.nav-link-mobile {
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    width: 100%;
    display: flex;
    padding: 1rem 0;
    flex-direction: row;
    justify-content: center;
    border-top: var(--dark) thin solid;
    align-items: center;
}

.nav-link-mobile i {
    margin-right: .5rem;
}

.mobile-active+.nav-links-mobile {
    height: 20rem;
}

.bar {
    width: 2rem;
    margin: 8px 0;
    height: 2px;
    background-color: var(--white);
}

@media screen and (max-width: 1000px) {
    .nav-links {
        display: none;
    }
    .mobile-btn {
        display: block;
    }
}

.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    position: absolute;
    background-color: var(--dark);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 1);
    z-index: 1;
    border-radius: 5px;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dropdown-menu a {
    color: var(--white);
    font-family: Light;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.dropdown-menu a:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.dropdown-menu a:hover {
    background-color: var(--grey);
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
}

footer {
    background-color: #222;
    padding: 20px 0;
    background-image: url("../images/bottomaperion.jpg");
    background-size: cover;
    background-position: center center;
    text-align: center;
  }
  footer div.container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin: 0 auto;
    padding: 40px 0;
  }
  @media (max-width: 767px) {
    footer div.container {
      padding-top: 0px;
    }
  }
  footer div.container div.section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    max-width: 33%;
    padding: 0 20px;
    margin: auto 0;
  }
  
  footer div.container div.section img {
    width: 400px;
    margin: 0 auto;
    cursor: pointer;
  }
  @media (max-width: 767px) {
    footer div.container div.section img {
        width: 80vw;
    }
  }
  footer div.container div.section h3 {
    width: 100%;
    font-size: 1.4em;
    text-transform: uppercase;
    color: #ff5f00;
    margin-bottom: 25px;
    text-align: left;
  }
  footer div.container div.section .spacer {
    width: 100%;
    height: 4px;
    background-color: #ff5f00;
    margin-top: 2px;
    margin-bottom: 10px;
  }
  footer div.container div.section p, footer div.container div.section a {
    width: 100%;
    opacity: 0.7;
    font-weight: bold;
    text-align: left;
    margin: 2px 0;
  }
  footer div.container div.section p svg {
    margin-right: 5px;
  }
  footer div.container div.section p.link {
    transition: 0.3s;
    transform: scale(1);
    width: auto;
    margin-bottom: 15px;
    cursor: pointer;
  }
  footer div.container div.section p.link:hover {
    transition: 0.3s;
    transform: scale(1.15);
  }
  footer div.container div.section .data {
    padding: 10px 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2em;
    font-weight: bold;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 5px;
  }
  footer div.container div.section .data:nth-child(2) {
    padding-top: 0;
  }
  footer div.container div.section .data svg {
    margin-right: 10px;
  }
  footer div.container div.section .data svg path {
    color: rgba(255, 255, 255, 0.6);
  }
  footer div.container div.section .data span {
    color: #c2410c;
  }
  
  .spacer {
    width: 100%;
    height: 3px;
    background-color: #ff5f00;
    margin-top: 2px;
    margin-bottom: 10px;
  }/*# sourceMappingURL=footer.css.map */