@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka/Silka-Regular.otf");
}
@font-face {
    font-family: "RobotoSlab";
    src: url("../fonts/RobotoSlab/RobotoSlab-Regular.ttf") format("ttf");
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}




body {
    font-family: Silka;
}

header {
    top: 0;
    width: 100%;
    height: 174px;
    background-image: url("../images/png/header-bg@2x.png");
}

.header-bar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 46px);
    padding: 23px 28px;
}

.header-bar .icon-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30%;
}

.header-bar .icon-nav .icon {
    height: 29px;
    width: 100px;
    z-index: 3;
}

.header-bar .icon-nav .icon img{
    width: 100%;
    height: 100%;
}

.title {
    position: relative;
    color: #ffffff;
}

.title h1 {
    font-size: 35px;
}

.title-desktop {
    display: none;
}

#menuToggle {
    display: block;
    -webkit-user-select: none;
    user-select: none;
    z-index: 3;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 30px;
    position: absolute;
    cursor: pointer;
    right: 25px;
    opacity: 0;
    z-index: 4;
    margin: 0;
    -webkit-touch-callout: none;
}

#menuToggle span {
    margin-top: 5px;
    z-index: 3;
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #f8bb65;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-8px, 8px);
    background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(-12px, -4px);
}

#menu {
    position: fixed;
    text-align: center;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 90%;
    background: rgba(26, 98, 50, 0.95);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(0, -100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.menu-element-wrapper {
    display: flex;
    min-width: 215px;
    flex-direction: column;
    align-items: center;
}

.menu-element {
    padding-top: 40px;
}

.menu-element a{
    color: #ffffff;
    font-size: 19px;
    text-decoration: none;
}

.menu-element a:hover{
    opacity: .8;
}

#menuToggle input:checked ~ ul {
    transform: none;
}

.nav-element {
    display: none;
}

.login {
        display: block;
    } 
.login:hover {
        cursor: pointer;
        opacity: .8;
    }

    .nav-elements .login .login-btn {
        border-radius: 19.5px;
        border: solid 1px #ffffff;
        background-color: rgba(0, 0, 0, 0.19);
        height: 38px;
        width: 191px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-elements .login a {
        color: #f8bb65;
        text-decoration: none;
        padding-left: 7px;
    }

.car-element, .nav-menu {
    display: block;
}

.car-element {
    margin-right: 34px;
}

.nav-elements {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.car-element:hover {
    opacity: .8;
    cursor: pointer;
}

.car-element {
    width: 40px;
}

.car-element-icon {
    width: 32px;
    height: 32px;
    position: relative;
    top: 10px;
}

.car-element-icon img {
    width: 100%;
    height: 100%;
}

.car-element-notifications-icon {
    width: 18px;
    height: 18px;
    box-shadow: 0 4px 8px 0 rgba(21, 133, 43, 0.17);
    background-color: #34ba61;
    border-radius: 25px;
    position: relative;
    top: -31px;
    left: 21px;
    text-align: center;
}

.car-element-notifications-icon p {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    padding-top: 3px;
}


.main {
    height: 100%;
    width: 100%;
    background: #f4f4f4;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 33px 28px 25px 28px;
    min-height: calc(100vh - 276px);
}

.first-image {
    width: 319px;
    height: 114px;
    border-radius: 20px;
}

.first-image img {
    width: 100%;
    height: 100%;
}

.text-secction-mobile {
    margin-top: 36px;
    text-align: left;
}

.text-secction-mobile h2 {
    color: #606060;
    font-size: 16px;
    font-weight: bold;
}

.text-secction-mobile p {
    color: #606060;
    padding-top: 5px;
}

.text-secction-mobile a {
    text-decoration: none;
    margin-top: 13px;
    color: #004bff;
    font-size: 14px;
    opacity: .5;
}

.text-secction-mobile a:hover {
    opacity: .8;
    cursor: pointer;
}

.text-secction-desktop-first-text, .text-secction-desktop-second-text {
    display: none;
}

.donations-secction {
    margin-top: 27px;
    text-align: left;
    max-width: 297px;
    height: 445px;
    width: 100%;
    border-radius: 20px;
    background-color: #fff;
    font-family: RobotoSlab;
    padding-left: 12px;
    padding-right: 10px;
}

.donations-secction-desktop {
    display: none;
}

.activity-heading {
    font-weight: bold; 
    color: #34ba61;
}

.activity {
    margin-top: 10px;
}

.donations-secction h3 {
    color: #34ba61;
    font-size: 13px;
    font-weight: bold;
    padding-top: 26px;
}

.donation-line {
    display: block;
    width: 10.2px;
    height: 2px;
    position: relative;
    background: #d8d8d8;
    margin-top: 5px;
}

.donation-list {
    padding-top: 18px;
    height: 309px;
}

.donation-element {
    display: flex;
    padding-top: 5px;
}

.donation-element p {
    font-size: 13px;
    color: #606060;
}

.donation-element p:first-child {
    font-weight: bold;
}

.last-image {
    width: 319px;
    height: 271px;
    border-radius: 20px;
    margin-top: 46px;
}

.last-image img {
    width: 100%;
    height: 100%;
}

.cta-button {
    border-radius: 19.5px;
    box-shadow: 0 4px 8px 0 rgba(21, 133, 43, 0.11);
    background-color: #34ba61;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    padding: 10px 77px;
    margin-top: 26px;
}

.cta-button-disabled {
    border-radius: 19.5px;
    box-shadow: 0 4px 8px 0 rgba(21, 133, 43, 0.11);
    background-color: #999;
    display: inline-block;
    padding: 13px 28px;
    pointer-events: none;
    font-size: 12px;
    color: white;
    text-decoration: none;
}

.cta-button a{
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
}

footer {
    display: none;
}

/* The Modal (background) */
.modal-wrapper {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.7)
}

/* Modal Content */
.modal {
    position: relative;
    margin: auto;
    padding: 0;
    max-width: 1200px;
    border-radius: 20px; 
    background-color: #ffffff;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.5);
    width: 750px;
    margin-top: 150px;
}

/* Hide the slides by default */
.mySlides {
    display: none;
    padding: 40px;
}


.modal-content{
    top: 40px;
}

.modal-heading{
    font-family: Silka;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #34ba61;
}

.modal-text {
    font-family: Silka;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #606060;  
    margin-top: 30px;
}
  
  /* The Close Button */
.close {
    color: white;
    position: absolute;
    right: 25px;
    top: 0px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}


.active,
.demo:hover {
    opacity: 1;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (min-width: 600px){

    .login-mobile{
        display: none;
    }

    header {
        top: 0;
        width: 100%;
        height: 303px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-bar {
        height: calc(100% - 71px);
        padding: 46px 135px 24px 135px;
        max-width: 1170px;
        width: calc(100% - 270px);
    }

    .title h1 {
        font-size: 50px;
    }

    .title-mobile {
        display: none;
    }

    .title-desktop {
        display: block;
    }

    #menuToggle {
        display: none;
    }

    .header-bar .icon-nav .icon {
        height: 38px;
        width: 130px;
    }

    .nav-elements .nav-element {
        margin-right: 30px;
    }

    .nav-element {
        display: block;
    }

    nav .nav-elements {
        list-style: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .nav-element a {
        text-decoration: none;
        font-size: 14px;
        color: #ffffff;
    }

    .profile-element {
        /* min-width: 150px; */
        display: flex;
        align-items: center;
    }

    .profile-element-icon {
        display: inline-block;
        height: 44px;
        width: 44px;
        background: #f8bb65;
        border-radius: 25px;
    }

    .profile-element-icon p{
        font-size: 14px;
        font-weight: bold;
        color: #675648;
        width: 22px;
        height: 17px;
        position: relative;
        left: 11px;
        top: 16px;
    }

    .profile-element > a {
        position: relative;
        margin-left: 9px;
    }

    .profile-element i {
        margin-left: 8px;
    }

    .profile-element:hover, .profile-button:hover, .nav-element:hover{
        /* opacity: .8; */
        cursor: pointer;
    }

    .profile-element-dropwdown-menu {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 110px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        margin-top: 63px;
        border-radius: 5px;
    }

    .triangle {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent #f1f1f1 transparent;
        position: absolute;
        right: 8px;
        top: -9px;
    }

    .profile-element-dropwdown-menu a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border-radius: 5px;
    }

    .profile-element-dropwdown-menu a:hover {
        background-color: #ddd;
    }

    .profile-element:hover .profile-element-dropwdown-menu {
        display: block;
    }

    .car-element {
        width: 40px;
    }

    .car-element-icon {
        width: 40px;
        height: 40px;
        top: 10px;
    }

    .car-element-notifications-icon {
        width: 22px;
        height: 22px;
        top: -40px;
        left: 30px;
    }

    .car-element-notifications-icon p {
        font-size: 14px;
        padding-top: 5px;
    }

    .main-content {
       padding: 41px 135px 74px 135px; 
    }

    .text-secction-mobile {
        display: none;
    }

    .principal-secction {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-self: flex-start;
        max-height: 1154px;
        max-width: 563px;
        width: 47%;
        margin-top: 60px;
    }

    .text-secction-desktop-first-text {
        display: block;
        font-family: RobotoSlab;
        font-size: 13px;
        max-width: 541px;
        width: 100%;
        height: 179px;
        color: #606060;
    }

    .text-secction-desktop-second-text {
        display: block;
    }

    .text-secction-desktop-first-text p:last-child{
        margin-top: 25px;
    }

    .text-secction-desktop-second-text {
        font-size: 13px;
        font-family: RobotoSlab;
        max-width: 541px;
        width: 100%;
        height: 1154px;
        padding-left: 66px;
        order: 3;
    }

    .text-secction-desktop-second-text p {
        color: #606060;
        margin-bottom: 25px;
    }

    .text-secction-desktop-second-text h2 {
        font-weight: bold;
        margin-bottom: 25px;
        color: #606060;
    }

    .text-secction-desktop-second-text h3 {
        color: #34ba61;
        margin-bottom: 25px;
    }

    .donations-secction-mobile {
        display: none;
    }

    .donations-secction-desktop {
        display: block;
    }

    .donations-secction {
        margin-top: 46px;
        max-width:calc(563px - 22px);
        width: calc(100% - 22px);
        height: 404px;
        order: 2;
    }

    .donation-line {
        width: 22px;
    }

    .first-image {
        max-width: 1170px;
        width: 100%;
        height: 375px;
    }

    .last-image {
        order: 1;
        max-width: 563px;
        width: 100%;
        height: 402px;
        margin: 0;
    }

    /*Footer*/

    footer {
        display: block;
        bottom: 0;
        width: 100%;
        height: 152px;
        background-color: #000000;
    }

    .footer-contanct {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 37px 134px 0 139px;
    }

    .footer-sammel-icon {
        width: 36.2px;
        height: 35.6px;
        display: inline-block;
        margin-right: 26px;
    }

    .footer-iugo-icon {
        width: 91.2px;
        height: 24.3px;
        display: inline-block;
    }

    .footer-icon {
        display: flex;
        align-items: center;
    }

    .footer-icon img {
        width: 100%;
        height: 100%;
    }

    .contact-elements {
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .contact-element {
        padding-right: 10px;
    }

    .contact-element a{
        text-decoration: none;
        padding-left: 7px;
        color: #ffffff;
    }

    .contact-element a:hover{
        opacity: .8;
    }

    /*fin footer*/
}

@media (max-width: 600px){

    .login {
        display: none;
    }

    header {
        height: 90px;
    }
    
    .header-bar {
        justify-content: center;
    }

    .title {
        display: none;
    }

    .mobile-menu{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.social-media{
    width: 32px;
    height: 32px;
}

