/* ------------------------------ CSS variables ----------------------------- */
:root {
    --Wcolor : #fff;
    --Dred: #970001;
    --red: #FF0000;
    --Fcolor: #2a363f;
    --Ffcolor: #1c2329;
}
/* ------------------------------ GLOBAL rulls ------------------------------ */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    background: url("/assets/images/Attachment_1621545333.gif")no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
body {
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    overflow: hidden;
}
/* ---------------------------------- START --------------------------------- */
nav {
    width: 100%;
    height: 60px;
}
.container {
    padding-left: 120px;
    padding-right: 120px;
}
.nav-bar {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--Wcolor);
}
.nav-bar img {
    width: 200px;
    padding: 10px 0;
}
.nav-bar button {
    width: 110px;
    height: 50px;
    padding: 10px 0;
    color: var(--Wcolor);
    background-color: var(--Dred);
    outline: none;
    border: none;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
}
.content  {
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   width: 100vw;
   height: 410px;
   position: relative;
}
@media (max-width:768px) {
    .content {
        margin:  0;
    }
}

@media (max-width:768px) {
    .card p{
        font-size: 14px;
    }
}
.content:after {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
    opacity: 0.3;
    margin: 0 120px;
    top: 30px;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;   
}
@media (max-width:992px) {
    .content:after {
        margin: 0 40px;
    }
}
#URL {
    color: var(--red);
    padding: 10px 0;
}
.card h1 {
    font-size: 22px;
}
.card h2 {
    color: var(--Wcolor);
    font-size: 18px;
}
.card p {
    color: var(--Wcolor);
    line-height: 1.6;
    padding: 5px;
    font-size: 16px;
}
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.card button {
    color: var(--Wcolor);
    width: fit-content;
    background-color: var(--Dred);
    padding: 10px;
    margin-top: 10px;
    font-size: 16px;
    outline: none;
    border: none;
    cursor: pointer;
    z-index: 99;
}
.card a {
    z-index: 1;
}
footer {
    display: flex;
    flex-direction: column;
    background-color: var(--Fcolor);
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
}
footer .f-f {
    line-height: 1.6;
    padding-top: 20px;
    padding-bottom: 20px;
}
footer .f-f h3, h6 {
    color: var(--Wcolor);
}
footer .f-f hr {
    margin: 5px 0 10px;
    border: 1px solid var(--Dred);
    width: 450px;
}
@media (max-width:767px) {
    footer .f-f hr {
        width: 300px;
    }
}
footer .f-2 {
    background-color: var(--Ffcolor);
    width: 100vw;
    height: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 1.6;
} 
footer .f-2 img {
    width: 100px;
}
footer .f-2 p, span {
    color: var(--Wcolor);
}
ul a {
    text-decoration: none;
    color: var(--Wcolor);
    font-size: 13px;
}

/* ------------------------------- RESPONSIVE ------------------------------- */

@media (max-width:768px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width:768px) {
    .f-2 p {
        font-size: 5px;
    }
}
@media (max-width:768px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width:768px) {
    .f-2 p {
        font-size: 8px;
    }
}
@media (max-width:768px) {
    .f-2 a, span {
        font-size: 10px;
    }
}
