/* ================== GLOBAL ================== */
* {
    font-family: Google Sans Display, Arial, Helvetica, sans-serif;
    font-style: normal;
    color: black;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

h1, h2, p {
    margin: 0;
}

/* ================== PAGE ================== */
.D_Page {
    width: 100%;
    height: 100dvh;
    background-image:
        linear-gradient(90deg, #0003 1px, transparent 1px),
        linear-gradient(#0003 1px, transparent 1px);
    background-size: 30px 30px;
    background-color: #f1f1f1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================== BLOCK ================== */
.D_Block {
    display: flex;
    height: 75vh;
    justify-content: center;
}

.D_PersonHolder,
.D_Video {
    border: 2px solid black;
    border-radius: 20px;
    box-shadow: 5px 5px 0 0 black;
    background-color: white;
}

.D_PersonHolder {
    aspect-ratio: 9 / 16;
}

.D_Video {
    aspect-ratio: 16 / 9;
}

/* ================== TEXT ================== */
.LogoText {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ================== TOP INFO ================== */
.D_TopInfoForMainHolder {
    border-radius: 50px;
    border: 2px solid black;
    background-color: white;
    padding: 5px;
    width: 250px;
    margin-top: -16px;
    margin-left: 30px;
    text-align: center;
    z-index: 1000;
    position: absolute;
    box-shadow: 5px 5px 0px 0px black;
}

.D_TopInfoForMainHolder h2 {
    font-weight: bolder;
    font-size: 15px;
}

/* ================== NAV ================== */
.D_TopNav {
    position: sticky;
    top: 0;
    border-bottom: 1px solid black;
    z-index: 1000;
    background-color: white;
    display: flex;
    justify-content: center;
}

.D_TopNavInner {
    display: flex;
    padding: 10px;
    width: 100%;
    max-width: 1500px;
    align-items: center;
}

.D_Login {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    box-shadow: 5px 5px 0px 0px black;
    border: 2px solid black; 
    padding: 10px;
    text-decoration: none;
}

.D_Register {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 3px dotted black;
}

/* ================== CONTENT SECTIONS ================== */
.D_ContentSection {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.D_ContentSection.reverse {
    flex-direction: row-reverse;
}

.D_ContentText {
    max-width: 400px;
    padding-left: 20px;
    padding-right: 20px;
}

.D_ContentMedia {
    aspect-ratio: 16 / 9;
    border: 1px solid black;
    box-shadow: 5px 5px 0 0 black;
    background-color: white;
    height: 50vh;
    border-radius: 20px;
    position: relative;
}

.D_ContentMedia_Video
{
    aspect-ratio: 16 / 9;
    border: 1px solid black;
    box-shadow: 5px 5px 0 0 black;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
}

h2
{
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.D_ContentMedia_Video video
{
    width: 100%;
    height: 100%;
}

.D_ContentGap {
    width: 20px;
}

/* ================== BOTTOM ================== */
.D_Bottom {
    background-image: radial-gradient(circle, rgba(0,0,0,.1) 3px, transparent 0);
    background-color: transparent !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-size: 40px 40px;
}

.D_Siatka
{
    background-image: linear-gradient(90deg, #0003 1px, transparent 1px), linear-gradient(#0003 1px, transparent 1px) !important;
    background-color: transparent !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-size: 40px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================== PRINT ================== */
@media print {
    .D_Page {
        background-image: linear-gradient(90deg, #0003 1px, transparent 1px),
                        linear-gradient(#0003 1px, transparent 1px) !important;
        background-color: transparent !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    @page {
        margin: 0;
    }

    body {
        margin: 0;
        padding: 0;
    }
}

/* ================== HEADER STYLES ================== */
.D_Header {
    position: absolute;
    top: 1vw;
}

.D_Header h1 {
    font-size: 7vh;
}

.D_Header p {
    text-align: right;
    font-size: 10px;
}

@media screen and (max-width: 1100px) {
    .D_ContentSection
    {
        display: block;
        height: auto;
        padding: 40px;
        overflow: hidden;
    }

    .D_ContentMedia
    {
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .D_ContentText
    {
        max-width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .D_Register
    {
        display: none;
    }

    .D_Login
    {
        display: none;
    }

    .D_Hide
    {
        display: none;
    }
}

@keyframes mymove {
from {left: -300px;}
to {left: 0px;}
}

.D_SliderSection
{
    height: calc(100dvh - 75px);
    overflow: hidden;
    position: relative;
}

.D_SliderHolder
{
    border-radius: 10px;
    border: 1px solid black;
    padding: 10px;
    margin: 5px;
    font-size: 50px;
}

.D_SliderLeft
{
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    left: -100px;
    position: absolute;
    animation-name: mymove;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}

.D_SliderRight
{
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    left: -100px;
    position: absolute;
    animation-name: mymove;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate-reverse;
}

.D_SliderRight_v2
{
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    left: -100px;
    position: absolute;
    animation-name: mymove;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate-reverse;
}

.D_SliderLeft_v2
{
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    left: -100px;
    position: absolute;
    animation-name: mymove;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}

.D_MainFrame
{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.D_TitlesHolders
{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    filter: blur(4px);
}

footer
{
    display: flex;
    width: 100%;
    justify-content: center;
}

footer div
{
    max-width: 1000px;
    width: calc(100%);
}

.InputHolder
{
    border: 2px solid black;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 5px 5px 0 0 black;
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 20px;

    width: calc(100% - 60px);
}

.D_Title
{
    border-radius: 50px;
    border: 2px solid black;
    background-color: white;
    padding: 5px;
    width: 210px;
    margin-top: -16px;
    margin-left: 20px;
    text-align: center;
    z-index: 1000;
    position: absolute;
}

p{
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.D_LongMessageHolder
{
    padding: 40px;
    margin: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: calc(100% - 120px);
    max-width: 1000px;
    background-color: white;
    border-radius: 20px;
    border: 1px solid;
}

.D_FAQ_Holder
{
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 995px;
    background-color: white;
    border-radius: 20px;
    border: 1px solid;
}

article h2
{
    font-family: "Roboto", sans-serif;
    font-weight: bolder;
    margin-bottom: 5px;
}

article h3
{
    font-family: "Roboto", sans-serif;
    font-weight: bolder;
    margin-bottom: 5px;
    margin-top: 20px;
}

article p
{
    font-family: "Roboto", sans-serif;
    font-weight: 200;
}

.D_CommentSection
{
    position: relative;
    height: 320px;
}


.D_RowComment
{
    display: flex;
    animation: comments 50s;
    position: absolute;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}

.D_Comment
{
    width: 300px;
    height: 210px;
    border: 1px solid black;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 20px;
    background-color: white;
    padding: 20px;
}

.P_UserName
{
    font-weight: bolder;
    font-size: 20px;
}

@keyframes comments {
  from {left: 0px;}
  to {left: -4500px;}
}

.D_SiatkaV2
{
    background-image: linear-gradient(90deg, #0003 1px, transparent 1px), linear-gradient(#0003 1px, transparent 1px) !important;
    background-color: transparent !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-size: 40px 40px;
    
}