* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    overflow-x: hidden;
}

a {
    transition: all .3s ease-in-out;
}

.flex,
.display--flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.display--inline-flex {
    display: inline-flex;
}

.display--grid {
    display: grid;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 calc(100% / 24);
}

#preloader {
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
}

.b-lazy {
    max-width: 100%;
    opacity: 0;
    -moz-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    -webkit-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
}

.b-lazy.b-loaded {
    opacity: 1;
}

header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
    z-index: 2;
}

.header-inner {
    align-items: center;
    justify-content: space-between;
}

.header-left {
    flex: 1;
    align-items: center;
    justify-content: flex-start;
}

.header-middle {
    flex: 3;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    max-height: 3.75rem;
}

.header-right {
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}

.header-languages a,
.header-languages span {
    display: inline-block;
    margin-left: 10px;
    color: #ffffff;
    text-decoration: none;
}

.header-languages a:hover {
    opacity: .7;
}

.header-languages span {
    opacity: .5;
}

.hero {
    width: 100%;
    height: 100vh;
    min-height: 900px;
    background-color: #186221;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.hero .container {
    height: 100%;
}

.hero .__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 198px;
    color: #ffffff;
    text-align: center;
}

.hero-title {
    position: relative;
    margin: 0 0 1.6875rem 0;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: -0.005em;
}

.hero-title span {
    display: block;
    margin-top: -4px;
    font-size: 3.125rem;
    font-weight: 400;
}

.hero-text {
    position: relative;
    margin: 0 0 2.625rem 0;
    font-size: 1.5rem;
    line-height: 1.25em;
    letter-spacing: .025em;
}

.hero-text span {
    display: block;
}


.app-buttons a {
    display: block;
    transition: .3s;
}

.app-buttons a img {
    display: block;
    width: auto;
    height: 50px;
}

.app-buttons a:hover {
    opacity: .7;
    transform: translateY(-2px);
}

.hero-buttons a {
    margin: 0 0.3125rem 0.625rem;
}

.hero .__images {
    position: relative;
    bottom: 21rem;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    transform: translateX(0);
}

.hero .__images .__item {
    position: relative;
    display: block;
    flex: 0 0 296px;
    width: 100%;
    max-width: 296px;
    height: 100%;
    margin: 0 -10px;
    text-align: center;
    transition: transform 2s;
    transform-style: preserve-3d;
}

.hero .__images .__item.flipped {
    transform: rotateY(180deg);
}

.hero .__images .__front,
.hero .__images .__back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero .__images .__back {
    transform: rotateY(180deg);
}

.hero .__images img {
    position: absolute;
    display: block;
    max-width: 100%;
    margin: 0;
}

.hero .__images img.v {
    opacity: 1;
}

.hero .__images img.h {
    opacity: 0;
}

.s2 {
    padding: 17rem 0 8rem;
    border-bottom: 1px solid #f7f7f7;
}

.s2 .__inner {
    position: relative;
    grid-template-columns: calc(100% / 24 * 12) auto;
    grid-gap: 1.25rem;

}

.s2 .__text {
    font-size: 1.5rem;
    line-height: 1.25em;
}

.s2 .__text p {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.33333em;
}

.s2 .app-buttons {
    margin-top: 4.25rem;
}

.s2 .app-buttons a {
    margin: 0 0.625rem 0.625rem 0;
}

.s2 .__images {
    position: relative;
    top: 1.25rem;
}

.s2 .__images img {
    position: absolute;
    display: block;
}

.s2 .__images #s2i01 {
    top: 55px;
    left: 0;
    z-index: 2;
}

.s2 .__images #s2i02 {
    top: 95px;
    left: 370px;
    z-index: 2;
}

.s2 .__images #s2i03 {
    top: -48px;
    left: 190px;
    z-index: 1;
}

.s2 .__images #s2i04 {
    top: -5px;
    left: 520px;
    z-index: 1;
}

.s3 {
    padding: 6rem 0;
}

.s3 .__inner {
    grid-template-columns: 25% 25% 25%;
    grid-gap: calc(100% / 24);
}

.s3 .__title {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25em;
}

.s3 .__text {
    margin: 0;
    font-size: 1.1875rem;
    line-height: 1.5em;
}

.s4 {
    padding: 12rem 0 7rem;
    background: #f7f7f7;
    overflow: hidden;
}

.s4 .__inner {
    padding-left: calc(50% + 100% / 24);
}

.s2 .__title,
.s4 .__title,
.s5 .__title,
.s-text .__title {
    position: relative;
	margin-bottom: 1.25rem;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.25em;
    letter-spacing: .025em;
	margin-left: -3px;
}

.s4 .__text.
.s5 .__text,
.s-text .__text {
    font-size: 1.5rem;
    line-height: 1.25em;
}

.s4 .__text p,
.s5 .__text p {
    margin: 0 0 1rem 0;
}

.s4 .app-buttons {
    margin-top: 4.25rem;
}

.s4 .app-buttons a {
    margin: 0 0.625rem 0.625rem 0;
}

.s4 .__images {
    position: absolute;
    top: -20rem;
    right: calc(100% / 24 * 11);
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 0.625rem;
    justify-content: end;
    transform: rotate(15deg);
    transform-origin: top right;
}

.s4 .__images img {
    position: relative;
    display: block;
    width: 270px;
    height: auto;
}

.s4 .__images img:nth-child(1),
.s4 .__images img:nth-child(3) {
    top: 240px;
    animation: s4i13 20s infinite ease-in;
}

.s4 .__images img:nth-child(2),
.s4 .__images img:nth-child(4) {
    top: 120px;
    animation: s4i24 20s infinite linear;
}

.s4 .__images img:nth-child(5) {
    top: 0;
    animation: s4i5 20s infinite linear;
}

.s5 .__item {
	position: relative;
	min-height: 600px;
	padding: 60px 0;
	align-items: center;
	justify-content: space-between;
	grid-template-columns: 1.3fr 1fr;
	grid-gap: 3rem;
	overflow: hidden;
	border-bottom: 1px solid #f7f7f7;
}
.s5 .__item.__reverse{
	grid-template-columns: 1fr 1.3fr;
}
.s5 .__item .__content {
	flex: 1;
}

.s5 .__item .__image {
	position: relative;
	flex: 1;
	height: 100%;
	justify-content: center;
}
.s5 .__item .__image img{
	position: absolute;
	display: block;
	width: 375px;
	max-width: 100%;
    border-radius: 10px;
	box-shadow: 0 20px 25px rgba(0,0,0,.2);
}

.s5 .__item.__reverse .__content {
	order: 2;
}
.s5 .__item.__reverse .__images {
	order: 1;
}
.s-text{
	padding: 80px 0;
	background: #f7f7f7;
}
.s-text .__inner{
	padding: 0 15%;
}

.video{
	padding: 4rem 0 3rem;
	background: #ffffff;
}

.video .__inner{
	text-align: center;
}

.video a{
	position: relative;
	display: inline-block;
	margin: 0 auto;
	border-radius: 10px;
}

.video img{
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 80vh;
	margin: 0 auto;
	border-radius: 10px;
}

.video span{
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	color: red;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: #ffffff;
	border-radius: 50%;
}

.video svg{
	width: 56px;
	height: 56px;
}

.video a:hover{
	transform: translateY(-5px);
	box-shadow: 0 15px 25px rgba(0,0,0,.1);
}

.video a:hover span{
	background: red;
	color: #ffffff;
}

footer {
    padding: 1rem 0;
    color: #ffffff;
    background: #141414;
}

footer .__inner {
    align-items: center;
    justify-content: space-between;
}

footer .__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1em;
}

footer .__text {
    margin: 0;
    font-size: .875rem;
    line-height: 1em;
}

footer nav ul {
    list-style: none;
}

footer nav li > a {
    margin-right: 2rem;
    color: #ffffff;
    text-decoration: underline;
}

/*
 *
 * ANIMATIONS
 *
 */

@keyframes s4i13 {
    0% {
        top: 120px;
    }
    50% {
        top: 0;
    }
    100% {
        top: 120px;
    }
}

@-webkit-keyframes s4i13 {
    0% {
        top: 120px;
    }
    50% {
        top: 0;
    }
    100% {
        top: 120px;
    }
}

@keyframes s4i24 {
    0% {
        top: 120px;
    }
    50% {
        top: 240px;
    }
    100% {
        top: 120px;
    }
}

@-webkit-keyframes s4i24 {
    0% {
        top: 120px;
    }
    50% {
        top: 240px;
    }
    100% {
        top: 120px;
    }
}

@-webkit-keyframes s4i5 {
    0% {
        top: 0;
    }
    50% {
        top: -120px;
    }
    100% {
        top: 0;
    }
}

@keyframes s4i5 {
    0% {
        top: 0;
    }
    50% {
        top: -120px;
    }
    100% {
        top: 0;
    }
}

/* MEDIA */
@media (min-width: 1500px) {

}

@media (min-width: 1200px) and (max-width: 1499px) {
    .hero {
        min-height: 700px;
    }

    .hero .__inner {
        padding-top: 9.25rem;
    }

    .hero-title {
        font-size: 4.25rem;
    }

    .hero-title span {
        font-size: 3rem;
    }

    .hero .__images .__item {
        flex: 0 0 250px;
        max-width: 250px;
        margin: 0 -5px;
    }

    .app-buttons a img {
        height: 40px;
    }

    .hero .__images {
        bottom: 16rem;
    }

    .s4 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-height: 100vh;
        padding: 10rem 0;
    }

	.s2 .__title,
    .s4 .__title,
	.s5 .__title{
        font-size: 2.5rem;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero {
        min-height: 700px;
    }

    .hero .__inner {
        padding-top: 9rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-title span {
        font-size: 2.75rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

    .hero .__images .__item {
        flex: 0 0 250px;
        max-width: 250px;
        margin: 0 -5px;
    }

    .app-buttons a img {
        height: 40px;
    }

    .hero .__images {
        bottom: 15rem;
    }

    .s2 {
        padding: 12rem 0 6rem;
    }

    .s2 .__inner {
        position: relative;
        grid-template-columns: 65% auto;
        grid-gap: 1rem;
    }

    .s2 .__images #s2i01 {
        left: -40px;
    }

    .s2 .__images #s2i02 {
        top: 135px;
        left: 150px;
    }

    .s2 .__images #s2i03 {
        top: -80px;
        left: 90px;
    }

    .s2 .__images #s2i04 {
        display: none;
    }

    .s3 {
        padding: 4rem 0;
    }

    .s3 .__inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .s4 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 10rem 0 6rem;
    }

    .s4 .__inner {
        padding-left: 45%;
    }
	
	.s2 .__title,
    .s4 .__title,
	.s5 .__title,
	.s-text .__title {
        font-size: 2rem;
    }

    .s4 .__text,
    .s5 .__text {
        font-size: 1.25rem;
        line-height: 1.25em;
    }

    .s4 .__images {
        top: -14rem;
        right: calc(100% / 24 * 12);
        transform: rotate(15deg) scale(0.8);
    }
	
	.s-text .__inner{
		padding: 0 10%;
	}
	
	.video {
        padding: 12rem 0 6rem;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .hero {
        height: 90vh;
        min-height: 900px;
    }

    .hero .__inner {
        padding-top: 15rem;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-title span {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.5rem;
    }

    .hero .__images .__item {
        flex: 0 0 250px;
        max-width: 250px;
        margin: 0 -5px;
    }

    .app-buttons a img {
        height: 50px;
    }

    .hero .__images {
        bottom: 9rem;
    }

    .s2 {
        padding: 20rem 0 3rem;
    }

    .s2 .__inner {
        position: relative;
        grid-template-columns: 100%;
        grid-gap: 1rem;
    }

    .s2 .__images {
        display: none;
    }

    .s3 {
        padding: 3rem 0;
    }

    .s3 .__inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .s4 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 10rem 0 6rem;
    }

    .s4 .__inner {
        padding-left: 45%;
    }
	
	.s2 .__title,
    .s4 .__title,
    .s5 .__title,
	.s-text .__title {
        font-size: 2rem;
    }

    .s4 .__text,
    .s5 .__text {
        font-size: 1.25rem;
        line-height: 1.25em;
    }

    .s4 .__images {
        top: -14rem;
        right: calc(100% / 24 * 12);
        transform: rotate(15deg) scale(0.8);
    }
	.s-text .__inner{
		padding: 0 5%;
	}
	.video {
        padding: 5rem 0 4rem;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 90vh;
        min-height: 500px;
    }

    .hero .__inner {
        padding-top: 7rem;
    }

    .hero-title {
        margin-bottom: 1rem;
        font-size: 2.75rem;
        line-height: 1em;
    }

    .hero-title span {
        margin-top: 1rem;
        font-size: 2rem;
        line-height: 1em;
    }

    .hero-text {
        font-size: 1.24rem;
    }


    .hero .__images .__item {
        flex: 0 0 180px;
        max-width: 180px;
        margin: 0 -5px;
    }

    .app-buttons {
        width: 100%;
        margin-top: 2rem !important;
    }

    .app-buttons a {
        flex: 1;
    }

    .app-buttons a img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .hero .__images {
        bottom: 10rem;
        width: 100%;
        height: 280px;
        overflow: auto;
    }

    .s2 {
        padding: 10rem 0 3rem;
    }

    .s2 .__inner {
        position: relative;
        grid-template-columns: 100%;
        grid-gap: 1rem;
    }

    .s2 .__text p {
        font-size: 1.125rem;
        line-height: 1.5em;
    }

    .s2 .__images {
        display: none;
    }

    .s3 {
        padding: 3rem 0;
    }

    .s3 .__inner {
        grid-template-columns: 100%;
        grid-gap: 3rem;
    }

    .s4 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 10rem 0 6rem;
    }

    .s4 .__inner {
        padding-left: 0;
    }

	.s2 .__title,
    .s4 .__title,
	.s5 .__title,
	.s-text .__title {
        position: relative;
        font-size: 2rem;
        font-weight: 700;
        z-index: 2;
    }

    .s4 .__text,
    .s5 .__text,
	.s-text .__text	{
        position: relative;
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.25em;
        z-index: 2;
    }

    .s4 .app-buttons {
        position: relative;
        z-index: 2;
    }

    .s4 .__images {
        top: -14rem;
        right: -260px;
        opacity: 0.2;
        transform: rotate(15deg) scale(0.8);
    }
	.s5 .container{
		padding: 0;
	}
	.s5 .__item{
		display: flex;
		flex-direction: column-reverse;
		background: rgb(255,255,255);
		background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(247,247,247,1) 100%);
	}
	.s5 .__item.__reverse .__content,
	.s5 .__item .__content{
		order: 1;
		padding: 0 calc(100% / 24);
	}
	.s5 .__item .__image{
		flex: auto;
		width: 100%;
		height: 400px;
	}
	.s5 .__item .__image img{
		width: 320px;
	}
	
	.s-text .__inner{
		padding: 0;
	}
	.s-text{
		padding: 4rem 0 3rem;
	}
	.video {
        padding: 5rem 0 4rem;
    }

    footer .__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    footer .copyright {
        margin-bottom: 1rem;
    }

    footer nav ul {
        flex-flow: row wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    footer nav ul li {
        margin: 0;
    }

    footer nav ul li > a {
        display: block;
        margin: 0;
        padding: .5rem;
        font-size: .8215rem;
    }
}