@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700|Righteous");
*,
::before,
::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    /*overflow-x: hidden;*/
    line-height: 1.5;
    font: 400 100 "Montserrat", sans-serif;
    /*font: 400 62.5% "Montserrat", sans-serif;*/
    color: #21213d;
    /*background-image: url("../img/bg.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
}

.hidden {
    overflow: hidden;
}

.aside {
    padding: 1em;
    padding-bottom: 4.5em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}
@media (max-width: 991px) {
    .aside {
        flex-direction: row;
        padding-bottom: 1em;
        height: auto;
    }
}

.trigger {
    position: relative;
    z-index: 2;
}

.ham {
    width: 80px;
    cursor: pointer;
}
.ham .line {
    fill: none;
    stroke: #21213d;
    stroke-width: 4;
    stroke-linecap: square;
    transition: stroke-dasharray 400ms,  stroke-dashoffset 400ms;
}
.ham .line.top {
    stroke-dasharray: 40 172;
}
.ham .line.middle {
    stroke-dasharray: 40 111;
}
.ham .line.bottom {
    stroke-dasharray: 40 172;
}
.ham.active .top {
    stroke-dashoffset: -132px;
}
.ham.active .middle {
    stroke-dashoffset: -71px;
}
.ham.active .bottom {
    stroke-dashoffset: -132px;
}

.social {
    font-family: "Righteous", sans-serif;
}
.social ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
@media (max-width: 991px) {
    .social ul {
        display: flex;
    }
}
.social ul li {
    margin: 0.25em;
    padding: 1em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1rem;
}
@media (max-width: 991px) {
    .social ul li {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        /*display: none;*/
    }
}
.social ul li a {
    text-decoration: none;
    color: #21213d;
}
.social ul li a:hover {
    color: #de6227;
}

.title {
    position: relative;
    padding-bottom: 1.5em;
    height: 100%;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 2.3rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    user-select: none;
    pointer-evens: none;
}
@media (max-width: 991px) {
    .title {
        padding: 0 1.5em;
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
    }
}
.title h1 {
    position: relative;
    top: 0.5em;
    margin: auto;
    font-family: "Righteous", sans-serif;
}
.title h1 span {
    position: relative;
    top: -0.5em;
    left: 0.55em;
    z-index: -1;
    display: block;
    width: auto;
    color: transparent;
    background-image: linear-gradient(-90deg, #de6227, #c8305f);
    -webkit-background-clip: text;
    background-clip: text;
}

.content {
    position: relative;
    overflow: hidden;
    padding: 3em;
    padding-bottom: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    min-height: 100vh;
}
@media (max-width: 991px) {
    .content {
        padding: 1.5em;
    }
}
.content .about .sitename {
    font-family: "Righteous", sans-serif;
}
.content .about .sitename span {
    display: block;
}
.content .about .desc {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5em;
}
.donate-btn {
    padding: 5px;
    border: 0;
    border-radius: 0.35em;
    background-color: transparent;
    background-image: linear-gradient(-90deg, #de6227, #c8305f);
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.57, 0.21, 0.69, 3.25);
    will-change: transform;
}
.donate-btn:focus {
    outline: none;
}
.donate-btn span {
    display: block;
    padding: 1em 2em;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.15em;
    background-color: rgba(255, 255, 255, 0.9);
    color: #de6227;
}
.donate-btn:hover {
    transform: scale(0.95);
}
.donate-btn:hover span {
    background-color: transparent;
    color: white;
}
.content .concept {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
}
.content .concept .num {
    position: relative;
    margin: 0;
    line-height: 9.4rem;
    font-family: "Righteous", sans-serif;
    font-size: 12rem;
    color: transparent;
    background-image: linear-gradient(-90deg, #c8305f, #de6227);
    -webkit-background-clip: text;
    background-clip: text;
}
@media (max-width: 991px) {
    .content .concept .num {
        font-size: 6rem;
    }
}
.content .concept h2 {
    margin-bottom: 0;
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transform: translate(100%, -100%);
    transform-origin: 100% 0%;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #de6227;
    background-image: linear-gradient(-90deg, #c8305f, #de6227);
    border-bottom-left-radius: 40%;
    transition: transform 400ms linear,  border-radius 300ms 400ms ease;
}
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.menu ul li {
    position: relative;
    font-size: 4rem;
    color: white;
    transition: transform 200ms cubic-bezier(0.57, 0.21, 0.69, 3.25);
    cursor: pointer;
}
.menu ul li::before {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    z-index: -1;
    width: 0;
    height: 20%;
    content: "";
    background-color: white;
    opacity: 0.3;
    transition: all 400ms ease;
}
.menu ul li:hover {
    transform: translateX(10px);
}
.menu ul li:hover::before {
    width: 70%;
}
.menu.open {
    transform: translate(0, 0);
    border-bottom-left-radius: 20%;
}

.card-shadow-hover {
    text-align: center;
    border: 1px solid rgba(0,0,0,.05);
    padding: 15px;
    min-height: 350px;
    border-radius: 10px;
    transition: .3s;
}

.card-shadow-hover:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    margin-top: -15px;
    transition: .3s;
}

.card-shadow-hover img {
    width: 96px;
    height: 96px;
}

.card-shadow-hover h5 {
    font-weight: bolder;
}

.card-shadow-hover p {
    font-size: 16px;
}

.card-shadow-hover span {
    font-weight: 500;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.wrapper {
    max-width: 970px;
    margin: 0 auto 2rem;
}

.trigger {
    display: none;
}

.slider, .slider-wrapper {
    position: relative;
    height: 480px;
}

.slide {
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    overflow: hidden;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 5000;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

.slide-img {
    /*filter: brightness(50%);*/
    height: 100%;
    max-height: 480px;
    object-fit: fill;
    display: block;
    margin: 0 auto;
    width: 100%;
}

.slide-figure {
    height: 100%;
    position: relative;
    margin: 0;
}

.slide-caption {
    position: absolute;
    top: 70%;
    width: calc(100% - 1rem);
    transform: translateY(-70%);
    color: white;
}
.slide-caption:not(.slide-caption--left):not(.slide-caption--right) {
    text-align: center;
    left: 50%;
    transform: translate(-50%, -70%);
}

.slide-caption--taped p {
    display: inline;
    padding: .25rem .5rem;
    line-height: 1.75;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-caption--left {
    left: 1rem;
}

.slide-caption--right {
    right: 1rem;
    text-align: right;
}

.trigger:checked + .slide {
    z-index: 6000;
    opacity: 1;
}

.slider-nav {
    position: absolute;
    z-index: 7000;
    width: 100%;
    text-align: center;
    bottom: 1rem;
}

.slider-nav--left {
    text-align: left;
    padding-left: 1rem;
}

.slider-nav--right {
    text-align: right;
    padding-right: 1rem;
}

.slider-nav--offcanvas {
    position: static;
    margin: 1rem 0;
}

.slider-nav__item {
    display: inline-block;
}

.slider-nav__label {
    font-size: 13px;
    background-color: #333;
    display: block;
    height: 2em;
    line-height: 2em;
    width: 2em;
    text-align: center;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background-color .25s, color .25s ease-in-out;
}
.slider-nav__label:hover, .slider-nav__label:active, .slider-nav__label:focus {
    background-color: gray;
    color: black;
}

.slider-nav__label--invert {
    background-color: white;
    color: black;
}
.slider-nav__label--invert:hover, .slider-nav__label--invert:active, .slider-nav__label--invert:focus {
    background-color: black;
    color: white;
}

.slider-nav__label--dot {
    height: .75rem;
    width: .75rem;
    text-indent: -99999px;
    overflow: hidden;
}

@media only screen and (min-width: 1024px) {
    .slider, .slider-wrapper {
        height: 480px;
    }

    .slide-caption {
        width: 65%;
        font-size: 1.5rem;
    }
    .slide-caption p {
        padding: .5rem .75rem;
        line-height: 2.25;
    }

    .slide-caption--left {
        left: 2rem;
    }

    .slider-nav--left {
        padding-left: 2rem;
    }

    .slide-caption--right {
        right: 2rem;
    }

    .slider-nav--right {
        padding-right: 2rem;
    }
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
    .slider, .slider-wrapper {
        height: 360px;
    }

    .slide-caption {
        width: 75%;
        font-size: 1.25rem;
    }

    .slide-caption p {
        line-height: 2;
        padding: .35rem .65rem;
    }

    .slide-caption--left {
        left: 1.5rem;
    }

    .slider-nav--left {
        padding-left: 1.5rem;
    }

    .slide-caption--right {
        right: 1.5rem;
    }

    .slider-nav--right {
        padding-right: 1.5rem;
    }
}

@media only screen and (min-width: 768px) {
    .slide-img {
        width: 100%;
        height: 100%;
    }
}

.modal {
    z-index: 10000;
}

.modal-header {
    background-image: linear-gradient(-90deg, #de6227, #c8305f);
}

.table-header {
    background-image: linear-gradient(-90deg, #de6227, #c8305f);
}

.hr {
    background-image: linear-gradient(-90deg, #de6227, #c8305f);
    padding: 2px;
    width: 20%;
}

.rounded-lg {
    border-radius: 35px !important;
}