body, head
{
    margin: 0;
    width: 100%;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

#nav
{
    background-color: #FFFFFF;
    width: 100%;
    user-select: none;
    height: 40px;
    position: fixed;
    top: 0;
    z-index: 100;
    /*filter: drop-shadow(0px 0px 10px #00000010);*/
    

}



p
{
    margin: 0;
}

.end
{
    clear: both;
}

#logo
{
    float: left;
    margin-right: 60px;
    margin-left: 150px;
    cursor: pointer;
    transition: all 0.2s;
}

#opts
{
    float: left;
}

#oth
{
    float: right;
}

.opt 
{
    float: left;
    height: 32px;
    margin-left: 4px;
    padding-top: 8px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 1);
    transition: all 0.15s;
}


.opt:hover
{
    box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    transition: all 0.15s;
    background-color: #e9e9e9;
}

.opt:active
{
    background: #b9b9b9;
    transition: all 0.15s;
}


.optv 
{
    float: left;
    height: 32px;
    margin-right: 4px;
    padding-top: 8px;
    font-size: 16px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 0px 10px rgba(255, 255, 255, 1);
    transition: all 0.15s;
}

.optv:hover
{
    box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    transition: all 0.15s;
    background-color: #e9e9e9;
}

.optv:active
{
    box-shadow: inset 0px 0px 0px 21px rgba(0, 0, 0, 0.3);
    transition: all 0.15s;
}

.optv:nth-child(2)
{
    margin-right: 100px;
}

#title
{
    float: left;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
    margin-left: 6px;
}

#logoimg
{
    margin-top: 5px; 
    float: left;
}

#promo
{
    min-height: 659px; 
}

#promoimg
{
    width: 100%;
    min-height: 659px; 
    transition: opacity 0.5s ease-in-out;
    user-select: none;
    object-fit: cover;
    max-height: 659px;
}

#promomain
{
    text-align: center;
    width: 450px;
    user-select: none;
    position: absolute; 
    top: 285px;
    left: calc(50% - 225px);
    margin-top: -30px;
}

#promomain h1
{
    margin: 0;
    letter-spacing: 1px;
    font-size: 150%;
}

#promomain h4
{
    margin: 0;
    font-weight: normal;
}

#promomain button
{
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
    background-color: black;
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif !important;
    
}
#promomain button:hover
{
    box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(.28,1.79,.48,1.03);
}

#probts
{
    font-weight: normal;
    margin-right: 15px;
    cursor: pointer;
}

#probuttons
{
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-top: 10px;
}

#sellec
{
    width: 100%;
}

@media screen and (max-width: 1452px) 
{    
    #logo
    {
        display: none;
    }
}

@media screen and (max-width: 810px) 
{    
    #oth
    {
        display: none;
    }
    
}

input[type="radio"] 
{
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid black;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}

input[type="radio"]:checked 
{
    background-color: black;
    border-color: white;
    transform: scale(1.25);
}

/* XD */

.scroll 
{
    position: relative;
    display: flex;
    width: 1000px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent)
}

.scroll div 
{
    white-space: nowrap;
    animation: scroll var(--time) linear infinite;
    animation-delay: calc(var(--time)*-1);

}

.scroll div:nth-child(2) 
{
    animation: scroll2 var(--time) linear infinite;
    animation-delay: calc(var(--time)/-2);
}

.scroll div span 
{
    display: inline-flex;
    margin: 10px;
    letter-spacing: 0.2em;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.5s;
}

.scroll div span:hover 
{
    background: #3fd2f9;
    cursor: pointer;
}

.imgBox div 
{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.imgBox img 
{
    max-width: 100px;
    scale: 0.8;
    margin-left: 50px;
    margin-right: 50px;
    user-select: none;
}

@keyframes scroll 
{
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll2 
{
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

::selection {
  color: white;
  background: black;
}

/* width */
::-webkit-scrollbar {
  width: 16px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #9e9e9e;
  border-radius: 50px;
  border-size: 5px;
  border-color: #f1f1f1;
  border-style: solid;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #8e8e8e; 
}

input[type="radio"] {
    transition: all 0.5s;
}
input[type="radio"]:hover {
    opacity: 0.75;
}

html {
    scroll-behavior: smooth;
}

#more {
    scroll-margin-top: 60px;
    padding-bottom: 10px;
}

#content {
    margin-top: -40px;
}

.enttr {
    transition: all 0.2s cubic-bezier(.28,1.79,.48,1.03);
}

.aenttr {
    transition: all 0.2s cubic-bezier(.28,1.79,.48,1.03);
}

.enttr:focus {
    box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 1);
}

.aenttr:focus {
    box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 1);
}
