@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Raleway:wght@300&display=swap');

body {
  margin: 0px;
  padding: 0px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 300;
  overscroll-behavior: none;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  color: #000000;
}
.page {
  width: 100%;
  height: 100%;
}
.page, .page * {
  box-sizing: border-box;
}
.section {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.section > div {
  width: 100%;
  /*max-width: 1600px;*/
  padding: 100px;
  display: flex;
  position: relative;
}
.top-menu {
  font-size: 1.16em;
  z-index: 2;
}
.top-menu > div {
  background-color: #253236;
  display: flex;
  align-items: center;
  padding: 20px;
  position: fixed;
  z-index: 1;
  max-width: 100%;
}
.top-menu .logo {
  flex-grow: 100;
}
.top-menu .logo img {
  height: 15px;
}
.top-menu .appointment a {
  color: #6DBBE8;
  text-decoration: none;
  position: relative;
}
.top-menu .appointment a:after {
  content: ">";
  position: absolute;
  left: calc(100% + 2px);
  top: 50%;
  transform: translateY(-50%);
}
.top-menu .appointment a:hover:after {
  animation: appointment-a 2s infinite;
}
@keyframes appointment-a {
  0% { left: calc(100% + 2px); }
  50% { left: calc(100% + 5px); }
  100% { left: calc(100% + 2px); }
}
.top-menu .menu {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  margin-left: 40px;
  cursor: pointer;
  padding: 1px;
}
.top-menu .menu > div {
  width: 20px;
  flex-grow: 100;
  position: relative;
}
.top-menu .menu > div:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 0px;
}
.top-menu .menu > div:nth-child(2):before {
  top: 50%;
  transform: translateY(-50%);
}
.top-menu .menu > div:nth-child(3):before {
  top: auto;
  bottom: 0px;
}
.top-header {
  height: 200vh;
  background-color: #253236;
  overflow: hidden;
  z-index: 0;
}
.top-header .text {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  pointer-events: none;
}
.top-header .text svg {
  width: 100vw;
  height: 100vh;
}
.top-header .text svg g {
  /*transform-origin: 51.374% 50%;*/
}
.top-header .text path {
  fill: #ffffff !important;
}
.cube-3d-section {
  position: fixed;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
  transition: opacity 0.5s;
}
.cube-3d-section > div {
  transform-style: preserve-3d;
  perspective: 100vw;
  perspective-origin: 50% 10%;
  transition: perspective 0.3s;
}
.cube-transformations {
  position: absolute;
  width: 40%;
  height: 0%;
  padding-top: 40%;
  transform-style: preserve-3d;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: left 0.5s, transform 0.5s, opacity 0.5s;
}
.cube-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: translateX(-50%) translateY(-50%);
}
.cube-3d .rotate-y {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: translateX(-50%) translateY(-50%) rotateY(59deg);
  animation: cube-animation-1 800s infinite linear;
}
@keyframes cube-animation-1 {
  0% { transform: translateX(-50%) translateY(-50%) rotateY(0deg); }
  100% { transform: translateX(-50%) translateY(-50%) rotateY(3600deg); }
}
.cube-3d .rotate-z {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: cube-animation-2 1000s infinite linear;
}
@keyframes cube-animation-2 {
  0% { transform: rotateZ(0deg); }
  0% { transform: rotateZ(3600deg); }
}
.cube-3d .side {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  transform: translateX(-50%) translateY(-50%);
  border: 1px solid rgba(245, 246, 246, 0.1);
  background-color: rgba(245, 246, 246, 1);
  transition: border 1s, background-color 1s;
}
.cube-3d.cube-journey .side {
  border: 1px solid rgba(95, 164, 218, 1);
  background-color: rgba(95, 164, 218, 1);
}
.cube-3d.cube-clarity .side {
  border: 1px solid rgba(201, 225, 220, 1);
  background-color: rgba(201, 225, 220, 1);
}
.cube-3d.cube-preparation .side {
  border: 1px solid rgba(95, 165, 220, 1);
  background-color: rgba(95, 165, 220, 1);
}
.cube-3d.cube-possible .side {
  border: 1px solid rgba(133, 135, 177, 1);
  background-color: rgba(133, 135, 177, 1);
}
.cube-3d.cube-introducing .side {
  border: 1px solid rgba(192, 219, 213, 1);
  background-color: rgba(192, 219, 213, 1);
}
.cube-3d.cube-financial-planning .side:nth-child(1) {
  border: 1px solid rgba(119, 168, 249, 1);
  background-color: rgba(119, 168, 249, 1);
}
.cube-3d.cube-financial-planning .side:nth-child(2) {
  border: 1px solid rgba(89, 101, 246, 1);
  background-color: rgba(89, 101, 246, 1);
}
.cube-3d.cube-financial-planning .side:nth-child(3) {
  border: 1px solid rgba(118, 142, 226, 1);
  background-color: rgba(118, 142, 226, 1);
}
.cube-3d.cube-financial-planning .side:nth-child(4) {
  border: 1px solid rgba(158, 220, 232, 1);
  background-color: rgba(158, 220, 232, 1);
}
.cube-3d.cube-financial-planning .side:nth-child(5) {
  border: 1px solid rgba(197, 223, 218, 1);
  background-color: rgba(197, 223, 218, 1);
}
.cube-3d.cube-financial-planning .side:nth-child(6) {
  border: 1px solid rgba(197, 223, 218, 1);
  background-color: rgba(197, 223, 218, 1);
}
.cube-3d .side:nth-child(1) { /* left */
  transform-origin: 50% 50%;
  transform: translateX(-100%) translateY(-50%) rotateY(90deg) rotateY(-180deg);
}
.cube-3d .side:nth-child(2) { /* right */
  transform-origin: 50% 50%;
  transform: translateX(-0%) translateY(-50%) rotateY(-90deg);
}
.cube-3d .side:nth-child(3) { /* top */
  transform-origin: 50% 50%;
  transform: translateX(-50%) translateY(-100%) rotateX(90deg);
}
.cube-3d .side:nth-child(4) { /* bottom */
  transform-origin: 50% 50%;
  transform: translateX(-50%) translateY(0%) rotateX(-90deg);
}
.cube-3d .side:nth-child(5) { /* front */
  transform-origin: 50% 50%;
  transform: rotateY(-90deg) translateX(50%) rotateY(90deg) translateX(-50%) translateY(-50%);
}
.cube-3d .side:nth-child(6) { /* back */
  transform-origin: 50% 50%;
  transform: rotateY(90deg) translateX(50%) rotateY(-90deg) translateX(-50%) translateY(-50%);
}
.cube-3d .side:nth-child(5):before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  transform: translateX(-50%) translateY(-50%);
  background-image: url(assets/images/cube-in.jpg);
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.cube-3d .side:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.8;
  z-index: -1;
}
.section.journey,
.section.clarity {
  overflow: hidden;
}
.section.clarity {
  /*flex-direction: column;*/
}
.section:not(.top-header) .text {
  width: 50%;
}
.section.clarity .text {
  width: 60%;
}
.section .title {
  font-size: 5em;
  font-weight: 400;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: normal;
}
.journey .title,
.financial-planning .title {
  background-image: linear-gradient(to right, #24383C 0%, #5FA4DA 40%);
}
.clarity .title {
  background-image: linear-gradient(to right, #C9E1DC 0%, #A0C1BA 40%);
}
.section .subtitle {
  margin-top: 40px;
  font-size: 1.53em;
  line-height: 30px;
  position: relative;
  background-image: url(#right-line-gradient-1);
}
.journey .subtitle svg {
  /*width: calc(100% + 60px);*/
  width: 50vw;
  position: absolute;
  margin-left: 60px;
  top: 0%;
  left: 100%;
  margin-top: 10px;
}
.journey .subtitle svg path {
  stroke-dasharray: 600px;
  stroke-dashoffset: 600px;
  transition: stroke-dashoffset 0.2s;
  fill: none;
  stroke: url(#right-line-gradient-1);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6px;
}
.clarity {
  padding-top: 170px;
}
.clarity > div > div:nth-child(1) {
  width: 40%;
}
.bucket-and-lines > div {
  padding: 0px;
  padding-bottom: 100px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.bucketsvg svg {
      width: 200px;
  height: auto;
}

/* New video html5 */


/* /////////////////////////  */


.section.video-1 video {
  max-width: 80%;
}

.section.video-1 .video-player {
  width: 100%;
  height: 0px;
  padding-top: 56%;
  /*background-image: url(assets/images/video/play.svg);*/
  position: relative;
  background-size: cover;
  background-position: center;
}
.section.video .video-player:before {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  background-color: #203235;
  opacity: 0.74;
}
.section.video .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}
.section .pound {
  display: flex;
  align-items: center;
  /*width: 100%;*/
  max-width: 80%;
}
.section .pound .currency-sign {
  font-size: 30em;
  font-family: 'Raleway', sans-serif;
}
.section .pound .subtitle {
  margin-top: 0px;
  z-index: 1;
  position: initial;
  padding-left: 40px;
}
.section.first-meet > div {
  align-items: center;
  padding-top: 25%;
  padding-bottom: 25%;
  justify-content: center;
}
.section.first-meet .image {
  background-image: url(assets/images/first-meet.png);
  position: absolute;
  width: 45%;
  right: 0%;
  height: 0%;
  padding-top: 30%;
  z-index: 0;
  right: 7%;
  background-size: cover;
  background-position: center;
  bottom: 0%;
}
.preparation {
  background-color: rgba(27, 27, 27, 0.85);
  z-index: 1;
}
.section.preparation > div {
  flex-direction: column;
}
.section.preparation .text {
  width: 60%;
  padding-right: 40px;
}
.preparation .text .title {
  background-image: linear-gradient(to right, #5FA5DC 0%, #F8F9FB 80%);
}
.preparation .text .subtitle {
  color: #B7B6B6;
}
.preparation .features {
  display: flex;
  width: 100%;
  margin-top: 60px;
}
.preparation .features > div:nth-child(1) {
  width: 70%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
}
.preparation .features > div:nth-child(2) {
  width: 30%;
}
.preparation .features > div:nth-child(2) img {
  width: 100%;
}
.preparation .features .list {
  display: flex;
  text-align: center;
  width: 100%;
}
.preparation .features .list .item {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  text-align: center;
  margin: 10px;
  justify-content: center;
  align-items: center;
}
.preparation .features .list .item:first-child {
  margin-left: 0px;
}
.preparation .features .list .item:last-child {
  margin-right: 0px;
}
.preparation .features .list img {
  width: 30%;
  max-width: 60px;
}
.preparation .features .title {
  margin-top: 15px;
  font-size: 1.33em;
  color: #ffffff;
  background-image: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  white-space: nowrap;
}
.preparation .features .subtitle {
  font-size: 1em;
  margin-top: 10px;
  color: #B7B6B6;
}
.preparation .features > div:nth-child(1) > div:nth-child(2) {
  color: #B7B6B6;
  margin-top: 20px;
  text-align: center;
}
.preparation-pound,
.possible-pound {
  background-color: rgba(27, 27, 27, 0.85);
  color: #B7B6B6;
  z-index: 1;
  padding-bottom: 100px;
}
.possible-pound {
  background-color: rgba(23, 26, 28, 0.9);
}
.section.preparation-pound > div,
.section.possible-pound > div {
  padding-top: 0px;
  justify-content: center;
  padding-bottom: 0px;
}
.section.assets-pound > div {
  padding-top: 100px;
  justify-content: center;
  /*padding-bottom: 100px;*/
  padding-bottom: 160px;
}
.section.assets-pound .pound {
  position: relative;
}
.preparation-pound .currency-sign,
.possible-pound .currency-sign {
  color: #ffffff;
  line-height: 1;
}
.possible {
  background-color: rgba(23, 26, 28, 0.9);
}
.possible .text {
  padding-top: 100px;
}
.possible .text .title {
  background-image: linear-gradient(to right, #8587B1 0%, #ffffff 100%);
}
.possible .text .subtitle {
  color: #B7B6B6;
}
.possible .image {
  width: 50%;
  padding-right: 40px;
}
.possible .image img {
  width: 100%;
}
.possible-pound a {
  color: #C76F99;
  text-decoration: none;
}
.possible-pound a:focus,
.possible-pound a:hover {
  text-decoration: underline;
}
.section.video-2 {
  background-color: rgba(23, 26, 28, 0.9);
}
.section.video-2 .video-player {
  width: 100%;
  height: 0px;
  padding-top: 56%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.section.video-2 .video-player:before {
  background-color: #576567;
  opacity: 1;
}
.section.video .caption {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 3.7em;
  color: #233133;
  font-weight: 400;
}
.section.video-2 > div {
  flex-direction: column;
}
.section.video-2 .info {
  color: #B7B6B6;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.section.video-2 .info span {
  display: inline-block;
  border: 1px solid #fff;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
}
.section.financial-planning .background {
  position: absolute;
  top: 35%;
  width: 100%;
  right: 0%;
  display: flex;
  justify-content: flex-end;
}
.section.financial-planning .background img {
  width: 66%;
}
.section.financial-planning .text {
  width: 60%;
}
.section.financial-planning .lines {
  width: 40%;
  height: 0px;
  padding-top: 50%;
  position: relative;
  display: flex;
}
.section.financial-planning > div {
  flex-direction: column;
  padding-top: 0px;
}
.section.financial-planning .lines span {
  position: absolute;
  display: block;
  width: 2%;
  height: 50%;
  background: linear-gradient(180deg, #77A8F9 0%, rgba(255, 255, 255, 0) 100%);
  top: 0%;
  left: 0%;
  transition: height 0.1s;
}
.section.financial-planning .lines span:nth-child(2) {
  left: 20%;
  background: linear-gradient(180deg, #5965F6 0%, rgba(255, 255, 255, 0) 100%);
}
.section.financial-planning .lines span:nth-child(3) {
  left: 40%;
  background: linear-gradient(180deg, #768EE2 0%, rgba(255, 255, 255, 0) 100%);
}
.section.financial-planning .lines span:nth-child(4) {
  left: 60%;
  background: linear-gradient(180deg, #9EDCE8 0%, rgba(255, 255, 255, 0) 100%);
}
.section.financial-planning .lines span:nth-child(5) {
  left: 80%;
  background: linear-gradient(180deg, #C5DFDA 0%, rgba(255, 255, 255, 0) 100%);
}
.section.financial-planning .features {
  display: flex;
  margin-top: 60px;
}
.section.financial-planning .features > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
.section.financial-planning .features > div:first-child {
  padding-left: 0px;
}
.section.financial-planning .features > div:last-child {
  padding-right: 0px;
}
.section.financial-planning .features .icon {
  height: 120px;
  position: relative;
  width: 100%;
}
.section.financial-planning .features img {
  max-height: 120px;
  max-width: 90px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.section.financial-planning .features .text {
  width: 100%;
  margin-top: 20px;
}
.section.financial-planning .features .text .title {
  font-size: 1.33em;
  background: none;
  -webkit-text-fill-color: inherit;
}
.section.financial-planning .features .text .subtitle {
  font-size: 1em;
  margin-top: 10px;
}
.section.assets-pound .text {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  width: 100%;
}
.section.assets-pound .text .subtitle {
  padding-left: 0px;
  width: 100%;
}
.section.assets-pound .table {
  font-weight: bold;
  margin-top: 10px;
  display: flex;
  width: 100%;
  border: 1px solid #000000;
}
.section.assets-pound .table > div {
  flex-grow: 100;
  border-right: 1px solid #000000;
  padding-left: 10px;
}
.section.assets-pound .table > div:last-child {
  border-right: none;
}
.section.assets-pound .table > div > div {
  position: relative;
}
.section.assets-pound .table > div > div:before {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: calc(100% + 10px);
  transform: translateX(-10px);
  border-top: 1px solid #000000;
}
.section.assets-pound .table > div > div:last-child:before {
  display: none;
}
.section.introducing > div > div:first-child {
  width: 40%;
}
.section.introducing .text {
  width: 60%;
}
.section.introducing .text .title {
  background-image: linear-gradient(to right, #C0DBD5 0%, #A3C3BC 40%);
}
.section.ui-screens {
  overflow: hidden;
}
.section.ui-screens > div {
  transform-style: preserve-3d;
  padding-top: 5%;
  margin-bottom: -400px;
}
.section.ui-screens .ui-transform {
  width: 150%;
  display: flex;
  margin-top: -25%;
  transform: translateX(20%) translateY(11%) rotateX(55deg) rotateY(0deg) rotateZ(-28deg) scale(1.3);
}
.section.ui-screens .column {
  flex-grow: 100;
}
.section.ui-screens .column:nth-child(even) {
  flex-grow: 100;
  padding-top: 10%;
}
.section.ui-screens .column > div {
  margin: 10px;
  margin-top: 0px;
  position: relative;
  transition: opacity 0.3s, transform 0.3s;
}
.section.ui-screens .column > div > div {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
  /*transform: translateX(20%) translateY(11%) rotateX(0deg) rotateY(0deg) rotateZ(-28deg) scale(1.3);
  transition: transform 0.5s;*/
}
.section.ui-screens .column > div > div:before,
.section.ui-screens .column > div > div:after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: 10px;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  border-radius: 20px;
}
.section.ui-screens .column > div > div:before {
  /*display: none;*/
}
.section.ui-screens .column > div > div:after {
  left: 50%;
  top: 50%;
  background-color: #F4F7FE;
  transform: translateX(-50%) translateY(-50%);
}
.section.ui-screens .column > div > div img {
  width: 100%;
  display: block;
}
.section.good-financial {
  background-color: rgba(40, 50, 53, 1);
  margin-top: -22%;
}
.section.good-financial .text {
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.section.good-financial .text .title {
  background: none;
  -webkit-text-fill-color: inherit;
  font-size: 2em;
}
.section.good-financial .text .subtitle {
  margin-top: 20px;
}
.section.learn {
  background-color: rgba(40, 50, 53, 1);
}
.section.learn .items {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  display: flex;
}
.section.learn .items > div {
  flex-grow: 100;
}
.section.learn .items > div:nth-child(1) {
  color: #67aaff;
}
.section.learn .items > div:nth-child(2) {
  color: #cde8e2;
  text-align: center;
}
.section.learn .items > div:nth-child(3) {
  color: #d3699a;
  text-align: right;
}
.section.footer {
  background-color: rgba(40, 40, 40, 1);
  color: #9A999A;
}
.section.footer > div {
  flex-direction: column;
  text-align: center;
}
.section.footer .text {
  width: 100%;
}
.section.footer .logo {
  font-size: 2em;
}
.section.footer .text .title {
  background: none;
  -webkit-text-fill-color: inherit;
  font-size: 1.33em;
  margin-top: 40px;
}
.section.footer .text .subtitle {
  font-size: 1em;
}
.section.footer .green-label {
  margin-top: 40px;
  width: 200px;
}
.section.footer .icons {
  margin-top: 20px;
}
.section.footer .icons a {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  margin-left: 10px;
}
.section.footer .icons a:first-child {
  margin-left: 0px;
}
.section.footer .icons a img {
  filter: invert(0.6);
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translateX(-50%) translateY(-50%);
}
.section.bucket-and-lines > div > div:nth-child(1) {
  width: 50%;
}
.section.bucket-and-lines > div > div:nth-child(1) svg {
  margin-left: -30px;
}
.section.bucket-and-lines > div > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.33em;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 400;
  flex-grow: 100;
}
.section.bucket-and-lines > div > div:nth-child(2) a {
  margin-top: 20px;
  color: #C66F98;
  text-decoration: none;
}
.section.bucket-and-lines .play-btn {
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
  margin-left: 10px;
}
.section.bucket-and-lines .play-btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateX(-50%) translateY(-50%);
  background-color: #C66F98;
  border-radius: 50%;
  transition: width 0.3s, height 0.3s;
}
.section.bucket-and-lines > div > div:nth-child(2) a:hover .play-btn:before {
  width: 25px;
  height: 25px;
}
.section.bucket-and-lines .play-btn:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 0px;
  border-style: solid;
  border-width: 5px;
  border-color: #202020;
  border-width: 5px 0px 5px 10px;
  border-color: transparent #ffffff transparent #ffffff;
  left: 50%;
  top: 50%;
  transform: translateX(-20%) translateY(-50%);
}
.section.bucket-and-lines > div > div:nth-child(2) img {
  width: 30%;
  display: inline-block;
}
.section.bucket-and-lines > div > div:nth-child(2) > * {
  width: 100%;
  text-align: center;
}
.section.bucket-and-lines > div > div:nth-child(3) {
  width: 6%;
}
.section.bucket-and-lines > div > div svg path {
  transition: stroke-dashoffset 0.2s;
}
.section.bucket-and-lines .sky-blue { stroke-dasharray: 1136; }
.section.bucket-and-lines .violet { stroke-dasharray: 1043; }
.section.bucket-and-lines .light-blue { stroke-dasharray: 1144; }
.section.bucket-and-lines .green { stroke-dasharray: 1122; }
.section.bucket-and-lines .light-green { stroke-dasharray: 1177; }
.section.bucket-and-lines .right-line { stroke-dasharray: 90; }
.fade-in-on-scroll {
  opacity: 0;
  transition: opacity 3s;
}
.fade-in-on-scroll.fade-in-on-scroll-show {
  opacity: 1;
}

@media (max-width: 1000px) {
  .section > div {
    padding: 40px;
  }
  .section.top-menu > div {
    padding: 20px;
  }
  .section.bucket-and-lines > div {
    padding: 0px;
    padding-bottom: 100px;
  }
  .section.preparation > div,
  .section.possible > div,
  .section.ui-screens > div {
    padding-top: 60px;
  }
  body .section.financial-planning > div {
    padding-top: 0px;
  }
  .preparation-pound,
  .possible-pound {
    margin-top: 0px;
  }
  .section.preparation-pound > div,
  .section.possible-pound > div {
    padding-top: 0px;
  }
}
@media (max-width: 768px) {
    .cube-3d-section {
opacity: 0.2 !important;
}
  .section > div {
    padding: 20px;
  }
  .section.top-menu > div {
    padding: 20px;
  }
  .section.bucket-and-lines > div {
    padding: 0px;
    padding-bottom: 100px;
  }
  .section:not(.top-header) .text,
  .section.clarity .text {
    width: 100%;
  }
  .section.clarity > div > div:nth-child(1),
  .section.introducing > div > div:first-child {
    width: 0%;
  }
  .section.preparation .text {
    padding: 0px;
  }
  .preparation .features {
    flex-direction: column;
  }
  .preparation .features .list {
    flex-direction: column;
  }
  .preparation .features .list .item {
    width: 100%;
  }
  .preparation .features > div:nth-child(1),
  .preparation .features > div:nth-child(2) {
    width: 100%;
    padding-right: 0px;
  }
  .preparation .features > div:nth-child(2) {
    margin-top: 40px;
  }
  .possible > div {
    flex-direction: column;
    width: 100%;
  }
  .possible .image {
    width: 100%;
    padding-right: 0px;
  }
  .possible .text {
    padding-top: 30px;
  }
  .section.financial-planning .background {
    display: none;
  }
  .section.ui-screens .column > div {
    margin-left: 8px;
    margin-right: 8px;
  }
  .section.ui-screens .column > div > div:before,
  .section.ui-screens .column > div > div:after {
    border-radius: 10px;
  }
  .section.ui-screens .column > div > div {
    padding: 15px;
  }
  .section .title {
  font-size: 4em;
}
}

@media (max-width: 480px) {
    
.cube-3d-section {
opacity: 0.2 !important;
}
  .section .title {
    font-size: 4em;
  }
  .section.ui-screens .column > div {
    margin-left: 8px;
    margin-right: 8px;
  }
  .section.ui-screens .column > div > div:before,
  .section.ui-screens .column > div > div:after {
    border-radius: 5px;
  }
  .section.ui-screens .column > div > div {
    padding: 5px;
  }
  .bucketsvg svg {
    width: 100px;
    height: auto;
  }
  .section .pound .currency-sign {
    font-size: 10em;
  }
  .section .pound {
    padding-bottom: 5%;
  }
  .preparation .features > div:nth-child(2) img {
    padding-bottom: 10%;
  }
  .possible .text .subtitle {
    padding-bottom: 20%;
  }
  .section .pound {
    max-width: 100%;
  }
  .section.assets-pound .table {
    position: absolute;
    left: 0%;
    top: 100%;
    width: 100%;
  }
}

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2) { 
.cube-3d-section {
opacity: 0.2!important;
}
}


/* ----------- iPhone 6+, 7+ and 8+ ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
.cube-3d-section {
opacity: 0.2!important;
}
}

/* ----------- iPhone X ----------- */

/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
.cube-3d-section {
opacity: 0.2!important;
}
}

/* ----------- Galaxy S4, S5 and Note 3 ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 320px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) {
.cube-3d-section {
opacity: 0.2!important;
}
}

/* ----------- Galaxy S6 ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) {
.cube-3d-section {
opacity: 0.2!important;
}
}

/* ----------- Google Pixel ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) {
.cube-3d-section {
opacity: 0.2!important;
}
}

/* ----------- Google Pixel XL ----------- */

/* Portrait and Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 4) {
.cube-3d-section {
opacity: 0.2!important;
}
}