* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Arimo', sans-serif; }

a { color: #ad4000; text-decoration: none; transition: .3s color; }
a:hover { color: #fa8e12; }

h2 { font-size: 27px; margin: 1em 0; }

p {
	font-size: 16px;
	line-height: 1.5;
	margin: 1em 0;
}

.wrapper {
	margin: 0 auto;
	max-width: 1800px;
	width: 80%;
}

.social-icons {  }
.social-icons a {
	background: url(/i/sc-icons.png) no-repeat;
	border: none;
	border-radius: 50%;
	display: inline-block;
	height: 30px;
	margin-left: 5px;
	width: 30px;
	transition: 1s all;
	}

.social-icons a.fb { background-position: -30px 0; }
.social-icons a.ok { background-position: -60px 0; }
.social-icons a.tw { background-position: -90px 0; }
.social-icons a.ig { background-position: -120px 0; }
.social-icons a.yt { background-position: -150px 0; }
.social-icons a.tg { background-position: -180px 0; }
.social-icons a.dg { background-position: -210px 0; }

form { margin: 1em 0; }
input { font-family: 'Arimo', sans-serif; }

input[type=text],
input[type=email],
input[type=number],
input[type=tel],
select,
textarea {
	border-radius: 2px;
	border: 1px solid #aaa;
	font-size: 16px;
	margin: 0;
	outline: none;
	padding: .5em 0.75em .4em;
	width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus { border-color: #777; }

input[type=submit] {
	background-color: #ed6a1d;
	border: none;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	padding: .7em 1.2em .6em;
}

header {
	align-items: center;
	background: url(/i/header.jpg);
	background-position: center;
	background-size: cover;
	display: flex;
	min-height: 20vh;
	padding: 1em 0;
}

header .wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

header .logo {
	align-items: center;
	color: #fff;
	display: flex;
	text-decoration: none;
}
header .logo > div {
	background: url(/i/logo.svg) no-repeat;
	background-size: contain;
	flex-basis: 100px;
	height: 90px;
	width: 90px;
}
header .logo > span { font-size: 15px; }


footer { margin-top: 5vh; }
footer .wrapper {
	align-items: center;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	min-height: 12vh;
}
footer p {
	color: #777;
	font-size: 14px;
	margin: .25em 0;
}


.main {
	display: flex;
	justify-content: space-between;
	margin-top: 5vh;
}

.main .main-text { flex-basis: 35%; }
.main .main-text h2 {
	font-size: 4vw;
	margin: 0 0 .5em;
}
.main .main-text p { font-size: 1vw; }
.main .main-text p.more { font-size: 90%; line-height: 1.2; }
.main .main-text p.more a { text-decoration: none; }

.main .main-form { flex-basis: 55%; }

@media screen and (max-width: 1500px) {
	.main .main-text p { font-size: 1.2vw; }
}

@media screen and (max-width: 1200px) {
	.main .main-text p { font-size: 1.4vw; }
}

@media screen and (max-width: 1000px) {
	.main { flex-wrap: wrap; margin-top: 2vh; }

	.main .main-text,
	.main .main-form { flex-basis: 100%; }
	.main .main-text h2 { font-size: 5vw; }
	.main .main-text p { font-size: 1.75vw; }
}

.donate-form { max-width: 800px; }
.donate-form > div { margin-bottom: 1em; }
.donate-form > div:last-child { margin-top: 2em; }
.donate-form .payment-type > div,
.donate-form .payment-sum > div {
	display: flex;
	margin: .4em 0;
}

.donate-form .payment-sum div label,
.donate-form .payment-type div label {
	background: #fff;
	border-radius: 4px;
	border: 1px solid #ddd;
	color: #777;
	cursor: pointer;
	font-size: 21px;
	line-height: 1;
	margin-right: 5px;
	padding: 0.6em 1em;
	position: relative;
	transition: .3s all;
}
.donate-form .payment-sum div label:hover,
.donate-form .payment-type div label:hover { border-color: #ccc; }
.donate-form .payment-sum div label.active,
.donate-form .payment-type div label.active {
	background: #f0821c;
	border-color: #f0821c;
	box-shadow: 0 4px 8px #ffcf9d;
	color: #fff;
	cursor: default;
}

.donate-form .payment-type input[type=radio],
.donate-form .payment-sum input[type=radio] {
	cursor: pointer;
	opacity: 0;
	position: absolute;
}


.donate-form input[type=text],
.donate-form input[type=email],
.donate-form input[type=tel],
.donate-form select {
	font-size: 17px;
	max-width: 300px;
	padding: .65em .75em .5em;
}

.donate-form .er { color: #e36f6f; margin-left: .5em; }

.donate-form .payment-sum input[type=number] {
	border: none;
	background: none;
	font-size: 17px;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.donate-form .payment-sum #custom_sum_label { width: 130px; }
.donate-form .payment-sum #custom_sum_label span {
	align-items: center;
	display: flex;
	height: 100%;
	font-size: 15px;
	justify-content: center;
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
	white-space: nowrap;
}
.donate-form .payment-sum #custom_sum_input { color: #777; margin: 0; padding-left: 1em; }
.donate-form .payment-sum #custom_sum_label.active span,
.donate-form .payment-sum #custom_sum_label.active #custom_sum_input { color: #fff; }

.donate-form .monthly,
.donate-form .agree { margin: 2em 0; }
.donate-form .monthly label { font-size: 18px; }
.donate-form .monthly p { color: #666; display: none; margin-top: .2em; }

.donate-form input[type=submit] { 
	background-image: url(/i/hearts.png);
	background-position: 12px center;
	background-size: auto 40%;
	background-repeat: no-repeat;
	padding-left: 48px;
}



.file.file-pdf { background: url('/i/file-pdf.png') 0 0 no-repeat; }

.file {
	color: #777;
	font-size: 14px;
	line-height: 1;
	margin: 2em 0 1em;
	min-height: 50px;
	padding: 6px 0 0 45px;
}

.file a {
	font-size: 17px;
	position: relative;
	top: -4px;
}