@font-face {
  font-family: 'Lato-Regular';
  src: url("fonts/Lato-Regular.ttf") format("truetype");
}
html {
    overflow-x: hidden;
}
#wrapper {
    -moz-transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    position: static;
    z-index: 1;
    overflow: hidden;
}
#wrapper > .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #212931;
    background-image: url(./images/blik.png), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(./images/bg.jpg);
    background-size: auto,	auto,	100% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll,	scroll,	scroll;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
    animation: fade-in 2s ease;
    -webkit-animation-name: anim; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
    animation-name: anim;
    animation-duration: 2s;
}
@-webkit-keyframes anim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
   /* Standard syntax */
@keyframes anim {
    0% 
    {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#intro {
    color: #ffffff;
    padding: 15rem 0rem 5rem 0rem;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: -moz-flex-end;
    -webkit-justify-content: -webkit-flex-end;
    -ms-justify-content: -ms-flex-end;
    justify-content: flex-end;
    -moz-transition: opacity 1s ease, -moz-transform 1s ease;
    -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
    -ms-transition: opacity 1s ease, -ms-transform 1s ease;
    transition: opacity 1s ease, transform 1s ease;
    position: relative;
    cursor: default;
    text-align: center;
    z-index: 1;
    animation: fade-in 3s ease;
    -webkit-animation-name: anim; 
    -webkit-animation-duration: 3s; 
    animation-name: anim;
    animation-duration: 3s;
}
@media (max-width:639px){
    #intro {
        padding: 3rem 0rem 5rem 0rem;
    }
}
@media (max-width:768px) and (min-width:640px){
    #intro {
        padding: 3rem 0rem 5rem 0rem;
    }
}
h1 {
    text-align: center;
    font: normal 30px/25px Lato-Regular;
	color: #fff;
    text-transform: uppercase;
}
.button-country {
    display: inline-block;
    vertical-align: bottom;
}
ul.actions {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    cursor: default;
    list-style: none;
    margin-left: -1rem;
    padding-left: 0;
}
ul.actions.special {
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    margin-left: 0;
}
ul.actions li {
    padding: 0 0 0 1rem;
    vertical-align: middle;
}
@media (max-width:767px) {
    ul.actions li {
        padding: 0;
    }
}
@media (max-width:425px) {
    .logo {
        width: 90%;
    }
}
.button {
    background-color: transparent;
    box-shadow: inset 0 0 0 2px #ffffff;
    color: #ffffff !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    font-family: Lato-Regular, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    height: 4rem;
    line-height: 4rem;
    padding: 0 2rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
	width: 220px;
}
.button:hover {
    box-shadow: inset 0 0 0 2px #ffffff;
    background-color: #ffffff;
    color: #52ae32 !important;
}
a.belarus img, a.russian img{
    padding-right: 5px;
    vertical-align: text-bottom;
    width: 10%;
}
.select-country {
    display: inline-block;
    vertical-align: top;
    padding-top: 18px;
}
@media (max-width: 906px) {
	.select-country {
		width: 100%;
	}
}