

/* Reset */

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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
	font-family: 'Open Sans', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}

.layouts ul li {
	margin-bottom:5px;
}

.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}

.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.row {
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1200px;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

em {
	font-style: italic;
}

.clear {
	clear:both;
}

.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    margin-bottom: 15px;
}


.invi {
	visibility: hidden;
	opacity: 0;
}

/*   hamburger   */

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}


/* intro */

.main-wrapper {
    position: relative;
    overflow: hidden;
}

.intro {
    background: url(../img/intro.jpg) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    z-index: 5;
}

.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 5;
    opacity: 0;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.intro-text.close {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.intro-text img {
    max-width: 680px;
}

.intro-deer {
    position: absolute;
    top: -2px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.intro-deer.close {
    opacity: 1;
    visibility: visible;
}

.intro-ice-wind {
    position: absolute;
    top: -2px;
    right: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-60px, -30px) scale(0.7);
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.intro-ice-wind.close {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px) scale(1);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #759EDF url(../img/arrow-down.svg) no-repeat top 48px center;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}
.scroll-down:hover {
    opacity: 0.6;
}
.scroll-down.close {
    opacity: 1;
    visibility: visible;
}
.scroll-down.close:hover {
    opacity: 0.6;
}


.intro-ice-1 {
    position: absolute;
    bottom: 20px;
    left: 40%;
    transform: translateX(calc(-50% - 50px));
    opacity: 0;
    visibility: hidden;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.intro-ice-1.close {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.intro-ice-2 {
    position: absolute;
    bottom: 20px;
    left: 60%;
    transform: translateX(calc(-50% - 50px));
    opacity: 0;
    visibility: hidden;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.intro-ice-2.close {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.intro-ice-3 {
    position: absolute;
    bottom: 80px;
    left: 78%;
    transform: translateX(calc(-50% - 50px));
    opacity: 0;
    visibility: hidden;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.intro-ice-3.close {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.left-button,
.left-button:focus,
.left-button:active {
    position: absolute;
    bottom: 40px;
    left: 90px;
    line-height: 1.2;
    border-radius: 10px;
    background: #F2C35E;
    color: #193C83;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    width: 305px;
    text-align: center;
    padding: 30px 20px 30px 70px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.left-button.close {
    opacity: 1;
    visibility: visible;
}

.left-button:hover {
    color: #193C83;
}
.left-button:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 250px;
    left: 0px;
    transform: translate(-50%, -50%) scale(0);
    top: 50%;
    background: url(../img/stars.png) no-repeat center center;
    transition: 1s
}
.left-button:hover:after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
}



.left-button span {
    position: absolute;
    width: 114px;
    height: 114px;
    border-radius: 50%;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    background: #193C83;
    border-radius: 50%;
}
.left-button span:before {
    content: '';
    position: absolute;
    width: 62px;
    height: 63px;
    background: url(../img/icon-wish.svg) no-repeat center center / 100% 100%;
    top: 22px;
    left: 15px;
}
.left-button span:after {
    content: '';
    position: absolute;
    width: 27px;
    height: 32px;
    background: url(../img/icon-stars.svg) no-repeat center center / 100% 100%;
    top: 50px;
    right: 20px;
}


.left-button span:before {
	animation-name: wish;
	animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: left bottom;
}
.left-button span:after {
	animation-name: wish;
	animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes wish {
	0% { transform:  rotate(0deg); }
	25% { transform:  rotate(-10deg); }
	75% { transform:  rotate(10deg); }
	100% { transform:  rotate(0deg); }
}




/* carousel */

.carousel-hold {
    min-height: 100vh;
    background: url(../img/bg-carousel.png) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.carousel-hold .row {
    width: 100%;
}

.main-carousel-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.carousel-image {
    position: relative;
    padding-right: 50px;
}
.carousel-image img {
    position: relative;
    z-index: 2;
}


.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.main-carousel-hold {
    position: relative;
}

.main-carousel-hold:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 1552px;
    height: 1564px;
    background: url(../img/ellipse.png) no-repeat center center / 100% 100%;
}

.carousel-content {
    padding: 0 4%;
}

.carousel-content-title {
    color: #F0D075;
    font-size: 25px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.carousel-content-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.carousel-content-table-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.carousel-content-table-list ul li {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    border-bottom: 1px solid #fff;
    line-height: 1.3;
    padding: 10px 0;
}
.carousel-content-table-list ul li:first-child {
    border-top: 1px solid #fff;
}
.carousel-content-table-list ul li span {
    float: right;
}


.main-carousel.owl-carousel .owl-nav button.owl-next, 
.main-carousel.owl-carousel .owl-nav button.owl-prev, 
.main-carousel.owl-carousel button.owl-dot {
    outline: none;
}

.main-carousel.owl-carousel .owl-nav button.owl-next, 
.main-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 61px;
    transition: 0.2s;
}
.main-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.main-carousel.owl-carousel .owl-nav button.owl-prev:hover {
    opacity: 0.6;
}
.main-carousel.owl-carousel .owl-nav button.owl-next span, 
.main-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.main-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -40px;
    background: url(../img/slide-prev.svg) no-repeat center center / 100% 100%;
}
.main-carousel.owl-carousel .owl-nav button.owl-next {
    right: -40px;
    background: url(../img/slide-next.svg) no-repeat center center / 100% 100%;
}

.main-carousel.owl-carousel button.owl-dot span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #111A33;
    border: 2px transparent;
    border-radius: 50%;
    margin: 0 6px;
    transition: 0.2s;
}
.main-carousel.owl-carousel button.owl-dot.active span {
    background: #F0D075;
    border: 2px solid #111A33;
    transform: scale(1.4);
}

.main-carousel.owl-carousel .owl-dots {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    text-align: center;
}

.video-starter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1111;
    background: #142954;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}
.video-starter.close {
    opacity: 0;
    visibility: hidden;
}

.video-starter video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    max-height: 130%;
    max-width: 135%;
}

.mob-video {
    display: none;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: url(../img/play.svg) no-repeat center center;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}

.mob-video.close {
    opacity: 1;
    visibility: visible;
}

.fancybox-slide {
    padding: 0px;
}


@media (orientation: portrait) {
    .video-starter video {
        width: 100%;
    }
  }



@media only screen and (max-width: 1440px) {
    .left-button span:after {
        width: 18px;
        height: 24px;
        top: 40px;
        right: 15px;
    }
    .left-button span:before {
        width: 40px;
        height: 40px;
    }
    .left-button span {
        width: 82px;
        height: 82px;
    }
    .left-button, .left-button:focus, .left-button:active {
        left: 60px;
        font-size: 18px;
        width: 220px;
        padding: 20px 20px 20px 60px;
    }
    .intro-text img {
        max-width: 340px;
    }
    .intro-ice-1 img {
        max-width: 166px;
    }
    .intro-ice-2 img {
        max-width: 158px;
    }
    .intro-ice-3 img {
        max-width: 132px;
    }
	.scroll-down {
        width: 70px;
        height: 70px;
        background: #759EDF url(../img/arrow-down.svg) no-repeat top 28px center / 40px;
    }
    .carousel-content-title {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1280px) {
    .carousel-content-title {
        font-size: 20px;
    }
    .carousel-content-table-list ul li {
        font-size: 14px;
        padding: 6px 0;
    }
	

}

@media only screen and (max-width: 1023px) {
    .carousel-content {
        padding: 0 2%;
        padding-left: 0;
    }
    .main-carousel.owl-carousel .owl-nav button.owl-next, .main-carousel.owl-carousel .owl-nav button.owl-prev {
        width: 16px;
        height: 30px;
    }
    .carousel-content-title {
        font-size: 21px;
    }
    .carousel-content-table-list ul li {
        padding: 10px 0;
    }
}

@media screen and (max-width:639px) {
    .intro-text {
        top: 45%;
    }
    .mob-video {
        display: block
    }
    .video-starter {
        display: none;
    }
    .main-carousel.owl-carousel .owl-nav button.owl-next, .main-carousel.owl-carousel .owl-nav button.owl-prev {
        top: 130px;
    }
    .main-carousel.owl-carousel .owl-nav button.owl-prev {
        left: 0px;
    }
    .main-carousel.owl-carousel .owl-nav button.owl-next {
        right: 0px;
    }
    .main-carousel.owl-carousel .owl-dots {
        bottom: auto;
        top: 280px;
    }
    .carousel-image {
        height: 250px;
        margin-bottom: 80px;
        text-align: center;
    }
    .carousel-image img {
        max-height: 100%;
    }
    .carousel-content {
        padding: 0%;
    }
    .mob-content-wrapper-trigger span {
        display: inline-block;
        width: 59px;
        height: 59px;
        background: url(../img/plus.svg) no-repeat center center;
        cursor: pointer;
    }
    .mob-content-wrapper-trigger span.active {
        background: url(../img/minus.svg) no-repeat center center;
    }
    .main-carousel.owl-carousel button.owl-dot span {
        margin: 0 4px;
    }
    .main-carousel-hold:before {
        top: 130px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 776px;
        height: 782px;
    }
    .mob-content-wrapper {
        display: none;
        margin-bottom: 20px;
    }
    .row {
        padding-left: 20px;
        padding-right: 20px;
}
    .carousel-image {
        padding-right: 0px;
    }
    .left-button, .left-button:focus, .left-button:active {
        font-size: 14px;
        bottom: 70px;
        width: 140px;
        padding: 8px 10px 8px 30px;
        left: calc(50% + 12px);
        transform: translateX(-50%);
    }
    .left-button span {
        width: 48px;
        height: 48px;
    }
    .left-button span:after {
        width: 15px;
        height: 20px;
        top: 20px;
        right: 8px;
    }
    .left-button span:before {
        width: 26px;
        height: 26px;
        top: 8px;
        left: 5px;
    }
    .intro-ice-1,
    .intro-ice-2,
    .intro-ice-3 {
        /* display: none; */
    }
    .scroll-down {
        bottom: 20px;
        width: 36px;
        height: 36px;
        background: #759EDF url(../img/arrow-down.svg) no-repeat top 16px center / 20px;
    }
    .main-carousel-item {
        display: block;
    }
	.intro-deer {
        left: -280px;
    }
	.intro-deer img {
        width: 1100px;
        min-width: 1100px;
    }
    .intro-ice-wind {
        right: -380px;
    }
	.intro-ice-wind img {
        width: 1000px;
        min-width: 1000px;
    }
    .intro-ice-1 img {
        max-width: 130px;
    }
    .intro-ice-1 {
        bottom: auto;
        top: 30%;
        left: 85%;
    }
    .intro-ice-2 img {
        max-width: 96px;
    }
    .intro-ice-2 {
        bottom: auto;
        top: 70px;
        left: 38%;
    }
    .intro-ice-3 img {
        max-width: 90px;
    }
    .intro-ice-3 {
        bottom: 50px;
        left: 84%;
    }

    .fancybox-bg {
        background: #142954;
    }

}

@media (max-width: 340px) {
    .intro-ice-wind {
        right: -450px;
    }
}
