/*variables*/
:root {
    --color_1: rgba(177, 199, 177, 1);
    --color_2: rgba(152, 217, 215, 1);
}



/*High level set up styles*/
html {
    font-size: 14px;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: #242424;
    background: radial-gradient(circle, rgba(36, 36, 36, 1) 0%, rgba(20, 23, 20, 1) 100%);
    font-family: "Poppins", sans-serif;
    opacity: 0;
    transition: opacity 0.6s ease-in;
}
body.fade-in {
    opacity: 1;
}

div{
    margin: 0;
}

:link{
    color: var(--color_2);
    text-decoration-line: none;
}

/*btn*/
button {
    all: unset;
    cursor: pointer;
}

button:hover{
    background-color: #ffffff20;
    transition: background-color linear 0.2s
}

.button-flip.{

}


/*Video*/
.window-video {
    border-radius: 1rem;
}
.home-video {
    width: 50vw;
    box-shadow: 0 0px 70px #0F0F0F;
    margin: 0 0 3rem 0;
}

@media screen and (max-width: 700px){
    .home-video{
        width: 80%;
    }
}



/*Fonts and text*/
h1, h2, h3, h4, h5, h6, p{
    color: white;
}

.center-text {
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.gradient-text {
    font-weight: 700;
    width: fit-content;
    color: #fff;
    background: #b1c7b1;
    background: linear-gradient(90deg,rgba(177, 199, 177, 1) 0%, rgba(224, 224, 224, 1) 50%, rgba(152, 217, 215, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text{
    font-weight: 200;
    font-style: italic;
    color: white;
    font-size: 1rem;
}



.title-sub-text{
    width: 30rem;
}

.port-sub-text{
    width: 35rem;
}

.markup-content h1{
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.markup-content h2{
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.markup-content h3{
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.markup-content {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 600px){
    .title-sub-text {
        width: 80vw;
    }

    .video-sub-text {
        width: 80vw;
    }

    .sub-text{
        width: 80%;
    }
}

/*Containers*/
.app-container {
    width: 100%;
}
.container-header{
    height: 10vh;
}

.centered-content{
    display: flex;
    justify-content: center;
    justify-items: center;
    flex-direction: column;
    justify-self: center;
    
}

.home-title {
    padding: 10vh 0 0 0;
}

.clickable-object{
    height: inherit;
}

.nav-container{
    height: 4rem;
    display: flex;
    margin: 0.5rem 2rem;
    justify-content: space-between;
    align-content: center;
}

.navbar {   
    height: fit-content;
}

.tile {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-self: center;
    height: fit-content;
    align-content: center;
    justify-content: center;
    width: fit-content;
    border-radius: 0.5rem;
    box-shadow: 0 0px 30px #0F0F0F;
}

.tool-tile {    
    width: 80%;
    padding: 1rem 0rem;
    background: #292929;
    background: linear-gradient(90deg,rgba(41, 41, 41, 1) 0%, rgba(20, 20, 20, 1) 100%);
    height: 100%;
}

.tool-tile img{
    height: 7rem;
    align-self: center;
}

.tile-item {
    padding: 0 1rem;
    align-self: center;
    justify-self: center;
}

.tile-item h3{
    width: fit-content;
}

.fullpage-content{
    padding: 3rem 15vw;
    line-height: 2rem;
    text-align: justify;
    

}

.form-container{
    width: auto;
}

@media screen and (max-width: 600px){
    .form-container{
        width: 80vw;
    }
}


/*nav items*/
.header-logo {
    height: 100%;
}


.nav-menu-primary{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    width: fit-content;
    height: 100%;
    
}

.nav-menu-primary ul {
    
    height: 100%;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    padding: 0;
        
}
.primary-nav-item{
    align-self: center;
    align-content: center;

}

.primary-nav-item p {
    font-size: 1.8rem;
}

.nav-menu-btn {
    align-self: center;
    height: 60%;
    background: none;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    border-radius: 10%;
}

.nav-menu-container{
    display: flex;
    flex-wrap: wrap;
    display: flex;
    align-content: center;
    justify-content: center;
    column-gap: 2rem;
}

.menu-icon {
    margin: 20% 0;
    height: 100%;
    opacity: 0.7;
}

.dropdown-menu {
    background-color: rgba(20, 23, 20, 1);
    color: white;

}


/*grids*/
.post-grid {
    column-count: 3;
    align-self: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 60vw;
    height: min-content;
}

@media screen and (max-width: 600px){
    .post-grid{
        width: 80vw;
    }
}

/*lines*/

.horizontal-line {
    width: 60vw;
    height: 2px;
    background-color: #444;
    margin: 20px auto 3rem auto;
   
}

.horizontal-line-nopad {
    width: 60vw;
    height: 2px;
    background-color: #444;
    margin: 20px auto 1rem auto;
}

@media screen and (max-width: 600px) {
    .horizontal-line {
        width: 85vw;
    }

    .horizontal-line-nopad{
        width: 85vw;
    }
}


/*forms*/
.form-control {
    background-color: rgba(152, 217, 215, 0.1) !important;
    transition: .15s ease-in-out;
    box-shadow: none;
    color: white !important;
}


input:-webkit-autofill {
    background-color: var(--color_2);
    color: white !important;
    -webkit-box-shadow: 0 0 0 1000px var(--color_2) inset !important;
    box-shadow: none !important;
    -webkit-text-fill-color: black !important;
}

input:-webkit-autofill {
    background-color: #2c3e50 !important;
    color: white !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    box-shadow: 0 0 0 1000px #3A565E inset !important;
    -webkit-text-fill-color: white !important;
}

.btn-login {
    color: black;
    background: linear-gradient(90deg,rgba(177, 199, 177, 1) 0%, rgba(224, 224, 224, 1) 50%, rgba(152, 217, 215, 1) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-text-fill-color: black;
    font-weight: 500;
    width: 100%;
    padding: 8px 0;
    border: 4px;
    border-color: black;
}


.btn-login:hover {
    border-color: white;
    transition: border-color 0.2s ease-in;
}

.login-actions{
    margin: 1rem 0 0 0; 
}

.login-actions a {
    color: white;
    padding: 1rem 0;
    font-style: italic;
}

.login-actions a:hover {
    color: var(--color_2);
    transition: color 0.2s ease-in-out; 
    transform: scale(1.3);
}



.form-control:focus {
    box-shadow: none;
}

.form-label{
    color: white;
}

.form-check-input{
    background-color: none;
    box-shadow: none;
}

.form{
    background-color: violet;
}

/*Lists*/
ul{
    color: white;   
}

.horizontal-list{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: fit-content;
    list-style: none;
}

.social-list{
    margin-top: 1rem;
    height: 2.5rem;
    width: fit-content;
    column-gap: 1rem;
    justify-self: center;
    padding-left: 0;
    

}

.social-list img{
    height: 60%;
    align-self: center;
   
    
}

.social-list li{
    width: fit-content;
    margin: 0 5px;
}


/*Model test CSS*/
#info {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    z-index: 100;
    display: block;
}

#model-container {
    align-self: center;
    align-content: center;
}