:root {
    --color01: #021227;
    --color02: #031835;
    --color03: #071d3b;
    --color04: #02224d;
    --color05: #083979;
    --color06: #f6af85;
    --v100: calc(100vh - (var(--headerHeight) + var(--contactHeight)));
    --contactHeight: 20px;
    --headerHeight: 80px;
    --duration: .5s;
    --padding: 50px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color01);
}

/* ============ START GENERAL ============ */

@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-Regular.ttf");
}

html {
    font-family: "Cairo";
}

.h100 {
    height: var(--v100);
    overflow: auto;
}

.scroll {
    overflow: auto;
    height: var(--v100);
}

.mainTitle {
    text-align: center;
    margin-bottom: 50px;
}

.mainTitle h1 {
    position: relative;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 40px;
    color: white;
    letter-spacing: 3px;
}

.mainTitle h1::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 90px;
    left: 50%;
    bottom: 16px;
    background-color: white;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.mainTitle h1::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    left: 50%;
    bottom: 11px;
    background-color: var(--color02);
    border-radius: 50%;
    border: 1px solid white;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.flowButton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 999;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: white;
    border-radius: 50%;
    animation: opacity 1s ease-in-out;
    background-color: var(--color05);
}

.e404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: var(--v100);
    width: 100%;
}

.e404 h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 270px;
    height: 300px;
}

.e404 img {
    height: 240px;
}

.e404 p {
    color: white;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .e404 h1 {
        font-size: 200px;
    }
    .e404 img {
        height: 220px;
    }
}

@media (max-width: 500px) {
    .e404 h1 {
        font-size: 160px;
    }
    .e404 img {
        height: 170px;
    }
}

@media (max-width: 400px) {
    .e404 h1 {
        font-size: 130px;
    }
    .e404 img {
        height: 140px;
    }
}

/* ============ END GENERAL ============ */

/* ============ START SCROLLBAR ============ */

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: rgb(0 0 0 / 90%);
}

::-webkit-scrollbar-track {
    background: var(--color01);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color04);
    border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    -moz-border-radius: 7.5px;
    -ms-border-radius: 7.5px;
    -o-border-radius: 7.5px;
}

::-webkit-scrollbar-corner {
    background-color: rgb(0 0 0 / 90%);
}

/* ============ END SCROLLBAR ============ */

/* ============ START ANIMATION ============ */

@keyframes simple {
    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0) rotate(180deg);
        -webkit-transform: translateX(0) rotate(180deg);
        -moz-transform: translateX(0) rotate(180deg);
        -ms-transform: translateX(0) rotate(180deg);
        -o-transform: translateX(0) rotate(180deg);
}
    40%, 60% {
        transform: translateX(-10px) rotate(180deg);
        -webkit-transform: translateX(-10px) rotate(180deg);
        -moz-transform: translateX(-10px) rotate(180deg);
        -ms-transform: translateX(-10px) rotate(180deg);
        -o-transform: translateX(-10px) rotate(180deg);
}
}

@keyframes opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ============ END ANIMATION ============ */

/* ============ START CONTACT ============ */

.contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: var(--contactHeight);
    z-index: 98;
    font-size: 11px;
}

.contact * {
    color: white;
    transition: var(--duration);
}

.contact *:hover:not(:nth-child(2)) {
    color: var(--color06);
}

.contact ul {
    display: flex;
    gap: 15px;
    list-style: none;
}

.contact p {
    user-select: none;
}

.contact > a {
    text-decoration: none;
}

/* ============ END CONTACT ============ */

/* ============ START HEADER ============ */

body > header {
    position: relative;
    left: 0;
    width: 100%;
    height: var(--headerHeight);
    z-index: 98;
    background-color: var(--color03);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

body > header .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 97%;
    height: var(--headerHeight);
    margin: 0 auto;
    padding: 0 15px;
}

body > header .content .lSec a {
    display: flex;
    align-items: center;
}

body > header .content .lSec a img {
    width: 90px;
}

body > header .rSec {
    position: relative;
    display: flex;
}

body > header .rSec label {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

@media (max-width: 1000px) {
    body > header .rSec label {
        display: flex;
    }
}

body > header .rSec label span {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 1px;
    background-color: var(--color06);
}

body > header .rSec label span:nth-child(2) {
    width: 20px;
    transition: .3s ease-in-out;
}

body > header .rSec ul.active ~ label span:nth-child(2) {
    width: 30px;
}

body > header .rSec ul {
    display: flex;
    align-items: center;
}

@media (max-width: 1000px) {
    body > header .rSec > ul {
        position: absolute;
        flex-direction: column;
        top: calc(var(--headerHeight) - 11px);
        right: 60px;
        z-index: 2;
        opacity: 0;
        border-radius: 3px;
        background-color: var(--color04);
        transition: var(--duration);
    }
    body > header .rSec > ul.active {
        opacity: 1;
    }
    body > header .rSec > ul:before  {
        position: absolute;
        content: "";
        top: -20px;
        right: 35px;
        border: 10px solid;
        border-color: transparent transparent var(--color04) transparent;
    }
}

body > header .rSec ul .li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: var(--headerHeight);
    color: white;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
    transition: var(--duration);
}

body > header .rSec ul .li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background-color: var(--color06);
    transition: var(--duration);
}

body > header .rSec ul .li.active,
body > header .rSec ul .li:hover {
    background-color: rgb(0 0 0 / 10%);
}

body > header .rSec ul .li.active::before,
body > header .rSec ul .li:hover::before {
    left: 0;
}

@media (max-width: 1000px) {
    body > header .rSec ul .li {
        display: flex;
        align-items: center;
        justify-content: start;
        height: 0;
        width: 180px;
        color: white;
        padding-left: 20px;
        text-transform: capitalize;
        text-decoration: none;
        transition: var(--duration);
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: normal;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    body > header .rSec ul .li:hover {
        padding-left: 25px;
        border-color: var(--color06);
    }
    body > header .rSec ul.active .li {
        height: 40px;
    }
    body > header .rSec ul .li.active,
    body > header .rSec ul .li:hover {
        background-color: transparent;
    }
    body > header .rSec ul .li.active::before,
    body > header .rSec ul .li:hover::before {
        left: -100%;
    }
}

body > header .rSec .user {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
}

body > header .rSec .user .userImage {
    position: relative;
    height: 40px;
    width: 40px;
}

body > header .rSec .user.admin .userImage::before,
body > header .rSec .user.owner .userImage::before,
body > header .rSec .user.developer .userImage::before,
body > header .rSec .user.organizer .userImage::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -30px;
    width: 1px;
    height: 10px;
    animation: opacity 1s normal;
    background-color: var(--color06);
}

body > header .rSec .user.admin .userImage::after,
body > header .rSec .user.owner .userImage::after,
body > header .rSec .user.developer .userImage::after,
body > header .rSec .user.organizer .userImage::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    left: 50%;
    padding: 7px;
    bottom: -60px;
    color: white;
    font-size: 16px;
    cursor: default;
    border-radius: 50%;
    background-color: var(--color05);
    animation: opacity 1s normal;
    transform: translateX(-50%);
}

body > header .rSec .user.admin .userImage::after {
    content: "\f013";
    opacity: 1;
}

body > header .rSec .user.owner .userImage::after {
    content: "\f445";
    opacity: 1;
}

body > header .rSec .user.developer .userImage::after {
    content: "\f121";
    opacity: 1;
}

body > header .rSec .user.organizer .userImage::after {
    content: "\f0ae";
    opacity: 1;
}

body > header .rSec .user a img {
    height: 40px;
    border-radius: 50%;
}

body > header .rSec .user ul {
    position: absolute;
    top: calc(var(--headerHeight) - 11px);
    right: 0;
    width: 180px;
    display: flex;
    opacity: 0;
    flex-direction: column;
    border-radius: 3px;
    transition: var(--duration);
    background-color: var(--color04);
}

body > header .rSec .user.active ul {
    opacity: 1;
}

body > header .rSec .user ul::before {
    position: absolute;
    content: "";
    top: -20px;
    right: 35px;
    border: 10px solid;
    border-color: transparent transparent var(--color04) transparent;
}

body > header .rSec .user ul a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 0;
    color: white;
    padding-left: 10px;
    text-transform: capitalize;
    text-decoration: none;
    transition: var(--duration);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body > header .rSec .user.active ul a {
    height: 40px;
}

body > header .rSec .user ul a:hover {
    padding-left: 15px;
    border-color: var(--color06);
}

body > header .rSec .user ul a i {
    display: flex;
    justify-content: center;
    width: 20px;
    margin-right: 10px;
}

body > header .rSec .user ul a span {
    margin-left: 5px;
    color: var(--color06);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============ END HEADER ============ */

/* ============ START LANDING ============ */

.landing {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--v100);
    box-shadow: 0 10px 20px var(--color01);
}

.landing .lSec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--v100);
}

.landing .lSec h1 {
    text-align: center;
    font-size: 70px;
    color: white;
    z-index: 2;
}

.landing .lSec h1 img {
    height: 180px;
}

@media (max-width: 1200px) {
    .landing .lSec h1 {
        font-size: 60px;
    }
    
    .landing .lSec h1 img {
        height: 170px;
    }
}

.landing .lSec p {
    color: white;
    font-size: 18px;
    margin: 0 30px;
    max-width: 700px;
    text-align: center;
    z-index: 2;
}

.landing .lSec > img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    opacity: .3;
}

@media (max-width: 1200px) {
    .landing .lSec > img {
        width: 100%;
    }
}

.landing .rSec {
    width: 50%;
    height: var(--v100);
}

.landing .rSec .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color05);
    clip-path: circle(700px at right 900px);
}

.landing .rSec img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 75vh;
}

@media (max-width: 1200px) {
    .landing .rSec {
        display: none;
    }
}

/* ============ END LANDING ============ */

/* ============ START COUNTIES ============ */

.countries {
    min-height: 70vh;
    width: 100%;
    padding: var(--padding);
    background-color: var(--color02);
}

.countries .cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: calc(70vh - 155px);
    gap: 50px;
}

.countries .cards .card {
    display: flex;
    flex-direction: column;
    max-width: 280px;
    height: 365px;
    overflow: hidden;
    border-radius: 3px;
    overflow: hidden;
    user-select: none;
    transition: var(--duration);
    box-shadow: 0 5px 15px var(--color01);
    background-color: var(--color01);
}

@media (max-width: 609px) {
    .countries .cards .card {
        max-width: 80%;
        height: fit-content;
    }
}

.countries .cards .card:hover {
    transform: translateY(-5px);
}

.countries .cards .card .cardImage {
    width: 100%;
}

.countries .cards .card .body {
    padding: 5px 20px;
    margin-bottom: 10px;
    height: 100%;
}

.countries .cards .card .body h2 {
    color: var(--color06);
    font-weight: bold;
    font-size: 20px;
}

.countries .cards .card .body p {
    color: white;
    line-height: 1.5;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.countries .cards .card .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.countries .cards .card .footer a {
    color: var(--color06);
    text-decoration: none;
}

.countries .cards .card .footer i {
    color: var(--color06);
    transform: rotate(180deg);
}

.countries .cards .card:hover .footer i {
    animation: simple 2s infinite;
}

/* ============ END COUNTIES ============ */

/* ============ START ACCOUNT ============ */

.account {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: auto;
    height: var(--v100);
}

.account .content {
    display: flex;
    height: 90%;
    gap: 10px;
}

.account aside {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 350px;
}

.account aside .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    border-radius: 5px;
    background-color: var(--color02);
}

.account aside .profile img {
    width: 110px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.account aside .profile span.name {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.account aside .profile span.role {
    color: gray;
    font-size: 14px;
    text-transform: uppercase;
}

.account aside ul {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    background-color: var(--color04);
}

.account aside ul a {
    color: white;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
}

.account aside ul a.active {
    border-left: 2px solid var(--color06);
    background-color: var(--color05);
}

.account aside ul a i {
    text-align: center;
    width: 20px;
    margin-right: 10px;
}

.account .slide {
    width: 900px;
    height: fit-content;
    padding: 40px;
    border-radius: 5px;
    background-color: var(--color02);
}

.account .slide header {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 170px;
    padding: 20px;
    margin-bottom: 50px;
    border-radius: 5px;
    background: linear-gradient(180deg, var(--color04), var(--color02));
}

.account .slide header {
    color: white;
}

.account .slide header p {
    color: gainsboro;
}

.account .slide form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 20px;
}

.account .slide form .input  {
    position: relative;
    height: 60px;
}

.account .slide form .input input {
    height: 60px;
    width: 100%;
    border: 3px solid var(--color05);
    outline: none;
    color: white;
    font-size: 16px;
    padding: 0 20px;
    border-radius: 5px;
    background-color: var(--color02);
}

.account .slide form .input input:disabled {
    color: gray;
}

.account .slide form .input label {
    position: absolute;
    color: white;
    top: 0;
    left: 10px;
    font-size: 15px;
    padding: 0 10px;
    pointer-events: none;
    transform: translateY(-50%);
    background-color: var(--color02);
}

.account .slide form .buttons {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.account .slide form button {
    width: 100px;
    height: 60px;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 17px;
    border-radius: 5px;
    background-color: var(--color05);
}

.account .slide form button.delete {
    width: 160px;
    background-color: rgba(255, 0, 0, 0.308);
}

.account .slide form button:disabled {
    cursor: default;
    color: gainsboro;
    background-color: var(--color04);
}

/* ============ END ACCOUNT ============ */

/* ============ START LOGIN&REGISTER ============ */

.loginAndRegister {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--v100);
}

.loginAndRegister form {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 600px;
    height: 600px;
    border-radius: 5px;
    padding: 100px 0 50px;
    animation: opacity 1s normal;
    background-color: var(--color02);
}

@media (max-width: 600px) {
    .loginAndRegister form {
        height: 100%;
        padding: 0 0 50px;
    }
}

.loginAndRegister form header {
    position: relative;
}

.loginAndRegister form header img {
    position: absolute;
    top: -200px;
    left: 50%;
    width: 180px;
    border-radius: 50%;
    transform: translateX(-50%);
}

@media (max-width: 600px) {
    .loginAndRegister form header img {
        position: relative;
        top: 0;
    }
}

.loginAndRegister form header h1 {
    text-align: center;
    color: white;
    font-size: 40px;
    text-transform: uppercase;
}

.loginAndRegister form .inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}


.loginAndRegister form .inputs .input  {
    position: relative;
    height: 50px;
    width: 80%;
}

.loginAndRegister form .inputs .dabbleInput {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.loginAndRegister form .inputs .dabbleInput .input {
    width: calc(40% - 10px);
}

.loginAndRegister form .inputs .input input {
    height: 50px;
    width: 100%;
    border: 3px solid var(--color05);
    outline: none;
    color: white;
    font-size: 16px;
    padding: 0 20px;
    border-radius: 5px;
    background-color: var(--color02);
}

.loginAndRegister form .inputs .input label {
    position: absolute;
    color: white;
    top: 0;
    left: 15px;
    font-size: 15px;
    padding: 0 5px;
    pointer-events: none;
    transform: translateY(-50%);
    background-color: var(--color02);
}

.loginAndRegister form button {
    width: 80%;
    height: 50px;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 17px;
    border-radius: 5px;
    background-color: var(--color04);
}

.loginAndRegister form footer {
    position: absolute;
    display: flex;
    justify-content: space-between;
    gap: 2px;
    width: 100%;
    bottom: 0;
}

.loginAndRegister form footer a {
    width: 50%;
    color: white;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    background-color: var(--color04);
}

/* ============ END LOGIN&REGISTER ============ */

/* ============ START Countries ============ */

.country {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
    height: var(--v100);
}

/* Aside Design */
aside.asideDesign {
    width: 220px;
    flex-shrink: 420px;
    margin: 30px;
    margin-right: 0;
    border-radius: 5px;
    background-color: var(--color02);
    height: calc(var(--v100) - 60px);
}

@media (max-width: 1080px) {
    .country aside.asideDesign {
        display: none;
    }
}

aside.asideDesign ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 220px;
    padding: 20px 0;
    overflow: auto;
    height: calc(100% - 80px);
}

aside.asideDesign h1 {
    width: 100%;
    height: 80px;
    font-size: 35px;
    border-bottom: 1px solid var(--color06);
    color: white;
    text-align: center;
}

aside.asideDesign a,
aside.asideDesign ul .input {
    position: relative;
    display: flex;
    align-items: center;
    width: 90%;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px 15px;
    transition: var(--duration);
    background-color: var(--color05);
}

aside.asideDesign ul .input,
aside.asideDesign ul .input * {
    cursor: pointer;
}

aside.asideDesign ul .input input[type="checkbox"] {
    appearance: none;
    margin-right: 15px;
}

aside.asideDesign ul .input input[type="checkbox"]:after {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-weight: bold;
    color: white;
    font-size: 15px;
    transition: .2s;
}

aside.asideDesign ul .input input[type="checkbox"]:checked::after {
    color: var(--color06);
}

aside.asideDesign ul .input label {
    position: relative;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    width: calc(200px - 40px);
    height: 100%;
}

aside.asideDesign a.active {
    border-left: 3px solid var(--color06);
}

aside.asideDesign a:hover {
    background-color: var(--color06);
}

aside.asideDesign a i {
    width: 20px;
    margin-right: 15px;
    text-align: center;
}

aside.asideDesign hr,
aside.asideDesign p {
    width: 90%;
    color: white;
    margin: 20px 0;
    font-size: 14px;
    border-color: var(--color05);
}

aside.asideDesign p {
    position: relative;
    margin: 10px 0;
    text-align: center;
}

aside.asideDesign p:nth-child(1) {
    margin-top: 0;
}

aside.asideDesign p::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 100%;
    border-top: 0.1px solid var(--color05);
}

aside.asideDesign p span {
    position: relative;
    padding: 0 20px;
    background-color: var(--color02);
}

/* Aside Design */

.country .container {
    display: flex;
    justify-content: center;
    width: calc(100% - 300px);
    overflow: auto;
}

@media (max-width: 1080px) {
    .country .container {
        width: 100%;
    }
}

.country .container .content {
    width: 80%;
    height: fit-content;
    margin-bottom: 30px;
}

@media (max-width: 1300px) {
    .country .container .content {
        width: 95%;
    }
}

.country .content .video {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    margin-top: 30px;
}

.country .content .video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.country .content .section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px;
    margin-top: 30px;
    background-color: var(--color02);
}

@media (max-width: 800px) {
    .country .content .section {
        padding: 50px 30px;
    }
}

.country .content .section span {
    position: relative;
    color: white;
    width: 90%;
    margin-left: 50px;
    padding: 15px 40px;
    border-radius: 5px;
    text-transform: capitalize;
    background-color: var(--color01);
}

@media (max-width: 800px) {
    .country .content .section span {
        margin-left: 0;
        padding: 15px;
        width: 100%;
    }
}

.country .content .section span::before {
    font-family: "Font Awesome 5 Free";
    position: absolute;
    content: "\f19d";
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    top: 50%;
    left: -60px;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    transform: translateY(-50%);
    background-color: var(--color01);
}

.country .content .section span::after {
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: end;
    font-weight: bold;
    font-size: 9px;
    color: var(--color04);
    top: 50%;
    left: -15px;
    height: 4px;
    width: 35px;
    transform: translateY(-50%);
    background-color: var(--color01);
}

@media (max-width: 800px) {
    .country .content .section span::before,
    .country .content .section span::after {
        display: none;
    }
}

.country .content .presentation {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    margin-top: 30px;
    background-color: var(--color02);
}

.country .content .presentation .image {
    position: relative;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin-bottom: 50px;
    border-radius: 50%;
    margin-top: 50px;
}

.country .content .presentation .image img {
    width: 100%;
    height: 100%;
}

.country .content .presentation .image:hover .uploadBtn {
    bottom: 0;
}

.country .content .presentation .image .uploadBtn {
    position: absolute;
    left: 50%;
    bottom: -100%;
    color: white;
    cursor: pointer;
    width: 100%;
    height: 50px;
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    transform: translateX(-50%);
    transition: var(--duration);
    background-color: rgb(0 0 0 / 90%);
}

@media (max-width: 1200px) {
    .country .content .presentation .image .uploadBtn {
        bottom: 0;
    }
}

.country .content .presentation form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.country .content .presentation form input,
.country .content .presentation form select {
    width: calc(50% - 10px);
    height: 60px;
    padding: 20px;
    border: none;
    outline: none;
    color: white;
    font-size: 17px;
    border-radius: 5px;
    background-color: var(--color01);
}

.country .content .presentation form select {
    cursor: pointer;
}

@media (max-width: 1200px) {
    .country .content .presentation form input {
        width: 90%;
    }
}

.country .content .presentation form textarea {
    border: none;
    outline: none;
    color: white;
    padding: 10px;
    resize: none;
    width: calc(100% - 10px);
    border-radius: 5px;
    background-color: var(--color01);
}

.country .content .presentation form input::placeholder,
.country .content .presentation form textarea::placeholder  {
    color: rgb(255 255 255 / 50%);
}

.country .content .presentation form button {
    color: white;
    height: 50px;
    margin: 20px 0;
    padding: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    width: calc(100% - 10px);
    border-radius: 5px;
    transition: var(--duration);
    background-color: var(--color01);
}

.country .content .presentation form button:hover {
    background-color: var(--color05);
}

@media (max-width: 1200px) {
    .country .content .presentation form textarea,
    .country .content .presentation form input,
    .country .content .presentation form select,
    .country .content .presentation form button{
        width: 100%;
    }
}

/* ============ END Countries ============ */

/* ============ START COMPETITION ============ */

.competition {
    display: flex;
    height: var(--v100);
}

@media (max-width: 1000px) {
    .competition {
        align-items: center;
        justify-content: start;
        flex-direction: column;
    }
    .competition .asideDesign {
        width: 100%;
        height: fit-content;
        margin: 0;
    }
    .competition .asideDesign h1,
    .competition .asideDesign ul p {
        display: none;
    }
    .competition .asideDesign ul {
        flex-direction: row;
        width: 100%;
        height: fit-content;
        padding: 10px;
    }
    .competition .asideDesign ul .input,
    .competition .asideDesign ul .input label {
        width: fit-content;
        white-space: nowrap;
    }
}

.competition .postsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    width: 100%;
}

.competition .postsContainer .panel {
    height: 0;
    padding: 0;
    margin-bottom: 0;
    transition: var(--duration) ease-in-out;
}

.competition .postsContainer .panel.active {
    display: flex;
    width: 100%;
    height: 300px;
    cursor: pointer;
    padding: 30px;
    margin-bottom: 30px;
}

.competition .postsContainer .panel .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 300px;
    gap: 10px;
    width: 100%;
    opacity: 0;
    padding-top: 10px;
    cursor: default;
    border-radius: 5px;
    transition: var(--duration);
    background-color: var(--color04);
}

.competition .postsContainer .panel.active .content {
    opacity: 1;
}

.competition .postsContainer .panel .content input,
.competition .postsContainer .panel .content select {
    width: calc(50% - 20px);
    padding: 15px 20px;
    border: none;
    outline: none;
    color: white;
    border-radius: 5px;
    background-color: var(--color01);
}

.competition .postsContainer .panel .content button {
    border: none;
    outline: none;
    height: 40px;
    width: 100%;
    color: white;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 0 0 5px 5px;
    background-color: var(--color05);
}

.competition .postsContainer .panel .content input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.competition .postsContainer .posts {
    display: flex;
    flex-direction: column;
    overflow: auto;
    gap: 30px;
    width: 100%;
    padding: 30px;
}

.competition .postsContainer .posts .post {
    position: relative;
    display: flex;
    width: 100%;
    height: 260px;
    border-radius: 5px;
    background-color: var(--color04);
    animation: opacity 1s normal;
}

.competition .postsContainer .posts .post .daysLeft {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1;
    padding: 3px 10px;
    color: white;
    background-color: var(--color05);
}

.competition .postsContainer .posts .post .daysLeft span:first-child {
    color: var(--color06);
    font-weight: bold;
    margin-right: 10px;
}

@media (max-width: 815px) {
    .competition .postsContainer .posts .post {
        flex-direction: column;
        height: 500px;
    }
}

@media (max-width: 600px) {
    .competition .postsContainer .posts .post {
        flex-direction: column;
        height: 600px;
    }
}

.competition .postsContainer .posts .post .image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 260px;
    width: 300px;
    overflow: hidden;
    border-radius: 5px;
}

.competition .postsContainer .posts .post .image:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 20px;
    height: 100%;
    background-repeat: repeat;
    background-size: 20px 20px;
    background-image: linear-gradient(225deg, var(--color04) 25%, transparent 25%), linear-gradient(315deg, var(--color04) 25%, transparent 25%);
}

.competition .postsContainer .posts .post .image img {
    width: 600px;
    min-height: 100%;
}

@media (max-width: 815px) {
    .competition .postsContainer .posts .post .image {
        width: 100%;
        height: 200px;
    }
    .competition .postsContainer .posts .post .image img {
        width: 100%;
    }
    .competition .postsContainer .posts .post .image:after {
        position: absolute;
        content: "";
        right: 0;
        bottom: 0;
        width: 100%;
        height: 20px;
        background-repeat: repeat;
        background-size: 20px 20px;
        background-image: linear-gradient(315deg, var(--color04) 25%, transparent 25%), linear-gradient(45deg, var(--color04) 25%, transparent 25%);
    }
}

.competition .postsContainer .posts .post .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    padding-left: 30px;
    width: calc(100% - 300px);
}

@media (max-width: 820px) {
    .competition .postsContainer .posts .post .content {
        width: 100%;
    }
}

.competition .postsContainer .posts .post .content h1 {
    color: white;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.competition .postsContainer .posts .post .content .details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
}

@media (max-width: 815px) {
    .competition .postsContainer .posts .post .content .details {
        padding: 20px 0;
    }
}

.competition .postsContainer .posts .post .content .details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 5px;
    height: 35px;
    color: white;
    width: calc(100% / 2 - 5px);
    background-color: var(--color01);
}

@media (max-width: 600px) {
    .competition .postsContainer .posts .post .content .details div {
        width: 100%;
    }
}

.competition .postsContainer .posts .post .content .details div span {
    flex: 1;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.competition .postsContainer .posts .post .content .details div span:nth-child(2) {
    flex: 1;
    text-align: end;
    width: 100px;
}

.competition .postsContainer .posts .post .content a {
    color: white;
    height: 35px;
    line-height: 2.2;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--duration);
    background-color: var(--color01);
}

@media (max-width: 815px) {
    .competition .postsContainer .posts .post .content a {
        margin-top: 10px;
    }
}

.competition .postsContainer .posts .post .content a:hover {
    background-color: var(--color02);
}

/* ============ END COMPETITION ============ */

/* ============ START USERS-DASHBOARD ============ */

.users-dashboard {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: var(--v100);
    overflow: auto;
}

.users-dashboard table {
    position: relative;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.users-dashboard table thead td {
    position: sticky;
    top: 0;
    color: white;
    padding: 10px;
    background-color:var(--color04);
}

.users-dashboard table tbody td {
    padding: 10px;
    border-bottom: 1px solid var(--color04);
    color: rgb(255 255 255 / 60%);
    animation: opacity 1s ease-in-out;
}

.users-dashboard table tbody td i {
    font-size: 20px;
    cursor: pointer;
}

.users-dashboard table tbody td.request[request="true"] i {
    color: #50c878;
}

.users-dashboard table tbody td.block[block="true"] i {
    color: #9b111e;
}

.users-dashboard table tbody td select {
    border: none;
    outline: none;
    color: white;
    padding: 7px 20px;
    border-radius: 2px;
    background-color: var(--color05);
}

/* ============ END USERS-DASHBOARD ============ */

/* ============ START FOOTER ============ */

footer {
    color: white;
    padding: 10px;
    text-align: center;
}

footer div {
    
}

footer a {
    color: var(--color06);
    text-decoration: none;
}

/* ============= END FOOTER ============= */