

html, body {
    font-family: 'Inter';
    background: #ffffff;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}





div {
    box-sizing: border-box;
}

a, .btn-link {
    color: #0366d6;
}


    a.social-link {
        color: #dddddd;
        text-decoration: none;
    }

    a.social-link:hover {
        color: #ffffff;
    }


summary {
    color: #ffffff;
    font-family: 'Inter';
    font-size: 20px;
    padding: 5px 0px;
}



.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.dots-top {
    opacity: 1;
    margin-top: 0px;
    transition: 1s;
}

a.dot {
    color: #333333;
    font-size: 15px;
    margin-right: 1.8vw;
    letter-spacing: 0px;
    font-weight: 400;
    text-decoration: auto;
    text-transform: uppercase;
}

.dot-active {
    color: #ffffff !important;
    font-weight: 400 !important;
    transition-duration: 0.5s;
}

.navbar-container {
    display: flex;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    height: 55px;
    background: #ffffff;
    z-index:1000;
}

.navbar-container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    height: 55px;
    background: #262626;
    z-index: 1000;
    border-top: 0.5px solid #444444;
}

.column1 {
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
   
  
    
    
}


.column2 {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    
    
}

.column3 {
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    color: #333333; 
    font-weight:300;
    margin-right: 20px;
}


.logo {
    width: 90px;
    padding-left: 20px;
    padding-top: 10px;
}

.page {
    width: 100%;
    
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}


