/*loader*/
.res-container {width: 100%;position: absolute;margin-bottom: 0;  background: #000;  overflow: hidden;height: 100vh;}
.res-row {overflow: hidden;display: -webkit-box;/* OLD - iOS 6-, Safari 3.1-6 */display: -moz-box;/* OLD - Firefox 19 */display: -ms-flexbox;/* TWEENER - IE 10 */
display: -webkit-flex;/* NEW - Chrome */display: flex;/* NEW - Opera 12.1, Firefox 20+ */}
#box {-webkit-box-flex: 1;/* OLD - iOS 6-, Safari 3.1-6 */-moz-box-flex: 1;/* OLD - Firefox 19- */
-webkit-flex: 1;/* Chrome */-ms-flex: 1;/* IE 10 */flex: 1;width: 100%;
/* Old syntax, otherwise collapses. */}
/*...................*/
#block-1 {animation-duration: 1s;	-webkit-animation-duration: 1s;animation-iteration-count: 1;animation-timing-function: ease;	-webkit-animation-timing-function: ease;	}
#block-2 {}
.b3 {position: fixed; }
/*****************/
#loader-wrap {display: -webkit-box;display: -moz-box;display: -ms-flexbox;display: -webkit-flex;display: flex;    overflow: hidden;height: 100vh;}
#loading {background-color: #000;    overflow: hidden;height: 100vh;width: 100%;position: fixed;z-index: 123456;margin-top: 0px;top: 0px;}
/***************/
#loading-center{width: 100%;height: 100%;position: relative;overflow: hidden;}
#loading-center-absolute {position: absolute;left: 50%;top: 50%;height: 200px;width: 200px;margin-top: -100px;margin-left: -100px;}
#object{width: 200px;height: 200px;Background-image: url(https://reech.ca/wp-content/uploads/2017/09/reech-logo-no-text.svg);background-repeat: no-repeat;
margin-right: auto;margin-left: auto;margin-top: 20px;}
/***************************/
#object {animation: object .8s linear;transform-origin: center center;}
@keyframes object {
0%{transform: scale(0); opacity: 0}
50%{transform: scale(1.5); opacity: 1}
100% {transform: scale(1); opacity:1}
}
/*********loader line******************/
#loader {position: absolute;top: 100%;left: 50%;margin-left: -50px;width: 100px;height: 3px;overflow: hidden;}
#loader:before, #loader:after {content: '';position: absolute;top: 0;width: 100%;height: 3px;transform: translate(-100%, 0);}
#loader:before {background-color: #fff;animation: loading 3400ms cubic-bezier(0.23, 1, 0.32, 1);}
#loader:after {background-color: #88b148;animation: loading 2500ms 500ms cubic-bezier(0.23, 1, 0.32, 1);}
@keyframes loading {
75% {transform: translate(0, 0);}
100% {transform: translate(100%, 0);}
}
/***********SLIDE DOWN***************/
.slideDown {bottom: 0 !important;animation-direction: normal;animation-fill-mode: forwards;animation-iteration-count: 1;}
.slideDown {animation-name: slideDown;-webkit-animation-name: slideDown;	animation-duration: .4s;	-webkit-animation-duration: .4s;
animation-iteration-count: 1;animation-timing-function: ease;	
-webkit-animation-timing-function: ease;	visibility: visible !important;						}
@keyframes slideDown {
from {transform: translateY(0%);}
to {transform: translateY(100%);}
}

@-webkit-keyframes slideDown {
from {transform: translateY(0%);}
to {transform: translateY(100%);}
}
/*********************/
.slideInUp {animation-name: slideInUp;-webkit-animation-name: slideInUp;	animation-duration: .1s;	-webkit-animation-duration: .1s;
animation-iteration-count: 1;animation-timing-function: ease-in;	
-webkit-animation-timing-function: ease-in;	visibility: visible !important;						}
@keyframes slideInUp {
from {transform: translateY(100%);}
to {transform: translateY(0%);}
}
@-webkit-keyframes slideInUp {
from {transform: translateY(100%);}
to {transform: translateY(0%);}
}
@keyframes zoomOut {
from {opacity: 1;}
50% {opacity: 0;transform: scale3d(.3, .3, .3);}
to {opacity: 0;}
}
@keyframes color {
0% {stroke: #d18902;}
25% {stroke: #d18902;}
26% {stroke: #d18902;}
50% {stroke: #d18902;}
51% {stroke: #d18902;}
75% {stroke: #d18902;}
76% {stroke: #d18902;}
100% {stroke: #d18902;}
}
@keyframes path {
0% {stroke-dasharray: 0, 251;stroke-dashoffset: 0;}
50% {stroke-dasharray: 125, 125;stroke-dashoffset: -60;}
100% {stroke-dasharray: 0, 255;stroke-dashoffset: -250;
}
}
.loaderlogo2  svg{width:400px!important;height:400px!important;border-radius:25px !important;}
.filler {stroke-dasharray: 0, 0;stroke-linecap: round;stroke-dashoffset: 0;transition: stroke-dashoffset 1s linear;stroke: #d18902;
animation: path 1s ease infinite, color 4s ease infinite;}
.trans {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%) rotate(-90deg);}
.txt {font-size: 1.4em;fill: #34495e;font-weight: 700;transform-origin: -50% -50%;transform: translate(93px, -12px) rotate(90deg);}
.circular-container{margin: 0 auto;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%) rotate(-90deg);}
.circle{border: 5px solid transparent;border-radius:  0%;}
.circular-loader1{width: 450px;height: 450px;display: table;padding: 10px;
border-top: 5px solid #007f3d;border-bottom: 5px solid #007f3d;animation: circular_loader1 linear 2s infinite;}
.circular-loader2{width: 10px;height: 10px;display: table-cell;
border-right: 5px solid #88b148;border-left: 5px solid #88b148;animation: circular_loader2 linear 2s infinite;}
@keyframes circular_loader1 {
0% {transform: rotate(0deg);}
50% {transform: rotate(-90deg);}
100% {transform: rotate(360deg);}
}

@keyframes circular_loader2 {
0% {transform: rotate(0deg);}
50% {transform: rotate(-180deg);}
100% {transform: rotate(360deg);}
}

.zoomOut {animation-name: zoomOut; animation-name: zoomOut;-webkit-animation-name: zoomOut;	animation-duration: .2s;	-webkit-animation-duration: .2s;
animation-iteration-count: 2;animation-timing-function: ease-in-out;	-webkit-animation-timing-function: ease-in-out;	visibility: visible !important;}
.loaderlogo2{text-align:center;position:absolute;top:35%;left:0px;right:0px;text-align:center;}
.loaderlogo2 img{width:100%;height:auto;max-width:450px;}


.particle {
  position: absolute;top:0px;left:0px;
  border-radius: 50%;
}

@-webkit-keyframes particle-animation-1 {
  100% {
    transform: translate3d(5vw, 1vh, 32px);
  }
}

@keyframes particle-animation-1 {
  100% {
    transform: translate3d(5vw, 1vh, 32px);
  }
}
.particle:nth-child(1) {
  -webkit-animation: particle-animation-1 60s infinite;
          animation: particle-animation-1 60s infinite;
  opacity: 0.35;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
  transform: translate3d(86vw, 63vh, 44px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-2 {
  100% {
    transform: translate3d(81vw, 38vh, 36px);
  }
}

@keyframes particle-animation-2 {
  100% {
    transform: translate3d(81vw, 38vh, 36px);
  }
}
.particle:nth-child(2) {
  -webkit-animation: particle-animation-2 60s infinite;
          animation: particle-animation-2 60s infinite;
  opacity: 0.01;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
  transform: translate3d(67vw, 50vh, 40px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-3 {
  100% {
    transform: translate3d(16vw, 55vh, 48px);
  }
}

@keyframes particle-animation-3 {
  100% {
    transform: translate3d(16vw, 55vh, 48px);
  }
}
.particle:nth-child(3) {
  -webkit-animation: particle-animation-3 60s infinite;
          animation: particle-animation-3 60s infinite;
  opacity: 0.16;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
  transform: translate3d(6vw, 29vh, 17px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-4 {
  100% {
    transform: translate3d(24vw, 58vh, 88px);
  }
}

@keyframes particle-animation-4 {
  100% {
    transform: translate3d(24vw, 58vh, 88px);
  }
}
.particle:nth-child(4) {
  -webkit-animation: particle-animation-4 60s infinite;
          animation: particle-animation-4 60s infinite;
  opacity: 0.09;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
  transform: translate3d(30vw, 33vh, 70px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-5 {
  100% {
    transform: translate3d(27vw, 16vh, 65px);
  }
}

@keyframes particle-animation-5 {
  100% {
    transform: translate3d(27vw, 16vh, 65px);
  }
}
.particle:nth-child(5) {
  -webkit-animation: particle-animation-5 60s infinite;
          animation: particle-animation-5 60s infinite;
  opacity: 0.86;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
  transform: translate3d(6vw, 12vh, 14px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-6 {
  100% {
    transform: translate3d(13vw, 75vh, 24px);
  }
}

@keyframes particle-animation-6 {
  100% {
    transform: translate3d(13vw, 75vh, 24px);
  }
}
.particle:nth-child(6) {
  -webkit-animation: particle-animation-6 60s infinite;
          animation: particle-animation-6 60s infinite;
  opacity: 0.91;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
  transform: translate3d(31vw, 86vh, 59px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-7 {
  100% {
    transform: translate3d(27vw, 54vh, 31px);
  }
}

@keyframes particle-animation-7 {
  100% {
    transform: translate3d(27vw, 54vh, 31px);
  }
}
.particle:nth-child(7) {
  -webkit-animation: particle-animation-7 60s infinite;
          animation: particle-animation-7 60s infinite;
  opacity: 0.1;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -1.4s;
          animation-delay: -1.4s;
  transform: translate3d(55vw, 68vh, 4px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-8 {
  100% {
    transform: translate3d(57vw, 48vh, 75px);
  }
}

@keyframes particle-animation-8 {
  100% {
    transform: translate3d(57vw, 48vh, 75px);
  }
}
.particle:nth-child(8) {
  -webkit-animation: particle-animation-8 60s infinite;
          animation: particle-animation-8 60s infinite;
  opacity: 0.03;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -1.6s;
          animation-delay: -1.6s;
  transform: translate3d(19vw, 62vh, 97px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-9 {
  100% {
    transform: translate3d(5vw, 52vh, 8px);
  }
}

@keyframes particle-animation-9 {
  100% {
    transform: translate3d(5vw, 52vh, 8px);
  }
}
.particle:nth-child(9) {
  -webkit-animation: particle-animation-9 60s infinite;
          animation: particle-animation-9 60s infinite;
  opacity: 0.97;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -1.8s;
          animation-delay: -1.8s;
  transform: translate3d(64vw, 17vh, 21px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-10 {
  100% {
    transform: translate3d(4vw, 40vh, 96px);
  }
}

@keyframes particle-animation-10 {
  100% {
    transform: translate3d(4vw, 40vh, 96px);
  }
}
.particle:nth-child(10) {
  -webkit-animation: particle-animation-10 60s infinite;
          animation: particle-animation-10 60s infinite;
  opacity: 0.14;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  transform: translate3d(6vw, 50vh, 25px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-11 {
  100% {
    transform: translate3d(32vw, 47vh, 11px);
  }
}

@keyframes particle-animation-11 {
  100% {
    transform: translate3d(32vw, 47vh, 11px);
  }
}
.particle:nth-child(11) {
  -webkit-animation: particle-animation-11 60s infinite;
          animation: particle-animation-11 60s infinite;
  opacity: 0.65;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -2.2s;
          animation-delay: -2.2s;
  transform: translate3d(24vw, 15vh, 8px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-12 {
  100% {
    transform: translate3d(87vw, 76vh, 15px);
  }
}

@keyframes particle-animation-12 {
  100% {
    transform: translate3d(87vw, 76vh, 15px);
  }
}
.particle:nth-child(12) {
  -webkit-animation: particle-animation-12 60s infinite;
          animation: particle-animation-12 60s infinite;
  opacity: 0.36;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -2.4s;
          animation-delay: -2.4s;
  transform: translate3d(68vw, 39vh, 97px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-13 {
  100% {
    transform: translate3d(14vw, 55vh, 69px);
  }
}

@keyframes particle-animation-13 {
  100% {
    transform: translate3d(14vw, 55vh, 69px);
  }
}
.particle:nth-child(13) {
  -webkit-animation: particle-animation-13 60s infinite;
          animation: particle-animation-13 60s infinite;
  opacity: 0.41;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -2.6s;
          animation-delay: -2.6s;
  transform: translate3d(88vw, 77vh, 7px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-14 {
  100% {
    transform: translate3d(87vw, 75vh, 55px);
  }
}

@keyframes particle-animation-14 {
  100% {
    transform: translate3d(87vw, 75vh, 55px);
  }
}
.particle:nth-child(14) {
  -webkit-animation: particle-animation-14 60s infinite;
          animation: particle-animation-14 60s infinite;
  opacity: 0.17;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -2.8s;
          animation-delay: -2.8s;
  transform: translate3d(40vw, 78vh, 62px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-15 {
  100% {
    transform: translate3d(12vw, 63vh, 90px);
  }
}

@keyframes particle-animation-15 {
  100% {
    transform: translate3d(12vw, 63vh, 90px);
  }
}
.particle:nth-child(15) {
  -webkit-animation: particle-animation-15 60s infinite;
          animation: particle-animation-15 60s infinite;
  opacity: 0.19;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  transform: translate3d(35vw, 53vh, 80px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-16 {
  100% {
    transform: translate3d(64vw, 22vh, 98px);
  }
}

@keyframes particle-animation-16 {
  100% {
    transform: translate3d(64vw, 22vh, 98px);
  }
}
.particle:nth-child(16) {
  -webkit-animation: particle-animation-16 60s infinite;
          animation: particle-animation-16 60s infinite;
  opacity: 0.41;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -3.2s;
          animation-delay: -3.2s;
  transform: translate3d(26vw, 52vh, 84px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-17 {
  100% {
    transform: translate3d(9vw, 43vh, 92px);
  }
}

@keyframes particle-animation-17 {
  100% {
    transform: translate3d(9vw, 43vh, 92px);
  }
}
.particle:nth-child(17) {
  -webkit-animation: particle-animation-17 60s infinite;
          animation: particle-animation-17 60s infinite;
  opacity: 0.05;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -3.4s;
          animation-delay: -3.4s;
  transform: translate3d(72vw, 22vh, 98px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-18 {
  100% {
    transform: translate3d(63vw, 36vh, 61px);
  }
}

@keyframes particle-animation-18 {
  100% {
    transform: translate3d(63vw, 36vh, 61px);
  }
}
.particle:nth-child(18) {
  -webkit-animation: particle-animation-18 60s infinite;
          animation: particle-animation-18 60s infinite;
  opacity: 0.9;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -3.6s;
          animation-delay: -3.6s;
  transform: translate3d(20vw, 58vh, 39px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-19 {
  100% {
    transform: translate3d(50vw, 9vh, 52px);
  }
}

@keyframes particle-animation-19 {
  100% {
    transform: translate3d(50vw, 9vh, 52px);
  }
}
.particle:nth-child(19) {
  -webkit-animation: particle-animation-19 60s infinite;
          animation: particle-animation-19 60s infinite;
  opacity: 0.66;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -3.8s;
          animation-delay: -3.8s;
  transform: translate3d(90vw, 35vh, 51px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-20 {
  100% {
    transform: translate3d(38vw, 36vh, 52px);
  }
}

@keyframes particle-animation-20 {
  100% {
    transform: translate3d(38vw, 36vh, 52px);
  }
}
.particle:nth-child(20) {
  -webkit-animation: particle-animation-20 60s infinite;
          animation: particle-animation-20 60s infinite;
  opacity: 0.74;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  transform: translate3d(81vw, 42vh, 86px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-21 {
  100% {
    transform: translate3d(43vw, 15vh, 80px);
  }
}

@keyframes particle-animation-21 {
  100% {
    transform: translate3d(43vw, 15vh, 80px);
  }
}
.particle:nth-child(21) {
  -webkit-animation: particle-animation-21 60s infinite;
          animation: particle-animation-21 60s infinite;
  opacity: 0.63;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -4.2s;
          animation-delay: -4.2s;
  transform: translate3d(84vw, 26vh, 23px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-22 {
  100% {
    transform: translate3d(68vw, 38vh, 32px);
  }
}

@keyframes particle-animation-22 {
  100% {
    transform: translate3d(68vw, 38vh, 32px);
  }
}
.particle:nth-child(22) {
  -webkit-animation: particle-animation-22 60s infinite;
          animation: particle-animation-22 60s infinite;
  opacity: 0.67;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -4.4s;
          animation-delay: -4.4s;
  transform: translate3d(58vw, 7vh, 21px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-23 {
  100% {
    transform: translate3d(13vw, 23vh, 39px);
  }
}

@keyframes particle-animation-23 {
  100% {
    transform: translate3d(13vw, 23vh, 39px);
  }
}
.particle:nth-child(23) {
  -webkit-animation: particle-animation-23 60s infinite;
          animation: particle-animation-23 60s infinite;
  opacity: 0.16;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -4.6s;
          animation-delay: -4.6s;
  transform: translate3d(65vw, 20vh, 22px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-24 {
  100% {
    transform: translate3d(84vw, 70vh, 14px);
  }
}

@keyframes particle-animation-24 {
  100% {
    transform: translate3d(84vw, 70vh, 14px);
  }
}
.particle:nth-child(24) {
  -webkit-animation: particle-animation-24 60s infinite;
          animation: particle-animation-24 60s infinite;
  opacity: 0.18;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -4.8s;
          animation-delay: -4.8s;
  transform: translate3d(4vw, 57vh, 82px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-25 {
  100% {
    transform: translate3d(40vw, 57vh, 67px);
  }
}

@keyframes particle-animation-25 {
  100% {
    transform: translate3d(40vw, 57vh, 67px);
  }
}
.particle:nth-child(25) {
  -webkit-animation: particle-animation-25 60s infinite;
          animation: particle-animation-25 60s infinite;
  opacity: 0.85;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  transform: translate3d(17vw, 32vh, 93px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-26 {
  100% {
    transform: translate3d(5vw, 24vh, 14px);
  }
}

@keyframes particle-animation-26 {
  100% {
    transform: translate3d(5vw, 24vh, 14px);
  }
}
.particle:nth-child(26) {
  -webkit-animation: particle-animation-26 60s infinite;
          animation: particle-animation-26 60s infinite;
  opacity: 0.01;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -5.2s;
          animation-delay: -5.2s;
  transform: translate3d(62vw, 63vh, 11px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-27 {
  100% {
    transform: translate3d(3vw, 59vh, 54px);
  }
}

@keyframes particle-animation-27 {
  100% {
    transform: translate3d(3vw, 59vh, 54px);
  }
}
.particle:nth-child(27) {
  -webkit-animation: particle-animation-27 60s infinite;
          animation: particle-animation-27 60s infinite;
  opacity: 0.34;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -5.4s;
          animation-delay: -5.4s;
  transform: translate3d(21vw, 41vh, 77px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-28 {
  100% {
    transform: translate3d(8vw, 77vh, 32px);
  }
}

@keyframes particle-animation-28 {
  100% {
    transform: translate3d(8vw, 77vh, 32px);
  }
}
.particle:nth-child(28) {
  -webkit-animation: particle-animation-28 60s infinite;
          animation: particle-animation-28 60s infinite;
  opacity: 0.83;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -5.6s;
          animation-delay: -5.6s;
  transform: translate3d(19vw, 59vh, 55px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-29 {
  100% {
    transform: translate3d(75vw, 71vh, 29px);
  }
}

@keyframes particle-animation-29 {
  100% {
    transform: translate3d(75vw, 71vh, 29px);
  }
}
.particle:nth-child(29) {
  -webkit-animation: particle-animation-29 60s infinite;
          animation: particle-animation-29 60s infinite;
  opacity: 0.72;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -5.8s;
          animation-delay: -5.8s;
  transform: translate3d(35vw, 49vh, 5px);
  background: #d18902;
}

@-webkit-keyframes particle-animation-30 {
  100% {
    transform: translate3d(59vw, 68vh, 48px);
  }
}

@keyframes particle-animation-30 {
  100% {
    transform: translate3d(59vw, 68vh, 48px);
  }
}
.particle:nth-child(30) {
  -webkit-animation: particle-animation-30 60s infinite;
          animation: particle-animation-30 60s infinite;
  opacity: 0.49;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
  transform: translate3d(46vw, 59vh, 51px);
  background: #d18902;
}