* {
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

*:focus {
	outline: none;
}

@font-face {
    font-family: 'agipo_regular';
    src: url('../fonts/agipo_regular.eot');
    src: url('../fonts/.eot') format('embedded-opentype'),
         url('../fonts/agipo_regular.woff2') format('woff2'),
         url('../fonts/agipo_regular.woff') format('woff'),
         url('../fonts/agipo_regular.ttf') format('truetype'),
         url('../fonts/agipo_regular.svg# ') format('svg');
}

html,
body {
    position: relative;
    height: 100%;
}

body {
    background: #eee;
    font-family:'agipo_regular', Arial, Helvetica, sans-serif;
    font-size:20px;
    margin: 0;
    padding: 0;
    opacity: 0;
	transition: opacity .4s ease;
	-webkit-transition: opacity .4s ease;
	-moz-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
}
body.loaded{
    opacity: 1;
}

.logo{
    position: absolute;
    z-index: 6;
    top:20px;
    left:25px;
    font-size:20px;
    color:#222;
    /*width: 120px;
    height: 80px;
    background-color: #000;
    -webkit-mask-image: url('../images/logo.svg');
    mask-image: url('../images/logo.svg');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size:contain; 
    mask-position: top;*/
    pointer-events: none;
	transition: color .4s ease;
	-webkit-transition: color .4s ease;
	-moz-transition: color .4s ease;
	-o-transition: color .4s ease;
    transition-delay: .3s;
}
.logo.logo-dark{
    /*background-color: #fff;*/
    color:#fff;
}
.logo.logo-about{
    /*background-color: #000 !important;*/
    color:#000;
}

nav{
    position: absolute;
    display: block;
    top:20px;
    right: 25px;
    z-index: 4;
    color:#222;
	transition: color .4s ease;
	-webkit-transition: color .4s ease;
	-moz-transition: color .4s ease;
	-o-transition: color .4s ease;
    cursor: pointer;
}
.nav-dark{
    color:#fff;
}

.about{
    width: 100%;
    height: 100%;
    position: absolute;
    top:-100%;
    left:0px;
    z-index: 5;
    background-color: #fff;
	transition: all .6s ease-in-out;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
    font-size:34px;
    color:#222;
    overflow: hidden;
}
.about.show{
    top:0px;
    overflow: auto;
}

.about .about-wrapper{
    width: calc(100% - 50px);
    margin:0 25px;
    position: absolute;
    /*top: 50%;
    transform: translate( 0 , -50% );*/
    bottom: 50px;
}
.about .about-wrapper p{
    margin:20px 0;
}
.about .about-wrapper p.contact{
    margin:40px 0 0 0;
    font-size:38px;
}
.about .about-wrapper p.contact a{
    color:#222;
    text-decoration: none;
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    width: 32px;
    height: 32px;
    opacity: 1;
    cursor:pointer;
}
.close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #222;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}
  
/* Slider */
.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    width: 100%;
    height: 100vh;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
	transition: opacity .4s ease;
	-webkit-transition: opacity .4s ease;
	-moz-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: translate3d(0, 0, 0);
}
.loaded .swiper-slide img{
    opacity: 1;
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper-slide img.responsive{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.swiper-slide.dark .wrapper {
    color:#fff;
}

.swiper-slide .wrapper {
    display: block;
    position: absolute;
    bottom: 20px;
    left:25px;
    overflow: hidden;
    max-width: 50%;
    width: 100%;
    color:#222;
    z-index: 1;
}
.swiper-slide .wrapper .info{
    transform: translate(0,100%);
    width: 100%;
    opacity: 0;
    transition-delay: 0s;
	transition: opacity .4s ease;
	-webkit-transition: opacity .4s ease;
	-moz-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
}
.swiper-slide.swiper-slide-active .wrapper .info{
    transform: translate(0,0%);
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
    transition-delay: .8s !important;
    opacity: 1;
}

.pagination{
    display: block;
    position: absolute;
    z-index: 1;
    text-align: right !important;
    pointer-events: all;
    bottom:20px !important;
    color:#222;
	transition: color .4s ease;
	-webkit-transition: color .4s ease;
	-moz-transition: color .4s ease;
	-o-transition: color .4s ease;
}
.swiper-pagination-total{
    padding-right:25px;
}
.pagination-dark{
    color:#fff;
}

.button-next{
    position: absolute;
    top: 0px;
    left: 50%;
    z-index:2;
    width: 50%;
    height: 100%;
    background-color: transparent;
    cursor: none;
}
.button-prev{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index:2;
    width: 50%;
    height: 100%;
    background-color: transparent;
    cursor:none;
}

/* slider arrow */
.arrows.arrow-dark .arrow{
    background-color: #fff;
}

.arrow{
	position: fixed;
	height: 70px;
	width: 70px;	
	background-size: contain;
	top: 0px;
	left: 0px;
    opacity: 0;
	z-index:5;
	display: block;
	pointer-events:none;
    background-color: #222;
	transition: background .4s ease;
	-webkit-transition: background .4s ease;
	-moz-transition: background .4s ease;
	-o-transition: background .4s ease;
}
.arrow.arrow-right{
    background-color: #222;
    -webkit-mask-image: url('../images/arrow-right.svg');
    mask-image: url('../images/arrow-right.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}
.arrow.arrow-left{
    background-color: #222;
    -webkit-mask-image: url('../images/arrow-left.svg');
    mask-image: url('../images/arrow-left.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}
.arrow.show{
	opacity: 1;
}

@media only screen and (max-width: 1024px) {

    .about{
        font-size:18px;
    }
    .about .about-wrapper{
    }
    .about .about-wrapper p.contact{
        margin:30px 0 0 0;
        font-size:20px;
    }
    .close {
        right: 10px;
        top: 15px;
    }

}

@media only screen and (max-width: 740px) {

    .logo{
        left:15px;
    }
    
    .swiper-slide .wrapper {
        bottom: 15px;
        left:15px;
    }

    nav{
        top:20px;
        right: 15px;
    }

    .pagination{
        bottom:15px !important;
        font-size:14px;
    }

    .swiper-pagination-total {
        padding-right: 15px;
    }

    body .info p{
        font-size:14px;
    }
    .button{
        cursor: pointer;
    }
    .arrow{
        display: none !important;
    }
    .button-next{
        background-color: #222;
        -webkit-mask-image: url('../images/arrow-right.svg');
        mask-image: url('../images/arrow-right.svg');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size:contain;
        mask-size:contain;
        -webkit-mask-position: calc(100% - 15px) center;
        mask-position: calc(100% - 15px) center;
        -webkit-mask-size: 50px;
        mask-size: 50px;
    }
    .button-prev{
        background-color: #222;
        -webkit-mask-image: url('../images/arrow-left.svg');
        mask-image: url('../images/arrow-left.svg');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size:contain;
        mask-size:contain;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-position: 15px center;
        mask-position: 15px center;
        -webkit-mask-size: 50px;
        mask-size: 50px;
    }
    .button-next.button-dark,
    .button-prev.button-dark{
        background-color: #fff;
    }

    .about{
        font-size:14px;
    }
    .about .about-wrapper{
        width: calc(100% - 30px);
        margin:0 15px;
    }
    .about .about-wrapper p.contact{
        font-size:18px;
    }
    .close {
        right: 10px;
        top: 15px;
    }

}


@media only screen and (max-width: 740px) {
    .swiper-slide img {
        display: none;
    }

    .swiper-slide img.responsive{
        display: block;
    }

    .about .about-wrapper{
        width: calc(100% - 50px);
        margin:0 15px;
        position: relative;
        top: 60px;
        padding-bottom:50px;
    }
}