@charset "UTF-8";
/*
 __                        ___  ____                    __      
/\ \                     /'___\/\  _`\   __          __/\ \__   
\ \ \___   _ __    __   /\ \__/\ \ \/\ \/\_\     __ /\_\ \ ,_\  
 \ \  _ `\/\`'__\/'__`\ \ \ ,__\\ \ \ \ \/\ \  /'_ `\/\ \ \ \/  
  \ \ \ \ \ \ \//\ \L\.\_\ \ \_/ \ \ \_\ \ \ \/\ \L\ \ \ \ \ \_ 
   \ \_\ \_\ \_\\ \__/.\_\\ \_\   \ \____/\ \_\ \____ \ \_\ \__\
    \/_/\/_/\/_/ \/__/\/_/ \/_/    \/___/  \/_/\/___L\ \/_/\/__/
                                                 /\____/        
                                                 \_/__/         
	===================================================================
	±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
	## CSS ##
    Theme by Achraf (aka hrafDigit) © 2022 for Grand Jardin Digital © 2022-2023
    (inspired by Hencework Podogy theme [themenerds@gmail.com] © 2016)
		https://codepen.io/hraf
		https://github.com/hrafdigit
    https://www.grandjardindigital.fr
	made [at] Grand Jardin Digital, from Paris (France) w/ &hearts
	±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
	==================================================================
*/

/*------------------------------------------------------------------
[Master Stylesheet]
Project: GJD
++++ Imports, Reset & Normalize ++++
-------------------------------------------------------------------*/

/*
!! NOTE about @import !!
La règle @ @import est utilisée afin d'importer des règles à partir d'autres feuilles de style.
Ces règles @ doivent être utilisées AVANT toutes les autres règles à l'exception de @charset. 
@import n'est pas une instruction imbriquée et ne peut donc pas être utilisée à l'intérieur de groupe de règles conditionnelles.
*/
/* ====================================
	>>> START RESET & NORMALIZE IMPORTS
	========================================== */
/* @import url("reset/normalize.min.css"); */
@import url("reset/reset-meyerweb.css");
/* ========================================
	END RESET & NORMALIZE IMPORTS <<<
	================================= */


/* ====================================
	>>> START LIBS & FRAMEWORKS IMPORTS
	========================================== */
/* !! @import(s) HERE "some-path-or-link-to-file.css"; !! */
/* @import url("libs/bootstrap/v.5.x/v.5.2.1/bootstrap.min.css"); */
/* ========================================
	END LIBS & FRAMEWORKS IMPORTS <<<
	================================= */


/* ========================
	>>> START FONTS IMPORTS
	============================== */
/* !! @import(s) HERE "some-path-or-link-to-file.css"; !! */
@import url("libs/fontawesome/v.6.x/6.2.0/fontawesome.min.css");
@import url("webfonts/webfonts.min.css");
/* ========================================
	END FONTS IMPORTS <<<
	====================== */


/* =======================
	>>> START HRAF IMPORTS
	=========================== */
/* !! @import(s) HERE "some-path-or-link-to-file.css"; !! */
@import url("misc/clouds/clouds.min.css");
/* =========================
	END MY IMPORTS <<<
	=================== */


/* ===============
	>>> START GRID
   ===================== */
/* --------------------------- */
/* --- NOTES SUR LA GRILLE --- */
/* ----- ABOUT THE GRID ------ */
/* --------------------------- */
/* --------------------------- 
		LAPTOP/DESKTOP
		Device Width :		1280px
		Columns :			--
		Grid Width :		---px
		Grid Margin :		---px
		Column Width :		---px
		Column Padding :	---px
		Gutter Width :		---px
	------------------------------ */
/* --------------------------- 
		TABLET
		Device Width :		768px (portrait)
		Device Width :		1024px (landscape)
		Columns :			--
		Grid Width :		---px
		Grid Margin :		---px
		Column Width :		---px
		Column Padding :	---px
		Gutter Width :		---px
	------------------------------ */
/* --------------------------- 
		MOBILE
		Device Width :		360px (portrait)
		Columns :			--
		Grid Width :		---px
		Grid Margin :		---px
		Column Width :		---px
		Column Padding :	---px
		Gutter Width :		---px
	------------------------------ */
/* --------------------------- 
		WIDE SCREENS
		Device Width :		---px
		Columns :			--
		Grid Width :		---px
		Grid Margin :		---px
		Column Width :		---px
		Column Padding :	---px
		Gutter Width :		---px
	------------------------------ */
/* --------------------------- 
		SMART WATCHES
		Device Width :		---px
		Columns :			--
		Grid Width :		---px
		Grid Margin :		---px
		Column Width :		---px
		Column Padding :	---px
		Gutter Width :		---px
	------------------------------ */
/* ===================
	END GRID <<<
   ============= */



/* ===========================================
	>>> START SIMPLE MEDIA-QUERIES BREAKPOINTS
	================================================ */


/* ===============================================
	END SIMPLE MEDIA-QUERIES BREAKPOINTS <<<
	======================================== */


/* =================
	>>> START BASICS
   ======================= */

/* --------------------- */
/* --- GLOBAL BASICS --- */
/* --------------------- */

/* =====================
	END BASICS <<<
   =============== */

/* ============================
	>>> START MAIN
	================================= */

/* ---------------------------------- */
/* --- MAIN | PRINCIPAL-CONTAINER --- */
/* ---------------------------------- */

/* +++ Preloader +++ */
/* +++++++++++++++++ */
.preloader {
	background: #fff;
	/* background-color: aqua; */
}
.preloader-bg {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 110;
	overflow: hidden !important;
	background: #fff;
	/* background-color: red; */
}
.preloadLine {
	width: 100%;
	height: 4px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
		-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	pointer-events: none;
	background: #000;
	/* background-color: green; */
}
.preloadLine::after {
	content: '';
	width: 100px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
		-webkit-transition: opacity 0.2s, box-shadow 2s 4s;
	transition: opacity 0.2s, box-shadow 2s 4s;
		-webkit-transform: rotate(2deg) translateY(-2px);
	transform: rotate(2deg) translateY(-2px);
	background: #000;
	/* background-color: yellow; */
}
.preloadLine.preloadLineAnimation {
	z-index: 100;
	opacity: 1;
		-webkit-transition: -webkit-transform 5s ease-in, opacity 1s 5s;
	transition: transform 5s ease-in, opacity 1s 5s;
		-webkit-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}
.preloadLine.preloadLineAnimation::after {
	opacity: 1;
}

/* +++ Global Container +++ */
/* +++++++++++++++++++++ */
.global-container {
    /* width: 100%; */
	/* height: 100%; */
	/* display: flex; */
	/* flex-direction: row; */
	/* flex-wrap: wrap; */
	/* justify-content: center; */
	/* position: relative; */
	margin: 0;
	padding: 0;
}

/* +++ Global Layout +++ */
/* +++++++++++++++++++++ */
#global__layout {
    width: 100%;
	height: 100%;
	/* display: flex; */
	/* flex-direction: row; */
	/* flex-wrap: wrap; */
	/* justify-content: center; */
	position: relative;
	margin: 0;
	padding: 0;
    /* background-color: bisque; */
    /* background-color: transparent; */
}

#splitLayout {
    width: 100%;
	height: auto;
	/* display: flex; */
	/* flex-direction: column; */
	/* flex-wrap: wrap; */
    /* justify-content: flex-start; */
    will-change: transform;
    -webkit-transition: -webkit-transform 0.4s ease-out;
    -moz-transition: -moz-transform 0.4s ease-out;
    -o-transition: -o-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    /* background-color: blueviolet; */
}
.splitLayout-positionInitial {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    /* background-color: red; */
}
.splitLayout-pushToRight {
    /* right: 0; */
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.splitLayout-pushToLeft {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

/* #global__layout.global__nav {
    height: 48px;
    max-height: 48px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: blue;
} */
/* .global__nav ul {
    height: 48px;
    max-height: 48px;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: violet;
} */

/* +++ Global Buttons-Nav +++ */
/* ++++++++++++++++++++++++++ */
.btn {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    margin: 16px 0 0;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: 0px;
    color: #000;
    z-index: 999;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    -moz-transition: -moz-transform 0.4s ease-in-out;
    -o-transition: -o-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    background-color: #fff;
}
.btn__info {
    position: absolute;
    left: 16px;
    background-size: 28px 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='more-plus-informations' data-name='more-plus-informations'%3E%3Cg id='more-info'%3E%3Cpath d='M12,14a1.95,1.95,0,1,1,1.43-.57A1.94,1.94,0,0,1,12,14ZM5,14a2,2,0,1,1,0-4,2,2,0,1,1,0,4Zm14,0a1.95,1.95,0,1,1,1.43-.57A1.94,1.94,0,0,1,19,14Z' style='fill:%231a3345'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /* background: yellowgreen; */
}
.btn__contact {
    position: absolute;
    right: 16px;
    background-size: 32px 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='contact-informations' data-name='contact-informations'%3E%3Cg id='contact-info'%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3Cpath id='Shape' d='M7.43,5.93A.56.56,0,0,1,8,6.42v1h4.29v.18a4.17,4.17,0,0,0,.11.94H7.05a.93.93,0,0,0-.93.93v1.31h7.66a4.12,4.12,0,0,0,4.29.57V17A2.05,2.05,0,0,1,16,19h-9A2.05,2.05,0,0,1,5,17V9.48a2,2,0,0,1,1.87-2v-1A.56.56,0,0,1,7.43,5.93Zm9.52,6H6.12v5a.93.93,0,0,0,.93.93h9A.94.94,0,0,0,17,17Zm-1.31-6a.55.55,0,0,1,.55.49v1a2,2,0,0,1,1.87,2v.13a2.69,2.69,0,0,1-1.12.56V9.48A.93.93,0,0,0,16,8.55H14a2.46,2.46,0,0,1-.18-.94c0-.06,0-.12,0-.18h1.3V6.49a.56.56,0,0,1,.48-.55Z' style='fill:%231a3345'/%3E%3Cpath id='Shape-2' data-name='Shape' d='M16.39,10.23A2.62,2.62,0,1,1,19,7.61,2.62,2.62,0,0,1,16.39,10.23Z' style='fill:%23a7b4be'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-color: rgba(255, 255, 255, .24);
    /* background: yellowgreen; */
}
.btn svg {
    /* width: 32px; */
    /* height: 32px; */
    position: absolute;
}
.btn__info-back,
.btn__contact-close {
    --setViewport: 100vw;
    --btnWidth: 40px;
    --calcVw: calc( var(--setViewport) - var(--btnWidth));
    position: absolute;
    left: -16px;
    opacity: 1;
    background-size: 28px 28px;
    background-color: rgba(255, 255, 255, .48);
    -webkit-transform: translateX(var(--calcVw));
    -moz-transform: translateX(var(--calcVw));
    -ms-transform: translateX(var(--calcVw));
    -o-transform: translateX(var(--calcVw));
    transform: translateX(var(--calcVw));
    transition: transform .2s ease-out 50ms;
}
.btn__info-back {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='back-retour-active' data-name='back-retour-active'%3E%3Cg id='back-active'%3E%3Cpath d='M17.82,11.54a.62.62,0,0,0-.46-.18H8.29L12.5,7.14a.69.69,0,0,0,.21-.5.57.57,0,0,0-.21-.46A.75.75,0,0,0,12,6a.92.92,0,0,0-.5.14L6.14,11.5a1,1,0,0,0,0,1l5.36,5.36A.92.92,0,0,0,12,18a.75.75,0,0,0,.5-.18.57.57,0,0,0,.21-.46.69.69,0,0,0-.21-.5L8.29,12.64h9.07a.62.62,0,0,0,.46-.18A.6.6,0,0,0,18,12,.62.62,0,0,0,17.82,11.54Z' style='fill:%23deeefa'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /* background-color: hotpink; */
}
.btn__contact-close {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='close-fermer-active' data-name='close-fermer-active'%3E%3Cg id='close-active'%3E%3Cpath d='M6.27,6.9a.49.49,0,0,1-.16-.37A.55.55,0,0,1,6.64,6,.49.49,0,0,1,7,6.16l5.1,5.15,5.1-5.15A.5.5,0,0,1,17.58,6a.49.49,0,0,1,.37.16.5.5,0,0,1,.16.37A.49.49,0,0,1,18,6.9L12.8,12,18,17.1a.49.49,0,0,1,.16.37.5.5,0,0,1-.16.37.49.49,0,0,1-.37.16.5.5,0,0,1-.37-.16l-5.1-5.15L7,17.84a.49.49,0,0,1-.37.16.55.55,0,0,1-.53-.53.49.49,0,0,1,.16-.37L11.42,12Z' style='fill:%23ff6359'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /* background-color: hotpink; */
}
.btn__surprise-close {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 16px;
    /* top: 0; */
    z-index: 100;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='close-fermer-initial' data-name='close-fermer-initial'%3E%3Cg id='close-fermer'%3E%3Cpath d='M6.27,6.9a.49.49,0,0,1-.16-.37A.55.55,0,0,1,6.64,6,.49.49,0,0,1,7,6.16l5.1,5.15,5.1-5.15A.5.5,0,0,1,17.58,6a.49.49,0,0,1,.37.16.5.5,0,0,1,.16.37A.49.49,0,0,1,18,6.9L12.8,12,18,17.1a.49.49,0,0,1,.16.37.5.5,0,0,1-.16.37.49.49,0,0,1-.37.16.5.5,0,0,1-.37-.16l-5.1-5.15L7,17.84a.49.49,0,0,1-.37.16.55.55,0,0,1-.53-.53.49.49,0,0,1,.16-.37L11.42,12Z' style='fill:%231a3345'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 24px 24px;
    background-color: rgba(255, 255, 255, .24);
}
.btn__info,
.btn__contact,
.btn__info-back,
.btn__contact-close,
.btn__surprise-close {
    background-repeat: no-repeat;
    background-position: center center;
}

.btn__info:hover,
.btn__contact:hover {
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: background-image .3s ease-in-out;
    -moz-transition: background-image .3s ease-in-out;
    -o-transition: background-image .3s ease-in-out;
    transition: background-image .3s ease-in-out;
}
.btn__info:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='more-plus-informations-hover' data-name='more-plus-informations-hover'%3E%3Cg id='more-plus-info-hover'%3E%3Cpath d='M12,14a1.95,1.95,0,1,1,1.43-.57A1.94,1.94,0,0,1,12,14ZM5,14a2,2,0,1,1,0-4,2,2,0,1,1,0,4Zm14,0a1.95,1.95,0,1,1,1.43-.57A1.94,1.94,0,0,1,19,14Z' style='fill:%23ff6359'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn__contact:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='contact-informations-hover' data-name='contact-informations-hover'%3E%3Cg id='contact-infor-hover'%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3Cpath id='Shape' d='M7.43,5.93A.56.56,0,0,1,8,6.42v1h4.29v.18a4.17,4.17,0,0,0,.11.94H7.05a.93.93,0,0,0-.93.93v1.31h7.66a4.12,4.12,0,0,0,4.29.57V17A2.05,2.05,0,0,1,16,19h-9A2.05,2.05,0,0,1,5,17V9.48a2,2,0,0,1,1.87-2v-1A.56.56,0,0,1,7.43,5.93Zm9.52,6H6.12v5a.93.93,0,0,0,.93.93h9A.94.94,0,0,0,17,17Zm-1.31-6a.55.55,0,0,1,.55.49v1a2,2,0,0,1,1.87,2v.13a2.69,2.69,0,0,1-1.12.56V9.48A.93.93,0,0,0,16,8.55H14a2.46,2.46,0,0,1-.18-.94c0-.06,0-.12,0-.18h1.3V6.49a.56.56,0,0,1,.48-.55Z' style='fill:%231a3345'/%3E%3Cpath id='Shape-2' data-name='Shape' d='M16.39,10.23A2.62,2.62,0,1,1,19,7.61,2.62,2.62,0,0,1,16.39,10.23Z' style='fill:%23ff6359'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn__info-back:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='back-retour-initial' data-name='back-retour-initial'%3E%3Cg id='back-retour'%3E%3Cpath d='M17.82,11.54a.62.62,0,0,0-.46-.18H8.29L12.5,7.14a.69.69,0,0,0,.21-.5.57.57,0,0,0-.21-.46A.75.75,0,0,0,12,6a.92.92,0,0,0-.5.14L6.14,11.5a1,1,0,0,0,0,1l5.36,5.36A.92.92,0,0,0,12,18a.75.75,0,0,0,.5-.18.57.57,0,0,0,.21-.46.69.69,0,0,0-.21-.5L8.29,12.64h9.07a.62.62,0,0,0,.46-.18A.6.6,0,0,0,18,12,.62.62,0,0,0,17.82,11.54Z' style='fill:%234f697d'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn__contact-close:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='close-fermer-initial' data-name='close-fermer-initial'%3E%3Cg id='close-fermer'%3E%3Cpath d='M6.27,6.9a.49.49,0,0,1-.16-.37A.55.55,0,0,1,6.64,6,.49.49,0,0,1,7,6.16l5.1,5.15,5.1-5.15A.5.5,0,0,1,17.58,6a.49.49,0,0,1,.37.16.5.5,0,0,1,.16.37A.49.49,0,0,1,18,6.9L12.8,12,18,17.1a.49.49,0,0,1,.16.37.5.5,0,0,1-.16.37.49.49,0,0,1-.37.16.5.5,0,0,1-.37-.16l-5.1-5.15L7,17.84a.49.49,0,0,1-.37.16.55.55,0,0,1-.53-.53.49.49,0,0,1,.16-.37L11.42,12Z' style='fill:%234f697d'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* :link,
:focus,
:visited {
}
:active,
:hover {
} */

:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}
::before,
::after {
    position: absolute;
    content: "";
}

/* +++ CSS hover buttons effect +++ */
/* based on Marina_Os codepen https://codepen.io/Marina_Os/pen/OJyWPbL */
.btn span {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    padding: 16px;
    /* padding: 15px 20px; */
    /* font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase; */
    transition: 0.3s;
}
.btn-fx span {
    /* color: rgb(28, 31, 30); */
    border: 1px solid rgba(79, 105, 125, .16);
    /* border: 1px solid rgb(249, 211, 27); */
    /* border: 1px solid rgb(255, 255, 255); */
    transition: 0.2s;
}
.btn-fx span:hover {
    /* background-color: rgb(245, 245, 245); */
    background-color: transparent;
}

.btn__info.btn.hover-border-fx::before,
.btn__info.btn.hover-border-fx::after,
.btn__contact.btn.hover-border-fx::before,
.btn__contact.btn.hover-border-fx::after,
.btn__info-back.btn.hover-border-fx::before,
.btn__info-back.btn.hover-border-fx::after,
.btn__contact-close.btn.hover-border-fx::before,
.btn__contact-close.btn.hover-border-fx::after {
    width: 100%;
    height: 1px;
    z-index: 2;
    transition: 0.35s;
}
.btn__info.btn.hover-border-fx::before,
.btn__info.btn.hover-border-fx::after,
.btn__contact.btn.hover-border-fx::before,
.btn__contact.btn.hover-border-fx::after {
    background-color: rgba(79, 105, 125, 1);
    /* background-color: rgba(236, 99, 92, 1); */
}

.btn__info-back.btn.hover-border-fx::before,
.btn__info-back.btn.hover-border-fx::after {
    background-color: rgba(222, 238, 250, .48);
}

.btn__contact-close.btn.hover-border-fx::before,
.btn__contact-close.btn.hover-border-fx::after {
    /* background-color: rgba(79, 105, 125, 1); */
    background-color: rgba(236, 99, 92, .48);
}
/* .btn__info-back,
.btn__contact-close,
.btn__surprise-close */

.btn.hover-border-fx::before {
    top: 0;
    right: 0;
}
.btn.hover-border-fx::after {
    bottom: 0;
    left: 0;
}
.btn.hover-border-fx:hover::before,
.btn.hover-border-fx:hover::after {
    width: 0%;
    transition: 0.2s 0.2s ease-out;
}
.btn__info.btn.hover-border-fx span::before,
.btn__info.btn.hover-border-fx span::after,
.btn__contact.btn.hover-border-fx span::before,
.btn__contact.btn.hover-border-fx span::after,
.btn__info-back.btn.hover-border-fx span::before,
.btn__info-back.btn.hover-border-fx span::after,
.btn__contact-close.btn.hover-border-fx span::before,
.btn__contact-close.btn.hover-border-fx span::after {
    width: 1px;
    height: 100%;
    z-index: 2;
    transition: 0.25s;
}
.btn__info.btn.hover-border-fx span::before,
.btn__info.btn.hover-border-fx span::after,
.btn__contact.btn.hover-border-fx span::before,
.btn__contact.btn.hover-border-fx span::after {
    background-color: rgba(79, 105, 125, 1);
}
.btn__info-back.btn.hover-border-fx span::before,
.btn__info-back.btn.hover-border-fx span::after {
    background-color: rgba(222, 238, 250, .48);
}
.btn__contact-close.btn.hover-border-fx span::before,
.btn__contact-close.btn.hover-border-fx span::after {
    background-color: rgba(236, 99, 92, .48);
}
.btn.hover-border-fx span::before {
    bottom: 0;
    right: -1px;
}
.btn.hover-border-fx span::after {
    top: 0;
    left: -1px;
}
.btn.hover-border-fx span:hover::before,
.btn.hover-border-fx span:hover::after {
    height: 0%;
}
/* +++ END CSS hover buttons effect +++ */

	/* === Mobile Responsive Media-queries breakpoint === */
	/* MOBILE :: 320/360px to 767px -> target devices till Tablet(Portrait) */
@media screen and (max-width: 767px) {
    .btn {
        width: 32px;
        height: 32px;
        margin: 16px 0 0;
    }
    .btn__info {
        background: rgba(255, 255, 255, .08);
    }
    .btn__contact {
        background: rgba(255, 255, 255, .08);
    }
    .btn__info-back,
    .btn__contact-close {
        left: -16px;
        opacity: 1;
        background-size: 32px 32px;
        background-repeat: no-repeat;
        background-position: center center;
    }
    .btn__info-back {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='Calque_2' data-name='Calque 2'%3E%3Cg id='playground'%3E%3Cpath d='M17.82,11.54a.62.62,0,0,0-.46-.18H8.29L12.5,7.14a.69.69,0,0,0,.21-.5.57.57,0,0,0-.21-.46A.75.75,0,0,0,12,6a.92.92,0,0,0-.5.14L6.14,11.5a1,1,0,0,0,0,1l5.36,5.36A.92.92,0,0,0,12,18a.75.75,0,0,0,.5-.18.57.57,0,0,0,.21-.46.69.69,0,0,0-.21-.5L8.29,12.64h9.07a.62.62,0,0,0,.46-.18A.6.6,0,0,0,18,12,.62.62,0,0,0,17.82,11.54Z'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .btn__contact-close {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg id='Calque_2' data-name='Calque 2'%3E%3Cg id='playground'%3E%3Cpath d='M6.16,6.9A.49.49,0,0,1,6,6.53.55.55,0,0,1,6.53,6a.49.49,0,0,1,.37.16L12,11.31l5.1-5.15A.49.49,0,0,1,17.47,6a.55.55,0,0,1,.53.53.49.49,0,0,1-.16.37L12.69,12l5.15,5.1a.49.49,0,0,1,.16.37.55.55,0,0,1-.53.53.49.49,0,0,1-.37-.16L12,12.69,6.9,17.84a.49.49,0,0,1-.37.16A.55.55,0,0,1,6,17.47a.49.49,0,0,1,.16-.37L11.31,12Z'/%3E%3Crect width='24' height='24' transform='translate(24 24) rotate(180)' style='fill:none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .btn svg {
        width: 24px;
        height: 24px;
        position: absolute;
    }
}
	/* === END Mobile Responsive Media-queries breakpoint === */

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.is-hidden {
    visibility: hidden;
}

.active {
    opacity: 1;
    /* transition: opacity .3s ease-out .5s; */
    /* background-color: lawngreen; */
}

/* +++ Split Layout Left/right +++ */
/* +++++++++++++++++++++++++++++++ */
#splitLayout__main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    margin: 0;
    padding: 0;
    /* -webkit-backface-visibility: hidden; */
    /* backface-visibility: hidden; */
}

#splitLayout__main-left {
    cursor: default;
    /* background: indianred; */
}

#splitLayout__main-right {
    cursor: default;
    background-image: url('../assets/img/rightbg.jpg');
    background-repeat: no-repeat;
    background-attachment:local;
    background-position: center center;
    background-size: cover;
    /* background-color: indigo; */
}

.split__container {
    width: 50%;
    height: 100vh;
    /* max-height: 92vh; */
	position: relative;
	margin: 0;
	padding: 0;
}

	/* === Mobile Responsive Media-queries breakpoint === */
	/* MOBILE :: 320/360px to 767px -> target devices till Tablet(Portrait) */
@media screen and (max-width: 767px) {
    .split__container{
        --setMaxHeight: 50vh;
        --ctaHeight: 48px;
        --calcMaxHVh: calc( var(--setMaxHeight) - var(--ctaHeight));
        width: 100vw;
        height: 50vh;
        /* height: 50%; */
        /* height: var(--calcMaxHVh); */
        /* max-height: var(--calcMaxHVh); */
        /* background: green; */
    }
}
	/* === END Mobile Responsive Media-queries breakpoint === */

.split__left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* justify-items: center; */
    align-content: center;
	/* align-items: center; */
    position: relative;
    margin: 0;
    padding: 0;
    /* background-color: greenyellow; */
}

.split__left header {
    width: 79%;
    height: auto;
    max-height: 64px;
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-weight: 500;
    /* background-color: olivedrab; */
}
.logo {
    width: 32px;
    height: 32px;
    max-width: 48px;
    max-height: 48px;
    display: flex;
    justify-content: center;
    align-content: center;
    /* background: palevioletred; */
}
.logo svg {
    width: 32x;
    height:32px;
    /* background: palegreen; */
}

.small-hr {
    width: 32px;
    height: 4px;
    display: block;
    margin: 0;
    padding: 0;
    /* background: #000 none repeat scroll 0 0; */
    background: rgba(18, 34, 46, .72);
}
#accroche {
    height: 48px;
    margin: 24px 0 0 0;
    padding: 0;
    will-change: transform;
    /* -webkit-transition: -webkit-transform 0.6s ease-in;
    -moz-transition: -moz-transform 0.6s ease-in;
    -o-transition: -o-transform 0.6s ease-in; */
    /* transition: transform 0.6s ease-in 0.15s; */
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(.8, -.5, .2, 1.4) 0.15s;
    -moz-transition: -moz-transform 0.6s cubic-bezier(.8, -.5, .2, 1.4) 0.15s;
    -o-transition: -o-transform 0.6s cubic-bezier(.8, -.5, .2, 1.4) 0.15s;
    transition: transform 0.6s cubic-bezier(.8, -.5, .2, 1.4) 0.15s;
    /* background-color: moccasin; */
}

.split__left header .accroche-subtitle,
.split__left header .accroche-subtitle {
    height: auto;
    /* background-color: lawngreen; */
}
.split__left header .accroche-title {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    color: rgba(35, 68, 92, 1);
}
.split__left header .accroche-subtitle {
    margin: 8px 0 0;
    padding: 0;
    font-size: 13px;
    color: rgba(35, 68, 92, .64);
}
.split__left-items {
    width: 79%;
    height: 65.25%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* justify-items: center; */
    align-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    /* background-color: crimson; */
}
.sl__items-wrap {
    overflow: hidden;
}
.typedJs__container {
    width: 100%;
    min-height: 120px;
    height: 224px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    margin: 64px 0 24px 0;
    padding: 0;
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: "Poppins", sans-serif;
    font-size: 55px;
    font-weight: 600;
    color: rgba(35, 68, 92, 1);
    /* color: red; */
    /* text-transform: capitalize; */
    will-change: transform;
    -webkit-transition: -webkit-transform 0.4s ease-in 500ms;
    -moz-transition: -moz-transform 0.4s ease-in 500ms;
    -o-transition: -o-transform 0.4s ease-in 500ms;
    transition: transform 0.4s ease-in 500ms;
    /* background-color: aqua; */
}
#typedjs .typed__content-first {
    background: magenta;
}
#typed__strings-second {
    width: 100%;
    height: 100%;
    background: yellowgreen;
}
#typedjs .typed__content-second {
    /* width: 100%; */
    /* height: 100%; */
    background: green;
}
#typed_nested {
    /* font-size: 21px; */
}

#typedjs h3 {
    /* width: auto; */
    /* height: auto; */
    /* display: inline-flex; */
    /* font-size: 0px; */
    /* font-size: 34px; */
    font-weight: 600;
    font-style: italic;
    /* color: white; */
    /* background-color: rgba(35, 68, 92, 1); */
}

.surprise__me-container {
    width: 100%;
    max-height: 48px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* align-content: center; */
    margin: 8px 0 0;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.4s ease-in 800ms;
    -moz-transition: -moz-transform 0.4s ease-in 800ms;
    -o-transition: -o-transform 0.4s ease-in 800ms;
    transition: transform 0.4s ease-in 800ms;
    /* background-color: cornflowerblue; */
}
.surprise__me-cta {
    width: auto;
    height: 48px;
    display: flex;
    align-content: center;
    align-items: center;
    cursor: pointer;
    background-color: rgba(18, 34, 46, 1);
}
.surprise__me-text {
    margin: 0 0 0 12px;
    padding: 0 12px 0 0;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.surprise-container {
    width: 100%;
    height: 122.1%;
    /* display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start; */
    /* justify-items: center; */
    /* align-content: center; */
    position: absolute;
    top: 0;
    margin: -64px 0 0 0;
    padding: 0;
    z-index: -10;
    /* background-color: gold; */
}
.surprise-pictures {
    width: auto;
    height: 100%;
}
.surprise-pictures img {
    width: auto;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}

.split__left footer {
    width: 79%;
    max-height: 48px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    font-family: "Poppins", sans-serif;
    font-size: 8px;
    font-weight: 500;
    /* background-color: darkgrey; */
}
.split__left footer .social__media {
    width: auto;
    height: 48px;
    display: block;
    margin: 0;
    padding: 0;
    /* background-color: sandybrown; */
}
.social__media ul {
    width: auto;
    height: 24px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    /* background-color: fuchsia; */
}
.social__media ul li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0px;
    /* background-color: burlywood; */
}
.social__media ul li a svg,
.social__media ul li a:link svg,
.social__media ul li a:visited svg {
    width: 24px;
    height: 24px;
    margin: 0 16px 0 0;
    padding: 0;
}
.social__media ul li a svg path,
.social__media ul li a:link svg path,
.social__media ul li a:visited svg path {
    fill: #4f697d;
}
.social__media ul li a:hover svg path,
.social__media ul li a:focus svg path {
    fill: #1a3345;
}
.isDisabled {
    cursor: not-allowed;
    opacity: 0.25;
    pointer-events: none;
    text-decoration: none;
    color: currentColor;
}

.split__left footer .copyright {
    width: auto;
    margin: 24px 0 0 0;
    padding: 0;
    /* background-color: teal; */
}
	/* === Mobile Responsive Media-queries breakpoint === */
	/* MOBILE :: 320/360px to 767px -> target devices till Tablet(Portrait) */
@media screen and (max-width: 767px) {
    .split__left {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
        /* justify-items: center; */
        align-content: center;
        align-items: center;
        /* background: green; */
    }
    .split__left header {
        max-height: 56px;
        margin-top: 72px;
    }
    .split__left header h1 {
        max-height: 48px;
        margin: 16px 0 0;
        padding: 0;
        font-size: 13px;
        /* color: red; */
        /* background-color: violet; */
    }
    .small-hr {
        max-height: 16px;
        margin: 4px 0;
        padding: 0;
        /* background-color: violet; */
    }
    .split__left header h1#accroche {
        margin: 24px 0 0 0;
    }
    .typedJs__container {
        min-height: 96px;
        font-size: 34px;
        margin: 8px 0 0;
        padding: 0;
        /* background-color: palegreen; */
    }
    .split__left footer {
        display: none;
    }
}
	/* === END Mobile Responsive Media-queries breakpoint === */

.split__right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* justify-items: center; */
    align-content: center;
	/* align-items: center; */
    position: relative;
    margin: 0;
    padding: 0;
    background-color: goldenrod;
}

.clouds__container {
    width: 100%;
    height: 100%;
    /* background-color: lightcoral; */
}

#splitLayout__main-right figure figcaption {
    max-height: calc(100% - 7rem);
    display: inline-block;
    /* display: inline-flex; */
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    padding: 0.6rem 0.15rem;
    overflow: hidden;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    border-radius: 0.875rem;
    /* -== font styles ==- */
    font-family: avenir-medium, arial, helvetica, sans-serif;
    font-weight: 400;
    font-size: .6875rem;
    line-height: .875rem;
    /* -== text styles ==- */
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* -== background styles ==- */
    background-color: rgba(255, 255, 255, .32);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);

}

/* .grand-jardin-phare {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    object-position: center bottom;
    object-fit: contain;
    object-fit: cover;
    z-index: 200;
    background-color: red;
} */


/* +++ Aside Layout Left-&-right +++ */
/* +++++++++++++++++++++++++++++++ */

.aside__layout {
    width: 100%;
    height: auto;
	/* display: flex; */
	/* flex-direction: row; */
	/* flex-wrap: wrap; */
	/* justify-content: center; */
	/* position: relative; */
    position: absolute;
    top: 0;
	margin: 0;
	padding: 0;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.4s ease-out;
    -moz-transition: -moz-transform 0.4s ease-out;
    -o-transition: -o-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
}

#aside__layout-left {
    left: 0;
    /* overflow: visible; */
} 
#aside__layout-right {
    right: 0;
    /* overflow: visible; */
}


.is__hidden-left {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    /* background-color: darkorange; */
}

.is__hidden-right {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    /* background-color: orangered; */
}

.is__visible-left,
.is__visible-right {
    overflow: visible;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.is__visible-left {
    background-color: transparent;
}

.is__visible-right {
    background-color: transparent;
}

.aside__layout header {
    height: 64px;
    margin: 0;
    padding: 0;
    background-color: transparent;
}


/* === Aside Layout Left === */
/* ================================= */

#aside__layout-left {
    font-family: "Poppins", sans-serif;
    background-color: rgba(255, 255, 255, 1);
    /* background-color: tan; */
}

#aside__layout-left header {
    width: 100%;
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background-color: rgba(9, 17, 23, 1);
    /* background-color: tan; */
}
#aside__layout-left header nav {
    margin: 16px 0 0 0;
    padding: 0;
    /* background-color: yellow; */
}
#aside__layout-left header nav .logo {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 16px;
    padding: 0;
    /* background-color: red; */
}
#aside__layout-left header nav .logo p {
    position: absolute;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0;
    /* background-color: green; */
}
#aside__layout-left header nav .logo svg {
    width: auto;
    /* height: 32px; */
    max-height: 32px;
    /* position: relative; */
    /* top: 0; */
    /* left: 0; */
    margin: 0 0 0 -3px;
    /* margin: 0; */
    padding: 0;
    /* background-color: blue; */
}
#aside__layout-left header nav .logo svg path {
    fill: rgba(255, 255, 255, .8)
}


#aside__layout-left .hero {
    width: 100%;
    height: 672px;
    max-height: 672px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: absolute;
    top: 64px;
    left: 0;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1280 176'%3E%3Cdefs%3E%3ClinearGradient id='Dégradé_sans_nom_14' y1='88' x2='1280' y2='88' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='0.5' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23f2f2f2' stop-opacity='0'/%3E%3C/linearGradient%3E%3Cmask id='mask' x='0' y='0' width='1280' height='176' maskUnits='userSpaceOnUse'%3E%3Crect width='1280' height='176' style='fill:url(%23Dégradé_sans_nom_14)'/%3E%3C/mask%3E%3C/defs%3E%3Cg id='Calque_2' data-name='Calque 2'%3E%3Cg id='aside_left-hero_-_copie' data-name='aside_left-hero - copie'%3E%3Cg style='mask:url(%23mask)'%3E%3Cg style='opacity:0.32'%3E%3Cpath d='M65.64,23.4,76.58,28a47.44,47.44,0,0,0,36.47,0L124,23.4a47.44,47.44,0,0,1,36.47,0L171.4,28a47.41,47.41,0,0,0,36.46,0L218.8,23.4a47.44,47.44,0,0,1,36.47,0L266.21,28a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,28a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L455.84,28a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L550.66,28a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L645.47,28a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0L740.28,28a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.46,47.46,0,0,1,35.64.34L929.91,28a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L1024.73,28a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0L1119.54,28A47.44,47.44,0,0,0,1156,28L1167,23.4a47.44,47.44,0,0,1,36.47,0L1214.36,28a47.44,47.44,0,0,0,36.47,0L1280,15.8V0l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,7.6a47.44,47.44,0,0,0-36.47,0L1156,12.16a47.44,47.44,0,0,1-36.47,0L1108.6,7.6a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,7.6a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L918.49,7.4a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,7.6a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,7.6a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,7.6a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,7.6a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,7.6a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,7.6a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,7.6A47.44,47.44,0,0,0,124,7.6l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,7.6a47.44,47.44,0,0,0-36.47,0L0,19.75V35.56L29.17,23.4A47.44,47.44,0,0,1,65.64,23.4Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,39.2l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,39.2a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L218.8,39.2a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,43.76a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,39.2a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,31.6V15.8L1250.83,28a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,28a47.44,47.44,0,0,1-36.47,0L1108.6,23.4a47.41,47.41,0,0,0-36.46,0L1061.2,28a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L966.38,28a47.44,47.44,0,0,1-36.47,0L918.49,23.2a47.46,47.46,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72L824.53,24a47.42,47.42,0,0,0-37.37-.39L776.75,28a47.44,47.44,0,0,1-36.47,0L729.34,23.4a47.41,47.41,0,0,0-36.46,0L681.94,28a47.44,47.44,0,0,1-36.47,0L634.53,23.4a47.44,47.44,0,0,0-36.47,0L587.12,28a47.41,47.41,0,0,1-36.46,0L539.72,23.4a47.44,47.44,0,0,0-36.47,0L492.31,28a47.44,47.44,0,0,1-36.47,0L444.9,23.4a47.44,47.44,0,0,0-36.47,0L397.49,28A47.41,47.41,0,0,1,361,28L350.09,23.4a47.44,47.44,0,0,0-36.47,0L302.68,28a47.44,47.44,0,0,1-36.47,0L255.27,23.4a47.44,47.44,0,0,0-36.47,0L207.86,28a47.41,47.41,0,0,1-36.46,0L160.46,23.4a47.44,47.44,0,0,0-36.47,0L113.05,28a47.44,47.44,0,0,1-36.47,0L65.64,23.4a47.44,47.44,0,0,0-36.47,0L0,35.56v15.8L29.17,39.2A47.44,47.44,0,0,1,65.64,39.2Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,55l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0L218.8,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L313.62,55a47.44,47.44,0,0,1,36.47,0L361,59.56a47.32,47.32,0,0,0,36.46,0L408.43,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L503.25,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0L598.06,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L692.88,55a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0L977.32,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1072.14,55a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1167,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,47.41V31.6l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,43.76a47.44,47.44,0,0,1-36.47,0L1108.6,39.2a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L918.49,39a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.44,47.44,0,0,1-36.47,0L729.34,39.2a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,39.2a47.44,47.44,0,0,0-36.47,0L0,51.36v15.8L29.17,55A47.44,47.44,0,0,1,65.64,55Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,55l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0L218.8,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L313.62,55a47.44,47.44,0,0,1,36.47,0L361,59.56a47.32,47.32,0,0,0,36.46,0L408.43,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L503.25,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0L598.06,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L692.88,55a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0L977.32,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1072.14,55a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1167,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,47.41V31.6l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,43.76a47.44,47.44,0,0,1-36.47,0L1108.6,39.2a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L918.49,39a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.44,47.44,0,0,1-36.47,0L729.34,39.2a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,39.2a47.44,47.44,0,0,0-36.47,0L0,51.36v15.8L29.17,55A47.44,47.44,0,0,1,65.64,55Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,55l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0L218.8,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L313.62,55a47.44,47.44,0,0,1,36.47,0L361,59.56a47.32,47.32,0,0,0,36.46,0L408.43,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L503.25,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0L598.06,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L692.88,55a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0L977.32,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1072.14,55a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1167,55a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,47.41V31.6l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,43.76a47.44,47.44,0,0,1-36.47,0L1108.6,39.2a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L918.49,39a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.44,47.44,0,0,1-36.47,0L729.34,39.2a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,39.2a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,39.2a47.44,47.44,0,0,0-36.47,0L0,51.36v15.8L29.17,55A47.44,47.44,0,0,1,65.64,55Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,70.81l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0L361,75.37a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,71a47.42,47.42,0,0,1,37.37.39L832.58,75a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,63.21V47.41l-29.17,12.15a47.35,47.35,0,0,1-36.47,0L1203.42,55A47.44,47.44,0,0,0,1167,55L1156,59.56a47.35,47.35,0,0,1-36.47,0L1108.6,55a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L1013.79,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,54.8a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0L729.34,55a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L634.53,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L539.72,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L444.9,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L350.09,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L255.27,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L160.46,55A47.44,47.44,0,0,0,124,55l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L65.64,55a47.44,47.44,0,0,0-36.47,0L0,67.16V83L29.17,70.81A47.35,47.35,0,0,1,65.64,70.81Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,70.81l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0L361,75.37a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,71a47.42,47.42,0,0,1,37.37.39L832.58,75a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,63.21V47.41l-29.17,12.15a47.35,47.35,0,0,1-36.47,0L1203.42,55A47.44,47.44,0,0,0,1167,55L1156,59.56a47.35,47.35,0,0,1-36.47,0L1108.6,55a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L1013.79,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,54.8a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0L729.34,55a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L634.53,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L539.72,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L444.9,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L350.09,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L255.27,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L160.46,55A47.44,47.44,0,0,0,124,55l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L65.64,55a47.44,47.44,0,0,0-36.47,0L0,67.16V83L29.17,70.81A47.35,47.35,0,0,1,65.64,70.81Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,70.81l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0L361,75.37a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,71a47.42,47.42,0,0,1,37.37.39L832.58,75a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,63.21V47.41l-29.17,12.15a47.35,47.35,0,0,1-36.47,0L1203.42,55A47.44,47.44,0,0,0,1167,55L1156,59.56a47.35,47.35,0,0,1-36.47,0L1108.6,55a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L1013.79,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,54.8a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0L729.34,55a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L634.53,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L539.72,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L444.9,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L350.09,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L255.27,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L160.46,55A47.44,47.44,0,0,0,124,55l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L65.64,55a47.44,47.44,0,0,0-36.47,0L0,67.16V83L29.17,70.81A47.35,47.35,0,0,1,65.64,70.81Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,86.61l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,91.17a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,79V63.21l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0L1156,75.37a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42A47.44,47.44,0,0,1,832.58,75l-8.05-3.55A47.42,47.42,0,0,0,787.16,71l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,70.81a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,70.81a47.35,47.35,0,0,0-36.47,0L0,83V98.77L29.17,86.61A47.44,47.44,0,0,1,65.64,86.61Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,86.61l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,91.17a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,79V63.21l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0L1156,75.37a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42A47.44,47.44,0,0,1,832.58,75l-8.05-3.55A47.42,47.42,0,0,0,787.16,71l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,70.81a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,70.81a47.35,47.35,0,0,0-36.47,0L0,83V98.77L29.17,86.61A47.44,47.44,0,0,1,65.64,86.61Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,86.61l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,91.17a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,79V63.21l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0L1156,75.37a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42A47.44,47.44,0,0,1,832.58,75l-8.05-3.55A47.42,47.42,0,0,0,787.16,71l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,70.81a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,70.81a47.35,47.35,0,0,0-36.47,0L0,83V98.77L29.17,86.61A47.44,47.44,0,0,1,65.64,86.61Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,86.61l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,91.17a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,79V63.21l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0L1156,75.37a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42A47.44,47.44,0,0,1,832.58,75l-8.05-3.55A47.42,47.42,0,0,0,787.16,71l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,70.81a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,70.81a47.35,47.35,0,0,0-36.47,0L0,83V98.77L29.17,86.61A47.44,47.44,0,0,1,65.64,86.61Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,86.61l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,91.17a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,86.61a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,79V63.21l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0L1156,75.37a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42A47.44,47.44,0,0,1,832.58,75l-8.05-3.55A47.42,47.42,0,0,0,787.16,71l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,70.81a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,70.81a47.35,47.35,0,0,0-36.47,0L0,83V98.77L29.17,86.61A47.44,47.44,0,0,1,65.64,86.61Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,102.41,76.58,107a47.44,47.44,0,0,0,36.47,0L124,102.41a47.44,47.44,0,0,1,36.47,0L171.4,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L266.21,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L455.84,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L550.66,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L645.47,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0L740.28,107a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.42a47.41,47.41,0,0,1,35.64.33L929.91,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,94.81V79l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,91.17a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,86.61a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,86.61a47.44,47.44,0,0,0-36.47,0L0,98.77v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,102.41Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,102.41,76.58,107a47.44,47.44,0,0,0,36.47,0L124,102.41a47.44,47.44,0,0,1,36.47,0L171.4,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L266.21,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L455.84,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L550.66,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L645.47,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0L740.28,107a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.42a47.41,47.41,0,0,1,35.64.33L929.91,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,94.81V79l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,91.17a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,86.61a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,86.61a47.44,47.44,0,0,0-36.47,0L0,98.77v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,102.41Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,102.41,76.58,107a47.44,47.44,0,0,0,36.47,0L124,102.41a47.44,47.44,0,0,1,36.47,0L171.4,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L266.21,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L455.84,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L550.66,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L645.47,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0L740.28,107a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.42a47.41,47.41,0,0,1,35.64.33L929.91,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,94.81V79l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,91.17a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,86.61a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,86.61a47.44,47.44,0,0,0-36.47,0L0,98.77v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,102.41Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,102.41,76.58,107a47.44,47.44,0,0,0,36.47,0L124,102.41a47.44,47.44,0,0,1,36.47,0L171.4,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L266.21,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L455.84,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L550.66,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L645.47,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0L740.28,107a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.42a47.41,47.41,0,0,1,35.64.33L929.91,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,94.81V79l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,91.17a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,86.61a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,86.61a47.44,47.44,0,0,0-36.47,0L0,98.77v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,102.41Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,102.41,76.58,107a47.44,47.44,0,0,0,36.47,0L124,102.41a47.44,47.44,0,0,1,36.47,0L171.4,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L266.21,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L455.84,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L550.66,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L645.47,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0L740.28,107a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.42a47.41,47.41,0,0,1,35.64.33L929.91,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,94.81V79l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,91.17a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,86.61a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,86.61a47.44,47.44,0,0,0-36.47,0L0,98.77v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,102.41Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,118.21l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,118.21a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,122.77a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,110.62V94.81L1250.83,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L1061.2,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L966.38,107a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73L824.53,103a47.42,47.42,0,0,0-37.37-.39L776.75,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L681.94,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L587.12,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L492.31,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L397.49,107A47.41,47.41,0,0,1,361,107l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L302.68,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L207.86,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L113.05,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,114.57v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,118.21Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,118.21l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,118.21a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,122.77a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,110.62V94.81L1250.83,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L1061.2,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L966.38,107a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73L824.53,103a47.42,47.42,0,0,0-37.37-.39L776.75,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L681.94,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L587.12,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L492.31,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L397.49,107A47.41,47.41,0,0,1,361,107l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L302.68,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L207.86,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L113.05,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,114.57v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,118.21Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,118.21l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,118.21a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,122.77a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,110.62V94.81L1250.83,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L1061.2,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L966.38,107a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73L824.53,103a47.42,47.42,0,0,0-37.37-.39L776.75,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L681.94,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L587.12,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L492.31,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L397.49,107A47.41,47.41,0,0,1,361,107l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L302.68,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L207.86,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L113.05,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,114.57v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,118.21Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,118.21l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,118.21a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,122.77a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,110.62V94.81L1250.83,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L1061.2,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L966.38,107a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73L824.53,103a47.42,47.42,0,0,0-37.37-.39L776.75,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L681.94,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L587.12,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L492.31,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L397.49,107A47.41,47.41,0,0,1,361,107l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L302.68,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L207.86,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L113.05,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,114.57v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,118.21Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,118.21l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,118.21a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,122.77a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,110.62V94.81L1250.83,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L1061.2,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L966.38,107a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73L824.53,103a47.42,47.42,0,0,0-37.37-.39L776.75,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L681.94,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L587.12,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L492.31,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L397.49,107A47.41,47.41,0,0,1,361,107l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L302.68,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L207.86,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L113.05,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,114.57v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,118.21Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,118.21l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,118.21a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,122.77a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,110.62V94.81L1250.83,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L1061.2,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L966.38,107a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73L824.53,103a47.42,47.42,0,0,0-37.37-.39L776.75,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L681.94,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L587.12,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L492.31,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L397.49,107A47.41,47.41,0,0,1,361,107l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L302.68,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L207.86,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L113.05,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,114.57v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,118.21Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,118.21l10.94,4.56a47.35,47.35,0,0,0,36.47,0L124,118.21a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,122.77a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.32,47.32,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.56a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.35,47.35,0,0,0,36.47,0L1280,110.62V94.81L1250.83,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L1061.2,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L966.38,107a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.39,47.39,0,0,1-36.54-.73L824.53,103a47.42,47.42,0,0,0-37.37-.39L776.75,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0L681.94,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L587.12,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L492.31,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L397.49,107A47.41,47.41,0,0,1,361,107l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L302.68,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L207.86,107a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L113.05,107a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,114.57v15.8l29.17-12.16A47.44,47.44,0,0,1,65.64,118.21Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,134l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L218.8,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L313.62,134a47.35,47.35,0,0,1,36.47,0L361,138.58a47.41,47.41,0,0,0,36.46,0L408.43,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L503.25,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L598.06,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L692.88,134a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0L977.32,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,126.42v-15.8l-29.17,12.15a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,122.77a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,118a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,130.37v15.8L29.17,134A47.35,47.35,0,0,1,65.64,134Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,134l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L218.8,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L313.62,134a47.35,47.35,0,0,1,36.47,0L361,138.58a47.41,47.41,0,0,0,36.46,0L408.43,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L503.25,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L598.06,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L692.88,134a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0L977.32,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,126.42v-15.8l-29.17,12.15a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,122.77a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,118a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,130.37v15.8L29.17,134A47.35,47.35,0,0,1,65.64,134Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,134l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L218.8,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L313.62,134a47.35,47.35,0,0,1,36.47,0L361,138.58a47.41,47.41,0,0,0,36.46,0L408.43,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L503.25,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L598.06,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L692.88,134a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0L977.32,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,126.42v-15.8l-29.17,12.15a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,122.77a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,118a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,130.37v15.8L29.17,134A47.35,47.35,0,0,1,65.64,134Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,134l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L218.8,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L313.62,134a47.35,47.35,0,0,1,36.47,0L361,138.58a47.41,47.41,0,0,0,36.46,0L408.43,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L503.25,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L598.06,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L692.88,134a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0L977.32,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,126.42v-15.8l-29.17,12.15a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,122.77a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,118a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,130.37v15.8L29.17,134A47.35,47.35,0,0,1,65.64,134Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,134l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L218.8,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L313.62,134a47.35,47.35,0,0,1,36.47,0L361,138.58a47.41,47.41,0,0,0,36.46,0L408.43,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L503.25,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L598.06,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L692.88,134a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0L977.32,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,126.42v-15.8l-29.17,12.15a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,122.77a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,118a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,130.37v15.8L29.17,134A47.35,47.35,0,0,1,65.64,134Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,134l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L218.8,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L313.62,134a47.35,47.35,0,0,1,36.47,0L361,138.58a47.41,47.41,0,0,0,36.46,0L408.43,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L503.25,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L598.06,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L692.88,134a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0L977.32,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,126.42v-15.8l-29.17,12.15a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,122.77a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,118a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,130.37v15.8L29.17,134A47.35,47.35,0,0,1,65.64,134Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,134l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L218.8,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L313.62,134a47.35,47.35,0,0,1,36.47,0L361,138.58a47.41,47.41,0,0,0,36.46,0L408.43,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L503.25,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L598.06,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L692.88,134a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0L977.32,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1167,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,126.42v-15.8l-29.17,12.15a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,122.77a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L918.49,118a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,130.37v15.8L29.17,134A47.35,47.35,0,0,1,65.64,134Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M65.64,149.82l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,149.82a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,154.38a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L787.16,150a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.35,47.35,0,0,0,36.54.72l13.73-5.42a47.41,47.41,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,142.22v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0L1203.42,134a47.35,47.35,0,0,0-36.47,0L1156,138.58a47.44,47.44,0,0,1-36.47,0L1108.6,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L1013.79,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.37,47.37,0,0,0-35.64-.34l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0L729.34,134a47.32,47.32,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L634.53,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L539.72,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L444.9,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L350.09,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L255.27,134a47.35,47.35,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0L160.46,134A47.35,47.35,0,0,0,124,134l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L65.64,134a47.35,47.35,0,0,0-36.47,0L0,146.17V162l29.17-12.16A47.44,47.44,0,0,1,65.64,149.82Z' style='fill:%23dff0fd;opacity:0.24'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M29.17,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L124,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L361,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1280,158v-15.8l-29.17,12.16a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L0,162v14H4.27Z' style='fill:%23dff0fd;opacity:0.24'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.08'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.24'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.24'/%3E%3Cpath d='M1214.36,170.18l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1156,170.18a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.46,47.46,0,0,0-35.64-.34l-13.73,5.43a47.39,47.39,0,0,1-36.54-.73l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L4.27,176H1280V158l-29.17,12.16A47.44,47.44,0,0,1,1214.36,170.18Z' style='fill:%23dff0fd;opacity:0.24'/%3E%3Cpath d='M1262.36,28l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1204,28a47.44,47.44,0,0,1-36.47,0L1156.6,23.4a47.41,47.41,0,0,0-36.46,0L1109.2,28a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1014.38,28a47.44,47.44,0,0,1-36.47,0L966.49,23.2a47.46,47.46,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72L872.53,24a47.42,47.42,0,0,0-37.37-.39L824.75,28a47.44,47.44,0,0,1-36.47,0L777.34,23.4a47.41,47.41,0,0,0-36.46,0L729.94,28a47.44,47.44,0,0,1-36.47,0L682.53,23.4a47.44,47.44,0,0,0-36.47,0L635.12,28a47.41,47.41,0,0,1-36.46,0L587.72,23.4a47.44,47.44,0,0,0-36.47,0L540.31,28a47.44,47.44,0,0,1-36.47,0L492.9,23.4a47.44,47.44,0,0,0-36.47,0L445.49,28A47.41,47.41,0,0,1,409,28L398.09,23.4a47.44,47.44,0,0,0-36.47,0L350.68,28a47.44,47.44,0,0,1-36.47,0L303.27,23.4a47.44,47.44,0,0,0-36.47,0L255.86,28a47.41,47.41,0,0,1-36.46,0L208.46,23.4a47.44,47.44,0,0,0-36.47,0L161.05,28a47.44,47.44,0,0,1-36.47,0L113.64,23.4a47.44,47.44,0,0,0-36.47,0L48,35.56v15.8L77.17,39.2a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L172,39.2a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L266.8,39.2a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L409,43.76a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.33a47.38,47.38,0,0,1,37.37.38l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.42a47.41,47.41,0,0,1,35.64.33l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1215,39.2a47.44,47.44,0,0,1,36.47,0l10.94,4.56A47.36,47.36,0,0,0,1280,47.39V31.59A47.36,47.36,0,0,1,1262.36,28Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1262.36,59.56,1251.42,55A47.44,47.44,0,0,0,1215,55L1204,59.56a47.35,47.35,0,0,1-36.47,0L1156.6,55a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L1061.79,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L966.49,54.8a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0L777.34,55a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L682.53,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L587.72,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L492.9,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L398.09,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L303.27,55a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0L208.46,55A47.44,47.44,0,0,0,172,55l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L113.64,55a47.44,47.44,0,0,0-36.47,0L48,67.16V83L77.17,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L172,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0L409,75.37a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L835.16,71a47.42,47.42,0,0,1,37.37.39L880.58,75a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1215,70.81a47.35,47.35,0,0,1,36.47,0l10.94,4.56A47.56,47.56,0,0,0,1280,79V63.2A47.37,47.37,0,0,1,1262.36,59.56Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1262.36,91.17l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1204,91.17a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0L492.9,86.61a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L48,98.77v15.8l29.17-12.16a47.44,47.44,0,0,1,36.47,0L124.58,107a47.44,47.44,0,0,0,36.47,0L172,102.41a47.44,47.44,0,0,1,36.47,0L219.4,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L314.21,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L409,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L503.84,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L598.66,107a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L693.47,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0L788.28,107a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.42a47.41,47.41,0,0,1,35.64.33L977.91,107a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56A47.36,47.36,0,0,0,1280,110.6V94.8A47.36,47.36,0,0,1,1262.36,91.17Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1262.36,122.77l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1204,122.77a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0L966.49,118a47.41,47.41,0,0,0-35.64-.33l-13.73,5.42a47.44,47.44,0,0,1-36.54-.72l-8.05-3.56a47.38,47.38,0,0,0-37.37-.38l-10.41,4.33a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.32,47.32,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.35,47.35,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L48,130.37v15.8L77.17,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L172,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L266.8,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L361.62,134a47.35,47.35,0,0,1,36.47,0L409,138.58a47.41,47.41,0,0,0,36.46,0L456.43,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L551.25,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0L646.06,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L740.88,134a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.44,47.44,0,0,0,36.54.72l13.73-5.42a47.37,47.37,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.32,47.32,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L1215,134a47.35,47.35,0,0,1,36.47,0l10.94,4.56a47.56,47.56,0,0,0,17.64,3.63v-15.8A47.37,47.37,0,0,1,1262.36,122.77Z' style='fill:%23dff0fd;opacity:0.16'/%3E%3Cpath d='M1262.36,154.38l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L1204,154.38a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-11.42-4.76a47.41,47.41,0,0,0-35.64-.34l-13.73,5.42a47.35,47.35,0,0,1-36.54-.72l-8.05-3.55a47.42,47.42,0,0,0-37.37-.39l-10.41,4.34a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.41,47.41,0,0,0-36.46,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.41,47.41,0,0,1-36.46,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0l-10.94,4.56a47.44,47.44,0,0,1-36.47,0l-10.94-4.56a47.44,47.44,0,0,0-36.47,0L48,162v14h4.27l24.9-10.38a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0L172,165.62a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0L409,170.18a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.41,47.41,0,0,0,36.46,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.41-4.34a47.42,47.42,0,0,1,37.37.39l8.05,3.55a47.39,47.39,0,0,0,36.54.73l13.73-5.43a47.46,47.46,0,0,1,35.64.34l11.42,4.76a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.41,47.41,0,0,1,36.46,0l10.94,4.56a47.44,47.44,0,0,0,36.47,0l10.94-4.56a47.44,47.44,0,0,1,36.47,0l10.94,4.56a47.36,47.36,0,0,0,17.64,3.63V158A47.36,47.36,0,0,1,1262.36,154.38Z' style='fill:%23dff0fd;opacity:0.24'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-color: rgba(9, 17, 23, 1);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}
#aside__layout-left .hero-body {
    width: 512px;
    height: calc(512px - 64px) ;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: center; */
    align-content: flex-end;
    margin: 0;
    /* background-color: red; */
}
#aside__layout-left .hero-illustration {
    width: 512px;
    height: 512px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    margin: 0;
    /* margin: -48px 0 0 0; */
    padding: 0;
    /* background-color: green; */
}
#aside__layout-left .hero-illustration svg {
    max-width: 216px;
    /* background-color: yellowgreen; */
}
#aside__layout-left .hero .hero-body .tagline {
    width: auto;
    height: auto;
    display: block;
    position: absolute;
    top: 272px;
    margin: 0;
    padding: 0;
    font-family: "Bree Rg", sans-serif;
    font-weight: normal;
    font-style: normal;
    /* color: rgba(255, 255, 255, 1); */
    /* background-color: magenta; */
}
#aside__layout-left .hero .hero-body .tagline .title {
    /* margin: 0;
    padding: 0; */
    font-size: 55px;
    letter-spacing: 0.1rem;
    color: rgba(255, 255, 255, 1);
}
#aside__layout-left .hero .hero-body .tagline .title i {
    font-family: "Bree Serif", serif;
    font-weight: 600;
    font-style: normal;
    color: rgba(210, 223, 237, 1);
}
#aside__layout-left .hero .hero-body .tagline .subtitle {
    margin: -24px 0 0 0;
    padding: 0;
    font-family: "Bree Th", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 34px;
    color: rgba(255, 255, 255, 1);
    /* color: rgba(210, 223, 237, 1); */
}
#aside__layout-left .hero .hero-body .tagline .motto {
    width: auto;
    height: auto;
    margin: 152px 0 0;
    padding: 0;
    font-family: "Bree Th", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 21px;
    color: rgba(255, 255, 255, 1);
}
#aside__layout-left .hero .scroll-down {
    width: 24px;
    height: 44px;
    position: absolute;
    bottom: 40px;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: 0px;
    background-color: transparent;
}
#aside__layout-left .hero .scroll-down svg {
    max-width: 24px;
    max-height: 44px;
    margin: 0;
    padding: 0;
}

.value__proposition {
    margin: 888px 0 0 0;
    padding: 0 0 48px;
    /* color: rgba(9, 17, 23, 1); */
    color: red;
}

.value__proposition .title {
    background-color: transparent;
}

.prop_val {
    /* transform: matrix(1, 0, 0, 1, 0, 0); */
    background-color: transparent;
}
.prop_val-header .title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.prop_val-chapo {
    width: 80%;
    height: auto;
    margin: 48px auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}
.prop_val-body {
    width: 80%;
    height: auto;
    margin: 64px auto;
    padding: 0;
    background-color: transparent;
}
/* .prop_val-body .is-ancestor {
    background-color: magenta;
} */
.prop_val-body .is-parent:first-child {
    /* background-color: green; */
}
.prop_val-body .is-parent:last-child {
    position: absolute;
    right: 0;
    /* background-color: pink; */
}
.prop_val-body .title {
    font-size: 18px;
    font-weight: 700;
    /* text-transform: capitalize; */
}
.sur_titre-icon {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 0 32px;
    padding: 0;
    position: relative;
    /* top: 0; */
    /* left: 0; */
    /* background-color: red; */
}
.title-icon svg {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    /* display: block; */
    /* position: relative; */
    margin: 0;
    padding: 0;
}
.expertise-paragraph {
    max-width: 175px;
    min-height: 192px;
    margin: 0 0 16px 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
}
.expertise-paragraph em {
    font-style: italic;
}
/* =========================
	END MAIN <<<
	=================== */


/* .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
} */


.is__vanishing-toLeft,
.is__vanishing-toLeft_ctaDelay {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
.is__vanishing-toLeft {
    opacity: 0;
}

.is__vanishing-toBottom {
    -webkit-transform: translateY(1000%);
    -moz-transform: translateY(1000%);
    -ms-transform: translateY(1000%);
    -o-transform: translateY(1000%);
    transform: translateY(1000%);
    /* animation: fadeOut 0.3s ease-in 400ms; */
}

.is__vanishing-toLeft,
.is__vanishing-toLeft_ctaDelay,
.is__vanishing-toBottom {
    animation-name: fadeOut;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    /* animation: fadeOut 0.3s ease-in; */
}
.is__vanishing-toLeft {
    animation-delay: 1ms;
}
.is__vanishing-toLeft_ctaDelay {
    animation-delay: 700ms;
}
.is__vanishing-toBottom {
    animation-delay: 400ms;
}

.is__fadeOut {
    opacity: 0;
    /* animation: fadeOut 10000ms ease-out; */
}

.is__fadeIn {
    z-index: 10;
    opacity: 1;
    /* transition: opacity 1s ease-out 1300ms; */
}
.is__fadeIn {
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    transition-delay: 1300ms;
}


/* =======================
	>>> START HRAF CURSTOM
   ============================= */

/* =====================
	END HRAF CURSTOM <<<
   =============== */

@-webkit-keyframes slideTopToBottom {
    0% {
        -webkit-transform: translateY(-100%, 0, 0);
        transform: translateY(-100%, 0, 0);
    }

    100% {
        -webkit-transform: translateY(100%, 0, 0);
        transform: translateY(100%, 0, 0);
    }
}

@keyframes slideTopToBottom {
    0% {
        -webkit-transform: translateY(-100%, 0, 0);
        transform: translateY(-100%, 0, 0);
    }

    100% {
        -webkit-transform: translateY(100%, 0, 0);
        transform: translateY(100%, 0, 0);
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}