html {
    scroll-behavior: smooth;
}
* {
    font-family: 'Oxygen', sans-serif;
}

/* width */
::-webkit-scrollbar {
    width: 12px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: rgb(6,10,16);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(33, 143, 207);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(59, 167, 230);
  }

.btn-primary {
    background-color: rgb(33, 143, 207);
}

body {
    position: relative;
    background-color: rgba(6,10,16,1);
    overflow-x: hidden;
}
nav {
    background-color: rgb(6,10,16);
    /*border-bottom: 1px solid rgb(11,94,215);*/
    transition: 0.5s all ease;
}

.navbar li a {
    position: relative;
    color: rgb(255,255,255,0.7);
    border: 1px solid rgb(6,10,16);
    border-radius: 5px;
    transition: all 0.1s ease;
    letter-spacing: 2px;
    text-align: center;
    overflow: hidden;
    z-index: 2;
    transition: all 0.5s ease;
}
.navbar li a:hover {
    color: white;
}
.navbar li a::after {
    content: '';
    position: absolute;
    display: block;
    height: 0px;
    width: 0%;
    background-color: rgba(33, 143, 207,0.7);
    opacity: 0;
    bottom: 0px;
    left: 0px;
    transition: all 0.5s ease;
    z-index: -1;
}

.navbar li a:hover::after {
    width: 100%;
    height: 5px;
    opacity: 1;
}

.navbar .active {
    background-color: rgb(33, 143, 207);
    color: white;
}

.background-hero {
    position: fixed; 
    top: 0px; 
    min-height: 100vh;
    width: 110vw;
    background-image: url("student-849821.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    z-index: -2;
    filter: blur(0px);
    animation: animatedBackground 15s ease-in-out  infinite ;
}
.hero {
    margin-top: 0;
    width: 100vw;
    background: rgba(6,10,16,0.9);
    background: linear-gradient(336deg, rgba(6,10,16,0.7903536414565826) 0%, rgba(6,10,16,1) 50%, rgba(6,10,16,1) 100%);

    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    color: white;
}

.title-bar {
    width: 20px; 
    height: 100%; 
    background-color: rgb(33, 143, 207);
    margin-right: 15px;
    border-radius: 4px;
}
.f-content {
    height: 250px;
    opacity: 0.9;
}
.f-content:hover {
    opacity: 1;
}
.fake {
    border: 1px solid white;
    border-radius: 5px;
    background-color: rgb(255,255,255,1);
    max-height: 240px;
    height: 240px;
    width: 340px;
    position: relative;
    overflow: hidden;
}
.f-body {
    top: 0px;
    width: 100%;
    height: 500px;
}

.f-nav {
    width: 100%;
    height: 20px;
    background-color: rgb(6,10,16);
    display: flex;
    justify-content: center;

}

.f-nav p {
    padding-top: 2px;
    font-size: 10px;
    display: inline;
    margin-right: 10px;
    color: white;
}

.f-header {
    height: 230px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.f-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.f-title {
    padding: 10px;
    font-size: 25px;
    font-weight: bold;
}

.f-img {
    height: 100px;
    overflow: hidden;
}


.BeforeScroll {
    transform: translate(0,100px);
    opacity: 0;
    transition: all 1s ease;
}

.AfterScroll {
    transform: translate(0, 0);
    opacity: 1;
}


.main  {
    position: relative;
}

ul {
    list-style: none;
}

.blue-bullets li::before {
    content: "\2022";
    color: rgb(33, 143, 207);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}


section {
    overflow: hidden;
    background-color: rgba(6,10,16,0.8);
    opacity: 1;
    color: white;
}

.services-card {
    min-height: 300px;
    margin: 5px;
    border:  1px solid black;
    background-color: rgb(6,10,16);
    color: white;
    border-radius: 5px;
    padding: 15px;
    line-height: 35px;
}

.tecno-container {
    min-width: 90%;
    padding-bottom: 30px;
    margin: 30px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tecno-card {
    height: 140px;
    width: 130px;
    color: black;
    margin: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.contact-container {
    width: 70vw;
    overflow: hidden;
}

.contact-container input, textarea{
    width: 100%;
    min-height: 30px;
    background-color: rgb(6,10,16);
    color: white;
    border: none;
    border-radius: 5px;
}

.contact-container div {
    margin-bottom: 20px;
}

@keyframes animatedBackground {
    0% { background-position: -50px -30px; }
    50% { background-position: 0px -30px; }
    100% { background-position: -50px -30px; }
}

@media screen and (max-width: 995px) {
    .hero-title, .hero-text {
        text-align: center;
    }
    .hero-title {
        font-size: 25px;
    }
    .btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .title-bar {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-text {
        font-size: 10px;
    }
    .fake {
        display: none;
    }
    .hero-side {
        height: 0px;
    }
}