@font-face {
	font-family: FuturaStd;
	src: url(../fonts/FuturaStd-Book.ttf) format('truetype'), url(../fonts/FuturaStd-Book.woff) format('woff'), url(../fonts/FuturaStd-Book.woff2) format('woff2');
}
@font-face {
	font-family: FuturaStd;
	src: url(../fonts/FuturaStd-Light.ttf) format('truetype'), url(../fonts/FuturaStd-Light.woff) format('woff'), url(../fonts/FuturaStd-Light.woff2) format('woff2');
	font-weight: lighter;
}
@font-face {
	font-family: FuturaStd;
	src: url(../fonts/FuturaStd-Medium.ttf) format('truetype'), url(../fonts/FuturaStd-Medium.woff) format('woff'), url(../fonts/FuturaStd-Medium.woff2) format('woff2');
	font-weight: 500;
}
@font-face {
	font-family: FuturaStd;
	src: url(../fonts/FuturaStd-Heavy.ttf) format('truetype'), url(../fonts/FuturaStd-Heavy.woff) format('woff'), url(../fonts/FuturaStd-Heavy.woff2) format('woff2');
	font-weight: 600;
}
@font-face {
	font-family: FuturaStd;
	src: url(../fonts/FuturaStd-Bold.ttf) format('truetype'), url(../fonts/FuturaStd-Bold.woff) format('woff'), url(../fonts/FuturaStd-Bold.woff2) format('woff2');
	font-weight: bold;
}
@font-face {
	font-family: FuturaLT-CondensedMedium;
	src: url(../fonts/FuturaLT-CondensedMedium.ttf) format('truetype'), url(../fonts/FuturaLT-CondensedMedium.woff) format('woff'), url(../fonts/FuturaLT-CondensedMedium.woff2) format('woff2');
}
@font-face {
	font-family: OpenSans-Medium;
	src: url(../fonts/OpenSans-Medium.ttf) format('truetype'), url(../fonts/OpenSans-Medium.woff) format('woff'), url(../fonts/OpenSans-Medium.woff2) format('woff2');
}


:root {
	--masked_square_size: 80px;
	--header_logo_width: 230px;
	--color_blue: #424a7a;
	--masked_border_color: var(--color_blue);

	--header_height: 150px;

	--footer_square_size: 98px;

	--mode_switcher_height: 48px;
	--mode_switcher_icon_height: calc(var(--mode_switcher_height) * 0.625);
	--mode_switcher_padding: calc(calc(var(--mode_switcher_height) - var(--mode_switcher_icon_height)) * .5);

	--slider_width: 712px;
	--slider_margin: 16px;
	--slider_fullwidth: calc(var(--slider_width) + var(--slider_margin));
}

*[anchor] {
	top: calc(var(--header_height) * -.5);
}

html {
	font-size: 16px;	
}

body {
	background: #fff;
	color: #000;
	font-family: FuturaStd, serif;
	padding-top: var(--header_height);
	overflow-x: hidden;
	opacity: 0;
}
body[dimmed="true"] { }
body[dimmed="false"] { --color_blue: #3848A8; }

body[dimmed="true"] .blue_block,
body[dimmed="true"] video,
body[dimmed="true"] iframe,
body[dimmed="true"] img { filter: saturate(50%); }

a { text-decoration: none; }
path { stroke-width: 2px; }

video {
	width: 100%;
	height: 100%;
	pointer-events: none;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	z-index: 500;
	height: var(--header_height);
	transition: top .25s;
}
header[unfurled="true"] { top: 0; }
header[unfurled="false"] { top: calc(var(--header_height) * -1.1); }

header[opened="true"] .header_inner { background-color: var(--color_blue); }
header[opened="true"] .header_logo_m path { fill: #fff !important; }

.header_inner {
	flex: 1 1;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	background-color: #fff;
}

.inner_w {
	max-width: 1348px;
	margin: auto;
}

.header_logo {
	flex: 0 0 var(--header_logo_width);
	height: auto;
}
.header_logo_m {
	display: none;
	flex: 0 0 var(--header_logo_width);
}
.header_logo_m svg { width: 100%; }

.mode_switcher_cont {
	flex: 0 0 var(--header_logo_width);
	text-align: right;
}
.mode_switcher {
	display: inline-block;
	padding: var(--mode_switcher_padding);
	width: calc(var(--mode_switcher_height) * 1.87);
	height: var(--mode_switcher_height);
	background: #F0F0F0;
	cursor: pointer;
}
.mode_switcher * { pointer-events: none; }

.mode_icon_cont {
	position: absolute;
	left: calc(calc(var(--mode_switcher_height) * 1.87) - var(--mode_switcher_padding) - var(--mode_switcher_icon_height));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--mode_switcher_icon_height);
	height: var(--mode_switcher_icon_height);
	background-color: var(--color_blue);
	transition: left .5s;
}
.mode_switcher[mode_active="true"] .mode_icon_cont {
	left: var(--mode_switcher_padding);
}

.mode_icon {
	width: calc(var(--mode_switcher_icon_height) * 0.74);
	height: auto;
}

.header_menu {
	flex: 1 1;
	text-align: center;
}
.header_menu a {
	padding: 0 .9rem;
	display: inline-block;
	font-size: 16px;
	font-family: OpenSans-Medium;
	color: #595958;
}
.header_menu a span {
	padding: .4rem 0;
	border-bottom: 2px transparent solid;
	transition: border-color .5s;
}
.header_menu a:hover span {
	border-color: #3848A8;
}

.header_submenu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	height: 3rem;
	padding: 0 1rem;
	text-align: center;
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	background-color: var(--color_blue);
}

.header_submenu a {
	margin: 0 1rem;
	padding: .25em 0;
}
.header_submenu a span { top: .15em; }
.header_submenu a:hover {
	border-bottom: 1px #fff solid;
}

.header_submenu_s {
	display: none;
	appearance: none;
	background-color: transparent;
	border: none;
	color: #fff;
	font-weight: 500;
	background-image: url(../img/chevron.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto 40%;
	padding-right: 4rem;
	padding-left: 2rem;
	cursor: pointer;
	text-align-last: center;
	text-align: center;
}

.menu_hamburger_cont {
	display: none;
	text-align: right;
	width: var(--header_logo_width);
	cursor: pointer;
}
.menu_hamburger {
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background-color: var(--color_blue);
}
.menu_hamburger_cont * { pointer-events: none; }

.menu_hamburger_inner {
	display: inline-flex;
	align-items: center;
	align-content: center;
	width: 48%;
	height: 48%;
}

.menu_hamburger span {
	display: inline-block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transform-origin: left center;
	transition: transform .25s, width .25s;
}
.menu_hamburger span:first-child,
.menu_hamburger span:last-child {
	position: absolute;
	left: 0;
}
.menu_hamburger span:first-child { top: 0 }
.menu_hamburger span:last-child { top: calc(100% - 2px) }

.menu_hamburger_cont[opened="true"] .menu_hamburger { background-color: #fff; }
.menu_hamburger_cont[opened="true"] span { width: 0; background-color: var(--color_blue); }
.menu_hamburger_cont[opened="true"] span:first-child { transform: rotate(45deg); width:135%; }
.menu_hamburger_cont[opened="true"] span:last-child { transform: rotate(-45deg); width:135%;; }


.mobile_menu {
	position: fixed;
	top: var(--header_height);
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--color_blue);
	transition: height .25s;
	overflow: hidden;
	overflow-y: auto;
}

.mobile_menu[opened="true"] {
	height: 100vh;
}

.mobile_menu a {
	display: block;
	padding: 1em;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	border-bottom: 1px rgb(255 255 255 / 30%) solid;
}
.mobile_menu a * { pointer-events: none; }

.mobile_menu a:last-child { border-bottom: none; }



.video_main_cont2,
.video_main_cont {
	width: 100%;
	background: transparent;
}
.video_main_cont { aspect-ratio: 16/9; }

[ui_comp="main_video"],
*[videoid] {
	cursor: url(../img/cursor.svg) 64 64, pointer;
}

.animated_text {
	max-width: 1337px;
	margin: 4rem auto 0;
	font-weight: bold;
	font-size: 60px;
	color: #3e3e3e;
}

.animated_text span {
	transition: opacity .5s;
}

.animated_text > span[visible="false"] { opacity: 0; }
.animated_text > span[visible="true"] { opacity: 1; }



.square_right::after,
.square_left::after {
	content: " ";
	position: absolute;
	top: calc(var(--masked_square_size) * -1);
	display: block;
	width: var(--masked_square_size);
	height: var(--masked_square_size);
	background-color: var(--color_blue);
	transition: left .5s, top .5s, right .5s
}
.square_right::after { right: calc(var(--masked_square_size) * -1); }
.square_left::after { left: calc(var(--masked_square_size) * -1); }

.SIMPLECSS_square_right::after { top: 0; right: 0; }
.SIMPLECSS_square_left::after { top: 0; left: 0; }

.square_right [square],
.square_left [square] {
	position: absolute;
	top: 0;
	width: var(--masked_square_size);
	height: var(--masked_square_size);
	background-color: #fff;
}
.square_left [square] { left: 0; }
.square_right [square] { right: 0; }

.masked_border [square] { background-color: transparent; }

.title {
	margin-top: 1em;
	font-size: 10rem;
	font-weight: bold;
	line-height: 1em;
	color: var(--color_blue);
}
.title_mb { margin-bottom: 6rem }
.title_mt { margin-top: 15rem }

.title_s {
	padding-top: 1.5em;
	font-size: 6rem;
	color: #fff;
	text-align: center;
}

.subtitle {
	font-size: 6rem;
	margin-bottom: 1em;
	color: var(--color_blue);
}

.subtitle_s {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 6rem;
	text-align: center;
}

.video_claim {
	padding: 3rem 0 2rem;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	color: var(--color_blue);
}

.video_share {
	text-align: center;
	margin-bottom: 8rem;
}
.video_share > a {
	margin: 0 .25rem;
	display: inline-block;
	width: 60px;
	height: 60px;
}
.video_share > a img {
	width: 100%;
	height: 100%;
}

.blue_block {
	background-image: url(../img/blue_bg.jpg);
	background-position: top center;
	background-size: cover;
	color: #fff;
	padding-bottom: 10rem;
	overflow-x: hidden;
}


.story1,
.story2,
.story3,
.story4 {
	display: flex;
	align-items: flex-start;
	font-size: 3.45rem;
	margin-top: 8rem;
	line-height: 1.1em;
	font-weight: 600;
}
.story1 img,
.story2 img,
.story3 img,
.story4 img { width: 100%; pointer-events: none; }


.story1 > div,
.story2 > div,
.story3 > div,
.story4 > div {
	flex: 0 0 auto;
	width: 59%;
}
.story1 p,
.story2 p,
.story3 p,
.story4 p {
	flex: 0 0 auto;
	width: 40%;
}

.story1 p {
	margin-top: 7rem;
	margin-left: -5rem;
}
.story2 { padding-left: 8rem; }
.story2 p {
	margin-top: 2rem;
	margin-right: -9rem;
	z-index: 10;
}
.story3 p {
	margin-top: 8rem;
	margin-left: -7rem;
}
.story4 { padding-left: 5rem; }
.story4 p {
	margin-top: 7rem;
	margin-right: -9rem;
	z-index: 10;
}

.hashtag {
	color: var(--color_blue);
	margin: .2em auto .75em;
	font-size: 7.5rem;
	text-align: center;
	font-family: FuturaLT-CondensedMedium;
}



.masked_border {
	display: flex;
	align-items: center;
	margin: auto;
	width: 100%;
	height: auto;
	padding: 5rem 2rem;
	margin-bottom: 6rem;
}

.masked_border svg {
	position: absolute;
	left: 0; top: 0;
}

.masked_left,
.masked_right {
	flex: 1 1;
	padding: 0 2rem;
}

.masked_left {
	font-size: 2.25rem;
	font-weight: bold;
	padding-left: 10rem;
	color: var(--color_blue);
}

.masked_right {
	padding-right: 10rem;
	font-size: 1rem;
	font-weight: 500;
}

.masked_right span { font-size: 1.25em; }
.masked_right img {
	height: 1em;
	vertical-align: middle;
	margin-right: .25em;
}



.slider_cont {
	display: flex;
	align-items: center;
}

.slider_cont_l {
	flex: 1 1;
	margin-right: 1rem;
}

.slider_index {
	font-size: 4rem;
	font-weight: 600;
	letter-spacing: -0.7rem;
	color: var(--color_blue);
}
.slider_index [ui_role="current"] { color: #fff; }

.slider_output {
	margin: .125em 0;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.5em;
	height: 7rem;
	overflow: hidden;
	text-overflow: ellipsis;
}

.slider_downloadlink {
	display: inline-block;
	margin-top: .25em;
	padding: .25em .5em;
	border: 1px #fff solid;
	font-size: 1.5rem;
}
.slider_downloadlink img {
	margin-left: .25em;
	height: .8em;
	top: -.15em;
	vertical-align: middle;
}

.slider_buttons {
	margin-top: 4rem;
}

.slider_page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border: 2px var(--color_blue) solid;
}
.slider_page svg { width: 24px; }
.slider_page path { fill: var(--color_blue); }
.slider_page[ui_role="button_previous"] { transform: rotate(180deg); }

.slider_cont_r {
	flex: 0 0 auto;
	padding: 2rem;
	width: var(--slider_fullwidth);
/*	aspect-ratio: 712+16/400;*/
	aspect-ratio: 728/400;
	margin-right: 10rem;
	color: #fff;
}

*[ui_role="drag"] {
	position: absolute;
	left: 0; top: 0; right: 0; bottom: 0;
	cursor: pointer;
}

.slider_item,
.slider_list {
	position: absolute;
	left: 0; top: 0;
	width: 100%; height: 100%;
	overflow: hidden;
	pointer-events: none;
}
.slider_item {
	left: 100%;
	opacity: 0;
	transition: left .25s, opacity .25s;
}
.slider_list { overflow: visible; }

.slider_item_inner {
	position: absolute; 
	left: 0; bottom: 0; top: 0;
	right: var(--slider_margin);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #000;
}



.slider_glass {
	position: absolute;
	top: 0;
	right: var(--slider_margin);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #fff;
}
.slider_glass svg { width: 36%; }
.slider_glass:hover { background-color: var(--color_blue); }
.slider_glass:hover path { fill: #fff !important; }




.image_panel,
.video_iframe_panel {
	align-items: center;
	justify-content: center;
	position: fixed;
	left: 0; top: 0; right: 0; bottom: 0;
	background-color: rgba(255,255,255,.9);
	overflow: auto;
	z-index: 1000;
}
.image_panel[visible="false"],
.video_iframe_panel[visible="false"] { display: none; }
.image_panel[visible="true"] { display: block; }
.video_iframe_panel[visible="true"] { display: flex; }

.video_iframe_download,
.video_iframe_close {
	--close_size: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 0;
	width: var(--close_size);
	height: var(--close_size);
	background-color: var(--color_blue);
	z-index: 1010;
	cursor: pointer;
}
.video_iframe_download img,
.video_iframe_close img { width: 50%; height: 50%; }

.video_iframe_download {
	right: var(--close_size);
}

.video_iframe_inner {
/*	background-color: #000;*/
	max-width: 95%;
	max-height: 95%;
	width: 70%;
}
.video_iframe_cont {
	width: 100%; height: 100%;
}
.video_iframe_cont iframe {
	aspect-ratio: 16/9 !important;
	width: 100% !important;
	height: auto !important;
	box-shadow: 10px 10px 15px rgba(0,0,0,1);
}


.image_panel {
	padding: 4rem;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.image_panel_inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.image_panel_inner > img {
	max-width: 100%;
	max-height: 100%;
}



footer {
	background-color: var(--color_blue);
	color: #fff;
}

.footer_square,
.footer_square::after {
	position: absolute;
	display: inline-block;
	left: 0;
	width: var(--footer_square_size);
	height: var(--footer_square_size);
}

.footer_square {
	top: 0;
	background-color: #fff;
}
.footer_square::after {
	content: " ";
	top: calc(var(--footer_square_size) * -1);
	background-color: #f0f0f0;
}

.footer_row {
	display: flex;
	padding: 5rem 0;
}

.line { border-bottom: 1px rgb(255 255 255 / 30%) solid; }

.footer_link_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: #fff;
	vertical-align: top;
}
.footer_link_icon svg { width: 50%; }

.footer_bottom {
	padding: 1rem 4rem;
	background-color: #fff;
}
.footer_bottom > img { margin: 2rem; height:auto; }

.footer_bottom > img:nth-child(1) { width: 533px; }
.footer_bottom > img:nth-child(2) { width: 148px; }
.footer_bottom > img:nth-child(3) { width: 265px; }

.footer_logo { width: 90px; }

.footer_link_b {
	display: block;
	margin-bottom: 1.5em;
	font-size: 1rem;
	font-weight: bold;
}
.footer_link_l {
	font-size: 1.25rem;
	margin-bottom: .25em;
	display: block;
	font-weight: 500;
}

.footer_col_0nw,
.footer_col_0 {
	flex: 0 0 auto;
	width: 22.5%;
}
.footer_col_0nw { width: auto; }

.footer_col_1r,
.footer_col_1 { flex: 1 1; }
.footer_col_1r { text-align: right; }



.downarrow {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	text-align: center;
	pointer-events: none;
}

.downarrow > img {
	animation: 2s ease-in-out infinite scrollind;
}
@keyframes scrollind {
	0% { bottom: 0; }
	50% { bottom: 2rem; }
	100% { bottom: 0; }
}

@media screen and (orientation: landscape) {
/*	.video_iframe_inner {
		aspect-ratio: 16/9;
		height: 90%;
	}
*/}

@media screen and (orientation: portrait) {
/*	.video_iframe_inner {
		aspect-ratio: 9/16;
		width: 90%;
	}*/
}


@media screen and (max-width: 1728px) {
	:root {
		--slider_width: 41.204vw;
		--slider_margin: 1vw;
		--masked_square_size: 4.63vw;
		--footer_square_size: 5.672vw;
	}

	.slider_glass {
		width: 3.473vw;
		height: 3.473vw;
	}

	.footer_bottom > img:nth-child(1) { width: 30.845vw; }
	.footer_bottom > img:nth-child(2) { width: 8.565vw; }
	.footer_bottom > img:nth-child(3) { width: 15.336vw; }

	.footer_link_icon { width: 2.894vw; height: 2.894vw; }
	.footer_logo { width: 5.209vw; }

	html { font-size: 0.926vw; }

	.inner_w { max-width: 77.894vw; }
	.slider_page {
		width: 4.63vw; height: 4.63vw;
	}

	.slider_page svg { width: 2vw; }
}


@media screen and (max-width: 1400px) {
	.masked_right { font-size: 1.2rem; }
	.downarrow > img { width: 3vw; }
}


@media screen and (max-width: 1337px) {
	.animated_text {
		font-size: 4.488vw;
	}
}


@media screen and (max-width: 1100px) {
	:root {
		--header_logo_width: 156px;
		--header_height: 110px;
	}

	.mobile_menu a { font-size: 2.5rem; }

	.header_menu { display: none; }
	.header_submenu { height: 34px; font-size: 14px; }
	.header_logo { width: 156px; }


	.header_inner {
		padding: 0 3rem; 
		justify-content: space-between;
	}

	.mode_switcher_cont {
		flex: 1 1;
		text-align: center;
	}

	.menu_hamburger_cont {
		display: block;
	}
	.menu_hamburger {
		display: inline-flex;
	}
}

@media screen and (max-width: 790px) {
	:root {
		--slider_fullwidth: 100%;
	}

	.video_iframe_inner {
		width: 100%;
	}

	.slider_glass {
		width: 35px;
		height: 35px;
	}

	.video_main_cont2,
	.video_main_cont {
		cursor: auto;
	}


	.story1 div::before,
	.story2 div::before,
	.story3 div::before,
	.story4 div::before,
	.video_main_cont2::before,
	.video_main_cont::before {
		content: " ";
		position: absolute;
		left: 0; right: 0; top: 0; bottom: 0;
		background-image: url(../img/cursor.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100px 100px;
		z-index: 5;
	}
	.video_main_cont[playing="true"]::before {
		display: none;
	}

	.masked_border {
		display: block;
		padding-left: 0;
		padding-right: 0;
	}

	.masked_left {
		padding: 0 9rem;
		margin-bottom: 3rem;
		font-size: 4.35rem;
	}
	.masked_right {
		font-size: 2.4rem;
		padding: 0 8rem;
	}

	.slider_cont {
		flex-direction: column-reverse;
	}

	.slider_cont_r {
		margin-right: auto;
	}
	.slider_cont_l {
		flex: 0 0 auto;
		width: 100%;
		margin-top: 2rem;
	}

	.slider_buttons {
		margin: 0;
		float: right;
	}

	.slider_index {
		font-size: 7rem;
	}

	.slider_downloadlink,
	.slider_output { font-size: 3rem; }
	.slider_output {
		height: auto;
		margin: 2rem 0;
	}

	.slider_page {
		width: 6.63vw; height: 6.63vw;
		margin-left: .5em;
	}

	footer {}

	.footer_col_0nw, .footer_col_0 { width: 100%; }
	.footer_row {
		display: block;
	}

	.footer_link_l,
	.footer_link_b { font-size: 3rem; }

	.footer_addres_1,
	.footer_addres_2 {
		display: inline-block;
		margin-bottom: 4rem;
	}

	.footer_link_b {
		margin-top: 1.5em;
		margin-bottom: .5rem;
	}

	.footer_link_icon {
		width: 40px;
		height: 40px;
		margin-right: 1rem;
	}

	.footer_col_1r {
		text-align: left;
	}

	.footer_logo {
		margin: 4rem 0;
		width: 10vw;
	}

	.video_share > a {
		margin: 0 1em;
		width: 40px;
		height: 40px;
	}

}



@media screen and (max-width: 600px) {
	:root {
		--header_logo_width: 40px;
		--footer_square_size: 7.672vw;
	}

	.story1 div::before,
	.story2 div::before,
	.story3 div::before,
	.story4 div::before,
	.video_main_cont2::before,
	.video_main_cont::before {
		background-size: 50px 50px;
	}


	.mobile_menu a { font-size: 20px; }

	.header_submenu a { display: none; }
	.header_submenu_s {
		display: inline-block;
	}

	.menu_hamburger_cont { width: auto; }

	.header_logo { display: none; }
	.header_logo_m {
		display: inline-block;
		width: var(--header_logo_width);
	}

	.title { font-size: 14vw; }
	.title_s { font-size: 10.5vw }
	.subtitle { font-size: 10vw; }
	.subtitle_s { font-size: 4vw; }
	.video_claim { font-size: 4vw; }
	.hashtag { font-size: 10vw; }

	.animated_text { font-size: 7vw; }

	.story1, .story2, .story3, .story4 {
		font-size: 4vw;
	}
	.story1 p, .story2 p, .story3 p, .story4 p {
		width: auto;
	}

	.story1 p { margin-top: .5em; }

	.slider_index { font-size: 7vw; }

	.slider_downloadlink, .slider_output {
		font-size: 3.5vw;
	}

	.slider_page {
		width: 8.63vw; height: 8.63vw;
	}
	.slider_page svg { width: 44%; }

	footer { padding-top: 5rem; }

	.footer_bottom { text-align: center; }
	.footer_bottom > img:nth-child(1) { width: 91vw; }
	.footer_bottom > img:nth-child(2) { width: 28.565vw; }
	.footer_bottom > img:nth-child(3) { width: 45.336vw; }
}

@media screen and (max-width: 450px) {
	.animated_text {
		font-size: 30px;
	}
}
