@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;800&family=Raleway&family=Roboto+Mono&display=swap');

html{
    scroll-behavior: smooth;
}


body {
    background: #141414;
}
.preload {
    overflow: hidden;
}


::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #141414;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #4545E6;
    border-radius: 10px;
    width: 20px;
  }



#loader {
    z-index: 1001; /* anything higher than z-index: 1000 of .loader-section */
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222222;
    z-index: 1000;
    display:flex;
    justify-content: center;
}




.header {
    position: relative;
    width: 100%;
    justify-content: flex;
    display: flex;
    height: 8vh;
    left: 0px;
    top: 0px;
    background: #141414;
    border-bottom: 1px solid #4545E6;
}

.logo {
    cursor: pointer;
    margin-right: auto;
    width: auto;
    height: 100%;
}

@media (max-width: 762px) {
    img.logo {
        content:url("../images/LOGONOTEXT.png")
    }
}

@media (min-width: 762px) {
    img.logo {
        content:url("../images/LOGO.png")
    }
}

.NavBar {
    margin-left: auto;
    width: max-content;
    position:relative;
    justify-content: right;
    right: 5vw;
}


.NavBar a{
    position:relative;
    text-decoration: none;
    text-align: left;
    width: 117px;
    margin-right: 3vw;
    height: 26px;
    top: 25%;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    transition: all 0.3s;
}

.NavBar a:hover{
    color: #4545E6;
}



.HeroContainer {
    justify-content: center;
    text-align: center;
    height: 75vh;

}

h1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}

h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 2em;
    line-height: 2em;
    color: #FFFFFF;
}

h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 2em;
    line-height: 1em;
    color: #707070;
}
p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #707070;
}

h1.HeroText {
    margin-bottom: 0px;
    justify-content: center;
    text-align: center;
    font-size: 4em;
    line-height: 2em;
    width: 100%;
    position: relative;
}


h3.HeroSub{
    width: 100%;
    justify-content: center;
    text-align: center;

    position:relative;
    top: 0vh;
}

.HeroHeader {
    margin-bottom: 0px;
    justify-content: center;
    text-align: center;
    width: 100%;
    position:relative;
}

#aboutContainer {
    display: flex;
    position: relative;
    left: 5vw;
    width: 90vw;
}

#aboutContainer img {
    width: 45%;
    height: auto;
}




.headText {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.layout {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 80vw;
    left: 10vw;
    height: 60vh;
}

section {
    position: relative;
}

#team .container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    left: 10%;
    position: relative;
    right: 10%;
    justify-content: center;
}

#team .container .card {
    width: 300px;
    height: auto;
    border-radius: 5px;
    justify-content: center;
    text-align: center;
    background-color: #252525;
    transition: all 0.3s;

}

a.cardContainingAnchor {
    margin: 15px;
}

#team a{
    text-decoration: none;
}

#team .container .card:hover {
    width: 275px;
}

#team .container .card img{
    width: 100%;
    height: 80%;
    border-radius: 5px;
}

.cardOverlay {
    position: absolute;
    bottom: 8px;
    left: 16px;

}

.copyright a {
    transition: all 0.3s;
}
.copyright a:hover {
    color: #4545E6;
}




















footer {
    margin-top: 20vh;
}

footer .row {
    width: 70%;
    display: flex;
    margin-left: 15%;
    justify-content: center;
    text-align: center;
}

footer * {
    background-color: #1e1f1c;
    font-family: 'Inter';
    color: white;
}

footer .container {
    width: 100%;
    justify-content: center;
    text-align: center;
}

footer .col-sm3 {
    width: 30%;
    text-align: left;
}

footer h5 {
    color: white;
    font-weight: 800;
    font-size: 18px;
}
footer li a {
    font-size: 14px;
    color: #707070;
    text-decoration: none;
    transition: all 0.3s;
}

footer li a:hover {
    color: #4545E6;
}


footer .copyright{
    width: 100%;
    text-align: center;
    background-color: #1e1f1c;
}
@media (max-width: 762px) {
    footer div.row {
        flex-direction: column;
    }
    
}
