/** CrimsonLogic UX Practice R2-S2 Foundation **/
/** Project Specific CSS **/

:root {
  --orange: #ffa600;
  --orange00: #ffa60000;
  --orangeff: #ffa600ff;
}


/** Start of Google Fonts Declarations for:

/* share-tech-mono-400 - latin */
@font-face {
  font-family: 'Share Tech Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/share-tech-mono-v15-latin-400.woff') format('woff');
}

/* josefin-sans-400 - latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/josefin-sans-v25-latin-400.woff') format('woff');
}

/* josefin-sans-500 - latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/josefin-sans-v25-latin-500.woff') format('woff');
}

/* josefin-sans-600 - latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/josefin-sans-v25-latin-600.woff') format('woff');
}

/* josefin-sans-700 - latin */
@font-face {
  font-family: 'Josefin Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/josefin-sans-v25-latin-700.woff') format('woff');
}

/** End of Google Fonts Declarations **/


/** Main Containers Styling **/

html {
	scroll-behavior: smooth;
  font-size: 20px;
}

body {  
  position: relative;
  margin: 0;
  padding: 0;
  right: 0;
  font-family: 'Josefin Sans', Helvetica, Arial, sans-serif;
  color: #606060;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  background: black;
  background-attachment: fixed;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.wrapper {
  min-width: 320px;
  min-height: 512px;
  outline: none;
}

.container-fluid {
  position: static;
  min-width: 320px;
  max-width: 1600px!important; /* This controls the maximum display width of the elements. If you need full width, use the max-content-width keyword below or just set it to 100% */
  padding: 0;
  margin: auto;
}

.max-content-width { /* For the body content */
  max-width: 100%!important;
}

/** This is to prevent Bootstrap modal from shifting the page when it is loaded **/
.modal-open {
  overflow: auto!important;
  padding-right: 0px!important;
}

/** End of Main Containers Styling **/


/** Delete till here if there are no Buttons **/

/** Main Content Styling **/

.main-content {
  position: relative;
  margin: 0 auto;
}

a {
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

/** End of Main Content Styling **/ 

/* The emerging W3C standard
   that is currently Firefox-only */
   * {
    scrollbar-width: thin;
  }
  
  /* Works on Chrome/Edge/Safari */
  *::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  *::-webkit-scrollbar-track {
    background: white;
  }
  *::-webkit-scrollbar-thumb {
    background-color: grey;
  }

#video-backdrop {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  animation-duration: 500ms;
  animation-delay: 1000ms;	
}

#video-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: max(20px, 10vh);
}

#video-overlay > a > img {
  height: min(80px, max(40px, 20vh));
  width: min(220px, max(120px, 50vw));
  object-fit: contain;
  animation-duration: 500ms;
  animation-delay: 2000ms;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;	
}

#video-overlay > a:hover > img {
	transform: scale(1.2);
}

#video-overlay > .video-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5vh 2rem 10vh;
}

#video-overlay h1 {
  font-size: max(32px, min(72px, 5vw));
  font-weight: 500;
  color: white;
  text-shadow: 0 0 20px rgb(255, 243, 178);
  margin-bottom: 10px;
  animation-duration: 1500ms;
  animation-delay: 2250ms;
}

#video-overlay h2 {
	margin-bottom: 2rem;
  font-family: 'Share Tech Mono';
  font-size: max(18px, min(32px, 3vw));
  font-weight: 400;
  color: var(--orange);
  text-shadow: 0 0 20px rgb(255, 243, 178);
  animation-duration: 750ms;
  animation-delay: 2500ms;
}

#video-overlay a {
  position: relative;
  animation-duration: 500ms;
  animation-delay: 2700ms;
}

#video-overlay :not(img) {
	opacity: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-height: 200px) {

	#video-overlay :not(img) {
		opacity: 0;
	}

}

.video-note {
  display: flex;
  flex-direction: column;
  align-items: center;
	margin-bottom: 4rem;
  font-size: 16px;
  border-radius: 1rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; 
}

.video-note > div {
  position: relative;
}

.arrow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 15px;
  height: 100%;
  margin: 0 5px 12px;
}

a .arrow span {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(45deg);
  animation: animate 1800ms infinite;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; 
}

a:hover .arrow span {
  border-top: 2px solid var(--orange);;
  border-left: 2px solid var(--orange);;
}

.arrow span:nth-child(2) {
  animation-delay: 500ms;
}

@keyframes animate {
  0% {
      opacity: 0;
      transform: rotate(45deg) translate(3px, 3px);
  }
  50% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      transform: rotate(45deg) translate(-3px, -3px);
  }
}

a .video-note-text {
	border-bottom: 1px solid var(--orange00);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover .video-note-text {
	border-bottom: 1px solid var(--orangeff);
}

.content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 100vh;
  width: 100%;
}

.content .container-fluid {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
	padding: 0 0.75rem;
 }

.content p {
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

.content p strong {
	color: black;
	font-weight: 600;
 }

.write-up,
.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.write-up {
  min-height: 100vh;
  padding-bottom: 30px;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cpolygon fill='%23ccf5da' points='957 450 539 900 1396 900'/%3E%3Cpolygon fill='%23d5faf0' points='957 450 872.9 900 1396 900'/%3E%3Cpolygon fill='%23d3f7e3' points='-60 900 398 662 816 900'/%3E%3Cpolygon fill='%23cff2ed' points='337 900 398 662 816 900'/%3E%3Cpolygon fill='%23c9ecde' points='1203 546 1552 900 876 900'/%3E%3Cpolygon fill='%23cdedeb' points='1203 546 1552 900 1162 900'/%3E%3Cpolygon fill='%23d1f3ea' points='641 695 886 900 367 900'/%3E%3Cpolygon fill='%23c2e1e3' points='587 900 641 695 886 900'/%3E%3Cpolygon fill='%23d1efec' points='1710 900 1401 632 1096 900'/%3E%3Cpolygon fill='%23bfdce1' points='1710 900 1401 632 1365 900'/%3E%3Cpolygon fill='%23d3f0f3' points='1210 900 971 687 725 900'/%3E%3Cpolygon fill='%23b6d3dd' points='943 900 1210 900 971 687'/%3E%3C/svg%3E");
  background-size: cover;
  background-attachment: fixed;
	box-shadow: 0 0 20px 0 #00000038;
	z-index: 1;
}

.projects {
  min-height: calc(100vh - 30px);
  background-color: grey;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin:auto;background:%23f1f2f3;display:block;z-index:1;position:relative' width='1200' height='1200' preserveAspectRatio='xMidYMid' viewBox='0 0 1200 1200'%3E%3Cg transform='translate(600,600) scale(1,1) translate(-600,-600)'%3E%3Cg id='bk-0.050109087320344026'%3E%3Cpath d='M 559 579 L 518 738 L 691 787 Z' stroke='%23579cb1' fill='%23579cb1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 559 579 L 518 738 L 691 787 Z;M 511 510 L 529 707 L 700 690 Z;M 559 579 L 518 738 L 691 787 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 691 787 L 840 574 L 559 579 Z' stroke='%23569bb1' fill='%23569bb1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 691 787 L 840 574 L 559 579 Z;M 700 690 L 838 616 L 511 510 Z;M 691 787 L 840 574 L 559 579 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 325 674 L 546 981 L 518 738 Z' stroke='%23579cb2' fill='%23579cb2'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 325 674 L 546 981 L 518 738 Z;M 328 751 L 539 918 L 529 707 Z;M 325 674 L 546 981 L 518 738 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 518 738 L 789 933 L 691 787 Z' stroke='%234f93aa' fill='%234f93aa'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 518 738 L 789 933 L 691 787 Z;M 529 707 L 751 891 L 700 690 Z;M 518 738 L 789 933 L 691 787 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 789 933 L 974 761 L 691 787 Z' stroke='%234a8da6' fill='%234a8da6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 789 933 L 974 761 L 691 787 Z;M 751 891 L 904 725 L 700 690 Z;M 789 933 L 974 761 L 691 787 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 691 787 L 974 761 L 840 574 Z' stroke='%234f93ab' fill='%234f93ab'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 691 787 L 974 761 L 840 574 Z;M 700 690 L 904 725 L 838 616 Z;M 691 787 L 974 761 L 840 574 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 546 981 L 789 933 L 518 738 Z' stroke='%234e92a9' fill='%234e92a9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 546 981 L 789 933 L 518 738 Z;M 539 918 L 751 891 L 529 707 Z;M 546 981 L 789 933 L 518 738 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 994 612 L 821 318 L 840 574 Z' stroke='%23599eb4' fill='%23599eb4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 994 612 L 821 318 L 840 574 Z;M 936 637 L 769 385 L 838 616 Z;M 994 612 L 821 318 L 840 574 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 840 574 L 821 318 L 559 579 Z' stroke='%235da2b7' fill='%235da2b7'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 840 574 L 821 318 L 559 579 Z;M 838 616 L 769 385 L 511 510 Z;M 840 574 L 821 318 L 559 579 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 411 541 L 325 674 L 559 579 Z' stroke='%2360a6ba' fill='%2360a6ba'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 411 541 L 325 674 L 559 579 Z;M 304 510 L 328 751 L 511 510 Z;M 411 541 L 325 674 L 559 579 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 559 579 L 325 674 L 518 738 Z' stroke='%235ca2b7' fill='%235ca2b7'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 559 579 L 325 674 L 518 738 Z;M 511 510 L 328 751 L 529 707 Z;M 559 579 L 325 674 L 518 738 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 974 761 L 994 612 L 840 574 Z' stroke='%235094ab' fill='%235094ab'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 974 761 L 994 612 L 840 574 Z;M 904 725 L 936 637 L 838 616 Z;M 974 761 L 994 612 L 840 574 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 821 318 L 535 393 L 559 579 Z' stroke='%2362a9bc' fill='%2362a9bc'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 821 318 L 535 393 L 559 579 Z;M 769 385 L 532 407 L 511 510 Z;M 821 318 L 535 393 L 559 579 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 535 393 L 411 541 L 559 579 Z' stroke='%2363a9bc' fill='%2363a9bc'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 535 393 L 411 541 L 559 579 Z;M 532 407 L 304 510 L 511 510 Z;M 535 393 L 411 541 L 559 579 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 151 815 L 263 933 L 325 674 Z' stroke='%235fa5b9' fill='%235fa5b9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 151 815 L 263 933 L 325 674 Z;M 107 764 L 263 853 L 328 751 Z;M 151 815 L 263 933 L 325 674 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 325 674 L 263 933 L 546 981 Z' stroke='%23589db2' fill='%23589db2'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 325 674 L 263 933 L 546 981 Z;M 328 751 L 263 853 L 539 918 Z;M 325 674 L 263 933 L 546 981 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 546 981 L 528 1168 L 789 933 Z' stroke='%23498ca4' fill='%23498ca4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 546 981 L 528 1168 L 789 933 Z;M 539 918 L 517 1180 L 751 891 Z;M 546 981 L 528 1168 L 789 933 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 994 612 L 905 334 L 821 318 Z' stroke='%235da3b7' fill='%235da3b7'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 994 612 L 905 334 L 821 318 Z;M 936 637 L 980 271 L 769 385 Z;M 994 612 L 905 334 L 821 318 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 821 318 L 774 227 L 535 393 Z' stroke='%2367aec0' fill='%2367aec0'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 821 318 L 774 227 L 535 393 Z;M 769 385 L 736 126 L 532 407 Z;M 821 318 L 774 227 L 535 393 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 405 160 L 344 420 L 535 393 Z' stroke='%236eb5c6' fill='%236eb5c6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 405 160 L 344 420 L 535 393 Z;M 456 198 L 363 393 L 532 407 Z;M 405 160 L 344 420 L 535 393 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 535 393 L 344 420 L 411 541 Z' stroke='%2367aec1' fill='%2367aec1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 535 393 L 344 420 L 411 541 Z;M 532 407 L 363 393 L 304 510 Z;M 535 393 L 344 420 L 411 541 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 411 541 L 178 641 L 325 674 Z' stroke='%2364aabe' fill='%2364aabe'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 411 541 L 178 641 L 325 674 Z;M 304 510 L 234 547 L 328 751 Z;M 411 541 L 178 641 L 325 674 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 713 1177 L 996 991 L 789 933 Z' stroke='%2341839d' fill='%2341839d'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 713 1177 L 996 991 L 789 933 Z;M 812 1134 L 978 1046 L 751 891 Z;M 713 1177 L 996 991 L 789 933 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 789 933 L 996 991 L 974 761 Z' stroke='%234487a0' fill='%234487a0'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 789 933 L 996 991 L 974 761 Z;M 751 891 L 978 1046 L 904 725 Z;M 789 933 L 996 991 L 974 761 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 974 761 L 1167 708 L 994 612 Z' stroke='%234b8fa7' fill='%234b8fa7'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 974 761 L 1167 708 L 994 612 Z;M 904 725 L 1130 688 L 936 637 Z;M 974 761 L 1167 708 L 994 612 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 147 401 L 178 641 L 411 541 Z' stroke='%236ab1c3' fill='%236ab1c3'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 147 401 L 178 641 L 411 541 Z;M 120 420 L 234 547 L 304 510 Z;M 147 401 L 178 641 L 411 541 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1108 1016 L 1167 708 L 974 761 Z' stroke='%2344869f' fill='%2344869f'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1108 1016 L 1167 708 L 974 761 Z;M 1155 892 L 1130 688 L 904 725 Z;M 1108 1016 L 1167 708 L 974 761 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 994 612 L 1166 411 L 905 334 Z' stroke='%23599eb4' fill='%23599eb4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 994 612 L 1166 411 L 905 334 Z;M 936 637 L 1132 308 L 980 271 Z;M 994 612 L 1166 411 L 905 334 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 407 1104 L 528 1168 L 546 981 Z' stroke='%234c90a8' fill='%234c90a8'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 407 1104 L 528 1168 L 546 981 Z;M 410 1160 L 517 1180 L 539 918 Z;M 407 1104 L 528 1168 L 546 981 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 905 334 L 774 227 L 821 318 Z' stroke='%2366acbf' fill='%2366acbf'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 905 334 L 774 227 L 821 318 Z;M 980 271 L 736 126 L 769 385 Z;M 905 334 L 774 227 L 821 318 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 528 1168 L 713 1177 L 789 933 Z' stroke='%234587a0' fill='%234587a0'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 528 1168 L 713 1177 L 789 933 Z;M 517 1180 L 812 1134 L 751 891 Z;M 528 1168 L 713 1177 L 789 933 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 774 227 L 515 126 L 535 393 Z' stroke='%236db4c6' fill='%236db4c6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 774 227 L 515 126 L 535 393 Z;M 736 126 L 513 116 L 532 407 Z;M 774 227 L 515 126 L 535 393 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 178 641 L 151 815 L 325 674 Z' stroke='%2363aabd' fill='%2363aabd'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 178 641 L 151 815 L 325 674 Z;M 234 547 L 107 764 L 328 751 Z;M 178 641 L 151 815 L 325 674 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1167 708 L 1119 583 L 994 612 Z' stroke='%234e92a9' fill='%234e92a9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1167 708 L 1119 583 L 994 612 Z;M 1130 688 L 1213 506 L 936 637 Z;M 1167 708 L 1119 583 L 994 612 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 515 126 L 405 160 L 535 393 Z' stroke='%2371b9ca' fill='%2371b9ca'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 515 126 L 405 160 L 535 393 Z;M 513 116 L 456 198 L 532 407 Z;M 515 126 L 405 160 L 535 393 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 344 420 L 147 401 L 411 541 Z' stroke='%236bb2c4' fill='%236bb2c4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 344 420 L 147 401 L 411 541 Z;M 363 393 L 120 420 L 304 510 Z;M 344 420 L 147 401 L 411 541 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1126 1095 L 1108 1016 L 996 991 Z' stroke='%23397a95' fill='%23397a95'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1126 1095 L 1108 1016 L 996 991 Z;M 1074 1051 L 1155 892 L 978 1046 Z;M 1126 1095 L 1108 1016 L 996 991 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 996 991 L 1108 1016 L 974 761 Z' stroke='%2340829c' fill='%2340829c'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 996 991 L 1108 1016 L 974 761 Z;M 978 1046 L 1155 892 L 904 725 Z;M 996 991 L 1108 1016 L 974 761 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1167 708 L 1417 613 L 1119 583 Z' stroke='%234c90a7' fill='%234c90a7'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1167 708 L 1417 613 L 1119 583 Z;M 1130 688 L 1343 529 L 1213 506 Z;M 1167 708 L 1417 613 L 1119 583 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 263 933 L 407 1104 L 546 981 Z' stroke='%235296ad' fill='%235296ad'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 263 933 L 407 1104 L 546 981 Z;M 263 853 L 410 1160 L 539 918 Z;M 263 933 L 407 1104 L 546 981 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 528 1168 L 574 1431 L 713 1177 Z' stroke='%2344869f' fill='%2344869f'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 528 1168 L 574 1431 L 713 1177 Z;M 517 1180 L 588 1357 L 812 1134 Z;M 528 1168 L 574 1431 L 713 1177 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 93 908 L 407 1104 L 263 933 Z' stroke='%23599eb4' fill='%23599eb4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 93 908 L 407 1104 L 263 933 Z;M 175 881 L 410 1160 L 263 853 Z;M 93 908 L 407 1104 L 263 933 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 189 165 L 147 401 L 344 420 Z' stroke='%2374bccc' fill='%2374bccc'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 189 165 L 147 401 L 344 420 Z;M 131 197 L 120 420 L 363 393 Z;M 189 165 L 147 401 L 344 420 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 178 641 L 27 543 L 151 815 Z' stroke='%2369b0c2' fill='%2369b0c2'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 178 641 L 27 543 L 151 815 Z;M 234 547 L -43 609 L 107 764 Z;M 178 641 L 27 543 L 151 815 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1119 583 L 1166 411 L 994 612 Z' stroke='%235498ae' fill='%235498ae'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1119 583 L 1166 411 L 994 612 Z;M 1213 506 L 1132 308 L 936 637 Z;M 1119 583 L 1166 411 L 994 612 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 905 334 L 1033 99 L 774 227 Z' stroke='%2369afc2' fill='%2369afc2'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 905 334 L 1033 99 L 774 227 Z;M 980 271 L 935 189 L 736 126 Z;M 905 334 L 1033 99 L 774 227 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1166 411 L 1033 99 L 905 334 Z' stroke='%2363a9bd' fill='%2363a9bd'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1166 411 L 1033 99 L 905 334 Z;M 1132 308 L 935 189 L 980 271 Z;M 1166 411 L 1033 99 L 905 334 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 774 227 L 611 -32 L 515 126 Z' stroke='%2374bccc' fill='%2374bccc'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 774 227 L 611 -32 L 515 126 Z;M 736 126 L 660 19 L 513 116 Z;M 774 227 L 611 -32 L 515 126 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -125 749 L 93 908 L 151 815 Z' stroke='%2367aec0' fill='%2367aec0'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -125 749 L 93 908 L 151 815 Z;M -46 686 L 175 881 L 107 764 Z;M -125 749 L 93 908 L 151 815 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 151 815 L 93 908 L 263 933 Z' stroke='%2360a5ba' fill='%2360a5ba'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 151 815 L 93 908 L 263 933 Z;M 107 764 L 175 881 L 263 853 Z;M 151 815 L 93 908 L 263 933 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 713 1177 L 938 1186 L 996 991 Z' stroke='%233c7d98' fill='%233c7d98'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 713 1177 L 938 1186 L 996 991 Z;M 812 1134 L 932 1151 L 978 1046 Z;M 713 1177 L 938 1186 L 996 991 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 914 1296 L 938 1186 L 713 1177 Z' stroke='%233a7b96' fill='%233a7b96'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 914 1296 L 938 1186 L 713 1177 Z;M 1010 1375 L 932 1151 L 812 1134 Z;M 914 1296 L 938 1186 L 713 1177 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 938 1186 L 1126 1095 L 996 991 Z' stroke='%23387995' fill='%23387995'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 938 1186 L 1126 1095 L 996 991 Z;M 932 1151 L 1074 1051 L 978 1046 Z;M 938 1186 L 1126 1095 L 996 991 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 745 -26 L 611 -32 L 774 227 Z' stroke='%2376becd' fill='%2376becd'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 745 -26 L 611 -32 L 774 227 Z;M 806 -130 L 660 19 L 736 126 Z;M 745 -26 L 611 -32 L 774 227 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 515 126 L 611 -32 L 405 160 Z' stroke='%2378c1d0' fill='%2378c1d0'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 515 126 L 611 -32 L 405 160 Z;M 513 116 L 660 19 L 456 198 Z;M 515 126 L 611 -32 L 405 160 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 189 165 L 51 371 L 147 401 Z' stroke='%2378c0cf' fill='%2378c0cf'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 189 165 L 51 371 L 147 401 Z;M 131 197 L -51 351 L 120 420 Z;M 189 165 L 51 371 L 147 401 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 93 908 L 172 1177 L 407 1104 Z' stroke='%23589db3' fill='%23589db3'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 93 908 L 172 1177 L 407 1104 Z;M 175 881 L 65 1127 L 410 1160 Z;M 93 908 L 172 1177 L 407 1104 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -69 1045 L 172 1177 L 93 908 Z' stroke='%2360a6ba' fill='%2360a6ba'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -69 1045 L 172 1177 L 93 908 Z;M 32 994 L 65 1127 L 175 881 Z;M -69 1045 L 172 1177 L 93 908 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1166 411 L 1106 157 L 1033 99 Z' stroke='%2366acbf' fill='%2366acbf'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1166 411 L 1106 157 L 1033 99 Z;M 1132 308 L 1108 91 L 935 189 Z;M 1166 411 L 1106 157 L 1033 99 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1031 -14 L 745 -26 L 774 227 Z' stroke='%2373bbcb' fill='%2373bbcb'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1031 -14 L 745 -26 L 774 227 Z;M 1031 -43 L 806 -130 L 736 126 Z;M 1031 -14 L 745 -26 L 774 227 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1381 218 L 1106 157 L 1166 411 Z' stroke='%2362a8bc' fill='%2362a8bc'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1381 218 L 1106 157 L 1166 411 Z;M 1385 149 L 1108 91 L 1132 308 Z;M 1381 218 L 1106 157 L 1166 411 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 51 371 L 27 543 L 178 641 Z' stroke='%2370b8c9' fill='%2370b8c9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 51 371 L 27 543 L 178 641 Z;M -51 351 L -43 609 L 234 547 Z;M 51 371 L 27 543 L 178 641 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 189 165 L 344 420 L 405 160 Z' stroke='%2375bdcd' fill='%2375bdcd'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 189 165 L 344 420 L 405 160 Z;M 131 197 L 363 393 L 456 198 Z;M 189 165 L 344 420 L 405 160 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 147 401 L 51 371 L 178 641 Z' stroke='%2371b8c9' fill='%2371b8c9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 147 401 L 51 371 L 178 641 Z;M 120 420 L -51 351 L 234 547 Z;M 147 401 L 51 371 L 178 641 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 471 1469 L 528 1168 L 407 1104 Z' stroke='%234a8da5' fill='%234a8da5'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 471 1469 L 528 1168 L 407 1104 Z;M 359 1396 L 517 1180 L 410 1160 Z;M 471 1469 L 528 1168 L 407 1104 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 471 1469 L 574 1431 L 528 1168 Z' stroke='%234689a2' fill='%234689a2'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 471 1469 L 574 1431 L 528 1168 Z;M 359 1396 L 588 1357 L 517 1180 Z;M 471 1469 L 574 1431 L 528 1168 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 938 1186 L 1116 1295 L 1126 1095 Z' stroke='%2333738f' fill='%2333738f'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 938 1186 L 1116 1295 L 1126 1095 Z;M 932 1151 L 1223 1423 L 1074 1051 Z;M 938 1186 L 1116 1295 L 1126 1095 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1395 848 L 1417 613 L 1167 708 Z' stroke='%234689a2' fill='%234689a2'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1395 848 L 1417 613 L 1167 708 Z;M 1422 725 L 1343 529 L 1130 688 Z;M 1395 848 L 1417 613 L 1167 708 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1119 583 L 1350 378 L 1166 411 Z' stroke='%23579cb1' fill='%23579cb1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1119 583 L 1350 378 L 1166 411 Z;M 1213 506 L 1399 315 L 1132 308 Z;M 1119 583 L 1350 378 L 1166 411 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1395 848 L 1167 708 L 1108 1016 Z' stroke='%2340829c' fill='%2340829c'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1395 848 L 1167 708 L 1108 1016 Z;M 1422 725 L 1130 688 L 1155 892 Z;M 1395 848 L 1167 708 L 1108 1016 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 574 1431 L 799 1329 L 713 1177 Z' stroke='%233f819b' fill='%233f819b'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 574 1431 L 799 1329 L 713 1177 Z;M 588 1357 L 719 1401 L 812 1134 Z;M 574 1431 L 799 1329 L 713 1177 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 27 543 L -125 749 L 151 815 Z' stroke='%236cb3c5' fill='%236cb3c5'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 27 543 L -125 749 L 151 815 Z;M -43 609 L -46 686 L 107 764 Z;M 27 543 L -125 749 L 151 815 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 799 1329 L 914 1296 L 713 1177 Z' stroke='%233b7c97' fill='%233b7c97'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 799 1329 L 914 1296 L 713 1177 Z;M 719 1401 L 1010 1375 L 812 1134 Z;M 799 1329 L 914 1296 L 713 1177 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -125 749 L -69 1045 L 93 908 Z' stroke='%2368afc1' fill='%2368afc1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -125 749 L -69 1045 L 93 908 Z;M -46 686 L 32 994 L 175 881 Z;M -125 749 L -69 1045 L 93 908 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1316 1007 L 1395 848 L 1108 1016 Z' stroke='%233a7b96' fill='%233a7b96'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1316 1007 L 1395 848 L 1108 1016 Z;M 1365 910 L 1422 725 L 1155 892 Z;M 1316 1007 L 1395 848 L 1108 1016 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1316 1007 L 1108 1016 L 1333 1181 Z' stroke='%23347490' fill='%23347490'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1316 1007 L 1108 1016 L 1333 1181 Z;M 1365 910 L 1155 892 L 1383 1148 Z;M 1316 1007 L 1108 1016 L 1333 1181 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1031 -14 L 774 227 L 1033 99 Z' stroke='%236fb6c7' fill='%236fb6c7'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1031 -14 L 774 227 L 1033 99 Z;M 1031 -43 L 736 126 L 935 189 Z;M 1031 -14 L 774 227 L 1033 99 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 343 -121 L 405 160 L 611 -32 Z' stroke='%237ec7d5' fill='%237ec7d5'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 343 -121 L 405 160 L 611 -32 Z;M 295 -38 L 456 198 L 660 19 Z;M 343 -121 L 405 160 L 611 -32 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 257 54 L 189 165 L 405 160 Z' stroke='%237cc5d3' fill='%237cc5d3'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 257 54 L 189 165 L 405 160 Z;M 240 5 L 131 197 L 456 198 Z;M 257 54 L 189 165 L 405 160 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1417 613 L 1350 378 L 1119 583 Z' stroke='%235296ad' fill='%235296ad'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1417 613 L 1350 378 L 1119 583 Z;M 1343 529 L 1399 315 L 1213 506 Z;M 1417 613 L 1350 378 L 1119 583 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1333 1181 L 1108 1016 L 1126 1095 Z' stroke='%23347490' fill='%23347490'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1333 1181 L 1108 1016 L 1126 1095 Z;M 1383 1148 L 1155 892 L 1074 1051 Z;M 1333 1181 L 1108 1016 L 1126 1095 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1106 157 L 1031 -14 L 1033 99 Z' stroke='%236fb6c7' fill='%236fb6c7'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1106 157 L 1031 -14 L 1033 99 Z;M 1108 91 L 1031 -43 L 935 189 Z;M 1106 157 L 1031 -14 L 1033 99 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1073 -49 L 1031 -14 L 1106 157 Z' stroke='%2372b9ca' fill='%2372b9ca'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1073 -49 L 1031 -14 L 1106 157 Z;M 1086 -42 L 1031 -43 L 1108 91 Z;M 1073 -49 L 1031 -14 L 1106 157 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 198 1337 L 407 1104 L 172 1177 Z' stroke='%235499af' fill='%235499af'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 198 1337 L 407 1104 L 172 1177 Z;M 203 1396 L 410 1160 L 65 1127 Z;M 198 1337 L 407 1104 L 172 1177 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 198 1337 L 471 1469 L 407 1104 Z' stroke='%234e92a9' fill='%234e92a9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 198 1337 L 471 1469 L 407 1104 Z;M 203 1396 L 359 1396 L 410 1160 Z;M 198 1337 L 471 1469 L 407 1104 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 574 1431 L 471 1469 L 799 1329 Z' stroke='%2342849d' fill='%2342849d'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 574 1431 L 471 1469 L 799 1329 Z;M 588 1357 L 359 1396 L 719 1401 Z;M 574 1431 L 471 1469 L 799 1329 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 570 -217 L 343 -121 L 611 -32 Z' stroke='%2384ceda' fill='%2384ceda'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 570 -217 L 343 -121 L 611 -32 Z;M 624 -281 L 295 -38 L 660 19 Z;M 570 -217 L 343 -121 L 611 -32 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 343 -121 L 257 54 L 405 160 Z' stroke='%2380c9d6' fill='%2380c9d6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 343 -121 L 257 54 L 405 160 Z;M 295 -38 L 240 5 L 456 198 Z;M 343 -121 L 257 54 L 405 160 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 189 165 L -116 210 L 51 371 Z' stroke='%237ec7d5' fill='%237ec7d5'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 189 165 L -116 210 L 51 371 Z;M 131 197 L -137 138 L -51 351 Z;M 189 165 L -116 210 L 51 371 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1116 1295 L 1333 1181 L 1126 1095 Z' stroke='%232f6f8b' fill='%232f6f8b'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1116 1295 L 1333 1181 L 1126 1095 Z;M 1223 1423 L 1383 1148 L 1074 1051 Z;M 1116 1295 L 1333 1181 L 1126 1095 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1316 1007 L 1415 1316 L 1395 848 Z' stroke='%2333738f' fill='%2333738f'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1316 1007 L 1415 1316 L 1395 848 Z;M 1365 910 L 1318 1327 L 1422 725 Z;M 1316 1007 L 1415 1316 L 1395 848 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 914 1296 L 1116 1295 L 938 1186 Z' stroke='%23337490' fill='%23337490'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 914 1296 L 1116 1295 L 938 1186 Z;M 1010 1375 L 1223 1423 L 932 1151 Z;M 914 1296 L 1116 1295 L 938 1186 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 799 1329 L 1116 1295 L 914 1296 Z' stroke='%23347590' fill='%23347590'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 799 1329 L 1116 1295 L 914 1296 Z;M 719 1401 L 1223 1423 L 1010 1375 Z;M 799 1329 L 1116 1295 L 914 1296 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 18 1367 L 198 1337 L 172 1177 Z' stroke='%23599eb3' fill='%23599eb3'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 18 1367 L 198 1337 L 172 1177 Z;M -11 1348 L 203 1396 L 65 1127 Z;M 18 1367 L 198 1337 L 172 1177 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -236 855 L -96 1083 L -69 1045 Z' stroke='%236ab1c3' fill='%236ab1c3'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -236 855 L -96 1083 L -69 1045 Z;M -259 998 L -1 1151 L 32 994 Z;M -236 855 L -96 1083 L -69 1045 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -69 1045 L -96 1083 L 172 1177 Z' stroke='%2362a8bb' fill='%2362a8bb'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -69 1045 L -96 1083 L 172 1177 Z;M 32 994 L -1 1151 L 65 1127 Z;M -69 1045 L -96 1083 L 172 1177 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1417 613 L 1381 218 L 1350 378 Z' stroke='%23599eb3' fill='%23599eb3'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1417 613 L 1381 218 L 1350 378 Z;M 1343 529 L 1385 149 L 1399 315 Z;M 1417 613 L 1381 218 L 1350 378 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1350 378 L 1381 218 L 1166 411 Z' stroke='%235da3b8' fill='%235da3b8'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1350 378 L 1381 218 L 1166 411 Z;M 1399 315 L 1385 149 L 1132 308 Z;M 1350 378 L 1381 218 L 1166 411 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1395 848 L 1381 218 L 1417 613 Z' stroke='%235094ab' fill='%235094ab'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1395 848 L 1381 218 L 1417 613 Z;M 1422 725 L 1385 149 L 1343 529 Z;M 1395 848 L 1381 218 L 1417 613 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1416 -30 L 1073 -49 L 1106 157 Z' stroke='%2371b9c9' fill='%2371b9c9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1416 -30 L 1073 -49 L 1106 157 Z;M 1326 -8 L 1086 -42 L 1108 91 Z;M 1416 -30 L 1073 -49 L 1106 157 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 697 -277 L 570 -217 L 745 -26 Z' stroke='%2384cdda' fill='%2384cdda'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 697 -277 L 570 -217 L 745 -26 Z;M 709 -315 L 624 -281 L 806 -130 Z;M 697 -277 L 570 -217 L 745 -26 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 745 -26 L 570 -217 L 611 -32 Z' stroke='%2380c9d6' fill='%2380c9d6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 745 -26 L 570 -217 L 611 -32 Z;M 806 -130 L 624 -281 L 660 19 Z;M 745 -26 L 570 -217 L 611 -32 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -265 519 L -276 792 L 27 543 Z' stroke='%2377bfce' fill='%2377bfce'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -265 519 L -276 792 L 27 543 Z;M -237 530 L -292 702 L -43 609 Z;M -265 519 L -276 792 L 27 543 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 27 543 L -276 792 L -125 749 Z' stroke='%2372baca' fill='%2372baca'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 27 543 L -276 792 L -125 749 Z;M -43 609 L -292 702 L -46 686 Z;M 27 543 L -276 792 L -125 749 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -125 749 L -236 855 L -69 1045 Z' stroke='%236db4c6' fill='%236db4c6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -125 749 L -236 855 L -69 1045 Z;M -46 686 L -259 998 L 32 994 Z;M -125 749 L -236 855 L -69 1045 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -16 31 L -116 210 L 189 165 Z' stroke='%2384cdda' fill='%2384cdda'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -16 31 L -116 210 L 189 165 Z;M 40 -16 L -137 138 L 131 197 Z;M -16 31 L -116 210 L 189 165 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -265 519 L 27 543 L 51 371 Z' stroke='%2377c0cf' fill='%2377c0cf'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -265 519 L 27 543 L 51 371 Z;M -237 530 L -43 609 L -51 351 Z;M -265 519 L 27 543 L 51 371 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 697 -277 L 745 -26 L 936 -207 Z' stroke='%2382cbd8' fill='%2382cbd8'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 697 -277 L 745 -26 L 936 -207 Z;M 709 -315 L 806 -130 L 968 -226 Z;M 697 -277 L 745 -26 L 936 -207 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 343 -121 L 131 -228 L 257 54 Z' stroke='%238ad3df' fill='%238ad3df'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 343 -121 L 131 -228 L 257 54 Z;M 295 -38 L 102 -211 L 240 5 Z;M 343 -121 L 131 -228 L 257 54 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 257 54 L -16 31 L 189 165 Z' stroke='%2383ccd9' fill='%2383ccd9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 257 54 L -16 31 L 189 165 Z;M 240 5 L 40 -16 L 131 197 Z;M 257 54 L -16 31 L 189 165 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 936 -207 L 745 -26 L 1031 -14 Z' stroke='%237bc3d2' fill='%237bc3d2'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 936 -207 L 745 -26 L 1031 -14 Z;M 968 -226 L 806 -130 L 1031 -43 Z;M 936 -207 L 745 -26 L 1031 -14 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -271 281 L -265 519 L 51 371 Z' stroke='%237fc8d6' fill='%237fc8d6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -271 281 L -265 519 L 51 371 Z;M -291 390 L -237 530 L -51 351 Z;M -271 281 L -265 519 L 51 371 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1073 -49 L 936 -207 L 1031 -14 Z' stroke='%237ac2d1' fill='%237ac2d1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1073 -49 L 936 -207 L 1031 -14 Z;M 1086 -42 L 968 -226 L 1031 -43 Z;M 1073 -49 L 936 -207 L 1031 -14 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1078 -307 L 936 -207 L 1073 -49 Z' stroke='%2380c9d6' fill='%2380c9d6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1078 -307 L 936 -207 L 1073 -49 Z;M 1103 -213 L 968 -226 L 1086 -42 Z;M 1078 -307 L 936 -207 L 1073 -49 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 697 -277 L 325 -307 L 570 -217 Z' stroke='%238dd6e1' fill='%238dd6e1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 697 -277 L 325 -307 L 570 -217 Z;M 709 -315 L 392 -316 L 624 -281 Z;M 697 -277 L 325 -307 L 570 -217 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 570 -217 L 325 -307 L 343 -121 Z' stroke='%238cd6e1' fill='%238cd6e1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 570 -217 L 325 -307 L 343 -121 Z;M 624 -281 L 392 -316 L 295 -38 Z;M 570 -217 L 325 -307 L 343 -121 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -265 519 L -236 855 L -276 792 Z' stroke='%2377bfcf' fill='%2377bfcf'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -265 519 L -236 855 L -276 792 Z;M -237 530 L -259 998 L -292 702 Z;M -265 519 L -236 855 L -276 792 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -276 792 L -236 855 L -125 749 Z' stroke='%2373bacb' fill='%2373bacb'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -276 792 L -236 855 L -125 749 Z;M -292 702 L -259 998 L -46 686 Z;M -276 792 L -236 855 L -125 749 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 799 1329 L 1415 1316 L 1116 1295 Z' stroke='%232d6d8a' fill='%232d6d8a'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 799 1329 L 1415 1316 L 1116 1295 Z;M 719 1401 L 1318 1327 L 1223 1423 Z;M 799 1329 L 1415 1316 L 1116 1295 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1116 1295 L 1415 1316 L 1333 1181 Z' stroke='%23296886' fill='%23296886'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1116 1295 L 1415 1316 L 1333 1181 Z;M 1223 1423 L 1318 1327 L 1383 1148 Z;M 1116 1295 L 1415 1316 L 1333 1181 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1333 1181 L 1415 1316 L 1316 1007 Z' stroke='%232d6d89' fill='%232d6d89'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1333 1181 L 1415 1316 L 1316 1007 Z;M 1383 1148 L 1318 1327 L 1365 910 Z;M 1333 1181 L 1415 1316 L 1316 1007 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -96 1083 L 18 1367 L 172 1177 Z' stroke='%235fa4b9' fill='%235fa4b9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -96 1083 L 18 1367 L 172 1177 Z;M -1 1151 L -11 1348 L 65 1127 Z;M -96 1083 L 18 1367 L 172 1177 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 198 1337 L 18 1367 L 471 1469 Z' stroke='%235398ae' fill='%235398ae'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 198 1337 L 18 1367 L 471 1469 Z;M 203 1396 L -11 1348 L 359 1396 Z;M 198 1337 L 18 1367 L 471 1469 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -244 1315 L 18 1367 L -96 1083 Z' stroke='%2365abbe' fill='%2365abbe'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -244 1315 L 18 1367 L -96 1083 Z;M -266 1393 L -11 1348 L -1 1151 Z;M -244 1315 L 18 1367 L -96 1083 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -116 210 L -271 281 L 51 371 Z' stroke='%2381cbd8' fill='%2381cbd8'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -116 210 L -271 281 L 51 371 Z;M -137 138 L -291 390 L -51 351 Z;M -116 210 L -271 281 L 51 371 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 131 -228 L -16 31 L 257 54 Z' stroke='%238ad4df' fill='%238ad4df'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 131 -228 L -16 31 L 257 54 Z;M 102 -211 L 40 -16 L 240 5 Z;M 131 -228 L -16 31 L 257 54 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -116 210 L -195 170 L -271 281 Z' stroke='%2388d1dd' fill='%2388d1dd'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -116 210 L -195 170 L -271 281 Z;M -137 138 L -200 171 L -291 390 Z;M -116 210 L -195 170 L -271 281 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1381 218 L 1416 -30 L 1106 157 Z' stroke='%236bb2c4' fill='%236bb2c4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1381 218 L 1416 -30 L 1106 157 Z;M 1385 149 L 1326 -8 L 1108 91 Z;M 1381 218 L 1416 -30 L 1106 157 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -208 4 L -195 170 L -116 210 Z' stroke='%238bd5e0' fill='%238bd5e0'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -208 4 L -195 170 L -116 210 Z;M -250 1 L -200 171 L -137 138 Z;M -208 4 L -195 170 L -116 210 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -236 855 L -306 1150 L -96 1083 Z' stroke='%236db4c6' fill='%236db4c6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -236 855 L -306 1150 L -96 1083 Z;M -259 998 L -259 1098 L -1 1151 Z;M -236 855 L -306 1150 L -96 1083 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1416 -30 L 1078 -307 L 1073 -49 Z' stroke='%237bc3d2' fill='%237bc3d2'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1416 -30 L 1078 -307 L 1073 -49 Z;M 1326 -8 L 1103 -213 L 1086 -42 Z;M 1416 -30 L 1078 -307 L 1073 -49 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 936 -207 L 1276 -308 L 697 -277 Z' stroke='%2385cfdb' fill='%2385cfdb'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 936 -207 L 1276 -308 L 697 -277 Z;M 968 -226 L 1367 -332 L 709 -315 Z;M 936 -207 L 1276 -308 L 697 -277 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 325 -307 L 131 -228 L 343 -121 Z' stroke='%2390dae4' fill='%2390dae4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 325 -307 L 131 -228 L 343 -121 Z;M 392 -316 L 102 -211 L 295 -38 Z;M 325 -307 L 131 -228 L 343 -121 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -16 31 L -208 4 L -116 210 Z' stroke='%238bd5e0' fill='%238bd5e0'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -16 31 L -208 4 L -116 210 Z;M 40 -16 L -250 1 L -137 138 Z;M -16 31 L -208 4 L -116 210 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 697 -277 L 131 -228 L 325 -307 Z' stroke='%2390dae4' fill='%2390dae4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 697 -277 L 131 -228 L 325 -307 Z;M 709 -315 L 102 -211 L 392 -316 Z;M 697 -277 L 131 -228 L 325 -307 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1276 -308 L 131 -228 L 697 -277 Z' stroke='%238ad3df' fill='%238ad3df'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1276 -308 L 131 -228 L 697 -277 Z;M 1367 -332 L 102 -211 L 709 -315 Z;M 1276 -308 L 131 -228 L 697 -277 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -217 -170 L -208 4 L -16 31 Z' stroke='%2393dde6' fill='%2393dde6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -217 -170 L -208 4 L -16 31 Z;M -241 -222 L -250 1 L 40 -16 Z;M -217 -170 L -208 4 L -16 31 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -195 170 L -208 4 L -271 281 Z' stroke='%238cd6e1' fill='%238cd6e1'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -195 170 L -208 4 L -271 281 Z;M -200 171 L -250 1 L -291 390 Z;M -195 170 L -208 4 L -271 281 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -306 1150 L -244 1315 L -96 1083 Z' stroke='%236bb2c4' fill='%236bb2c4'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -306 1150 L -244 1315 L -96 1083 Z;M -259 1098 L -266 1393 L -1 1151 Z;M -306 1150 L -244 1315 L -96 1083 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 131 -228 L -9 -260 L -16 31 Z' stroke='%2393dde6' fill='%2393dde6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 131 -228 L -9 -260 L -16 31 Z;M 102 -211 L -106 -234 L 40 -16 Z;M 131 -228 L -9 -260 L -16 31 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1416 -30 L 1276 -308 L 1078 -307 Z' stroke='%2380c9d6' fill='%2380c9d6'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1416 -30 L 1276 -308 L 1078 -307 Z;M 1326 -8 L 1367 -332 L 1103 -213 Z;M 1416 -30 L 1276 -308 L 1078 -307 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 1078 -307 L 1276 -308 L 936 -207 Z' stroke='%2385cedb' fill='%2385cedb'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 1078 -307 L 1276 -308 L 936 -207 Z;M 1103 -213 L 1367 -332 L 968 -226 Z;M 1078 -307 L 1276 -308 L 936 -207 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M 131 -228 L -217 -170 L -9 -260 Z' stroke='%2398e3eb' fill='%2398e3eb'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M 131 -228 L -217 -170 L -9 -260 Z;M 102 -211 L -241 -222 L -106 -234 Z;M 131 -228 L -217 -170 L -9 -260 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -9 -260 L -217 -170 L -16 31 Z' stroke='%2395dfe9' fill='%2395dfe9'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -9 -260 L -217 -170 L -16 31 Z;M -106 -234 L -241 -222 L 40 -16 Z;M -9 -260 L -217 -170 L -16 31 Z'%3E%3C/animate%3E%3C/path%3E%3Cpath d='M -208 4 L -217 -170 L -271 281 Z' stroke='%2392dce5' fill='%2392dce5'%3E%3Canimate attributeName='d' repeatDur='indefinite' dur='10s' keyTimes='0;0.5;1' values='M -208 4 L -217 -170 L -271 281 Z;M -250 1 L -241 -222 L -291 390 Z;M -208 4 L -217 -170 L -271 281 Z'%3E%3C/animate%3E%3C/path%3E%3C/g%3E%3Cstyle type='text/css'%3E %23bk-0.050109087320344026 path %7B stroke-width: 1 %7D %3C/style%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-attachment: scroll;  
}

.intro {
	width: calc(100% - 1rem);
  padding-top: 3rem;
}

.content h1 {
  margin-bottom: 1rem;
  font-size: max(28px, min(48px, 4vw));
  font-weight: 600;
  color: var(--orange);
}

.projects {
  padding-top: 3rem;
}

.projects h1 {
  color: white;
}

.content p {
	padding-top: 0.5rem;
}

.panel-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 1rem 0 2rem;
}

.panel {
  display: flex;
  width: calc(100% - 1rem);
  margin: 0.5rem 0.5rem;
}

.panel .inner {
	width: 100%;
  padding: 2.5rem 1.5rem 1rem;
  box-shadow: 0 0 10px 0 #00000050;
	border-radius: 1rem;
	height: 100%;
}

.panel h2 {
  margin-bottom: 0.75rem;
  padding: 0.25rem 0 0;
  font-size: 24px;
  font-weight: 700;
  color: black;
  background-color: var(--orange00);
	border-radius: 1rem;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; 
}

.panel > .inner > div {
  color: #606060;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; 
}

.panel span > svg {
  max-height: 40px;
  margin-bottom: 1rem;
}


@media only screen and (min-width: 768px) {

  .content > .container-fluid {
    padding: 0 2.5rem;
  }

  .intro,
  .projects {
    padding-top: 3.5rem;
  }

  .panel-block {
    padding-bottom: 3rem;
  }

  .panel.flip-card {
    width: calc(100% / 3 - 1rem);
  }

  .panel inner {
    padding: 2.5rem 1.5rem 1rem;
  }

  .panel span > svg {
    max-height: 50px;
  }
  
}

@media only screen and (min-width: 1024px) {

  .content > .container-fluid {
    padding: 0 4rem;
  }

  .intro,
  .projects {
    padding-top: 4rem;
  }

  .panel-block {
    padding-bottom: 4rem;
    justify-content: center;
  }

  .panel {
    width: calc(100% / 3 - 1rem);
  }

  .panel.flip-card {
    width: calc(100% / 4 - 1rem);
  }

  .pannel inner {
    padding: 2.5rem 1.5rem 1rem;
  }

  .panel span > svg {
    max-height: 60px;
  }
  
}

.panel.shade:nth-child(1) .inner {
  background-color: #72ccb460;
}

.panel.shade:nth-child(2) .inner {
  background-color: #64d5d960;
}

.panel.shade:nth-child(3) .inner {
  background-color: #67b6d06e;
}

.panel:hover span > svg .fa-primary,
.panel:hover span > svg .fa-secondary {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; 
}

.panel:hover span > svg .fa-primary {
  fill: black;
  opacity: 1;
}

.panel:hover span > svg .fa-secondary {
  fill: white;
  opacity: 1;
}

.panel.shade:hover h2 {
  color: white;
  background-color: #606060;
}

.panel.shade:hover div {
  color: black;
}


.panel.shade:hover p strong {
	color: white;
}

.panel.shade:nth-child(1):hover .inner{
  background-color: #72ccb4ff;
}

.panel.shade:nth-child(2):hover .inner {
  background-color: #64cee1ff;
}

.panel.shade:nth-child(3):hover .inner {
  background-color: #67b6d0ff;
}

.slider-tabs {
  color: white;
  width: 75%;
}

.slider-tabs ul {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0;
  padding: 0 1rem;
  list-style: none;
}

.slider-tabs ul:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  border-bottom: 2px solid white;
  box-shadow: 0 5px 10px 0 #00000050;
}

.slider-tabs li {
  position: relative;
  display: flex;
  margin: 0 0.5rem;
  padding: 0.25rem 0.5rem 0;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom: none;
  cursor: pointer;
 -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
 }

.slider-tabs li.active {
  color: var(--orange);
  background-color: white;
  cursor: default;
  pointer-events: none;
  box-shadow: 0 0 10px 0 #00000050;
}

.slider-tabs li:hover {
  color: black;
}

.slider-tabs-block {
  display: block;
  width: 100%;
  overflow-x: hidden;
}

.slider-tabs-block > .inner {
  display: flex;
  flex-direction: row;
  width: 200%;
  margin-left: 0;
  overflow-x: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; 
}

.slider-tabs-block.trade > .inner {
  margin-left: -100%;
}


.slider-tabs-block .inner .panel-block {
  width: 50%;
  align-self: flex-start;
}

.slider-tabs-description {
  width: 100%;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: white;
}

.flip-card {
  perspective: 2000px;
  font-size: 16px;
}

.flip-card strong {
  color: black;
}

.flip-card-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 1rem;
  background-color: transparent;
  transform-style: preserve-3d;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease; 
}

.flip-card:hover .flip-card-container {
  transform: rotateY(180deg);
}

.panel.flip-card .inner {
  height: 100%;
}

.panel .flip-card-front .inner {
  background-repeat: no-repeat;
  background-size: cover;
	background-position: center top;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.panel#digigov .flip-card-front .inner {
  background-image: url('../media/digigov.jpg');
}

.panel#digitalfiji  .flip-card-front .inner {
  background-image: url('../media/digitalfiji.jpg');
}

.panel#maco .flip-card-front .inner {
  background-image: url('../media/maco.jpg');
}

.panel#tradenet .flip-card-front .inner {
  background-image: url('../media/tradenet.jpg');
}

.panel#dpcs .flip-card-front .inner {
  background-image: url('../media/dpcs.jpg');
}

.panel#calistaia .flip-card-front .inner {
  background-image: url('../media/calistaia.jpg');
}

.panel.flip-card h2 {
  padding: 0.8rem 1.2rem 0.6rem;
  margin: 0;
  border-radius: 2rem;
  color: var(--orange);
  background-color: #000000d0;
}

.panel.flip-card:hover h2 {
	color: black;
	background-color: var(--orange);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;  
}

.flip-card-back .inner {
	background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.footer {
  position: sticky;
  bottom: 0;
  width: 100%; 
  height: 30px;
  margin: 0 -50px;
  padding: 5px 0 2px;
  color: white;
  background-color: #444;
  font-size: 16px;
	z-index: 1;
}

a {
 color: white;
 border-bottom: 1px solid var(--orange00);
 -webkit-transition: all 0.3s ease;
 -moz-transition: all 0.3s ease;
 -ms-transition: all 0.3s ease;
 -o-transition: all 0.3s ease;
 transition: all 0.3s ease; 
}

a:hover {
  color: var(--orange); 
  text-decoration: none;
}

p > a {
  color: var(--orange); 
}

p > a:hover,
.footer a:hover {
  border-bottom: 1px solid var(--orangeff);
}