/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Roboto:wght@400;500&display=swap&family=Oswald:wght@200&display=swap&family=Caveat&display=swap&");
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(207, 65%, 65%);
    --title-color: hsl(207, 4%, 16%);
    --text-color: hsl(207, 4%, 28%);
    --text-color-light: hsl(207, 4%, 56%);
    --body-color: hsl(207, 4%, 99%);
    --container-color: hsl(207, 4%, 95%);
    --webkit-scrollbar-background-color-light: hsl(0, 0%, 85%);
    --webkit-scrollbar-background-color-dark: hsl(0, 0%, 15%);


    /* Change the first number */
    /* Blue: 207 - Purple: 250 - Pink: 356 - Teal: 174 */
    --gradient-color: linear-gradient(180deg,
    hsla(174, 48%, 72%, 0),
    hsla(174, 65%, 65%, 1));
    /*--gradient-color: linear-gradient(180deg,*/
    /*hsla(0, 0%, 0%, 0),*/
    /*hsla(0, 0%, 0%, 0));*/

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Roboto', sans-serif;
    --title-font: 'Lora', serif;
    --written-font: 'Caveat', cursive;
    --document-family: 'Oswald', sans-serif;
    --biggest-font-size: 1.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    /*--normal-font-size: .938rem;*/
    --normal-font-size: 1rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --tiny-font-size: .625rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
    :root {
        --biggest-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
        --tiny-font-size: .688rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-margin-top: calc(var(--header-height) * 2);

    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    /*overscroll-behavior: none;*/

    /*transition: background .5s; !* for dark mode animation *!*/
}

@media screen and (max-width: 768px){
    * {
        overscroll-behavior: none;
    }
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    /*transition: background .5s; !* for dark mode animation *!*/
    scroll-behavior: smooth;

    -ms-touch-action: manipulation;
    touch-action: manipulation;

    /*cursor: default;*/
}

.body{
    display: grid;
    align-items: center;
}

.change{
    /*white-space: pre-line;*/

    /*animation: deeppink-deepskyblue infinite 3s;*/
    display: inline-block;
    animation: popup infinite 1s;

    /*transition: transform .5s;*/
}

.change:hover{
    animation-play-state: paused;
}

.imgchange{
    cursor: pointer;
    /*animation: deeppink-deepskyblue-border infinite 3s;*/
    display: inline-block;
    animation: popup infinite 1s;

    transition: rotate .5s;
    rotate: y 360deg;
}

.imgchange:hover{
    animation-play-state: paused;
}

@keyframes fly{
    0%{
        transform: translate(0px, 0px) rotate(0deg);
        filter: blur(30px);
        opacity: 0;
    }
    /*80%{*/
    /*    transform: translate(150px, -150px) rotate(360deg);*/
    /*}*/
    100%{
        transform: translate(0px, 0px) rotate(0deg);
        filter: blur(0px);
        opacity:1;
    }
}

img{
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;

    /*filter: drop-shadow(2px 2px 4px grey);*/
    /*filter: drop-shadow(0 0 .1rem black);*/
    /*box-shadow: 0px 0px 4px grey;*/
}

a{
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

h1, h2, h3 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: var(--font-medium);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

video{
    max-width: 100%;
    height: auto;

    /*filter: drop-shadow(0 0 0.1rem black);*/
    /*filter: drop-shadow(2px 2px 4px grey);*/
    /*box-shadow: 0px 0px 4px grey;*/
    /*box-shadow: 0px 0px 4px black;*/
}

/*=============== THEME ===============*/
.nav__buttons{
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}

.change-theme{
    font-size: 1.25rem;
    color: var(--title-color);
    cursor: pointer;
    /*transition: color .3s;*/
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
    --title-color: hsl(207, 4%, 95%);
    --text-color: hsl(207, 4%, 65%);
    --body-color: hsl(207, 4%, 10%);
    --container-color: hsl(207, 4%, 12%);
}

/*body[class="dark-theme"]{*/
/*    --title-color: hsl(207, 4%, 95%);*/
/*    --text-color: hsl(207, 4%, 65%);*/
/*    --body-color: hsl(207, 4%, 10%);*/
/*    --container-color: hsl(207, 4%, 12%);*/
/*}*/

/*==========
    Color changes in some parts of
    the website, in light theme
==========*/
.dark-theme .nav,
.dark-theme .nav__menu{
    background-color: var(--container-color);
    /*box-shadow: 0 4px 20px hsla(207, 24%, 8%, .4);*/
    /*box-shadow: 0px 0px 4px black;*/
}

.dark-theme .scrollup{
    background-color: var(--container-color);
    /*box-shadow: 0 4px 20px hsla(0, 0%, 0%);*/
    /*box-shadow: 0px 0px 4px black;*/
}

.dark-theme .skills__blob img .invert{
    filter: invert(1);
}

.dark-theme .home__shape-waves,
.dark-theme .home__shape-circle,
.dark-theme .qualification__img,
.dark-theme .testimonial__img{
    filter: invert(1);
}

/*.dark-theme .home__community-link{*/
/*    color: var(--title-color);*/
/*}*/

/*.dark-theme .profile__community-link{*/
/*    color: var(--title-color);*/
/*}*/

.dark-theme .section__border{
    border-bottom: 1px solid hsl(207, 4%, 32%);
}

.dark-theme .government__votes{
    /*box-shadow: 0 4px 20px hsla(0, 0%, 0%);*/
}

.dark-theme .members__container{
    /*box-shadow: 0 4px 20px hsla(0, 0%, 0%);*/
}

/*SHADOWS*/

/*.dark-theme img{*/
/*    filter: drop-shadow(0px 0px 2px black);*/
/*}*/

/*.dark-theme video,*/
/*.dark-theme .government__card,*/
/*.dark-theme .nav,*/
/*.dark-theme .nav__menu,*/
/*.dark-theme .government__votes,*/
/*    !*.dark-theme .members__container,*!*/
/*.dark-theme .scrollup*/
/*{*/
/*    box-shadow: 0px 0px 2px black;*/
/*}*/

/*.dark-theme .services__card,*/
/*.dark-theme .skills__blob{*/
/*    box-shadow: 0px 0px 2px black;*/
/*}*/

img, video{
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 50%));
}

.government__card,
.nav,
.nav__menu,
.government__votes,
    /*.members__container,*/
.skills__blob,
.services__card,
.scrollup{
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 50%);
}

/*=============== SCROLL BAR ===============*/
.dark-theme::-webkit-scrollbar{
    width: .5rem;
    border-radius: .5rem;
    /*background-color: var(--webkit-scrollbar-background-color-dark);*/
}

.dark-theme::-webkit-scrollbar:hover{
    width: .5rem;
    border-radius: .5rem;
    background-color: var(--webkit-scrollbar-background-color-dark);
}

.dark-theme::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 100%);
    border-radius: .5rem;
}

.dark-theme::-webkit-scrollbar-thumb:hover{
    background-color: hsl(171, 100%, 50%) /* Scrollbar-thumb color pink - hsl(328, 100%, 54%); */
}

.dark-theme .constitution__content textarea::-webkit-scrollbar{
    width: .5rem;
    border-radius: .5rem;
    /*background-color: var(--webkit-scrollbar-background-color-dark);*/
}

.dark-theme .constitution__content textarea::-webkit-scrollbar:hover{
    width: .5rem;
    border-radius: .5rem;
    background-color: var(--webkit-scrollbar-background-color-dark);
}

.dark-theme .constitution__content textarea::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 100%);
    border-radius: .5rem;
}

.dark-theme .constitution__content textarea::-webkit-scrollbar-thumb:hover{
    background-color: hsl(171, 100%, 50%) /* Scrollbar-thumb color pink - hsl(328, 100%, 54%); */
}

.dark-theme .laws__content textarea::-webkit-scrollbar{
    width: .5rem;
    border-radius: .5rem;
    /*background-color: var(--webkit-scrollbar-background-color-dark);*/
}

.dark-theme .laws__content textarea::-webkit-scrollbar:hover{
    width: .5rem;
    border-radius: .5rem;
    background-color: var(--webkit-scrollbar-background-color-dark);
}

.dark-theme .laws__content textarea::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 100%);
    border-radius: .5rem;
}

.dark-theme .laws__content textarea::-webkit-scrollbar-thumb:hover{
    background-color: hsl(171, 100%, 50%) /* Scrollbar-thumb color pink - hsl(328, 100%, 54%); */
}

.dark-theme .government__votes::-webkit-scrollbar{
    width: .5rem;
    border-radius: .5rem;
    /*background-color: var(--webkit-scrollbar-background-color-dark);*/
}

.dark-theme .government__votes::-webkit-scrollbar:hover{
    width: .5rem;
    border-radius: .5rem;
    background-color: var(--webkit-scrollbar-background-color-dark);
}

.dark-theme .government__votes::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 100%);
    border-radius: .5rem;
}

.dark-theme .government__votes::-webkit-scrollbar-thumb:hover{
    background-color: hsl(171, 100%, 50%) /* Scrollbar-thumb color pink - hsl(328, 100%, 54%); */
}

.dark-theme .members__container::-webkit-scrollbar{
    width: .5rem;
    border-radius: .5rem;
    /*background-color: var(--webkit-scrollbar-background-color-dark);*/
}

.dark-theme .members__container::-webkit-scrollbar:hover{
    width: .5rem;
    border-radius: .5rem;
    background-color: var(--webkit-scrollbar-background-color-dark);
}

.dark-theme .members__container::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 100%);
    border-radius: .5rem;
}

.dark-theme .members__container::-webkit-scrollbar-thumb:hover{
    background-color: hsl(171, 100%, 50%); /* Scrollbar-thumb color pink - hsl(328, 100%, 54%); */
}

/*=============== REUSABLE CSS CLASSES ===============*/
.dark-theme .invert{
    filter: invert(1);
}

.container {
    max-width: 1000px;
    margin-inline: 1.5rem;
    /*padding: 0rem 1rem 0rem 1rem;*/
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding-block: 3rem;
}

.section__border {
    border-bottom: 1px solid var(--title-color);
    /*padding-bottom: 3.5rem;*/
    padding-bottom: 6rem;
    margin-bottom: 1rem;
}

.section__title,
.section__subtitle {
    text-align: center;
}

.section__title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: .25rem;
}

.section__subtitle {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: 3rem;
}

.main {
    overflow: hidden; /* For animation */
}

.selectDisable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectEnable {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    /* Remove */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Optional */
    /*border: solid;*/
    box-shadow: none;

    -webkit-box-shadow: 0 0 0 1000px var(--body-color) inset !important;
    -webkit-text-fill-color: var(--title-color) !important;
}

/*=============== HEADER & NAV ===============*/
.header{
    width: 100%;
    position: fixed;
    bottom: 2rem;
    left: 0;
    z-index: var(--z-fixed);
}

.nav{
    height: calc(var(--header-height) + .5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--body-color);
    /*box-shadow: 0 4px 20px hsla(207, 24%, 35%, .1);*/
    /*box-shadow: 0px 0px 4px grey;*/
    padding-inline: 1.5rem;
    border-radius: 3rem;
    /*transition: background .5s; !* for dark mode animation *!*/
}

.nav__logo,
.nav__toggle,
.nav__close{
    color: var(--title-color);
}

.nav__logo{
    font-family: var(--title-font);
    font-weight: var(--font-medium);
}

.nav__toggle{
    display: flex;
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 1023px){
    .profile__container{
        padding-bottom: 6rem;
    }

    .nav__menu{
        position: fixed;
        display: none;
        /*width: 88%;*/
        left: 0;
        right: 0;
        /*bottom: -60%;*/
        /*margin: 0 auto;*/
        background-color: var(--body-color);
        /*box-shadow: 0 4px 20px hsla(207, 24%, 35%, .1);*/
        /*box-shadow: 0px 0px 4px grey;*/
        padding: 2rem 1.5rem 5rem;
        border-radius: 2rem;
        /*transition: bottom .1s;*/

        margin: inherit;
    }
}

.nav__list{
    grid-template-columns: repeat(auto-fit, 100px);
    justify-content: center;
    gap: 2rem 3rem;
}

.nav__link{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: .5rem;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    /*transition: color .3s;*/

    text-align: center;
}

.nav__link:hover{
    color: var(--title-color);
}

.nav__link i{
    font-size: 1.25rem;
}

.nav__close {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Show menu */

.show-menu{
    display: block;
    bottom: 2rem;
}

/* Active link */
.active-link{
    color: var(--title-color);
}

/*=============== HOME ===============*/
.home__container{
    row-gap: 4rem;
    /*padding-top: 2rem;*/
}

.home__data{
    row-gap: 1.5rem;
}

.home__title{
    text-align: center;
    font-size: var(--biggest-font-size);
    letter-spacing: .3px;
    margin-bottom: .5rem;
}

.home__blob{
    position: relative;
    width: 200px;
    height: 200px;
    /*height: 290px;*/
    background-color: var(--body-color);
    /*border: 2px solid var(--text-color-light);*/
    justify-self: center;
    border-radius: 6.25rem;
    /*overflow: hidden;*/
    place-items: center;
    align-content: center;
    /*transition: background .5s; !* for dark mode animation *!*/
}

.home__blob img{
    border-radius: 50%;
    /*clip-path: circle();*/
}

.home__blob video{
    border-radius: 50%;
}

.voting img{
    border-style: solid;
    animation: deeppink-deepskyblue-border infinite 3s;
}

.voting video{
    border-style: solid;
    animation: deeppink-deepskyblue-border infinite 3s;
}

.voting a{
    /*position: absolute;*/
    /*bottom: 25px;*/
    /*right: 25px;*/
    /*rotate: -45deg;*/
    width: max-content;
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    animation: deeppink-deepskyblue infinite 3s;
    /*text-decoration: underline;*/
}

.voting i{
    font-size: 1rem;
    transition: transform .3s;
    animation: popup infinite 1s;
}

.voting:hover i{
    /*animation: none;*/
}

.voting a:hover i{
    animation-play-state: paused;
}

/*.home__blob_voting:hover i{*/
/*    animation: popup infinite 1s;*/
/*}*/

/* KEYFRAMES */

@keyframes popup {
    0% {
        transform: translateY(0rem);
    }

    50% {
        transform: translateY(0.25rem);
    }
    100%{
        transform: translateY(0rem);
    }
}

@keyframes deeppink-deepskyblue {
    0%{
        /*border-color: hsl(328, 100%, 54%);*/
        color: hsl(328, 100%, 54%);
    }
    50%{
        /*border-color: hsl(171, 100%, 50%);*/
        color: hsl(171, 100%, 50%);
    }
    100%{
        /*border-color: hsl(328, 100%, 54%);*/
        color: hsl(328, 100%, 54%);
    }
}

@keyframes deeppink-deepskyblue-border {
    0%{
        border-color: hsl(328, 100%, 54%);
        /*color: hsl(328, 100%, 54%);*/
    }
    50%{
        border-color: hsl(171, 100%, 50%);
        /*color: hsl(171, 100%, 50%);*/
    }
    100%{
        border-color: hsl(328, 100%, 54%);
        /*color: hsl(328, 100%, 54%);*/
    }
}

@keyframes orangered-black {
    0%{
        color: orangered;
    }
    50%{
        color: red;
    }
    100%{
        color: orangered;
    }
}

.home__perfil{
    width: 170px;
    height: 170px;
    /*height: 260px;*/
    background: var(--gradient-color);
    border-radius: 5.5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.home__perfil img{
    width: 300px;
}

.home__shape-waves,
.home__shape-circle{
    position: absolute;
    opacity: .1;
}

.home__shape-waves{
    width: 50px;
    left: -1.5rem;
    /*top: 5rem;*/
    top: 3rem;
}

.home__shape-circle{
    width: 150px;
    bottom: -2rem;
    right: -3rem;
    transform: rotate(15deg);
    z-index: -1;
}

.home__community{
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, 1rem);*/
    /*grid-auto-flow: column;*/

    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;
    /*align-content: center;*/
    justify-items: center;

    column-gap: 1.25rem;
}

.home__community-link{
    font-size: 1.25rem;
    color: var(--text-color-light);
    /*transition: color .3s;*/
}

.home__community-link:hover{
    color: var(--title-color);
}

.home__info{
    display: grid;
    row-gap: 2rem;
}

.home__info-title{
    font-family: var(--body-font);
    font-size: var(--smaller-font-size);
    /*font-weight: var(--font-semi-bold);*/
    font-weight: var(--font-medium);
    color: var(--title-color);
    margin-bottom: 1rem;

    text-transform: uppercase
}

.date__updated{
    font-family: var(--body-font);
    font-size: var(--smaller-font-size);
    font-weight: 400;
    color: var(--text-color-light);
    margin-bottom: 1rem;
    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    /*display: flex;*/
    /*align-content: center;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

.date__updated_admin{
    cursor: pointer;
}

.date__updated_admin:hover{
    color: var(--title-color)
}

.home__info-description,
.home__info-number{
    font-family: var(--title-font);
    color: var(--text-color-light);
}

.home__info-description{
    padding-right: 4rem;
}

.home__info-number a,
.home__info-description a{
    color: var(--text-color-light);
}

/*.home__info-number a.change,*/
/*.home__info-description a.change{*/
/*    display: inline-block;*/

/*    transition: transform .3s;*/
/*    animation: popup infinite 1s;*/
/*}*/

.home__info-number a:hover,
.home__info-description a:hover{
    cursor: pointer;
    color: var(--title-color);
}

.home__info-description a i,
.home__info-number a i{
    transition: transform .3s;
    display: inline-block;
}

.home__info-description a:hover i,
.home__info-number a:hover i{
    transform: translateX(.25rem);
}

.home__info-number{
    font-size: var(--h3-font-size);
    /*font-weight: var(--font-semi-bold);*/
    color: var(--text-color-light)
}

/*.home__info-number a{*/
/*    cursor: pointer;*/
/*    color: var(--text-color-light)*/
/*}*/

/*=============== PROFILE ===============*/
.profile__container{
    row-gap: 4rem;
    /*padding-top: 2rem;*/
}

.profile__data{
    row-gap: 1.5rem;
}

.profile__title{
    text-align: center;
    font-size: var(--biggest-font-size);
    letter-spacing: .3px;
    margin-bottom: .5rem;
}

.profile__blob{
    position: relative;
    width: 200px;
    height: 200px;
    /*height: 290px;*/
    background-color: var(--body-color);
    /*border: 2px solid var(--text-color-light);*/
    justify-self: center;
    border-radius: 6.25rem !important;
    /*overflow: hidden;*/
    place-items: center;
    /*transition: background .5s; !* for dark mode animation *!*/
}

.profile__blob img{
    border-radius: 50%;

    /*border-style: dashed;*/
    /*border-style: solid;*/
    /*padding: 3px;*/
    width: inherit;
    /*border-color: var(--text-color);*/
    /*border-width: 3px;*/
    /*clip-path: circle();*/
}

.profile__blob video{
    border-radius: 50%;

    width: inherit;
}

.profile__perfil{
    width: 170px;
    height: 170px;
    /*height: 260px;*/
    background: var(--gradient-color);
    border-radius: 5.5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.profile__perfil img{
    width: 300px;
}

.profile__shape-waves,
.profile__shape-circle{
    position: absolute;
    opacity: .1;
}

.profile__shape-waves{
    width: 50px;
    left: -1.5rem;
    /*top: 5rem;*/
    top: 3rem;
}

.profile__shape-circle{
    width: 150px;
    bottom: -2rem;
    right: -3rem;
    transform: rotate(15deg);
    z-index: -1;
}

.profile__community{
    display: grid;
    grid-template-columns: repeat(auto-fit, 1rem);
    grid-auto-flow: column;

    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    /*justify-self: center;*/

    column-gap: 1.25rem;
}

.profile__community-link{
    font-size: 1.25rem;
    color: var(--text-color-light);
    /*transition: color .3s;*/
}

.profile__community-link__True{
    color: springgreen;
    /*color: hsl(171, 100%, 50%);*/
}

.profile__community-link__False{
    color: red;
    /*color: hsl(328, 100%, 54%);*/
}

.profile__community-link:hover{
    color: var(--title-color);
}

.profile__info{
    display: grid;
    row-gap: 2rem;
}

.profile__info-title{
    font-family: var(--body-font);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--title-color);
    margin-bottom: 1rem;

    text-transform: uppercase
}

.profile__info-description,
.profile__info-number{
    font-family: var(--title-font);
    color: var(--text-color-light);
}

.profile__info-description span,
.profile__info-description a{
    color: var(--text-color-light);
}

.profile__info-number a,
.profile__info-description a {
    color: var(--text-color-light);
}

.profile__info-number a:hover,
.profile__info-description a:hover{
    cursor: pointer;
    color: var(--title-color);
}

.profile__info-description a:hover{
    color: var(--title-color);
}

.profile__info-description{
    padding-right: 4rem;
    /*font-size: var(--h2-font-size);*/
}

.profile__info-number{
    font-size: var(--h3-font-size);
    /*font-weight: var(--font-semi-bold);*/
    color: var(--text-color-light)
}

/*=============== SKILLS ===============*/
.skills__container{
    row-gap: 3.5rem;
}

.skills__title{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 2.5rem;
}

.skills__title{
    font-size: 1rem;
    font-weight: initial;
}

.skills__info,
.skills__data,
.skills__blob{
    display: grid;
    justify-items: center;
}

.skills__info{
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
}

.skills__data{
    justify-content: center;
    text-align: center;
}

.skills__blob{
    width: 80px;
    height: 100px;
    background-color: var(--container-color);
    border-radius: 3rem;
    place-items: center;
    margin-bottom: 1rem;

    cursor: pointer;
    /*transition: background .5s; !* for dark mode animation *!*/

    /*box-shadow: 0px 0px 4px grey;*/
}

.skills__blob img{
    width: 40px;
}

.skills__name{
    font-size: var(--small-font-size);
    margin-bottom: .25rem;
}

.skills__subtitle{
    font-size: var(--tiny-font-size);
    color: var(--text-color-light);
}

/* Animation skills */
.skills__blob:hover img{
    animation: bounce-skills .6s;
}

@keyframes bounce-skills {
    0%{
        transform: translate(0);
    }
    20%{
        transform: translateY(-6px);
    }
    40%{
        transform: translate(0);
    }
    60%{
        transform: translateY(-3px);
    }
    80%{
        transform: translate(0);
    }
}

/*=============== QUALIFICATION ===============*/
.qualification{
    position: relative;
}

.qualification__container{
    row-gap: 3.5rem;
}

.qualification__title{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 2rem;
}

.qualification__title i{
    font-size: 1rem;
    font-weight: initial;
}

.qualification__info{
    display: grid;
    row-gap: 2rem;
}

.qualification__name{
    font-size: var(--normal-font-size);
    margin-bottom: 1.25rem;
}

.qualification__country,
.qualification__year{
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.qualification__country{
    margin-bottom: .75rem;
}

.qualification__img{
    width: 150px;
    position: absolute;
    right: -3rem;
    bottom: 12rem;
    transform: rotate(15deg);
    opacity: .1;
}

/*=============== SERVICES ===============*/
.services__container{
    row-gap: 2.5rem;
    justify-content: center;
}

.services__card{
    position: relative;
    width: 228px;
    height: 322px;
    background-color: var(--container-color);
    text-align: center;
    padding: 3.5rem 1rem;
    border-radius: 7.25rem;
    /*transition: background .5s; !* for dark mode animation *!*/

    animation: popup infinite 1s;

    cursor: pointer;
    /*box-shadow: 0px 0px 4px grey;*/
}

.services__card:hover{
    animation-play-state: paused;
}

.services__card i{
    display: block;
    font-size: 2rem;
    color: var(--title-color);
    margin-bottom: .75rem;
    transition: transform .8s;
}

.services__title{
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1.5rem;

    /*cursor: auto;*/
}

.services__description{
    opacity: .5;
    /*cursor: auto;*/
}

.services__border{
    width: 248px;
    height: 342px;
    border: 1.8px solid var(--text-color-light);
    border-radius: 7.75rem;
    position: absolute;
    inset: 0;
    left: -10px;
    margin: auto;
    z-index: -1;
    transition: opacity .6s;
    opacity: 0;
}

.services__card:hover i{
    transform: rotateY(360deg);
}

.services__card:hover .services__border{
    opacity: 1;
}

/*=============== GOVERNMENT ===============*/
.government__container{
    row-gap: 2.5rem;
    justify-content: center;
    padding-bottom: 3rem;
}

.government__card{
    position: relative;
    width: 228px;
    height: 322px;
    background-color: var(--container-color);
    text-align: center;
    padding: 3.5rem 1rem;
    border-radius: 7.25rem;
    cursor: pointer;
    /*transition: background .5s; !* for dark mode animation *!*/

    animation: popup infinite 1s;

    /*box-shadow: 0px 0px 4px grey;*/
    /*filter: drop-shadow(2px 2px 4px grey);*/
}

.government__card:hover{
    animation-play-state: paused;
}

.government__card > i{
    display: inline-block;
    height: 50px;
    width: 50px;
    font-size: 2rem;
    color: var(--title-color);
    /*margin-bottom: .5rem;*/
    transition: transform .8s;
}

.government__title{
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
    margin: 1.5rem 0 1.5rem 0;

    /*cursor: auto;*/
}

.government__description{
    /*cursor: auto;*/
}

.government__description a{
    color: var(--text-color-light);
    /*animation: popup infinite 1s;*/
    /*display: inline-block;*/
}

.government__description a:hover{
    color: var(--title-color);
    animation-play-state: paused;
}

.government__border{
    width: 248px;
    height: 342px;
    border: 1.8px solid var(--text-color-light);
    border-radius: 7.75rem;
    position: absolute;
    inset: 0;
    left: -10px;
    margin: auto;
    z-index: -1;
    transition: opacity .6s;
    opacity: 0;
}

.government__border-selected{
    animation: deeppink-deepskyblue-border infinite 3s;
    opacity: 1;
}

.government__card:hover > i{
    transform: rotateY(360deg);
}

.government__card:hover .government__border{
    opacity: 1;
}

.government__vote-animation{
    text-align: center;
}

.government__vote-animation div, .government__vote-animation a{
    cursor: pointer;
    color: var(--title-color);
    width: max-content;
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    /*display: grid;*/
    /*justify-items: center;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    animation: deeppink-deepskyblue infinite 3s;
}

.government__vote-default{
    text-align: center;
    /*display: grid;*/
    /*justify-items: center;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*animation: deeppink-deepskyblue infinite 3s;*/
}

.government__vote-default div, .government__vote-default a{
    cursor: pointer;
    color: var(--title-color);
    width: max-content;
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
}

.government__vote-animation i{
    font-size: 1rem;
    transition: transform .3s;
    animation: popup infinite 1s;
}

.government__vote-default i{
    font-size: 1rem;
    /*transition: transform .3s;*/
    /*animation: popup infinite 1s;*/
}

.government__vote-selected i{
    transition: transform .3s;
    animation: popup infinite 1s;
}

.government__vote-selected:hover i{
    /*transition: transform .3s;*/
    /*animation: popup infinite 1s;*/
    animation-play-state: paused;
}

.government__caret{
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--title-color);
    /*transition: 0.3s;*/
}

.government__caret-rotate{
    transform: rotate(180deg);
}

.government__votes{
    /*box-shadow: 0 0.5rem 1em rgba(0, 0, 0, 0.2);*/
    /*box-shadow: 0 4px 12px hsla(207, 24%, 35%, 15);*/
    /*box-shadow: 0 4px 12px hsla(207, 24%, 35%, 15);*/
    /*box-shadow: 0px 0px 4px grey;*/
    border-radius: 0.5em;
    opacity: 0;
    display: none;
    max-height: 180px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1;
    background: var(--container-color);
    color: var(--text-color-light);
    margin-top: 5px;
    justify-self: center;
}

.government__votes li{
    padding: 0.5rem 0.5rem;
    margin: 0.5rem 0.5rem;
    border-radius: 0.5em;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    /*min-height: 33px;*/
    /*min-width: 176px;*/
    /*max-width: 176px;*/
    /*max-height: 33px;*/
}

.government__votes li:hover{
    color: var(--title-color);
    /*background: var(--text-color-light);*/
}

.government__votes-active{
    color: var(--title-color);
}

.government__votes-open{
    display: block;
    opacity: 1;
}

.government__stand{
    display: grid;
    max-height: 0;
    /*width: 200px;*/
    justify-self: center;
}

.government__candidates{
    color: var(--text-color-light);
    font-size: var(--smaller-font-size);
}

.referendum__valid__False div,
.referendum__valid__False i{
    color: red;
}

.members__container{
    /*display: grid;*/

    /*justify-content: center;*/
    /*align-content: space-between;*/
    /*align-items: center;*/
    /*justify-items: center;*/

    display: flex;
    align-items: center;
    /*justify-content: center;*/
    align-content: center;
    flex-direction: column;

    row-gap: 1rem;

    min-height: 5rem;
    max-height: calc(100vh - 20rem);
    max-height: calc(100svh - 20rem);
    /*max-height: calc(100vh - 375px);*/
    /*height: 50vh;*/

    overflow-y: scroll;
    overflow-x: hidden;
    padding: 1rem;
}

.members__container a{
    min-height: 4rem;

    color: var(--text-color-light);
    /*padding: 1rem 1rem;*/
    /*margin: 0.5rem 0.5rem;*/
    border-radius: 0.5em;
    /*cursor: pointer;*/
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    text-align: center;
    /*min-height: 33px;*/
    /*min-width: 176px;*/
    /*max-width: 176px;*/
    /*max-height: 33px;*/

    display: flex;
    align-items: center;
    justify-content: center;

    /*-ms-word-break: break-all;*/
    /*word-break: break-all;*/
    /*word-break: break-word;*/
    /*-webkit-hyphens: auto;*/
    /*-moz-hyphens: auto;*/
    /*-ms-hyphens: auto;*/
    /*hyphens: auto;*/

    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, 50vh);*/
    /*justify-items: center;*/
}

.members__container a[href]:hover{
    color: var(--title-color);
    cursor: pointer;
    /*background: var(--text-color-light);*/
}

.members__container a img{
    border-radius: 50%;
    max-width: 50px;
    margin: 1px 0.5rem 1px 1px;
}

.members__filters{
    display: grid;

    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;

    margin-bottom: 2rem;

    color: var(--text-color-light);
}

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

.members__filters input{
    border-radius: 1rem;
    background: none;
    border: 1px solid var(--text-color-light);
    color: var(--title-color);
    padding: 0.5rem;
    outline: none;
    resize: none;
    text-align: center;

    width: 55px;

    max-width: 500px;
    /*width: -webkit-fill-available;*/
    /*height: -webkit-fill-available;*/
    /*max-height: 5vh;*/
    min-width: 100px;
}

.members__filters{
    gap: 0.5rem;
}

.members__filters div{
    gap: 0.5rem;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.members__filters div:hover input{
    /*cursor: pointer;*/
    color: var(--title-color);
    border: 1px solid var(--title-color);
}

.members__filters div:hover{
    cursor: pointer;
    color: var(--title-color);
}

.members__filters div:focus-within input{
    color: var(--title-color);
    border: 1px solid var(--title-color);
}

.members__filters div:focus-within{
    color: var(--title-color);
}

/*=============== CONSTITUTION ===============*/
.constitution__container{
    row-gap: 2.5rem;
    justify-content: center;
}

.constitution__content textarea{
    font-size: var(--h3-font-size);
    font-weight: var(--normal-font-size);
    font-family: var(--document-family);
    /*word-wrap: break-word;*/
    white-space: pre-wrap;
    padding: 1rem;
    /*text-align: justify;*/
    /*margin-bottom: 1.5rem;*/

    /*word-wrap: break-word;*/
    white-space: pre-wrap;
    /*text-align: justify;*/
    /*margin-bottom: 1.5rem;*/

    -ms-word-break: break-all;
    word-break: break-all;

    /* Non standard for webkit */
    word-break: break-word;

    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;

    width: 100%;
    /*height: 100%;*/
    /*height: 500px;*/
    /*min-height: 0px;*/
    /*max-height: 500px;*/
    height: 50vh;
    max-height: 50vh;
    color: var(--text-color-light);
    /*background: var(--body-color);*/
    background: none;
    resize: none;
    border: none;
    /*outline: none;*/
    cursor: auto;
}

.constitution__content{
    display: grid;

    justify-items: center;
    align-items: center;
    align-content: center;
}

.constitution__message{
    font-size: var(--small-font-size);
    position: absolute;
    bottom: 2.8rem;
    left: 1.5rem;
}

.constitution__button{
    width: max-content;
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-size: var(--small-font-size);
}

.constitution__container button{
    width: initial; /* Align Submit button to ceneter */
    justify-self: center;
}

.constitution__container .constitution__button{
    border: none;
    background: none;
    font-size: var(--h2-font-size);
    font-family: var(--title-font);
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    outline: none;
    margin-top: 2rem;
}

.constitution__container .constitution__button{
    font-size: 1.5rem;
    font-weight: initial;
}

.constitution__button i{
    font-size: 1rem;
    transition: transform .3s;
}

.constitution__button:hover i{
    transform: translateX(.25rem);
}

/*=============== LAWS ===============*/
.laws__container{
    row-gap: 2.5rem;
    justify-content: center;
}

.laws__content textarea{
    font-size: var(--h3-font-size);
    font-weight: var(--normal-font-size);
    font-family: var(--document-family);
    white-space: pre-wrap;
    padding: 1rem;
    /*text-align: justify;*/
    /*overflow: hidden;*/

    /*word-wrap: break-word;*/
    white-space: pre-wrap;
    /*text-align: justify;*/
    /*margin-bottom: 1.5rem;*/

    -ms-word-break: break-all;
    word-break: break-all;

    /* Non standard for webkit */
    word-break: break-word;

    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;

    width: 100%;
    /*height: 100%;*/
    /*height: 500px;*/
    /*min-height: 0px;*/
    /*max-height: 500px;*/
    height: 50vh;
    max-height: 50vh;
    color: var(--text-color-light);
    /*background: var(--body-color);*/
    background: none;
    resize: none;
    border: none;
    /*outline: none;*/
    cursor: auto;
}

.laws__content{
    display: grid;

    justify-items: center;
    align-items: center;
    align-content: center;
}

.laws__message{
    font-size: var(--small-font-size);
    position: absolute;
    bottom: 2.8rem;
    left: 1.5rem;
}

.laws__button{
    width: max-content;
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-size: var(--small-font-size);
}

.laws__container button{
    width: initial; /* Align Submit button to ceneter */
    justify-self: center;
}

.laws__container .laws__button{
    border: none;
    background: none;
    font-size: var(--h2-font-size);
    font-family: var(--title-font);
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    outline: none;
    margin-top: 2rem;
}

.laws__container .laws__button{
    font-size: 1.5rem;
    font-weight: initial;
}

.laws__button i{
    font-size: 1rem;
    transition: transform .3s;
}

.laws__button:hover i{
    transform: translateX(.25rem);
}


/*=============== PROJECTS ===============*/
.projects__container{
    overflow: initial;
}

.projects__content{
    display: grid;
    justify-content: center;
}

.projects__img{
    width: 250px;
    height: 150px;
    border-radius: .75rem;
    /*margin-bottom: 1.25rem;*/

    margin: 1rem 0 1rem 0;
}

.projects__project{
    max-width: 250px;
}

.projects__subtitle{
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.projects_pushed-at{
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

.projects__title{
    font-size: var(--h2-font-size);
    margin: .5rem 0 1.25rem;
}

.projects__button{
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-size: var(--small-font-size);
}

.projects__button{
    font-size: 1rem;
}

.projects__button i{
    transition: transform .3s;
    display: inline-block;
}

.projects__button:hover i{
    transform: translateX(.25rem);
}

/* Swiper class */
.projects__container .swiper-button-prev::after,
.projects__container .swiper-button-next::after{
    content: '';
}

.projects__container .swiper-button-prev,
.projects__container .swiper-button-next{
    width: initial;
    height: initial;
    margin: initial;
    font-size: 2.5rem;
    color: var(--title-color);
}

.projects__container .swiper-button-prev{
    left: -1rem;
    top: 4.5rem;
}

.projects__container .swiper-button-next{
    right: -1rem;
    top: 4.5rem;
}

.projects__container .swiper-slide{
    margin-bottom: 4.5rem;
}

.projects__container.swiper-pagination-bullets{
    bottom: 0;
}

.projects__container .swiper-pagination-bullet{
    background-color: var(--text-color-light);
    opacity: initial;
}

.projects__container .swiper-pagination-bullet-active{
    background-color: var(--title-color);
}

/*=============== TESTIMONIAL ===============*/
.testimonial{
    position: relative;
}

.testimonial__content{
    text-align: center;
}

.testimonial__description{
    font-family: var(--title-font);
    color: var(--title-color);
    margin-bottom: 1.5rem;

    overflow: hidden;
    text-overflow: ellipsis;

    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.testimonial__name{
    font-family: var(--body-font);
    font-size: var(--small-font-size);
    margin-bottom: .25rem;
}

.testimonial__subtitle{
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

.testimonial__img{
    width: 70px;
    transform: rotate(30deg);
    position: absolute;
    top: 5rem;
    right: -1.5rem;
    opacity: .1;
}

/* Swiper class */
.testimonial__container .swiper-slide{
    margin-bottom: 4rem;
}

.testimonial__container .swiper-button-prev::after,
.testimonial__container .swiper-button-next::after{
    content: '';
}

.testimonial__container .swiper-button-prev,
.testimonial__container .swiper-button-next{
    font-size: 2rem;
    color: var(--title-color);
    width: initial;
    height: initial;
    top: initial;
    bottom: .5rem;
}

.testimonial__container .swiper-button-prev{
    left: calc(50% - 3rem);
}

.testimonial__container .swiper-button-next{
    right: calc(50% - 3rem);
}

.testimonial__container .swiper-button-disabled{
    opacity: initial;
    color: var(--text-color-light);
}

/*=============== CONTACT ===============*/
.contact__container{
    row-gap: 3.5rem;
}

.contact__title{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 2.5rem;
}

.contact__title i{
    font-size: 1rem;
    font-weight: initial;
}

.contact__info,
.contact__data,
.contact__form{
    display: grid;
}

.contact__info{
    row-gap: 2rem;
}

.contact__data{
    row-gap: .75rem;
}

.contact__data-title{
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.contact__data-info{
    font-size: var(--small-font-size);
    font-family: var(--title-font);
    color: var(--title-color);
}

.contact__button{
    width: max-content;
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-size: var(--small-font-size);
}

.contact__form button{
    width: initial; /* Align Submit button to ceneter */
    justify-self: center;
}

.contact__button i{
    font-size: 1rem;
    transition: transform .3s;
}

.contact__button:hover i{
    transform: translateX(.25rem);
}

.contact__form{
    position: relative;
    row-gap: 2rem;
}

.contact__form-div{
    position: relative;
    height: 4rem;
}

.contact__form-input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--text-color-light);
    border-radius: 2rem;
    padding: 1.5rem;
    font-size: var(--normal-font-size);
    font-family: var(--title-font);
    color: var(--title-color);
    background: none;
    outline: none;
    z-index: 1;
}

.contact__form-tag{
    position: absolute;
    top: -1.75rem;
    left: 1.25rem;
    z-index: 10;
    background-color: var(--body-color);
    color: var(--title-color);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    padding: .35rem;
    /*transition: background .5s; !* for dark mode animation *!*/
}

.contact__form-area{
    height: 10rem;
}

.contact__form-area textarea{
    resize: none;
    /*overflow: hidden; !* not show scroll in text area*!*/
    overflow: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.contact__form .contact__button{
    border: none;
    background: none;
    font-size: var(--h2-font-size);
    font-family: var(--title-font);
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    outline: none;
    margin-top: .75rem;
}

.contact__form .contact__button{
    font-size: 1.5rem;
    font-weight: initial;
}

.contact__message{
    font-size: var(--small-font-size);
    position: absolute;
    bottom: 2.8rem;
    left: 1.5rem;
}

/* Status color */
.color-red{
    color: red;
}

.color-green{
    color: springgreen;
}

/*=============== FOOTER ===============*/
.footer__container{
    padding: 1rem 0 7rem;
    text-align: center;
}

.footer__title{
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
}

.footer__list,
.footer__community{
    display: grid;
    /*flex-wrap: wrap;*/

    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: center;
}

.footer__list{
    grid-template-columns: repeat(auto-fit, 100px);
    margin: 2.5rem 0;
    column-gap: 2.5rem;
}

.footer__link{
    color: var(--title-color);
}

.footer__link:hover{
    text-decoration: underline;
}

.footer__community{
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, 1rem);*/
    /*grid-auto-flow: column;*/

    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;
    /*align-content: center;*/
    justify-items: center;

    column-gap: 1.25rem;
}

.footer__community-link{
    font-size: 1.25rem;
    color: var(--title-color);
    transition: transform .3s;
}

.footer__community-link:hover{
    transform: translateY(-.15rem);
}

.footer__copy{
    display: block;
    margin-top: 4.5rem;
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

/*ENTRY*/

.entry__container{
    row-gap: 3.5rem;
}

.entry__title{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: 2.5rem;
}

.entry__title i{
    font-size: 1rem;
    font-weight: initial;
}

.entry__info,
.entry__data,
.entry__form{
    display: grid;
}

.entry__info{
    row-gap: 2rem;
}

.entry__data{
    justify-content: right;
    row-gap: .75rem;
}

.entry__data-title{
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.entry__data-info{
    font-size: var(--small-font-size);
    font-family: var(--title-font);
    color: var(--title-color);
}

.entry__button{
    width: max-content;
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-size: var(--small-font-size);
}

.entry__form button{
    width: initial; /* Align Submit button to ceneter */
    justify-self: center;
}

.entry__button i{
    font-size: 1rem;
    transition: transform .3s;
}

.entry__button:hover i{
    transform: translateX(.25rem);
}

.entry__form{
    position: relative;
    row-gap: 1.5rem;
}

.entry__form-div{
    position: relative;
    height: 4rem;
}

.entry__form-input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--text-color-light);
    border-radius: 2rem;
    padding: 1.5rem;
    font-size: var(--normal-font-size);
    font-family: var(--title-font);
    color: var(--title-color);
    background: none;
    outline: none;
    z-index: 1;
}

.entry__form-tag{
    position: absolute;
    top: -.75rem;
    left: 1.25rem;
    z-index: 10;
    background-color: var(--body-color);
    color: var(--title-color);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    padding: .35rem;
    /*transition: background .5s; !* for dark mode animation *!*/
}

.entry__form-area{
    height: 10rem;
}

.entry__form-area textarea{
    resize: none;
    overflow: hidden; /* not show scroll in text area*/
}

.entry__form .entry__button{
    border: none;
    background: none;
    font-size: var(--h2-font-size);
    font-family: var(--title-font);
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    outline: none;
    margin-top: .75rem;
}

.entry__form .entry__button{
    font-size: 1.5rem;
    font-weight: initial;
}

.entry__message{
    font-size: var(--small-font-size);
    position: absolute;
    bottom: 2.8rem;
    left: 1.5rem;
}

.short__password {
    width: 100%;
    background-color: #dc3545;
    margin-top: 5px;
    height: 3px;
    color: #dc3545;
    font-weight: 500;
    font-size: 12px;
}
.weak__password {
    width: 100%;
    background-color: #ffc107;
    margin-top: 5px;
    height: 3px;
    color: #ffc107;
    font-weight: 500;
    font-size: 12px;
}
.good__password {
    width: 100%;
    background-color: #28a745;
    margin-top: 5px;
    height: 3px;
    color: #28a745;
    font-weight: 500;
    font-size: 12px;
}
.strong__password {
    width: 100%;
    background-color: #d39e00;
    margin-top: 5px;
    height: 3px;
    color: #d39e00;
    font-weight: 500;
    font-size: 12px;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
    width: .5rem;
    border-radius: .5rem;
    /*background-color: var(--webkit-scrollbar-background-color-light);*/
}

::-webkit-scrollbar:hover{
    width: .5rem;
    border-radius: .5rem;
    /*background-color: hsl(0, 0%, 100%);*/
    background-color: var(--webkit-scrollbar-background-color-light);
}

::-webkit-scrollbar-thumb{
    width: .5rem;
    background-color: hsl(0, 0%, 0%);
    border-radius: .5rem;

}

::-webkit-scrollbar-thumb:hover{
    background-color: hsl(328, 100%, 54%); /* Scrollbar-thumb color pink - hsl(328, 100%, 54%);*/
}

video::-webkit-media-controls {
    display: none;
}

/* Could Use thise as well for Individual Controls */
/*video::-webkit-media-controls-play-button {}*/

/*video::-webkit-media-controls-volume-slider {}*/

/*video::-webkit-media-controls-mute-button {}*/

/*video::-webkit-media-controls-timeline {}*/

/*video::-webkit-media-controls-current-time-display {}*/

.government__votes::-webkit-scrollbar{
    width: .5rem;
    border-radius: .5rem;
    /*background-color: var(--webkit-scrollbar-background-color-light);*/
}

.government__votes::-webkit-scrollbar:hover{
    width: .5rem;
    border-radius: .5rem;
    background-color: var(--webkit-scrollbar-background-color-light);
}

.government__votes::-webkit-scrollbar-thumb{
    width: .5rem;
    background-color: hsl(0, 0%, 0%);
    border-radius: .5rem;
}

.government__votes::-webkit-scrollbar-thumb:hover{
    background-color: hsl(328, 100%, 54%); /* Scrollbar-thumb color pink - hsl(328, 100%, 54%);*/
}

.contact__form-input::-webkit-scrollbar {
    background-color: hsl(0, 0%, 0%, 0%);
}

.contact__form-input::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 0%, 0%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--body-color);
    /*box-shadow: 0 4px 12px hsla(207, 24%, 35%, 15);*/
    /*box-shadow: 0px 0px 4px grey;*/
    display: inline-flex;
    padding: .35rem;
    border-radius: .25rem;
    font-size: 1.1rem;
    color: var(--title-color);
    z-index: var(--z-tooltip);
    transition: bottom .3s, transform .3s;
    animation: popup infinite 1s;
    will-change: translate;
}

.scrollup:hover{
    transform: translateY(-.25rem);
    animation-play-state: paused;
}

/* Show Scroll Up*/
.show-scroll{
    bottom: 7.5rem;
}

/*=============== ANIMATION NUMBERS ===============*/

/*@property --percent {*/
/*    syntax: "<number>";*/
/*    initial-value: 0;*/
/*    inherits: false;*/
/*}*/
/*@property --temp {*/
/*    syntax: "<number>";*/
/*    initial-value: 0;*/
/*    inherits: false;*/
/*}*/
/*@property --v1 {*/
/*    syntax: "<integer>";*/
/*    initial-value: 0;*/
/*    inherits: false;*/
/*}*/
/*@property --v2 {*/
/*    syntax: "<integer>";*/
/*    initial-value: 0;*/
/*    inherits: false;*/
/*}*/
/*@property --number {*/
/*    syntax: "<number>";*/
/*    initial-value: 0;*/
/*    inherits: false;*/
/*}*/
/*.animated_percent {*/
/*    transition: --percent 1s;*/
/*    !*--temp: calc(var(--percent) * 100);*!*/
/*    --temp: calc(var(--percent) * 100);*/
/*    --v1: max(var(--temp) - 0.5, 0);*/
/*    --v2: max((var(--temp) - var(--v1)) * 100 - 0.5, 0);*/
/*    counter-reset: v1 var(--v1) v2 var(--v2);*/
/*}*/
/*.animated_percent::before {*/
/*    content: counter(v1) "%";*/
/*}*/
/*.animated_number {*/
/*    transition: --number 1s;*/
/*    !*--temp: calc(var(--number) * 2196);*!*/
/*    --temp: calc(var(--number) * 2196);*/
/*    --v1: max(var(--temp) - 0.5, 0);*/
/*    --v2: max((var(--temp) - var(--v1)) * 100 - 0.5, 0);*/
/*    counter-reset: v1 var(--v1) v2 var(--v2);*/
/*}*/
/*.animated_number::before {*/
/*    content: counter(v1);*/
/*}*/


/*=============== BREAKPOINTS ===============*/
/* For small devices */
/*340px*/
@media screen and (max-width: 380px){
    /*.constitution__content textarea{*/
    /*    max-height: 400px;*/
    /*}*/

    /*.laws__content textarea{*/
    /*    max-height: 400px;*/
    /*}*/

    .container{
        margin-inline: 1rem;
    }

    .skills__info{
        grid-template-columns: repeat(2, 1fr);
    }

    .projects__img{
        width: 200px;
        height: 125px;
        justify-self: center;
    }

    .projects__project{
        max-width: 200px;
    }
}

/* For medium devices */
@media screen and (min-width: 576px){
    .nav,
    .nav__menu{
        width: 380px;
    }

    .nav{
        margin: 0 auto;
    }

    .skills__container{
        justify-content: center;
    }

    .projects__container,
    .testimonial__container{
        width: 400px;
    }

    .projects__container{
        overflow: hidden;
    }

    .projects__container .swiper-button-prev{
        left: 1rem;
    }

    .projects__container .swiper-button-next{
        right: 1rem;
    }
}

@media screen and (min-width: 767px){
    .home__container{
        grid-template-columns: 1fr 2fr 1fr;
    }

    .home__data{
        order: 2;
    }

    .home__info:nth-child(3){
        order: 3;
        text-align: right;
    }

    .home__info{
        margin-top: 10rem;
    }

    .home__info-description{
        padding-right: 0;
    }

    .profile__container{
        grid-template-columns: 1fr 2fr 1fr;
    }

    .profile__data{
        order: 2;
    }

    .profile__info:nth-child(3){
        order: 3;
        text-align: right;
    }

    .profile__info{
        margin-top: 10rem;
    }

    .profile__info-description{
        padding-right: 0;
    }

    .skills__container,
    .qualification__container,
    .government__container,
    .services__container,
    .contact__container{
        grid-template-columns: repeat(2, max-content);
    }

    .skills__container,
    .government__container,
    .services__container{
        column-gap: 5rem;
    }

    .qualification__container{
        justify-content: center;
        column-gap: 10rem;
    }

    .projects__container{
        width: 500px;
    }

    .contact__form{
        min-width: 360px;
    }

    .contact__container{
        justify-content: center;
        column-gap: 8rem;
    }

    .entry__form{
        min-width: 360px;
    }

    .entry__container{
        justify-content: center;
        column-gap: 8rem;
    }
}

@media screen and (max-width: 1024px) {
    .members__container{
        row-gap: 2rem;

        max-height: calc(100vh - 27rem);
        max-height: calc(100svh - 22rem);
        /*max-height: 40vh;*/
    }

    .members__filters{
        gap: 1rem;
    }

    /*.constitution__content textarea {*/
    /*    max-height: 450px;*/
    /*}*/

    /*.laws__content textarea {*/
    /*    max-height: 450px;*/
    /*}*/
}

/* For large devices */
@media screen and (min-width: 1024px) {
    .header{
        top: 0;
        bottom: initial;
        background-color: var(--body-color);
        /*transition: .4s;*/
    }

    .nav{
        width: initial;
        height: calc(var(--header-height) + 1.5rem);
        box-shadow: none;
        border-radius: 0;
        column-gap: 3rem;
        margin-inline: 1.5rem;
        padding: 0;
    }

    .nav__link i,
    .nav__toggle,
    .nav__close{
        display: none;
    }

    .nav__menu{
        width: initial;
        margin-left: auto;
        background-color: var(--body-color);
        /*transition: background .4s;*/
    }

    .nav__list{
        display: flex;
        column-gap: 3rem;
    }

    .nav__list{
        font-size: var(--normal-font-size);
    }

    .dark-theme .nav,
    .dark-theme .nav__menu{
        background-color: var(--body-color);
        box-shadow: none;
    }

    .nav__menu{
        background-color: var(--body-color);
        box-shadow: none;
    }

    .change-theme{
        color: var(--text-color-light);
    }

    .change-theme:hover{
        color: var(--title-color);
    }

    .section{
        padding-block: 6rem 0;
    }

    .home__title{
        font-size: 2.25rem;
    }

    .profile__title{
        font-size: 2.25rem;
    }

    .scrollup{
        right: 3rem;
    }

    .show-scroll{
        bottom: 5rem;
    }

    /*Change background header*/
    .bg-header{
        /*box-shadow: 0 4px 20px hsla(207, 24%, 35%, .1);*/
        /*top: -80px;*/
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 50%);
    }

    /*.dark-theme .bg-header{*/
    /*    !*box-shadow: 0 6px 24px hsla(207, 24%, 8%, .6);*!*/
    /*    box-shadow: 0px 0px 2px black;*/
    /*}*/

    .container{
        margin-inline: auto;
    }
}

@media screen and (min-width: 1024px){
    .section__border{
        padding-bottom: 6rem;
    }

    /*.section__subtitle{*/
    /*    margin-bottom: 5rem;*/
    /*}*/

    .home__title{
        font-size: var(--biggest-font-size);
    }

    .home__blob{
        width: 400px;
        height: 400px;
        /*height: 580px;*/
        border-radius: 12.5rem;
    }

    .home__blob video{
        width: 320px;
        height: 320px;
    }

    .home__blob img{
        width: 320px;
        height: 320px;
    }

    .profile__blob img{
        width: 320px;
        height: 320px;

        /*cursor: pointer;*/
    }

    .profile__blob video{
        width: 320px;
        height: 320px;
    }

    .home__perfil{
        width: 340px;
        height: 340px;
        /*height: 520px;*/
        border-radius: 10.6rem;
    }

    .home__perfil img{
        width: 500px;
    }

    .home__shape-waves{
        width: 100px;
        left: -4rem;
        /*top: 10rem;*/
        top: 5rem;
    }

    .home__shape-circle{
        width: 250px;
        bottom: -1rem;
        right: -5rem;
    }

    .home__data{
        row-gap: 2.5rem;
    }

    .home__community{
        column-gap: 2rem;
    }

    .home__community-link{
        font-size: 1.5rem;
    }

    .home__info{
        grid-template-rows: repeat(3, 130px);
        row-gap: 4rem;
        margin-top: 16rem;
    }

    .profile__title{
        font-size: var(--biggest-font-size);
    }

    .profile__blob{
        width: 400px;
        height: 400px;
        /*height: 580px;*/
        border-radius: 12.5rem;
    }

    .profile__perfil{
        width: 340px;
        height: 340px;
        /*height: 520px;*/
        border-radius: 10.6rem;
    }

    .profile__perfil img{
        width: 500px;
    }

    .profile__shape-waves{
        width: 100px;
        left: -4rem;
        /*top: 10rem;*/
        top: 5rem;
    }

    .profile__shape-circle{
        width: 250px;
        bottom: -1rem;
        right: -5rem;
    }

    .profile__data{
        row-gap: 2.5rem;
    }

    .profile__community{
        column-gap: 2rem;
    }

    .profile__community-link{
        font-size: 1.5rem;
    }

    .profile__info{
        grid-template-rows: repeat(3, 130px);
        row-gap: 4rem;
        margin-top: 16rem;
    }

    .skills__container{
        column-gap: 10rem;
    }

    .skills__title{
        margin-bottom: 3rem;
    }

    .skills__title{
        font-size: 1.25rem;
    }

    .skills__name{
        font-size: var(--normal-font-size);
    }

    .skills__info{
        gap: 3rem;
    }

    .qualification__container{
        column-gap: 14rem;
    }

    .qualification__title{
        margin-bottom: 3rem;
    }

    .qualification__title{
        font-size: 1.25rem;
    }

    .qualification__name{
        font-size: var(--h3-font-size);
    }

    .qualification__img{
        width: 300px;
        left: -6rem;
        right: 5rem;
    }

    .government__container{
        grid-template-columns: repeat(3, max-content);
    }

    .government__card{
        width: 245px;
        height: 345px;
        border-radius: 7.6rem;
        padding: 3.5rem 1.5rem;
    }

    .government__card > i{
        font-size: 2.5rem;
    }

    .government__border{
        width: 265px;
        height: 365px;
        border-radius: 8.25rem;
    }

    .services__container{
        grid-template-columns: repeat(3, max-content);
    }

    .services__card{
        width: 245px;
        height: 345px;
        border-radius: 7.6rem;
        padding: 3.5rem 1.5rem;
    }

    .services__card i{
        font-size: 2.5rem;
    }

    .services__border{
        width: 265px;
        height: 365px;
        border-radius: 8.25rem;
    }

    .projects__container{
        width: 1000px;
    }

    .projects__container .swiper-button-prev,
    .projects__container .swiper-button-next{
        font-size: 3rem;
    }

    .projects__container .swiper-button-prev{
        left: -1rem;
    }

    .projects__container .swiper-button-next{
        right: -1rem;
    }

    .projects__container .swiper-slide{
        margin-bottom: 6rem;
    }

    .projects__img{
        width: 320px;
        height: 175px;
        margin-bottom: 2rem;
    }

    .projects__project{
        max-width: 320px;
    }

    .testimonial__container{
        width: 566px;
    }

    .testimonial__container .swiper-button-prev,
    .testimonial__container .swiper-button-next{
        font-size: 2.5rem;
    }

    .testimonial__container .swiper-button-prev{
        left: calc(50% - 5rem);
    }

    .testimonial__container .swiper-button-next{
        right: calc(50% - 5rem);
    }

    .testimonial__container .swiper-slide{
        margin-bottom: 6rem;
    }

    .testimonial__description{
        font-size: var(--h2-font-size);
        margin-bottom: 2rem;
    }

    .testimonial__img{
        width: 200px;
        top: 13rem;
        right: 4rem;
    }

    .contact__title{
        margin-bottom: 3rem;
    }

    .contact__title i{
        font-size: 1.25rem;
    }

    .contact__info{
        row-gap: 3rem;
    }

    .contact__data-info{
        font-size: var(--normal-font-size);
    }

    .contact__form{
        row-gap: 2.5rem;
    }

    .footer__container{
        padding: 4rem 0 3rem;
    }

    .footer__list{
        column-gap: 3rem;
        margin: 3rem 0;
    }

    .footer__community{
        column-gap: 2rem;
    }

    .footer__community-link{
        font-size: 1.5rem;
    }

    .footer__copy{
        margin-top: 5rem;
    }
}