/* https://www.fontzillion.com/fonts/ayar-myanmar-unicode-group/ayar-juno */
@font-face {
    font-family: "Ayar";
    src: url(/fonts/ayar_juno.ttf) format("truetype");
}

*, *:after, *:before {
    box-sizing: border-box;
}

/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}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:none}table{border-collapse:collapse;border-spacing:0}a{text-decoration:none!important;}

/* *********************************************************
  Navigation
********************************************************* */

.navigation {
  position: relative;
  float: left;
  /*margin: 10px 0 0 0;*/
}

.navigation ul li {
  position: relative;
  display: inline;
  float: left;
}

.navigation a {
  font-size: 1em;
  display: block;
  margin: 0 5px;
  color: #fff;
  line-height: 100%;
}

.navigation .current a, .navigation ul li a:hover, .navigation ul li a:focus {
  color:#1abc9c;
}

.navigation li:hover > ul {
  visibility: visible;
  opacity: 1;
}

/* *********************************************************
  Loader
********************************************************* */

.loader-overlay {
  width: 100%;
  height: 100%;
  background: #ECF0F1;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 9999;
}

.loader {
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -75px;
  position: absolute;
  top: 50%;
  width: 150px;
}
.loader .bar {
  background-color: #69C98C;
  font-size: 0;
  height: 6px;
  border-radius: 3px;
  opacity: 0;
  width: 25px;
  -webkit-animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: subtleIn;
  -webkit-animation-timing-function: ease-in-out;
  display: inline-block;
}
.loader .bar:nth-child(1) {
  -webkit-animation-delay: 0s;
}
.loader .bar:nth-child(2) {
  background-color: #1abc9c;
  -webkit-animation-delay: .3s;
}
.loader .bar:nth-child(3) {
  background-color: #1AB4BC;
  -webkit-animation-delay: .6s;
}
.loader .bar:nth-child(4) {
  background-color: #1AA1BC;
  -webkit-animation-delay: .9s;
}
.loader .bar:nth-child(5) {
  background-color: #1A7EBC;
  -webkit-animation-delay: 1.2s;
}

@-webkit-keyframes subtleIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(300%);
    transform: translateY(300%);
  }

  30% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/****** ICONS *****/
i.fa-brands
{
    color: white;
    margin: 0 3px 0 3px;
    font-size: 25px;
    cursor: pointer;
}
i.fa-youtube:hover
{
    color: red;
    background: radial-gradient(white 50%, transparent 50%);
}
i.fa-tiktok:hover
{
    text-shadow: 2px 2px #ff3353fc,
                     -1px -1px cyan;
}
i.fa-facebook:hover
{
    color: #4267B2;
    background: radial-gradient(white 64%, transparent 36%);
}
i.fa-telegram:hover
{
    color: #229ED9;
    background: radial-gradient(white 60%, transparent 40%);
}
i.fa-instagram:hover
{
    color: #fff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    background-size: 85% 80%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 50%;
}

header {
  background: #000000CC;
  transition: all 0.5s;
  position: fixed;
  z-index: 1000;
  width: 100%;
  min-width: 350px;
  padding: 10px 0;
}

.header-content
{
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px 0px 10px;
}

header .menu
{
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}

header.active {
    background: #000000EE;
}

footer
{
    background-color: transparent !important;
    padding: 10px 0 40px !important;
    color: #ffffff;
}

.menu_burger {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    z-index:2;
    overflow: hidden;
    cursor: pointer;
}
.menu_burger span {
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    transition: all 0.5s;
}
.menu_burger span:nth-of-type(2) {
    top: calc(50% - 7px);
}
.menu_burger span:nth-of-type(3) {
    top: calc(50% + 7px);
}

.menu_burger.active span:nth-of-type(1) {
  display: none;
}
.menu_burger.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}
.menu_burger.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

div.logo-wrap
{
    display: flex !important;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

div.logo-wrap > img
{
    height: 50px;
}

div.logo-wrap > span
{
    padding-left: 10px;
    font-size: 30px;
    line-height: 100%;
    vertical-align: middle;
    color: white;
    font-family: 'Ayar', sans-serif;
    user-select: none;
    text-transform: uppercase;
}

.logo-text
{
    text-align: center;
    height: 50px;
}
.logo-text .name
{
    display: block;
    height: 28px;
    letter-spacing: 0px;
}
.logo-text .descr
{
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 20px;
    border-top: solid #fff 2px;
    display: block;
}

.logo-text .descr.ua
{
    letter-spacing: 1px;
}

.logo-text .descr.en
{
    letter-spacing: 0.5px;
}

html, body
{
    height: 100%;
    width: 100%;
    min-height: 500px;
    min-width: 350px;

    font-size: 1em;
    line-height: 1.7em;
}

div.header-filler
{
    flex-grow: 1;
}

div.language
{
    margin: 0 5px;
}
div.language a
{
    color: #ffffff;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

div.language a:hover, div.menu_language a:hover
{
  color:#1abc9c;
}

div.menu_language
{
    margin-top: 10px;
}

div.language a.active, div.menu_language a.active
{
    color: #1abc9c;
}

.bg-img
{
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/images/home.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -100;
}

.curveUpColor, .curveDownColor
{
    width: 100%;
    height: 100px;
    fill: #ffffffaa;
    position: absolute;
    left: 0;
}

.curveUpColor
{
    top: 0;
    margin-top: -100px;
}

.curveDownColor
{
    bottom: 0;
    margin-bottom: -100px;
}

#main-content
{
    background-color: #ffffffaa;
    width: 100%;
    position: relative;
    margin: 100px 0px;
}

#main-content a
{
    color: #0b6654;
    font-weight: bold;
}

footer a
{
    color: #1abc9c;
    font-weight: bold;
}

.section-id
{
    display: block;
    position: relative;
    top: -120px;
    /*visibility: hidden;*/
    /*border: 1px solid #f00;*/
}

.owl-carousel
{
    margin-bottom: 50px;
}

/* dirty trick to workaround bad width calculation
   somewhere deep in owl-carousel */
.owl-carousel .owl-stage
{
    max-height: 400px;
    overflow-y: hidden;
}

.owl-carousel .owl-item img
{
    display: block;
    width: auto;
    max-height: 400px;
}

div.navigation
{
    height: 100%;
    display: block;
}

.navigation a {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

div.menu_social
{
    display: none;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
}

div.menu_social > div, div.footer_social > div
{
    margin-left: 5px;
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    padding-bottom: 5px;
}

div.footer_social
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
}

div.menu_navigation
{
    display: block;
    margin-top: 10px;
}

div.menu_navigation a
{
    font-size: 18px;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    color: #ffffff;
}

div.menu_navigation .current a, .menu_navigation ul li a:hover, .menu_navigation ul li a:focus
{
    color: #1abc9c !important;
}

div.menu_navigation > ul
{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

div.menu_language
{
    font-size: 18px;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;

    display: none;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

div.menu_language a
{
    color: #ffffff;
}

.copyright {
    text-align: center;
    font-size: 18px;
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-weight: bold;
}

section
{
    text-align: center;
    color: #333333;
    padding: 0 30px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.section-donate
{
    text-align: left;
}
.section-donate red
{
    color: #ff0000;
}
section bold
{
    font-weight: bold;
}
.section-donate und
{
    text-decoration: underline;
}
.section-donate subtitle
{
    font-weight: bold;
    text-decoration: underline;
}

.section-contacts p
{
    font-size: medium;
}

.section-appreciations
{
    padding: 0 10px;
}

.section-appreciations .appreciations-list
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-appreciations a
{
    margin: 5px;
    display: block;
}
.section-appreciations img
{
    display: block;
}

.section-title
{
    margin: 40px 0 40px 0;
    font-size: 40px;
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    color: #2a2c2f;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

.intro-info
{
    text-align: center;
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-size: 16px;
    padding: 70px 0 50px 0;
    margin: 0 auto;
    max-width: 560px;
    box-sizing: border-box;
}

.intro-info p
{
    margin: 0 auto 10px auto;
    color: #fff;
    text-align: justify;
    text-indent: 30px;
}

.intro-info p.concept
{
    text-align: center;
    text-indent: 0;
    margin-bottom: 40px;
}

.intro-info h2
{
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    margin: 60px 0;
    text-transform: uppercase;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

.intro-info a
{
    margin-top: 20px;
}

.btn {
  position: relative;
  display: inline-block;
  padding: .5em 1.6em;
  color: #fff;
  font-size: .8em;
  border-radius: 30px;

  margin: 10px;
  border: 2px solid #fff;
  background: transparent;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

.btn:hover {
  color: #fff;
  background: #16a085;
  border-color: transparent;
  background-color:#1abc9c;
}

.btn-ghost {
}

.btn-ghost:hover {

}

@media handheld, only screen and (max-width: 800px) {
    div.logo-wrap
    {
        flex-grow: 1;
    }

    .intro-info
    {
        margin: 0 15%;
    }
}

@media handheld, only screen and (max-width: 500px) {
    .social, .navigation, .language {
        display: none !important;
    }

    div.menu_social.visible
    {
        display: flex !important;
    }

    div.menu_navigation, div.menu_language
    {
        display: none;
    }

    div.menu_navigation ul
    {
        flex-direction: column;
    }

    div.menu_navigation.visible
    {
        display: block;
    }

    div.menu_language.visible
    {
        display: flex;
    }

    .menu_burger
    {
        display: block;
    }

    #main-content
    {
        margin: 50px 0;
    }

    .curveUpColor
    {
        height: 50px;
        margin-top: -50px;
    }

    .curveDownColor
    {
        height: 50px;
        margin-bottom: -50px;
    }

    .owl-carousel .owl-item img
    {
        max-height: 250px;
    }

    .intro-info
    {
        margin: 0 10%;
    }

    .section-id
    {
        top: -80px;
    }
}