@font-face {
    font-family: 'OpenSans'; font-weight: normal;
    src: url('../files/fonts/OpenSans-Regular.ttf');
}
@font-face {
    font-family: 'Josefin Sans'; font-weight: normal;
    src: url('../files/fonts/JosefinSans-Regular.ttf');
}
@font-face {
    font-family: 'Josefin Sans'; font-weight: bold;
    src: url('../files/fonts/JosefinSans-Bold.ttf');
}
@font-face {
    font-family: 'Josefin Sans'; font-weight: 500;
    src: url('../files/fonts/JosefinSans-Medium.ttf');
}
@font-face {
    font-family: 'OpenSans'; font-weight: bold;
    src: url('../files/fonts/OpenSans-Bold.ttf');
}
@font-face {
    font-family: 'OpenSans'; font-weight: 100;
    src: url('../files/fonts/OpenSans-Light.ttf');
}
body, html {
    padding: 0; margin: 0;
    font-family: 'OpenSans', sans-serif; font-weight: normal; color: #2d2d2d; font-size: 18px; line-height: 1.6em;
    scroll-behavior: smooth;
    background-color: #f0f0f0;
}
.container {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
}
img {
    max-width: 100%;
}
.dark {
    background-color: #2d2d2d;
    color: #fff;
}
.white {
    background-color: #fff;
    color: #2d2d2d;
}
.flex {
    display: flex;
}
p {
    margin: 0 0 24px;
}
h1 {
    text-transform: uppercase;
}
.clear {
    clear: both;
    height: 0;
}

/* HEADER */
header {
    min-height: 156px; width: 100%;
    position: fixed; top: 0; left: 0; z-index: 10000;
    background-color: #fff;
    transition: all 0.6s ease;
}
header .container {
    height: 156px;
}
header a#burger {
    display: block;
    position: absolute; top: 63px; left: 0;
    width: 46px; height: 36px;
    background: url(../images/public/burger.png) no-repeat; background-size: cover;
    text-indent: -10000px;
}
header a#logo {
    position: absolute; top: 32px; left: 50%;
    width: 215px; height: 215px;
    margin: 0 0 0 -107px;
    transition: all 0.6s ease;
}
header a#logo img {
    max-height: 100%;
}
header nav ul {
    margin: 0; padding: 73px 0 0;
    display: flex;
}
header nav ul li {
    margin: 0; padding: 0;
    text-align: center;
    width: 50%; height: 50px;
    list-style: none;
}
header nav ul li a {
    color: #2d2d2d; text-decoration: none; font-size: 24px; font-weight: bold; font-family: 'Josefin Sans', sans-serif; text-transform: uppercase;
}
header nav ul li a:hover {
    color: #00a34a;
}
header nav ul li:hover ul {
    top: 0;
}
header nav ul ul {
    background-color: #fff;
    display: block;
    position: relative; top: -500px;
    width: 360px;
    margin: 0 auto; padding: 36px 0 12px;
    border-radius: 0 0 20px 20px;
    transition: all 0.5s ease;
}
header nav ul ul li {
    display: block;
    width: auto;
    margin: 0 0 12px;
}
header.small a#logo {
    height: 180px;
    top: 13px;
    margin-left: -90px
}
/* //HEADER */

/* MENU */
nav.main-menu {
    position: fixed; top: 0; left: -100%; z-index: 10000;
    width: 50%; height: 90%;
    padding: 5%;
    background-color: #1b191a;
    transition: all 0.6s ease;
}
nav.main-menu li {
    list-style: none;
}
nav.main-menu li.has-children {
    background: url(../images/public/faq-more.png) no-repeat right 11px; background-size: 32px;
}
nav.main-menu li.open {
    background-image: url(../images/public/faq-less.png);
}
nav.main-menu li:last-child a {
    border-bottom: none;
}
nav.main-menu li a {
    font-family: 'Josefin Sans', sans-serif;
    color: #fff; text-decoration: none; text-transform: uppercase; font-weight: bold; font-size: 22px; line-height: 54px;
    border-bottom: 2px solid #fff;
    display: block;
    transition: all 0.3s ease;
}
nav.main-menu li a:hover {
    color: #00a34a;
}
nav.main-menu a#close-menu {
    display: block;
    width: 64px; height: 64px;
    text-indent: -10000px;
    background: url(../images/public/close.png) no-repeat;
    position: absolute; top: 16px; left: 16px;
}
nav.main-menu li ul {
    margin: 10px 0 0 12px; padding: 0;
    display: none;
}
nav.main-menu li.open ul {
    display: block;
}
nav.main-menu li ul li a {
    text-transform: none; font-size: 18px; line-height: 32px; font-family: 'OpenSans', sans-serif; font-weight: normal;
    border-bottom: none;
}
/* //MENU */

/* SLIDER */
section.slider {
    height: 100vh;
    position: relative;
}
div.slide {
    height: 100%; width: 100%;
    background-size: cover; background-position: center center;
    position: absolute; top: 0; left: 0;
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 0;
}
div.first-slide {
    z-index: 100;
    opacity: 100;
}
div.slide p {
    padding: 300px 0 0; margin: 0 0 16px;
    font-size: 40px; font-weight: bold; font-family: 'Josefin Sans', sans-serif; text-transform: uppercase; color: #fff; line-height: 48px;
}
div.slide a {
    display: block; width: 475px; height: 148px;
    font-size: 38px; text-align: center; color: #fff; text-decoration: none; line-height: 148px;
    background: url(../images/public/slider-cta.png) no-repeat;
    transition: all 0.3s ease;
}
div.slide a:hover {
    background-image: url(../images/public/slider-cta-hover.png);
}
section.slider a#next-slide {
    display: block;
    width: 68px; height: 101px;
    text-indent: -10000px;
    background: url(../images/public/next-slide.png) no-repeat;
    position: absolute; right: 78px; top: 495px; z-index: 1000;
}
/* //SLIDER */

/* NUMBERS */
section.numbers {
    padding: 160px 0 160px;
    text-align: center;
    background-color: #f0f0f0;
}
section.numbers ul {
    display: flex;
    text-align: center;
    margin: 0 auto 140px; padding: 0;
    width: 1200px;
}
section.numbers ul li {
    list-style: none;
    margin: 0; padding: 0;
    width: 33%;
    font-size: 40px; font-family: 'Josefin Sans', sans-serif; text-transform: uppercase; font-weight: bold;
}
section.numbers ul li strong {
    display: block;
    font-size: 150px; color: #00a34a;
    margin: 0 0 48px;
}
section.numbers a.scroll-down {
    font-size: 28px; text-decoration: none; color: #2d2d2d; line-height: 34px;
    width: 360px;
    display: inline-block;
    background: url(../images/public/scroll-down.png) no-repeat center top;
    padding: 120px 0 0;
}
section.numbers a.scroll-down:hover {
    color: #00a34a;
}
/* //NUMBERS */

.section-home-about .container {
    padding-top: 50px;
}
.section-home-about .container iframe {
    height: 50vh!important;
}

/* HOME ANIMALS */
section#home-animals {
    text-align: center;
    padding: 111px 0 75px;
}
section#home-animals h2 {
    font-size: 40px; font-family: 'Josefin Sans', sans-serif; text-transform: uppercase; font-weight: bold;
    margin: 0 0 75px;
}
section.animals ul {
    display: flex;
    margin: 0 0 50px; padding: 0;
}
section.animals ul li {
    width: 33%;
    margin: 0; padding: 0 0 75px;
    list-style: none;
    font-size: 32px; font-family: 'Josefin Sans', sans-serif; text-transform: uppercase; font-weight: bold;
    background: url(../images/public/animal.png) no-repeat center bottom;
    transition: all 0.3s ease;
    position: relative;
}
section.animals ul li a {
    text-decoration: none; color: #fff;
    transition: all 0.3s ease;
}
section.animals ul li a:hover {
    color: #00a34a;
}
section.animals ul li:hover {
    background-image: url(../images/public/animal-hover.png);
}
section.animals  div.animal-picture {
    margin: 0 auto 32px;
    width: 320px; height: 320px;
    border-radius: 160px;
    overflow: hidden;
    display: inline-block;
    background-size: cover; background-position: center;
    position: relative;
    transition: all 0.3s ease;
}
section.animals li a:hover div.animal-picture::after {
    display: block;
    position: absolute; top: 0; left: 0;
    background-color: #00a34a; opacity: 0.5;
    width: 320px; height: 320px;
    border-radius: 160px;
    content: " ";
    transition: all 0.3s ease;
}
/* //HOME ANIMALS */

/* FOOTER */
footer {
    padding: 75px 0 0; margin: 190px 0 0;
    position: relative;
}
body.home footer {
    margin-top: 0;
}
body.home footer::before {
    display: none;
}
footer nav.footer-left, footer nav.footer-right {
    width: 50%;
}
footer nav.footer-left {
    background: url(../images/public/footer-contact.png) no-repeat left 36px;
}
footer nav.footer-right {
    background: url(../images/public/footer-faq.png) no-repeat right 36px;
}
footer nav.footer-left h2, footer nav.footer-right h2 {
    font-size: 24px; font-family: 'Josefin Sans', sans-serif; text-transform: uppercase; font-weight: bold;
    margin: 0 0 18px;
}
footer nav.footer-left ul, footer nav.footer-right ul {
    margin: 0; padding: 0;
}
footer nav.footer-left ul li, footer nav.footer-right ul li {
    margin: 0 0 14px; padding: 0;
    list-style: none;
    font-size: 18px; line-height: 29px;
}
footer nav.footer-left h2 {
    padding-left: 148px;
}
footer nav.footer-left ul li {
    padding-left: 148px;
}
footer nav.footer-right h2 {
    padding-right: 148px;
}
footer nav.footer-right ul li {
    padding-right: 148px;
}
footer nav.footer-left ul li a, footer nav.footer-right ul li a {
    color: #fff; text-decoration: none;
}
footer nav.footer-left ul li a:hover, footer nav.footer-right ul li a:hover {
    color: #00a34a;
}
footer nav.footer-right {
    text-align: right;
}
footer div.white {
    background-color: #fff;
    padding: 60px 0 0;
}
footer nav.footer-social {
    text-align: right;
    float: right;
}
footer nav.footer-social h2 {
    font-family: 'Josefin Sans', sans-serif; text-transform: uppercase; font-weight: bold; font-size: 21px;
}
footer nav.footer-social ul {
    margin: 0; padding: 0;
}
footer nav.footer-social ul li {
    margin: 0 0 0 27px; padding: 0;
    list-style: none;
    display: inline-block;
}
footer nav.footer-social ul li img {
    height: 32px;
}
footer div.container {
    padding: 0 0 50px;
}
footer p.copyright {
    font-size: 13px;
    padding: 74px 0 0; margin: 0;
}
footer p.copyright a {
    color: #00a34a;
}
/* //FOOTER */

/* CONTENT */
.content {
    margin: 156px 0 64px;
}
.no-banner {
    padding-top: 90px;
}
.content a {
    color: #00a34a;
}
.content div.banner {
    height: 500px; width: 100%;
    background-repeat: no-repeat; background-size: cover; background-position: center center;
    margin: 0 0 64px;
}
.content h1 {
    font-size: 40px; font-family: 'Josefin Sans', sans-serif; line-height: 48px;
}
.content h1 span {
    color: #00a34a;
}
.content h2 {
    font-size: 30px; font-family: 'OpenSans', sans-serif; color: #00a34a;
    margin: 48px 0 24px;
}
.content h3 {
    font-size: 24px; font-family: 'Josefin Sans', sans-serif;
    margin: 48px 0 0;
}
.content h4 {
    font-size: 20px; font-family: 'Josefin Sans', sans-serif;
    margin: 48px 0 0;
}
.content ol li, .content ul li {
    list-style: none;
    padding: 0 0 0 16px;
}
.content ol li:before, .content ul li:before {
    content: '✓';
    margin: 0 4px 0 -20px;
}
/* //CONTENT */

/* FAQ */
section.faq {
    padding: 150px 0 0;
}
section.faq h1 {
    font-size: 48px; font-family: 'Josefin Sans', sans-serif; font-weight: bold; color: #00a34a;
    display: inline-block;
    background: url(../images/public/faq-title.png) no-repeat right top;
    padding: 84px 100px 0 57px;
}
section.faq h2 {
    border-bottom: 1px solid #2d2d2d;
    line-height: 90px; text-transform: uppercase; font-family: 'Josefin Sans', sans-serif; font-weight: bold; font-size: 32px;
    padding: 0 0 0 58px; margin: 33px 0 30px;
}
section.faq h2 a {
    text-decoration: none; color: #2d2d2d;
    display: block;
    background: url(../images/public/faq-more.png) no-repeat 95% 27px; background-size: 32px;
}
section.faq h2 a.current {
    background-image: url(../images/public/faq-less.png);
}
section.faq h3 {
    line-height: 49px; font-family: 'OpenSans', sans-serif; font-weight: normal; font-size: 24px;
    margin: 33px 0 0; padding: 0 32px;
    background-color: #fff;
}
section.faq h3 a {
    text-decoration: none; color: #282828;
}
section.faq h3 a.active {
    color: #00a34a;
}
section.faq div.questions {
    display: none;
}
section.faq div.answer {
    display: none;
    background-color: #fff;
    padding: 32px 32px 8px;
}
section.faq div.answer a {
    color: #00a34a;
}
/* //FAQ */

/* CONTACT */
section.contact h1 {
    font-size: 40px; color: #282828; text-transform: uppercase; font-family: 'Josefin Sans', sans-serif;
    margin: 0 0 80px;
}
section.contact h1 span, section.contact h2 span {
    color: #00a34a;
}
section.contact h1 img {
    vertical-align: middle;
}
section.contact div.refuge {
    margin: 0 0 100px;
}
section.contact iframe {
    float: right;
}
section.contact h2 {
    text-transform: uppercase; font-size: 24px; font-family: 'Josefin Sans', sans-serif; color: #282828;
    margin: 0 0 64px;
}
section.contact h3, section.refuges h3 {
    text-transform: uppercase; font-size: 18px; font-family: 'Josefin Sans', sans-serif; color: #282828; line-height: 30px;
    margin: 0; padding: 0 0 0 34px;
    background: url(../images/public/contact-arrow.png) no-repeat left top; background-size: 16px;
}
section.contact p, section.refuges div.refuge p {
    margin: 0 0 28px; padding: 0 0 0 34px
}
section.contact a {
    color: #00a34a;
}
/* //CONTACT */

/* NEWS */
section.news, section.new {
    padding: 290px 0 0;
}
section.news h1 {
    text-transform: uppercase; font-size: 32px;
    margin: 0 0 10px;
}
section.news h1 span {
    color: #00a34a;
}
section.news div.news-left {
    width: 100%;
}
section.news a.new {
    position: relative;
    overflow: hidden;
    height: auto; width: 25%;
    margin: 0 20px 0 0; padding: 0;
    text-decoration: none;
}
section.news a.new img {
    position: static; top: 0; left: 0; z-index: 10;
    min-height: 100%;
    display: block;
}
section.news a.new span {
    position: absolute; bottom: 0; left: 0; z-index: 11;
    display: block;
    padding: 10px;
    color: #fff; text-decoration: none; text-transform: uppercase; font-size: 24px; font-family: 'Josefin Sans', sans-serif; font-weight: bold;
    background-color: #00a34a;
    transition: all 0.3s ease;
    /*text-shadow: 1px 1px 2px black;*/
}
section.news a.new:hover span {
    color: #00a34a;
    background-color: #fff;
}
section.news div.news-right {
    width: 100%;
    margin: 50px 0 0;
}
/* //NEWS */

/* ANIMALS */
form.filter {
    margin: 50px auto;
}
form.filter div.row {
    display: flex;
    margin: 0 0 24px;
}
form.filter div.field {
    width: 33%;
}
form.filter label {
    font-family: 'Josefin Sans', sans-serif; font-weight: bold; font-size: 24px; text-transform: uppercase;
    display: block;
}
form.filter select {
    width: 80%; height: 35px;
    line-height: 35px; font-size: 18px;
    padding: 0 18px;
}
form.filter select option {
    line-height: 35px; font-size: 18px;
}
form.filter input[type="submit"] {
    font-family: 'Josefin Sans', sans-serif; font-weight: bold; font-size: 24px; text-transform: uppercase; line-height: 40px;
    margin: 29px 0 0; padding: 0 0 0 44px;
    background: transparent url(../images/public/filter-submit.png) no-repeat left top;
    border: none;
    cursor: pointer;
}
form.filter div#cat-and-dogs {
    display: none;
}
form.filter div.full-field {
    width: 100%;
}
form.filter input[type="text"] {
    width: 56%; height: 35px;
    line-height: 35px; font-size: 18px;
    padding: 0 18px;
}
form.filter div.checkbox label {
    font-family: 'OpenSans', sans-serif; text-transform: none; font-size: 18px; font-weight: normal;
    display: inline-block;
}
form.filter div.checkbox input {
    margin: 0 36px 0 0;
    height: 20px; width: 20px;
    vertical-align: middle;
    border: 1px solid #00a34a;
}
section.animal-list .animal {
    float: left;
    margin:0 82px 82px 0;
    text-decoration: none;
    position: relative;
}
section.animal-list .first-animal {
    clear: left;
}
section.animal-list .last-animal {
    margin-right: 0;
}
section.animal-list .first-animal {
    clear: left;
}
section.animal-list .animal div.animal-picture {
    margin: 0 0 10px;
    width: 312px; height: 312px;
    border-radius: 161px; border: 10px solid #00a34a;
    overflow: hidden;
    display: inline-block;
    background-size: cover; background-position: center;
    position: relative;
}
section.animal-list .animal:hover div.animal-picture::after {
    display: block;
    position: absolute; top: -10px; left: -10px;
    background-color: #00a34a; opacity: 0.5;
    width: 332px; height: 332px;
    border-radius: 166px;
    content: " ";
    transition: all 0.3s ease;
}
section.animal-list .animal .animal-info {
    background-color: #fff;
    border: 3px solid #00a34a; border-radius: 57px;
    text-align: center;
    padding: 16px 20px 8px; margin: 0 auto;
    width: 272px;
}
section.animal-list .animal h2 {
    color: #00a34a; font-family: 'Josefin Sans', sans-serif; font-size: 28px;
    margin: 0 0 12px;
}
section.animal-list .animal ul {
    list-style: none;
    margin: 0; padding: 0;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 500; line-height: 20px;
}
section.animal-list .animal ul li {
    margin: 0;
    color: #2d2d2d;
}
section.animal-list .sponsor, section.animals ul li a .sponsor {
    position: absolute; top: 0; right: 0; z-index: 10;
    width: 86px; height: 86px;
    text-align: center; line-height: 86px;
}
section.animals ul li a .sponsor {
    right: 20px;
}
section.animal-list .sos, section.animals ul li a .sos {
    position: absolute; left: 0; right: 0; z-index: 10;
    background-color: #fff;
    border: 2px solid #00a34a; border-radius: 45px;
    width: 80px; height: 80px;
    text-align: center; line-height: 75px;
}
section.animals ul li a .sos {
    left: 20px;
}
section.animal-list .sos img, section.animals ul li a .sos img {
    vertical-align: middle;
    max-height: 51px;
}
section.animal div.banner {
    height: 800px;
    border-bottom: none;
    position: relative;
    text-align: center;
}
section.animal div.banner div.animal-name {
    display: inline-block;
    margin: 600px 0 0; padding: 16px 64px 10px;
    border: 3px solid #00a34a; border-radius: 43px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
}
section.animal div.banner div.animal-sos::before {
    display: inline-block;
    content: " ";
    width: 85px; height: 94px;
    background: url(../images/public/sos.png) no-repeat;
    margin: 0 0 0 -42px;
    position: absolute; top: 500px; left: 50%;
}
section.animal div.banner div.animal-name a.sponsor {
    display: inline-block;
    margin: 0 0 0 -32px;
    position: absolute; top: 500px; left: 50%;
}
section.animal div.banner div.animal-name h1 {
    font-size: 36px; color: #00a34a; line-height: 36px;
    margin: 0;
}
section.animal div.banner div.animal-name h2 {
    font-size: 15px; font-weight: normal; text-transform: uppercase; color: #2d2d2d;
    margin: 0;
}
section.animal div.animal-right {
    float: left;
    background-color: #00a34a;
    width: 475px;
    padding: 40px 55px; margin: 0 75px 50px 0;
    border-radius: 57px;
    position: relative;
}
section.animal div.animal-right p {
    color: #fff; line-height: 36px;
}
section.animal div.animal-left {
    position: relative; z-index: 8;
    float: left;
    margin: 0 0 50px;
    width: 500px;
}
section.animal div.animal-cta a.contact {
    display: inline-block;
    width: 324px; height: 103px;
    background: url(../images/public/contact-button.png) no-repeat;
    color: #fff; text-decoration: none; font-size: 32px; text-align: center; line-height: 103px;
    margin: 0 0 50px;
}
section.animal div.animal-left ul.list {
    padding: 0; margin: 40px 0 0;
}
section.animal div.animal-left ul.list li {
    list-style: none;
    padding: 0 0 0 40px; margin: 0 0 12px;
    font-size: 16px; text-transform: uppercase; font-family: 'Josefin Sans', sans-serif; line-height: 29px;
    background-repeat: no-repeat; background-position: left top;
}
section.animal div.animal-left ul.list li::before {
    display: none;
}
section.animal div.animal-left ul.list li.list-1 {
    background-image: url(../images/public/unknown.png);
}
section.animal div.animal-left ul.list li.list-2 {
    background-image: url(../images/public/yes.png);
}
section.animal div.animal-left ul.list li.list-3 {
    background-image: url(../images/public/no.png);
}
section.animal div.animal-left ul.list li.list-4 {
    background-image: url(../images/public/more-less.png);
}
section.animal div.animal-gallery ul {
    padding: 0; margin: 0 0 60px;
    height: 620px;
}
section.animal div.animal-gallery ul li {
    display: inline-block;
    width: 210px; height: 210px;
    list-style: none;
    padding: 0; margin: 0 30px 0 0;
    background-size: cover; background-position: center center;
    border-radius: 105px; border: 3px solid #00a34a;
    transition: all 0.3s ease;
    vertical-align: middle;
}
section.animal div.animal-gallery ul li::before {
    display: none;
}
section.animal div.animal-gallery ul li.active {
    width: 620px; height: 620px;
    border-radius: 310px;
}
section.animal div.animal-cta {
    text-align: center;
}
section.animal div.animal-right div.icons {
    position: absolute; right: 12px; top: -43px;
}
section.animal div.animal-right div.icons .sponsor {
    width: 86px; height: 86px;
    text-align: center; line-height: 86px;
    display: inline-block;
    margin-left: 5px;
}
section.animal div.animal-right div.icons .sos {
    background-color: #fff;
    border: 2px solid #00a34a; border-radius: 45px;
    width: 80px; height: 80px;
    text-align: center; line-height: 75px;
    display: inline-block;
}
section.animal div.animal-right div.icons .sos img {
    vertical-align: middle;
    max-height: 51px;
}
section.animal div.animal-right div.icons .sponsor img {
    vertical-align: middle;
}
/* //ANIMALS */

/* STICKY DONATION */
#sticky-donation {
    position: fixed; right: 0; bottom: 100px; z-index: 1000;
    background-color: #00a34a;
    border-radius: 55px 0 0 55px; border: 2px solid #2d2d2d; border-right: none;
    padding: 20px 40px;
    width: 120px;
    color: #fff; text-decoration: none; text-transform: uppercase; font-size: 12px; font-family: 'Josefin Sans', sans-serif; line-height: 24px; font-weight: bold;
    transition: all 0.3s ease;
}
#sticky-donation:hover {
    background-color: #fff;
    color: #00a34a;
}
#sticky-donation span {
    display: block;
}
/* //STICKY DONATION */

/* VOLUNTEER */
form.volunteer div.field {
    margin: 0 0 16px;
}
form.volunteer label {
    display: block;
}
form.volunteer label span {
    color: red;
}
form.volunteer input[type="text"], form.volunteer input[type="number"] {
    width: 98%; height: 36px;
    padding: 0 1%;
    border-radius: 5px; border: 1px solid #1b191a;
    font-family: 'OpenSans', sans-serif; font-size: 18px; line-height: 36px; 
}
form.volunteer ul {
    margin: 0; padding: 0;
}
form.volunteer ul li {
    margin: 0; padding: 0;
    list-style: none;
}
form.volunteer label.radio {
    display: inline;
    font-size: 16px;
}
form.volunteer textarea {
    width: 98%; height: 128px;
    padding: 0 1%;
    border-radius: 5px; border: 1px solid #1b191a;
    font-family: 'OpenSans', sans-serif; font-size: 18px; line-height: 36px;
}
form.volunteer input[type="submit"] {
    border-radius: 20px; border: 1px solid #00a34a;
    background-color: #00a34a;
    color: #fff; font-weight: bold; text-transform: uppercase; font-size: 24px; font-family: 'Josefin Sans', sans-serif; line-height: 48px;
    cursor: pointer;
    padding: 3px 16px 0;
}
form.volunteer input[type="submit"]:hover {
    background-color: #fff;
    color: #00a34a;
}
form.volunteer p.success-message {
    color: #00a34a; font-weight: bold;
}
form.volunteer p.error-message {
    color: red; font-weight: bold;
    padding: 200px 0 0;
}
form.volunteer input.error,
form.volunteer textarea.error {
    border-color: red;
    background-color: #ffdcdc;
}
form.volunteer div.error label.radio {
    color: red;
}
/* //VOLUNTEER */

/* REFUGES */
section.refuges ul {
    display: flex;
}
section.refuges ul li {
    width: 320px; height: 320px;
    overflow: hidden;
    border-radius: 160px;
    background-size: cover; background-position: center;
    margin: 0 0 100px 100px;
}
section.refuges ul li:first-child {
    margin-left: 0;
}
section.refuges ul li a {
    display: block;
    width: 100%; height: 100%;
    text-align: center; line-height: 320px;
}
section.refuges ul li a span {
    display: none;
    font-size: 19px; color: #fff; text-transform: uppercase; font-family: 'Josefin Sans', sans-serif; line-height: 78px; font-weight: bold;
    background: url(../images/public/refuge-name.png) no-repeat;
    width: 251px; height: 78px;
}
section.refuges ul li a:hover span {
    display: inline-block;
}
section.refuges div.content {
    margin-top: 0;
}
section.refuges div.refuges-content {
    display: none;
}
/* //REFUGES */

/* TEAM */
section.team div.refuges {
    display: flex;
    text-align: center;
    margin: 75px 0 100px;
}
section.team div.refuges a.refuge:first-child {
    width: 29%;
}
section.team div.refuges a.refuge:last-child {
    width: 29%;
}
section.team div.refuges a.refuge {
    display: block;
    width: 42%;
    text-align: center;
    text-decoration: none;
}
section.team div.refuges a.refuge span {
    display: inline-block;
    line-height: 52px;
    background-color: #fff;
    width: 240px;
    border: 3px solid #00a34a; border-radius: 25px;
    color: #00a34a; text-transform: uppercase; font-weight: bold; font-family: 'Josefin Sans', sans-serif; font-size: 18px; text-decoration: none;
    transition: all 0.3s ease;
}
section.team div.refuges a.current-refuge span,
section.team div.refuges a.refuge:hover span {
    background-color: #00a34a;
    color: #fff;
}
section.team .refuge-team {
    display: none;
}
section.team .refuge-team:first-child {
    display: block;
}
section.team .worker {
    float: left;
    margin:0 82px 82px 0;
    text-decoration: none;
}
section.team .last-worker {
    margin-right: 0;
}
section.team .worker div.worker-picture {
    margin: 0 0 10px;
    width: 312px; height: 312px;
    border-radius: 161px; border: 10px solid #00a34a;
    overflow: hidden;
    display: inline-block;
    background-size: cover; background-position: center;
    position: relative;
}
section.team .worker .worker-info {
    background-color: #fff;
    border: 3px solid #00a34a; border-radius: 57px;
    text-align: center;
    padding: 16px 0 8px; margin: 0 auto;
    width: 240px;
}
section.team .worker h2 {
    color: #00a34a; font-family: 'Josefin Sans', sans-serif; font-size: 23px; text-transform: uppercase;
    margin: 0;
}
section.team .worker p {
    font-size: 12px; font-family: 'Josefin Sans', sans-serif; text-transform: uppercase;
    margin: 0;
}
/* //TEAM */

/* PRICES */
ul.prices {
    margin: 0; padding: 0;
}
ul.prices li {
    display: inline-block;
    width: 266px; height: 66px;
    border: 3px solid #00a34a; border-radius: 45px;
    background-color: #fff;
    text-align: center; font-family: 'Josefin Sans', sans-serif; font-size: 18px; font-weight: bold; text-transform: uppercase;
    margin: 0 0 19px 19px; padding: 12px 0;
}
ul.prices li strong {
    color: #00a34a; font-size: 31px; line-height: 38px;
}
ul.prices li:nth-child(4n+1) {
    margin-left: 0;
}
ul.prices li:before {
    display: none;
}
/* PRICES */

/* FLASH */
div#flash {
    background-color: #00a34a;
    text-align: center; color: #fff; font-size: 18px;
    padding: 16px 0;
}
div#flash * {
    margin: 0;
}
div#flash a {
    color: #fff;
}
/* //FLASH */

ul.language {
    position: absolute; right: 0; top: 10px;
    margin: 0; padding: 0;
    list-style: none;
}
ul.language li {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif; font-weight: bold; font-size: 18px;
    margin: 0 6px 0 0; padding: 0;
}
ul.language li::before {
    content:" - ";
}
ul.language li:last-child {
    margin-right: 0;
}
ul.language li:first-child::before {
    content: "";
}
ul.language li a {
    color: #2d2d2d; text-decoration: none;
}
ul.language li a:hover {
    color: #00a34a;
}

/* LIGHTBOX */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}
/* //LIGHTBOX */