  :root {
    --color-primary: #D9FF00;
    --color-secondary: #000000;
    --padding-primary: 10%;
    --max-width-primary: 1000px;
}



* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    margin:0;
    min-width: 0;
    padding:0;
}

body {
    min-height: 100dvh;    
}

i {
    opacity:0.7;
}

i:hover {
    opacity:1;
}

footer {
    background-color: black;
    color: white;
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.addressBox {
    display: flex;
    gap: 3em;
    flex-direction: row;
    font-weight: bold;
}

.legalContent {
    width: 50%;
    max-width: 1000px;
    margin: 50px auto;
}

.mainVideo {
    position:relative
}

.mainVideoLogo {
    position: absolute;
    width:100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mainVideoLogo img {
    width: 300px;
    height: auto;
}

.mainLogo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.mainLogo img {
    width: 200px;
    height: auto;
}


.mainVideo video {
    width: 100%;
    height: 100dvh;
    object-fit: fill;
    filter: brightness(0.7);
}

.blackLine {
    width: 100%;
    height: 1px;
    background-color: white;
    border:none;
    box-shadow: none;
    margin: 15px 0px 10px 0px;
}

.box {
    display: flex;
    background-color: var(--color-primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 10px 0;
}

h1.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto;
    padding: 0;
    border-bottom: 5px solid var(--color-primary);
    width: fit-content;
}

h4.subtitle {
    margin: 40px 0 10px 0;
}

ol {
    margin-left: 50px;line-height: 25px;
}

.blankSpace {
    height: 200px;
}
.mainData {
    color: white;
    position:absolute;
    display: flex;
    flex-direction: column;
    bottom: 20px;
    width:95%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mainDataRow, .mainDataRow2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainDataRow2 {
    font-size: 12px;
}


.mainFooterLogo {
    width: 260px;
}

.mainFooterLogoBox {
    margin-top: 50px;
}


.rrssBox {
    display: flex;
    gap: 25px;
    font-size: 30px;
}

.blue_line {
    background: black;
    height: 40px; 
    width:4px; 
    opacity: 0.5;
}
.flogo_list {
    display: flex; flex-direction: column;padding-left: 22px;font-size: 13px;
}
.flogo_section {
    display: flex;
    width: 25%;
}
.flogo {
    height: 25px;
    margin-bottom: 15px;
    margin-right: 15px;
    opacity: 0.5;
}
.flogo:hover {
    opacity: 1;
}
.fsection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;padding: 3% 12%;
}


@media screen and (max-width: 1150px) {
    .addressBox {
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width: 830px) {  
    .mainDataRow2 {
        flex-direction: column;
    }

    .fsection { 
        flex-direction: column;
        align-items: center;
    }

    .flogo_section {
        width: 100%!important;
    }

    .legalContent {
        width: 90%;
    }

    .mainLogo {
        position: absolute;
    }
    .mainLogo img {
        width: 150px;
    }

    .mainVideo video {
        object-fit: cover;
    }


}

@media screen and (max-width: 650px) {  
    h1.title {
        font-size: 1.5rem;
    }

    .addressBox {
        font-size: 10px;
    }

    .mainFooterLogoBox {
        margin-top: 35px;
    }

    .mainFooterLogo {
        width: 150px;
    }

    .rrssBox {
        font-size: 25px;
        gap: 15px;
        flex-direction: column;
    }

    .legalContent, p {
        font-size: 1rem;
    }



    .mainDataRow {
        align-items: flex-end;
    }

    .mainDataRow2 {
        font-size: 8px;
        gap: 7px;
    }

    .mainDataRow2 div:nth-last-child(1) {
        font-weight: bold;
    }

    .mainLogo img {
        width: 100px;
    }

    .mainVideoLogo img {
        width: 200px;
    }
}