*{
	padding: 0;
	margin: 0;
	font-family: 'Arimo', sans-serif;
}

body{
    background: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

header{
	text-align: center;
}



nav{
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 25px 0;
}

nav a{
    padding: 0 35px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    transition: .2s;
}

nav a:hover{
	color: #fff;
	text-shadow: 0 0 8px #fff;
	transition: .2s;
}

.active{
	text-shadow: 0 0 8px #fff;
	font-weight: bold;
}

.top-block{
    margin: 0 auto;
    width: 75%;
    display: flex;
    justify-content: space-around;
}

.online{
    font-size: 0.7em;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    padding-top: 120px;
    flex-basis: 21%;
    width: 21%;
}

.online span{
    font-size: 1.4em;
    color: #fff;
    text-shadow: 0 0 8px #fff;
    font-weight: bold;
}

.logo{
    width: 100%;
    flex-basis: 100%;
}

.logo img{
    width: 98%;
}

main{
	text-align: center;
	min-height: 100%;
}

h1{
	font-weight: normal;
	color: #fff;
    font-size: 1.8em;
	text-transform: uppercase;
	margin: 10px 0 10px;
}

.donate-block{
	width: 75%;
	margin: 0 auto;
}

.donate-block input{
	width: 40%;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 5px;
    outline: none;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    margin: 20px 0;
}

.donate-block input::placeholder{
    color: #fff;
}

.donate-block select{
	width: 40%;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 5px;
    outline: none;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    text-align-last: center;
}

.donate-block button{
    font-size: 12px;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
    background: #3F51B5;
    transition: .2s;
}

.donate-block button:hover{
    box-shadow: 0 0 8px #3F51B5;
    transition: .2s;
}

footer{
    margin-top: 100px;
    padding: 10px 12.5%;
    display: flex;
    justify-content: start;
}

.name{
    color: #717171;
    font-size: 0.9em;
    flex-basis: 25%;
}

.name p{
    color: #fff;
    font-size: 1.25em;
    margin-bottom: 10px;
}

.links{
	flex-basis: 50%;
}

.links ul{
	display: flex;
	justify-content: space-around;
}

.links ul li{
	list-style-type: none;	
	line-height: 40px;
}

.links ul li a{
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
    letter-spacing: 2px;
    transition: .2s;
}

.links ul li a:hover{
	color: #fff;
	text-shadow: 0 0 8px #fff;
	transition: .2s;
}

@media screen and (max-width: 1300px) {
    .logo img {
        width: 100%;
    }

    .logo {
        width: 36%;
        flex-basis: 36%;
    }

    .online {
        font-size: 0.7em;
        letter-spacing: 2px;
        color: #fff;
        text-transform: uppercase;
        padding-top: 90px;
        flex-basis: 32%;
        width: 32%;
    }

    .donate-block input {
        width: 65%;
    }

    .donate-block select {
        width: 65%;
    }

}

@media screen and (max-width: 1023px) {
    .online{
        display: none;
    }

    .logo img {
        width: 70%;
    }

    .logo {
        width: 100%;
        flex-basis: 100%;
    }

    nav {
        width: 100%;
        justify-content: space-around;
    }

    nav a{
        padding: 0;
        font-size: 10px;
    }

    footer{
        background: transparent;
        height: 40px;
        overflow: hidden;
    }

    .name{
        color: transparent;
        flex-basis: 100%;
        text-align: center;
    }

    .links{
        display: none;
    }

    .donate-block input {
        width: 100%;
    }

    .donate-block select {
        width: 100%;
    }




    .payment-divider {
        margin: 30px 0 15px;
        text-align: center;
        position: relative;
        font-size: 14px;
        color: #aaa;
    }

    .payment-divider::before,
    .payment-divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 35%;
        height: 1px;
        background: rgba(255,255,255,.1);
    }

    .payment-divider::before {
        left: 0;
    }

    .payment-divider::after {
        right: 0;
    }

    .payment-banner {
        text-align: center;
        padding: 12px;
        background: rgba(255,255,255,0.03);
        border-radius: 14px;
    }

    .payment-banner img {
        max-width: 100%;
        width: 260px;
        border-radius: 12px;
        transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
        opacity: 0.92;
    }

    /* Hover эффект */
    .payment-banner img:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 12px 35px rgba(0,0,0,.5);
        opacity: 1;
    }

    /* Адаптация под мобилки */
    @media (max-width: 480px) {
        .payment-banner img {
            width: 100%;
        }
    }

}