@import "./circle.css";

 body {
   margin:0;
   padding:0;
   font-family: 'Spartan', sans-serif;
   line-height: 1.5;
   overflow: hidden;
   background: url("../images/bg-black.jpg");
   background-color: transparent;
   background-size: cover;
   position: relative;
 } 

 body:after {
   position: absolute;
   bottom: 15px;
    right: 15px;
    content: '';
   background: url("../images/iso-tag.png") no-repeat;
   width: 162px;
   height: 118px;
 }
 
  #content-wrapper {
  width: 100% ; 
  min-height: 750px ; 
  
  -webkit-perspective: 1000;
          perspective: 1000;
}
#slideContainer {
width: 800%; /* to contain 4 panels, each with 100% of window width */
height: 100%;
}

.panel {
height: 100%;
 width: 100%; /* relative to parent -> 25% of 400% = 100% of window width */
float: left;
 
}


.hide {
  display: none;
}

a{
  text-decoration: none;
}
  .material-icons {
    color: #000;
    font-size: 20px;
  }
  
  .button-inside .material-icons {
    font-size: 16px;
  }
  
  .main-wrapper {
    
    position: relative;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);    
    z-index: 1; 

  }
  
  .main-wrapper-inside {
     
    position: relative;
    border-radius: 50%;
   
  }
 
  .button {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background-color: #666;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
     align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1); 
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1); 
    box-shadow: -1px 2px 12px rgba(0, 0, 0, 0.4);
    will-change: transform;
  }
  
  .button .material-icons {
    -webkit-transition: transform 200ms cubic-bezier(0.19, 1, 0.22, 1); 
    transition: transform 200ms cubic-bezier(0.19, 1, 0.22, 1); 
    will-change: transform;
    transform-origin: center center;
  }
  
  .button.animation {
    background-color: #ffff00;
  }
  
  .button.animation .material-icons {
    -webkit-transform: rotate(-45deg) translateZ(0);
     transform: rotate(-45deg) translateZ(0);
  }
  
  .button-wrapper {
    width: 200px;
    height: 200px;
    position: absolute;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: transform 400ms cubic-bezier(0.07, 1.1, 0.28, 1.01);
            transition: transform 400ms cubic-bezier(0.07, 1.1, 0.28, 1.01);
    will-change: transform;
  }
  
  .button-wrapper.animation {
    -webkit-transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
            transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
  }
  
  .button-wrapper.first.animation {
    transform: rotate(-36deg) translateZ(0);
  }
  
  .button-wrapper.second.animation {
    transform: rotate(-68deg) translateZ(0);
  }
  
  .button-wrapper.third.animation {
    transform: rotate(-100deg) translateZ(0);
  }
  
  .button-inside {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 3px;
    right: 3px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    cursor: pointer;
  }
  
  .button-inside.first {
    background-color: #ffff00;
    transform: rotate(36deg);
  }
  
  .button-inside.second {
    background-color: #ffff00;
    transform: rotate(68deg);
  }
  
  .button-inside.third {
    background-color: #ffff00;
    transform: rotate(100deg);
  }

  .pulsating-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
  }
  .pulsating-circle:before {
    content: '';
    position: relative;
    display: block;
    width: 140%;
    height: 140%;
    box-sizing: border-box;
    margin-left: -20%;
    margin-top:-20%;
    border-radius: 50%;
    background-color: #01a4e9;
    -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }
  .pulsating-circle:after {
    content: '';
    position: absolute;
    left:10%;
    top: 10%;
    display: block;
    width: 80%;
    height: 80%;
    background-color: transparent;
    border-radius: 50%;
   /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);*/
    -webkit-animation: pulse-dot 4s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
            animation: pulse-dot 4s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  }
  
  @-webkit-keyframes pulse-ring {
    0% {
      -webkit-transform: scale(0.2);
              transform: scale(0.2);
    }
    80%, 100% {
      opacity: 0;
    }
  }
  
  @keyframes pulse-ring {
    0% {
      -webkit-transform: scale(0.2);
              transform: scale(0.2);
    }
    80%, 100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes pulse-dot {
    0% {
      -webkit-transform: scale(0.4);
              transform: scale(0.4);
    }
    50% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(0.4);
              transform: scale(0.4);
    }
  }
  @keyframes pulse-dot {
    0% {
      -webkit-transform: scale(0.4);
              transform: scale(0.4);
    }
    50% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      -webkit-transform: scale(0.4);
              transform: scale(0.4);
    }
  }

  .search-wrapper {
    width: auto;
    height: auto;
    position: absolute;
    top:-20px;
    right: -30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
   
  }
  
  @media (prefers-reduced-motion: no-preference) {
  .search-wrapper-inside {
        position: relative;
        height: 600px;
      background: url('../images/base-circle.png') no-repeat 0 0;
        -moz-animation: spinoffPulse 55s infinite linear;
        -webkit-animation: spinoffPulse 55s infinite linear;
  }
  }
  .logo {position: absolute; right: auto; top:160px; z-index: 4; display: block}
  .logo:hover {outline: none; cursor: pointer;}
  /* .logo:hover {
      -webkit-animation: neon3 1.5s ease-in-out infinite alternate;
      -moz-animation: neon3 1.5s ease-in-out infinite alternate;
      animation: neon3 1.5s ease-in-out infinite alternate;
    } */

  
@-webkit-keyframes neon3 {
    from {
        box-shadow : 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B, 0 0 70px #FFDD1B, 0 0 80px #FFDD1B, 0 0 100px #FFDD1B, 0 0 150px #FFDD1B;
    }
    to {
        box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FFDD1B, 0 0 35px #FFDD1B, 0 0 40px #FFDD1B, 0 0 50px #FFDD1B, 0 0 75px #FFDD1B;
    }
  }
  .icon {
    background: url('../images/logo-copy.png') 0 0 no-repeat;
    height: 200px;
    width: 400px;     
    margin: 0 auto;
    position: relative;
    }
    @media (prefers-reduced-motion: no-preference) {  
    .outerCircle {
    background-color: transparent;
    border: 0px solid rgba(97, 82, 72, 0.9);
    opacity: .9;
   /* border-right: 50px solid transparent;
    border-left: 50px solid transparent;*/
    background: url('../images/half-darkgray.png') no-repeat 0 0;
    border-radius: 50%;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    -moz-animation: spinPulse 150s infinite ease-in-out ;
    -webkit-animation: spinPulse 150s infinite ease-in-out;
    animation: spinPulse 150s infinite ease-in-out;    
    }

    .innerCircle {
    background-color: transparent;
    border: 0px solid rgba(189, 215, 60, 0.6);
    opacity: .9;
   /* border-left: 50px solid transparent;
    border-right: 50px solid transparent;*/
    background: url('../images/half-gray.png') no-repeat 0 0;
    border-radius: 50%;
    top: -600px;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    -moz-animation: spinoffPulse 50s infinite linear;
    -webkit-animation: spinoffPulse 50s infinite linear;
    animation: spinoffPulse 50s infinite linear;
    
    }
  }
    
    
    @-moz-keyframes spinPulse {
        0% { -moz-transform:rotate(160deg); opacity:0.3;  }
        50% { -moz-transform:rotate(145deg); opacity:1; }
        100% { -moz-transform:rotate(-320deg); opacity:0.3; }
    }
    @-moz-keyframes spinoffPulse {
      0% { -webkit-transform:rotate(0deg); }
      100% { -webkit-transform:rotate(360deg); }
    }
    @-webkit-keyframes spinPulse {
        0% { -webkit-transform:rotate(160deg); opacity:0.3;   }
        50% { -webkit-transform:rotate(145deg); opacity:1;}
        100% { -webkit-transform:rotate(-320deg); opacity:0.3; }
    }
    @-webkit-keyframes spinoffPulse {
        0% { -webkit-transform:rotate(0deg); }
        100% { -webkit-transform:rotate(360deg); }
    }
    @-moz-keyframes rotatecircle {
        0% { -moz-transform:rotate(0deg); }
        100% { -moz-transform:rotate(-360deg); }
    }
    
    @-webkit-keyframes rotatecircle {
        0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(-360deg); }
    }

    
.webdesigntuts-workshop {
    position: absolute;    
}

.webdesigntuts-workshop form { 
	 
	border-radius: 5px;
	box-shadow: inset 0 0 0 1px #272727;
	display: inline-block;
	font-size: 0px;
	margin: 10px auto 0;
	padding: 20px;
	position: relative;
	z-index: 1;
}

.webdesigntuts-workshop input[type="text"] {
	background: #222;	
	background: linear-gradient(#333, #222);	
	border: 1px solid #444;
	border-radius: 5px 0 0 5px;
	box-shadow: 0 2px 0 #000;
	color: #888;
	display: block;
	float: left;
	font-family: 'Cabin', helvetica, arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	height: 43px;
	margin: 0;
	padding: 0 10px;
	text-shadow: 0 -1px 0 #000;
	width: 200px;
}


input.tipue_button {
  height: 30px;
  width: 30px;
  margin-top:8px;
  margin-left:-80px;
}
 


.ie .webdesigntuts-workshop input {
	line-height: 45px;
}

.webdesigntuts-workshop input::-webkit-input-placeholder {
   color: #888;
}

.webdesigntuts-workshop input:-moz-placeholder {
   color: #888;
}
@media (prefers-reduced-motion: no-preference) {
.webdesigntuts-workshop input:focus {
	animation: glow 800ms ease-out infinite alternate;
	background: #222922;
	background: linear-gradient(#333933, #222922);
	border-color: #FFDD1B;
	box-shadow: 0 0 5px rgba(255, 251, 0, 0.192), inset 0 0 5px rgba(251, 255, 0, 0.1), 0 2px 0 #000;
	color: #efe;
	outline: none;
}
}
.webdesigntuts-workshop input:focus::-webkit-input-placeholder { 
	color: #efe;
}

.webdesigntuts-workshop input:focus:-moz-placeholder {
	color: #efe;
}

.webdesigntuts-workshop button {	 
  background:  url("../images/voice-search.png") no-repeat;
	box-sizing: border-box;
	border: 1px solid #444;
	border-left-color: #000;
	border-radius: 0 5px 5px 0;
	box-shadow: 0 2px 0 #000;
	color: #fff;
	display: block;
	float: left;
	 font-size:0;
	height: 45px;
	line-height: 45px;
	margin: 0;
	padding: 0;
	position: relative;
	text-shadow: 0 -1px 0 #000;
  width: 45px; 
  cursor: pointer;
}	
 

.webdesigntuts-workshop button:hover,
.webdesigntuts-workshop button:focus {
 
	background:  url("../images/voice-search-hover.png") no-repeat;
	 
	outline: none;
}

.webdesigntuts-workshop button:active {
	background: #292929;
	background: linear-gradient(#393939, #292929);
	box-shadow: 0 1px 0 #000, inset 1px 0 1px #222;
	top: 1px;
}

@keyframes glow {
    0% {
		border-color: #FFDD1B;
		box-shadow: 0 0 5px rgba(251, 255, 0, 0.2), inset 0 0 5px rgba(238, 255, 0, 0.1), 0 2px 0 #000;
    }	
    100% {
		border-color: #e8ff1b;
		box-shadow: 0 0 20px rgba(255, 251, 0, 0.6), inset 0 0 10px rgba(251, 255, 0, 0.4), 0 2px 0 #000;
    }
}

/* Circles */

.circle  {
  position: absolute;
  background: url("../images/circle.svg") no-repeat;
  background-size: 100%; 
  cursor: pointer;
  z-index: 2;

 }
 
.circle img {
  border-radius: 50%;
  width: inherit;
}


 .circle.large {
  transform: scale(2);
}

.circle-1, .circle-1  .main-wrapper-inside, .circle-1  .main-wrapper {
    width: 250px;
    height: 250px;
   
  }
.circle-2, .circle-2 .main-wrapper-inside, .circle-2  .main-wrapper{
    width: 250px;
    height: 250px;
   
  }
.circle-3, .circle-3 .main-wrapper-inside, .circle-3  .main-wrapper{
    width: 200px;
    height: 200px;   
  }
  .circle-4, .circle-4 .main-wrapper-inside, .circle-4  .main-wrapper{
    width: 150px;
    height: 150px;   
  }
  .circle-5, .circle-5 .main-wrapper-inside, .circle-5  .main-wrapper{
    width: 140px;
    height: 140px;   
  }
  .circle-6, .circle-6 .main-wrapper-inside, .circle-6  .main-wrapper{
    width: 200px;
    height: 200px;   
  }
  .circle-7, .circle-7 .main-wrapper-inside, .circle-7  .main-wrapper{
    width: 150px;
    height: 150px;   
  }
  .circle-8, .circle-8 .main-wrapper-inside, .circle-8  .main-wrapper{
    width: 160px;
    height: 160px;   
  }

/* sub page circle 1 */
.circle-1-1, .circle-1-1  .main-wrapper-inside, .circle-1-1  .main-wrapper,  
.circle-1-2, .circle-1-2 .main-wrapper-inside, .circle-1-2  .main-wrapper ,
.circle-1-3, .circle-1-3 .main-wrapper-inside, .circle-1-3  .main-wrapper,
.circle-1-4, .circle-1-4 .main-wrapper-inside, .circle-1-4  .main-wrapper,
.lightbox.clicked .main-wrapper-inside, .lightbox.clicked  .main-wrapper{
  width: 400px;
  height: 400px;   
}


.circle-1 {left:20%; top:20%}
.circle-2 {left:0%; top:30%}
.circle-3 {left:40%; top:0%}
.circle-4 {left: 6%;  top: 1%;}
.circle-5{left: 12%;  bottom: 5%;}
.circle-6 {left: 40%;  top: 78%;}
.circle-7 {left:63%; bottom:0%}
.circle-8 {left:47%; bottom:20%}

.circle-1-1 {
  left: 37%;
  top: 3%;
}

.circle-1-2 {
  left:42%; top:30%;
}

.circle-1-3 {
  left: 37%;
    top: 57%;
}

.circle-1-4 {
  left: 24%;
  top: 71%;
}


.circle-1-1 h2 {  
  top: 29%;
  left: 13%;
  font-size: 3.5rem;
}

.circle-1-2 h2 {  
  top: 29%;
  left: 20%;
  font-size: 3.5rem;
}

.circle-1-3 h2 {  
  top: 21%;
  left: 0;
  font-size: 3.5rem;
}
 
.circle-1-4 h2 {  
  top: 29%;
  left: 13%;
  font-size: 3.5rem;
}


.circle h2 {
  position: absolute; 
  color: #fff;   
   
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}
 

.circle-1 h2 {  
  top: 38%;
  left: 2%; 
  font-size:1.25rem;
}

.circle-2 h2 {  
  top: 32%;
  left: 3%; 
  font-size: 1.5rem;
}

.circle-3 h2 {  
  top: 30%;
    left: 0%; 
  font-size: 1.3rem;
}
 
.circle-4 h2 {  
  top: 23%;
  left: 3%;
  font-size:1.1rem;
}

.circle-5 h2 {  
  top: 30%;
  left: 2%;
  font-size: 1.2rem;
}

.circle-6 h2 {  
  top: 29%;
  left: 20%;
  font-size: 0.8rem;
}

.circle-7 h2 {  
  top: 28%;
  left: 4%;
  font-size: 1rem;
}

.circle-8 h2 {  
  top: 32%;
    left: 9%;
  font-size: 1.2rem;
}


.circle-1.clicked h2 {  
  top: 36%;
  left: 50%;
  margin-left: -200px; 
  font-size:2rem;
}

.circle-2.clicked h2 {  
  top: 30%;
  left: 50%;
  margin-left: -200px; 
  font-size:2.5rem;
}

.circle-3.clicked h2 {  
  top: 27%;
  left: 50%;  
  margin-left: -200px; 
  font-size:3rem;
}

.circle-4.clicked h2 {  
  top: 25%;
  left: 2%; 
  font-size:3rem;
}

.circle-5.clicked h2 {  
  top: 26%;
  left: 50%;
  margin-left: -200px; 
  font-size:3rem;
}

.circle-6.clicked h2 {  
  top: 36%;
  left: 50%;
  margin-left: -100px; 
  font-size:3rem;
}

.circle-7.clicked h2 {  
  top: 30%;
  left: 50%;
  margin-left: -200px; 
  font-size:3rem;
}

.circle-8.clicked h2 {  
  top: 24%;
  left: 70%;
  margin-left: -200px; 
  font-size:3rem;
}


h1 { 
  color: #ffff00;  
  font-weight: 400;
  text-align: center;
  font-size: 2.4rem;
  margin-top: 20px;
  position: absolute;
  text-transform: uppercase; 
  bottom: 17%;
}
.kenburns-down {
  animation-name: css-animation-down;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@-moz-keyframes css-animation-down {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
 
  75% {
    transform: scale(0.7);
  }  
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes css-animation-down {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  
  75% {
    transform: scale(0.7);
  }  
  100% {
    transform: scale(1);
  }
}
@-o-keyframes css-animation-down {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  
  75% {
    transform: scale(0.7);
  }  
  100% {
    transform: scale(1);
  }
}
@keyframes css-animation-down {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  
  75% {
    transform: scale(0.7);
  }  
  100% {
    transform: scale(1);
  }
}

.kenburns-top {
  animation-name: css-animation;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@-moz-keyframes css-animation {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.7);
  }
   
  75% {
    transform: scale(1.2);
  }  
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes css-animation {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.7);
  }
   
  75% {
    transform: scale(1.2);
  }  
  100% {
    transform: scale(1);
  }
}
@-o-keyframes css-animation {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.7);
  }
   
  75% {
    transform: scale(1.2);
  }  
  100% {
    transform: scale(1);
  }
}
@keyframes css-animation {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.7);
  }
  
  75% {
    transform: scale(1.2);
  }  
  100% {
    transform: scale(1);
  }
}

.backandforth-c1 {
  animation: backandforthc1 60s linear 0.5s infinite;
  left: 27%;
  top: 25%;
  position: absolute; 
}

@keyframes backandforthc1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2em);
  }
  75% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateX(0);
  }
} 

.backandforth-c2 {
  animation: backandforthc2 60s linear 1s infinite;  
  top:41%;
  left: 5%;
  position: absolute;
  
}

@keyframes backandforthc2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateY(2em);
  }
  75% {
    transform: translateX(2em);
  }
  100% {
    transform: translateX(0);
  }
} 


.backandforth-c3 {
  animation: backandforthc3 60s linear 1.5s infinite;
  left: 45%;
  top: 5%; 
  position: absolute; 
}

@keyframes backandforthc3 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2em);
  }
  50% {
    transform: translateX(2em);
  } 
  100% {
    transform: translateX(0);
  }
} 


.backandforth-c4 {
  animation: backandforthc4 60s linear 1.5s infinite;
  left: 6%;  top: 8%; 
  position: absolute; 
}

@keyframes backandforthc4 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(2em);
  }
  50% {
    transform: translateY(2em);
  } 
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateX(0);
  }
} 


.backandforth-c5 {
  animation: backandforthc5 40s linear 1.5s infinite;
  left: 20%;
  bottom: 13%;
  position: absolute; 
}

@keyframes backandforthc5 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(2em);
  }
  50% {
    transform: translateY(2em);
  } 
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateX(0);
  }
} 


.backandforth-c6 {
  animation: backandforth-c6 100s linear 1.5s infinite;
  left: 35%;
  top: 68%;
  position: absolute; 
}

@keyframes backandforth-c6 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2em);
  }
  75% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateX(0);
  }
}



.backandforth-c7 {
  animation: backandforthc7 60s linear 1.5s infinite;
  left: 48%;
    top: 41%;
  position: absolute; 
}

@keyframes backandforthc7 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(2em);
  }
  50% {
    transform: translateX(-2em);
  } 
  75% {
    transform: translateY(1em);
  }
  100% {
    transform: translateX(0);
  }
}


.backandforth-c8 {
  animation: backandforthc8 60s linear 1.5s infinite;
  left:47%; bottom:20%;
  position: absolute; 
}

@keyframes backandforthc8 {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(2em);
  }
  50% {
    transform: translateY(-2em);
  } 
  75% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */
 @-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  50% {
    -webkit-transform: scale(1.15) translateY(-15px);
            transform: scale(1.15) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }

}
@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  50% {
    -webkit-transform: scale(1.15) translateY(-15px);
            transform: scale(1.15) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
}

.kenburns-small {
	-webkit-animation: kenburns-small 0.5s ease-out both;
	        animation: kenburns-small 0.5s ease-out both;
}

/** smaller **/
@-webkit-keyframes kenburns-small {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  50% {
    -webkit-transform: scale(0.8) translateY(-15px);
            transform: scale(0.8) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scale(0.5) translateY(0);
            transform: scale(0.5) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }

}
@keyframes kenburns-small {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
  50% {
    -webkit-transform: scale(0.8) translateY(-15px);
            transform: scale(0.8) translateY(-15px);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scale(0.5) translateY(0);
            transform: scale(0.5) translateY(0);
    -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
  }
}


.large {
  width: 500px;
  transition: -webkit-transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */

.lightbox-target , .lightbox-target-2 {
  position: fixed;
  top: 0;
  width: 80%;
  height: 90%;
  background: rgba(0,0,0,0.9); 
  opacity: 0;
  display: none;
  -webkit-transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
  overflow: hidden; 
  padding: 5%  10%;
  z-index: 10;
  }
  
  .lightbox-target-2 {
    padding: 5% ;
    width: 90%;
    height: 90%;
  }

  .lightbox-target h2, .lightbox-target p {
    font-size: 1.4rem;
    line-height: 2.4rem; 
    text-align: center;
  }
  .lightbox-target h2 {
    color:#ffff00;
    font-size:1.8rem;
      }
.lightbox-target p {
  color:#fff;
}

  /* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
    .lightbox.clicked {
    width:400px;
    height:400px;
    left:20%;
    top:20%;
  }
    
  /* Styles the close link, adds the slide down transition */
  
  a.lightbox-close {
  display: block;
  width:50px;
  height:50px;
  box-sizing: border-box;
  background: white;
  color: black;
  text-decoration: none;
  position: absolute;
  top: -80px;
  right: 0;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  }
  
  /* Provides part of the "X" to eliminate an image from the close link */
  
  a.lightbox-close:before {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top:10px;
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  -o-transform:rotate(45deg);
  transform:rotate(45deg);
  }
  
  /* Provides part of the "X" to eliminate an image from the close link */
  
  a.lightbox-close:after {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top:10px;
  -webkit-transform:rotate(-45deg);
  -moz-transform:rotate(-45deg);
  -o-transform:rotate(-45deg);
  transform:rotate(-45deg);
  }
  
  /* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */
  
  .lightbox-target:target {
  opacity: 1;
  top: 0;
  bottom: 0;
  }
  
  .lightbox-target:target img {
  max-height: 100%;
  max-width: 100%;
  }
  
  .lightbox-target:target a.lightbox-close {
  top: 0px;
  }

  .lightbox-target-2:target {
    opacity: 1;
    top: 0;
    bottom: 0;
    }
    
    .lightbox-target-2:target img {
    max-height: 100%;
    max-width: 100%;
    }
    
    .lightbox-target-2:target a.lightbox-close {
    top: 0px;
    }
  
 
  

.no-bg {
  background: none;
} 


.shadow {
  -webkit-box-shadow: inset 0px 0px 20px 8px rgba(255,255,0,1);
  -moz-box-shadow: inset 0px 0px 20px 8px rgba(255,255,0,1);
  box-shadow: inset 0px 0px 20px 8px rgba(255,255,0,1);
}

.gray-circle {
  background-color: rgba(47, 43, 45, .7);
  box-shadow: none; 
}

.blue-circle {
  background: none;
  border-radius: 50%;
  border: 30px solid rgba(0, 34, 43, .5);
  -webkit-background-clip: padding-box; /* for Safari */
  background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
}

 

.blue-circle-big {
  background: none;
  border-radius: 50%;
  border: 60px solid rgba(0, 34, 43, .3);
  -webkit-background-clip: padding-box; /* for Safari */
  background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
}

.blue-circle-big.circle-bg { 
  background: url("../images/circle.svg") no-repeat;
  background-size: 100%; 
  }

  .blue-bg  {
    background: url("../images/blue-circle.png") no-repeat;
    background-size: 100%;
     
  }

  .halo-bg  {
    background: url("../images/halo-circle.png") no-repeat;
    background-size: 100%;
    
  }
  .halo-bg h2 {
    color:#70fc71; 
  }
  
.yellow-bg  {
  background: url("../images/circle-product.png") no-repeat;
  background-size: 100%;
  /* -webkit-box-shadow: inset 0px 0px 20px 8px rgba(255,255,0,1);
  -moz-box-shadow: inset 0px 0px 20px 8px rgba(255,255,0,1);
  box-shadow: inset 0px 0px 20px 8px rgba(255,255,0,1); */
}

#p0 .circle h2 {
  position: static;
}


#p0 .circle-1 h2 {
  /* top: 36%;
  left: 25%;  */
  line-height: 215px;
  font-size: 1.45rem;
}

#p0 .circle-2 h2 {
  /* top: 31%;
    left: 23%; */
   line-height: 215px; 
}

#p0 .circle-3 h2 {
  /* top: 34%;
  left: 22%; */
  line-height: 160px;
}

#p0 .circle-4 h2 {
  /* top: 29%;
  left: 19%; */
  line-height: 120px;
}
#p0 .circle-5 h2 {
  /* top: 28%;
    left: 11%; */
    line-height: 110px;
}
 
#p0 .circle-7 h2 {
  /* top: 34%;
  left: 12%; */
  line-height: 120px;
}
#p0 .circle-7  {
  bottom: 18%;
  right: 38%;
  left: auto; 
}

#p0 .circle-8 h2 {
  margin-top: 60px;
  line-height: 20px;
  font-size: 1rem;
}
#p0 .circle-8  {
  left: 48%;
  right: auto;
  bottom: 40%;
   
}

 

.blink-bg{
 
  margin: 10px;
  display: inline-block;
  border-radius:50%;
  animation: blinkingBackground 5s infinite ease-in-out;
}
@keyframes blinkingBackground{
0%		{ background-color: rgb(255, 192, 17);}
  
  50%		{ background-color: #f46d0a;}
  100%		{ background-color: rgb(255, 192, 17);}
}
.blink-bg h2 { width: 120px; color: #000; font-weight: 600; line-height: normal; font-size: 1.4rem; text-align: center;
  margin:80px auto 0 auto; }

/* Product */
#p1 .circle-1 h2 {
  top: 35%;
  left: 2%;
}

#p1 .circle-2 h2 {
  top: 30%;
  left: 3%;
  font-size: 1.4rem;
}

#p1 .circle-3 h2 {
  top: 27%;
  left: 0%;
}

#p1 .backandforth-c4 {
  left:40%;
  top:1%;

}
#p1 .backandforth-c3 {
left: 6%;
  top: 1%;
  animation: backandforthc3p1 60s linear 1.5s infinite;
}
 

@keyframes backandforthc3p1 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2em);
  }
  50% {
    transform: translateX(2em);
  } 
  100% {
    transform: translateX(0);
  }
} 
#p1 .circle-4 h2 {
  top: 22%;
  left: 0%;
}
#p1 .circle-5 h2 {
  top: 20%;
  left: 2%;
}
#p1 .circle-6 h2 {
  top: 35%;
  left: 26%;
    font-size: 1.2rem;
}

.go-to-home, .go-to-products {
  position: absolute;
  height: 100px;
    width: 100px;
    border-radius: 50%;
    color: #000;
    background: #ffff00;
    line-height: 107PX;
    text-align: center;
    text-transform: uppercase;
    bottom: -20%;
    right:40%;
     
}
.go-to-home
{
  font-size: 1.3rem;
}
.go-to-products {
  font-size: 0.8rem;
}


.contact {
  padding:20px;
  text-align: left;
}
.contact p, .contact a {
  color:#fff;
  font-size: 2rem;
  line-height: 2.5rem;
}
.contact h3 {color:#ffff00; font-size: 2.5rem; line-height: 3rem; }
.contact a:hover { color:#ffff00; }
.contact a {text-decoration: none;}
.contact h4 {color:#ffff00; font-size: 2rem; }

.circle h2.blue-h2 {
  color:#1196c1;
}

/* Digital */

#p7 .circle h2 {
  position: static;
}


#p7 .circle-1 h2 {
  /* top: 36%;
  left: 25%;  */
  line-height: 260px;
}

#p7 .circle-2 h2 {
  /* top: 31%;
    left: 23%; */
   line-height: 160px; 
}

#p7 .circle-3 h2 {
  /* top: 34%;
  left: 22%; */
  line-height: 160px;
}

#p7 .circle-4 h2 {
  /* top: 29%;
  left: 19%; */
  line-height: 120px;
}
#p7 .circle-5 h2 {
  /* top: 28%;
    left: 11%; */
    line-height: 100px;
}

#p7 .backandforth-c4 {
  left: 50%;
    top: 15%;
}


#p7 .backandforth-c2 {
  left: 12%;
}
#p7 .backandforth-c3 {
  left: 40%;
  top: 43%;
}
#p7 .backandforth-c5 {
  left: 27%;
    bottom: 27%;
}
#P7 .backandforth-c1 { 
  left: 39%;
    top: 25%;
}

/* inner page Products*/
/* .search-wrapper h1{ 
  color:#1196c1;
  font-size: 2.5rem;
  bottom:25%;
} */
#pl-home .circle-2 {
  top:7%;
}

#pl-home .circle-1, #pl-home .circle-1 .main-wrapper-inside, #pl-home .circle-1 .main-wrapper,
#pl-home .circle-4, #pl-home .circle-4 .main-wrapper-inside, #pl-home .circle-4 .main-wrapper  {
  width: 160px;
  height: 160px;   
}

#pl-home .circle-2, #pl-home .circle-2 .main-wrapper-inside, #pl-home .circle-2 .main-wrapper,
#pl-home .circle-3, #pl-home .circle-3 .main-wrapper-inside, #pl-home .circle-3 .main-wrapper  {
  width: 200px;
  height: 200px;   
}

#pl-home .empty {
  left: 20%;
  top: 87%;
  width: 200px;
  height: 200px;
  z-index: 1;
}

#pl-home .circle h2 {
  position: static;
  font-size: 1.3rem;    
  margin-top: 42%;
}

#pl-home .backandforth-p4 .circle h2 {
  margin-top: 30%;
}

#pl-home  a {
  text-decoration: none;
  outline: none;
}
 
.single-circle {
  top: 28%;
    left: 25%;
}

.backandforth-p1 {
  animation: backandforthp1 60s linear 0.5s infinite;
  top: 10%;
  left: 27%;
  position: absolute; 
  z-index: 12;
}

@keyframes backandforthp1 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(1em, 1em);
  }
  50% {
    transform: translate(1em, 2em);
  }
  75% {
    transform: translate(-2em, -1em);
  }
  100% {
    transform: translate(0, 0);
  }
} 


.backandforth-p2 {
  animation: backandforthp2 60s linear 0.5s infinite;
  top: 12%;
  left: 47%;
  position: absolute; 
  z-index: 12;
}

@keyframes backandforthp2 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2em, -2em);
   
  }
  50% {
    transform: translate(2em, 2em);
  }
  75% {
    transform: translate(2em, 2em);
  }
  100% {
    transform: translate(0, 0);
  }
} 

.backandforth-p3 {
  animation: backandforthp3 60s linear 0.5s infinite;
  top: 40%;
  left: 40%;
  position: absolute; 
  z-index: 12;
}

@keyframes backandforthp3 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2em, -2em);
  }
  50% {
    transform: translate(2em, 2em);
  }
  75% {
    transform: translate(-2em, -2em);
  }
  100% {
    transform: translate(0, 0);
  }
} 


.backandforth-p4 {
  animation: backandforthp4 60s linear 0.5s infinite;
  top: 60%;
  left: 49%;
  position: absolute; 
  z-index: 12;
}

@keyframes backandforthp4 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2em,0);
  }
  50% {
    transform: translate(2em, 2em);
  }
  75% {
    transform: translate(-2em, -2em);
  }
  100% {
    transform: translate(0, 0);
  }
} 

.backandforth-p5 {
  animation: backandforthp5 60s linear 0.5s infinite;
  top: 40%;
  left: 10%;
  position: absolute; 
  z-index: 12;
}

#p3 .backandforth-p5 {
  left: 15%;
}

@keyframes backandforthp5 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2em,0);
  }
  50% {
    transform: translate(2em, 2em);
  }
  75% {
    transform: translate(-2em, -2em);
  }
  100% {
    transform: translate(0, 0);
  }
} 


.backandforth-p6 {
  animation: backandforthp6 60s linear 0.5s infinite;
  top: 64%;
  left: 25%;
  position: absolute; 
  z-index: 12;
}

@keyframes backandforthp6 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2em,0);
  }
  50% {
    transform: translate(2em, 2em);
  }
  75% {
    transform: translate(-2em, -2em);
  }
  100% {
    transform: translate(0, 0);
  }
} 


.backandforth-p7 {
  animation: backandforthp6 60s linear 0.5s infinite;
  top: 55%;
  left: 15%;
  position: absolute; 
  z-index: 12;
}

@keyframes backandforthp6 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2em,0);
  }
  50% {
    transform: translate(2em, 2em);
  }
  75% {
    transform: translate(-2em, -2em);
  }
  100% {
    transform: translate(0, 0);
  }
} 

#pl-home .backandforth-p7{
  top: 36%;
    left: 24%;
}

.two-circles .backandforth-p3
  {
    top: 12%;
    left: 25%;
}

 
.two-circles .backandforth-p2 {
  top: 41%;
  left: 28%;
}

.go-to-products {
  left:23%;
  bottom:-15%;
  line-height: 90px;
  width: 90px;
  height: 90px;
  
  transition: all 1s ease-in;
}
.go-to-products.last {
  left: 1%;
  bottom: -8%;
  line-height: 120px;
  width: 120px;
  height:120px;
}

.go-to-products:hover {
  opacity: 1;
}

h2 {
  color: #ffff00;  
  font-weight: 400;
  text-align: center;
  font-size: 2.5rem;
  
}


.search-wrapper h2 {
 
  margin-top: 10px;
  position: absolute;
  text-transform: uppercase; 
  bottom: 16%;
  left: 0;
  font-size: 1.6rem;
  width: 100%;
}

.search-wrapper h3 {
  color: #1196c1;  
  font-weight: 400;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 10px;
  position: absolute;
  text-transform: uppercase; 
  bottom: 30%;
  left:0;
  margin:0;
  width: 100%;
}

#p6 .circle-1 h2 {
  top: 19%;
    left: 19%;
    font-size: 2.1rem;
}

#p6 .circle p {
  
  color:#fff;
  font-size: 1.5rem;
  margin-top: 34%;
    text-align: center;
}
.circle p a{
  color:#fff;
}

.circle p em,.circle p em  > a{   
  font-size:1.7rem;
  color:#1196c1;   
}

.circle em .fa-email { background: url('../images/email-icon.svg') no-repeat; width: 24px; height: 24px; }

 
#p6  .backandforth-c1 {
  left:0;
  top:0;
  animation: backandforth-contact 100s linear 0.5s infinite;
  
}

@keyframes backandforth-contact {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2em);
  }
  75% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateX(0);
  }
} 
 
#p6 .circle-1, #p6 .backandforth-c1, 
#p6 .circle-1 .main-wrapper-inside, #p6 .circle-1  .main-wrapper {
  
  height: 600px;
  width: 600px;
}
  
 

/* Services */
#p4 .circle-2, #p4 .circle-2 .main-wrapper-inside,#p4 .circle-2 .main-wrapper{ 
  width: 240px;
  height: 240px;
}

#p4 .circle-1 h2 {
  top:33%;
  width: 80%;
  left: 10%;
}

#p4 .circle-2 h2 {
  top: 30%;
  left: 5%;
  font-size: 1.1rem;
  width: 90%;
}

#p4 .circle-4 h2 {
  top: 23%;
    left: 1%;
  font-size: 1rem;
}
#p4 .circle-3 h2 {
  top: 29%;
  font-size: 1.2em;
}
#p4 .circle-5 h2 {
  top: 27%;
  left: 0%;
  font-size: 1rem;
}
#p4 .circle-6 h2 {
  top: 36%;
  left: 15%; 
  font-size: 1.1rem;
}

#p4 .circle-7 h2 {
  top: 30%;
  left: 3%;
}

#p4 .backandforth-c6 {
  left:40%;
  top:65%;
}

#p4 .backandforth-c7 {
  left:46%; 
  top:70%;
}

.brand { 
  position: absolute;  
}
.search-wrapper .brand { 
  bottom: 145px;
}
.search-wrapper .circle .brand img { 
  width: 80%;
}

.circle .brand img {
  width: 100%; 
  border-radius: 50%;
}

 
 
 
#services .circle  h2 {
  position: absolute;
  margin-top: 0;
}

#services .circle-2 h2 {
  top: 57%;
  left: 10%;
}
#services .circle-1 h2 {    
  top: 51%;
  left: 9%;
}

#s1 .circle, #s1 .circle .main-wrapper-inside,#s1 .circle .main-wrapper{ width: 180px; height: 180px;}
#s1 .circle .brand { top:0; bottom: 0; left:0;}
#s1 .circle .brand img { border-radius: 50%; height: 180px; width: 180px;}

#s2 .circle, #s2 .circle .main-wrapper-inside,#s2 .circle .main-wrapper{ width: 180px; height: 180px;}
#s2 .circle .brand { top:0; bottom: 0; left:0;}
#s2 .circle .brand img { border-radius: 50%; height: 180px; width: 180px;}

#services .lightbox-target { width: 100%; padding: 0;  z-index: 50;}


/* Wayfinding Services */
#wf-home .circle-1, #wf-home .circle-1 .main-wrapper-inside, #wf-home .circle-1 .main-wrapper,
#wf-home .circle-4, #wf-home .circle-4 .main-wrapper-inside, #wf-home .circle-4 .main-wrapper,
#wf-home .circle-2, #wf-home .circle-2 .main-wrapper-inside, #wf-home .circle-2 .main-wrapper,
#wf-home .circle-3, #wf-home .circle-3 .main-wrapper-inside, #wf-home .circle-3 .main-wrapper  {
  width: 200px;
  height: 200px;   
}
#wf-home .backandforth-p3 {
  left:30%;
}
#wf-home  .backandforth-p2 {
  top:0%;
}

/* Retails Services */
#retails .circle-1, #retails .circle-1 .main-wrapper-inside, #retails .circle-1 .main-wrapper,
#retails .circle-4, #retails .circle-4 .main-wrapper-inside, #retails .circle-4 .main-wrapper {
  width: 200px;
  height: 200px;   
}

/* Evacuation Plan Services */
#evacuation-plan .circle-1, #evacuation-plan .circle-1 .main-wrapper-inside, #evacuation-plan .circle-1 .main-wrapper,
#evacuation-plan .circle-4, #evacuation-plan .circle-4 .main-wrapper-inside, #evacuation-plan .circle-4 .main-wrapper {
  width: 180px;
  height: 180px;   
}
#evacuation-plan .backandforth-p4 {
  left: 24%;
}


/* Design Communication OSHA Services */

#dc-home .circle-1, #dc-home .circle-1 .main-wrapper-inside, #dc-home .circle-1 .main-wrapper,
#dc-home .circle-4, #dc-home .circle-4 .main-wrapper-inside, #dc-home .circle-4 .main-wrapper,
#dc-home .circle-6, #dc-home .circle-6 .main-wrapper-inside, #dc-home .circle-6 .main-wrapper,
#dc-home .circle-8, #dc-home .circle-8 .main-wrapper-inside, #dc-home .circle-8 .main-wrapper,
#dc-home .circle-2, #dc-home .circle-2 .main-wrapper-inside, #dc-home .circle-2 .main-wrapper,
#dc-home .circle-3, #dc-home .circle-3 .main-wrapper-inside, #dc-home .circle-3 .main-wrapper,
#dc-home .circle-5, #dc-home .circle-5 .main-wrapper-inside, #dc-home .circle-5 .main-wrapper,
#dc-home .circle-7, #dc-home .circle-7 .main-wrapper-inside, #dc-home .circle-7 .main-wrapper {
  width: 160px;
  height: 160px;    
}


@keyframes backandforth-dc1 {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(2em);
  }
  50% {
    transform: translateY(-2em);
  } 
  75% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}

#dc-home .animated, 
#clients-home .animated {
  animation: backandforth-dc1 60s linear 1.5s infinite;
  position: absolute;
}

#dc-home .backandforth-p1 { 
  left:-2%; top:5%; 
} 

#dc-home .backandforth-p2 { 
  left:-2%; top:40%; 
}

#dc-home .backandforth-p3 { 
  left: 28%;
  top: 25%; 
}

#dc-home .backandforth-p4  { 
  left: 38%;
  top: 56%; 
}

#dc-home .backandforth-p5{ 
  left:0%; top:40%; 
}

#dc-home .backandforth-p6 {
  left:30%; top:30%; 
}
 
#clients-home .backandforth-p6 { 
  left:25%; top:15%; 
}
 

#dc-home .backandforth-p7, 
#clients-home .backandforth-p7 { 
  left: 47%;
  top: 35%; 
}

#dc-home .backandforth-p8, 
#clients-home .backandforth-p8 { 
  left:10%; top:50%; 
}

#dc-home .backandforth-p9, 
#clients-home .backandforth-p9 { 
  left:37%; top:9%; 
}

#dc-home .backandforth-p10, 
#clients-home .backandforth-p10 { 
  left:14%; top:22%; 
}

#dc-home .backandforth-p11, 
#clients-home .backandforth-p11 { 
  left: 46%;
  top: 27%; 
}


#dc-home .backandforth-p12, 
#clients-home .backandforth-p12 { 
  left:10%; top:30%; 
}

#dc-home .backandforth-p13, 
#clients-home .backandforth-p13 { 
  left: 45%;
  top: -10%; 
}


#dc-home .backandforth-p14, 
#clients-home .backandforth-p14 { 
  left: 23%;
  bottom: -4%; 
}

#dc-home .backandforth-p15, 
#clients-home .backandforth-p15{ 
  left: 46%;
  bottom: 31%; 
}


/** Clients **/

#p3 .circle-1, #p3 .circle-1 .main-wrapper-inside, #p3 .circle-1 .main-wrapper,
#p3 .circle-4, #p3 .circle-4 .main-wrapper-inside, #p3 .circle-4 .main-wrapper,
#p3 .circle-6, #p3 .circle-6 .main-wrapper-inside, #p3 .circle-6 .main-wrapper,
#p3 .circle-8, #p3 .circle-8 .main-wrapper-inside, #p3 .circle-8 .main-wrapper,
#p3 .circle-2, #p3 .circle-2 .main-wrapper-inside, #p3 .circle-2 .main-wrapper,
#p3 .circle-3, #p3 .circle-3 .main-wrapper-inside, #p3 .circle-3 .main-wrapper,
#p3 .circle-5, #p3 .circle-5 .main-wrapper-inside, #p3 .circle-5 .main-wrapper,
#p3 .circle-7, #p3 .circle-7 .main-wrapper-inside, #p3 .circle-7 .main-wrapper,
#p3 .circle-9, #p3 .circle-9 .main-wrapper-inside, #p3 .circle-9 .main-wrapper {
  width: 180px;
  height: 180px;    
}

#p3 .backandforth-c1 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 16%;
  top: 15%;
  position: absolute; 
}

@keyframes backandforthc1-cl {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2em);
  }
  75% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateX(0);
  }
} 

#p3 .backandforth-c1 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;  
}


#p3 .backandforth-c2 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 12%;
    top:42%;
  position: absolute; 
}


#p3 .backandforth-c3 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 40%;
  top: 41%;
  position: absolute; 
}

#p3 .backandforth-c4 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 27%;
    top: 34%;
  position: absolute; 
}

#p3 .backandforth-c5 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 26%;
  top: 38%;
  position: absolute; 
}

#p3 .backandforth-c6 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 30%;
    top: 8%;
  position: absolute; 
}
#p3 .backandforth-c7 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 5%;
  bottom: 10%;
  position: absolute; 
}
#p3 .backandforth-c8 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 45%;
  bottom: 5%;
  position: absolute; 
}
#p3 .backandforth-c9 {
  animation: backandforthc1-cl 60s linear 0.5s infinite;
  left: 47%;
  top: 12%;
  position: absolute; 
}

#p3 .circle h2 {
   position: static; 
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  line-height: 145px;
  font-size: 1.2rem !important;
}

/** clients - corporates **/
#clients-home .circle-1, #clients-home .circle-1 .main-wrapper-inside, #clients-home .circle-1 .main-wrapper,
#clients-home .circle-4, #clients-home .circle-4 .main-wrapper-inside, #clients-home .circle-4 .main-wrapper,
#clients-home .circle-6, #clients-home .circle-6 .main-wrapper-inside, #clients-home .circle-6 .main-wrapper,
#clients-home .circle-8, #clients-home .circle-8 .main-wrapper-inside, #clients-home .circle-8 .main-wrapper,
#clients-home .circle-2, #clients-home .circle-2 .main-wrapper-inside, #clients-home .circle-2 .main-wrapper,
#clients-home .circle-3, #clients-home .circle-3 .main-wrapper-inside, #clients-home .circle-3 .main-wrapper,
#clients-home .circle-5, #clients-home .circle-5 .main-wrapper-inside, #clients-home .circle-5 .main-wrapper,
#clients-home .circle-7, #clients-home .circle-7 .main-wrapper-inside, #clients-home .circle-7 .main-wrapper,
#clients-home .circle-9, #clients-home .circle-9 .main-wrapper-inside, #clients-home .circle-9 .main-wrapper {
  width: 180px;
  height: 180px;    
}

#clients-home .backandforth-p1 { left:5%; top:15%;}
#clients-home .backandforth-p2 { left:15%; top:49%;}
#clients-home .backandforth-p3 { left:35%; top:15%;}
#clients-home .backandforth-p4 { left:45%; bottom:25%;}
#clients-home .backandforth-p5 { left: 30%; bottom: 13%;}
#clients-home .backandforth-p6 {  left: 21%;   }
#clients-home .backandforth-p8 { left: 30%; top: 69%;}

#digital .circle, #digital .circle .main-wrapper-inside, #digital .circle .main-wrapper {
  width:180px;
  height:180px;  
}

/* Digital Industries */
.pentagon ul {
  position: absolute;  
}
.pentagon ul:first-child {
  left:25%;
  top:10%;
}
.pentagon ul:nth-child(2) {
  left:12%;
  top:30%;
}
.pentagon.triangle ul:first-child {
  left:22%;
}
.pentagon.triangle ul:nth-child(2) {
  top:40%;
}

.pentagon ul:nth-child(2) li:first-child {
  margin-right:200px;
}

.pentagon.triangle ul:nth-child(2) li:first-child {
  margin-right:100px !important;
}


.pentagon ul:nth-child(3) {
  left:16%;
  top:60%;
}
.pentagon ul:nth-child(3) li:first-child {
  margin-right:60px;
}


#digital .backandforth-p1 {
  animation: backandforthd1 60s linear 0.5s infinite;
  left:11%; top:28%;
  position: absolute; 
  z-index: 12;
}

@keyframes backandforthd1 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2em, 2em);
  }
  50% {
    transform: translate(1em, 2em);
  }
  75% {
    transform: translate(-2em, -1em);
  }
  100% {
    transform: translate(0, 0);
  }
} 
#digital .backandforth-p2 {
  animation: backandforthd2 60s linear 0.5s infinite;
  left:22%; top:65%;
  position: absolute; 
  z-index: 12;
}

@keyframes backandforthd2 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2em, -2em);
   
  }
  50% {
    transform: translate(2em, 2em);
  }
  75% {
    transform: translate(-2em, 2em);
  }
  100% {
    transform: translate(0, 0);
  }
} 


#digital .backandforth-p3 { left:39%; top:19%;}
#digital .backandforth-p4 { left:45%; bottom:25%;}
#digital .backandforth-p5 { left: 24%; top: 3%;}
#digital .backandforth-p6 {
  left: 3%;
  top: auto;
  bottom: 38%;
}
#digital .backandforth-p7 { left: 28%;
  top: 36%;
}

 
/** Architecture signage - Products **/
#ar-products .circle-1, #ar-products .circle-1 .main-wrapper-inside, #ar-products .circle-1 .main-wrapper,
#ar-products .circle-4, #ar-products .circle-4 .main-wrapper-inside, #ar-products .circle-4 .main-wrapper,

#ar-products .circle-2, #ar-products .circle-2 .main-wrapper-inside, #ar-products .circle-2 .main-wrapper,
#ar-products .circle-3, #ar-products .circle-3 .main-wrapper-inside, #ar-products .circle-3 .main-wrapper  {
  width: 180px;
  height: 180px;    
}

#ar-products .backandforth-p1 { left:5%; top:15%;}
#ar-products .backandforth-p2 { left:15%; top:45%;}
#ar-products .backandforth-p3 { left:35%; top:15%;}
#ar-products .backandforth-p4 { left:45%; bottom:25%;}
 
/** Architecture signage - Clients  **/
#ar-clients .circle, #ar-clients .circle .main-wrapper-inside, #ar-clients .circle .main-wrapper{
  width: 120px;
  height: 120px;   
    
}
#ar-clients .animated {position: absolute;}
#ar-clients .p1 { left:2%; top:5%;}
#ar-clients .p2 { left:17%; top:5%;}
#ar-clients .p3 { left:30%; top:5%;}
#ar-clients .p4 { left:45%; top:5%;}
#ar-clients .p5 { left:5%; top:25%;}
#ar-clients .p6 { left:15%; top:25%;}
#ar-clients .p7 { left:30%; top: 25%;}
#ar-clients .p8 { left:45%; top:25%;}
#ar-clients .p9 { left:2%; top: 45%;}
#ar-clients .p10 { left:17%; top:45%;}
#ar-clients .p11 { left:30%; top: 45%;}
#ar-clients .p12 { left:45%; top:65%;}
#ar-clients .p13 { left:5%; top:65%;}
#ar-clients .p14 { left:15%; top:65%;}
#ar-clients .p15 { left:30%; top:65%;}


/* Project */
#p2 .circle-1, #p2  .circle-1 .main-wrapper-inside, #p2  .circle-1 .main-wrapper,
#p2 .circle-6, #p2  .circle-6 .main-wrapper-inside, #p2  .circle-6 .main-wrapper {
  width: 200px;
  height: 200px;
}

#p2 .backandforth-c6 {
  top:60%;
}

#p2 .backandforth-c7 {
  left:48%;
  top: 61%;
}

#p2 .backandforth-c4 {
  left: 14%;
  top: 12%;
}


#p2 .backandforth-c3 {
  animation: backandforthc3p2 60s linear 1.5s infinite;
  left: 40%;
  top: 0%; 
  position: absolute; 
}

@keyframes backandforthc3p2 {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2em);
  }
  50% {
    transform: translateX(2em);
  } 
  100% {
    transform: translateX(0);
  }
} 


#p2 .circle h2 { position: static;}
#p2 .circle-1 h2 {
  line-height: calc(200px - 36px);
}
#p2 .circle-2 h2 {
  line-height: calc(250px - 36px);
}
#p2 .circle-3 h2 {
  margin-top: 70px;
  font-size: 1.4rem;
}
#p2 .circle-4 h2 {
  line-height: calc(150px - 26px);
}
 
#p2 .circle-5 h2 {
  margin-top: 40px;
  font-size: 1rem;
}
 
#p2 .circle-6 h2 {
  line-height: calc(200px - 26px);
  font-size: 1.4rem;
}
#p2 .circle-7 h2 {
  line-height: calc(150px - 36px);
  font-size: 1.4rem;
}

#p2-hotels .circle-1, #p2-hotels  .circle-1 .main-wrapper-inside, #p2-hotels  .circle-1 .main-wrapper,
#p2-hotels .circle-2, #p2-hotels  .circle-2 .main-wrapper-inside, #p2-hotels  .circle-2 .main-wrapper,
#p2-hotels .circle-3, #p2-hotels  .circle-3 .main-wrapper-inside, #p2-hotels  .circle-3 .main-wrapper,
#p2-hotels .circle-4, #p2-hotels  .circle-4 .main-wrapper-inside, #p2-hotels  .circle-4 .main-wrapper,
#p2-hotels .circle-5, #p2-hotels  .circle-5 .main-wrapper-inside, #p2-hotels  .circle-5 .main-wrapper,
#p2-hotels .circle-6, #p2-hotels  .circle-6 .main-wrapper-inside, #p2-hotels  .circle-6 .main-wrapper  {
  width: 200px;
  height: 200px;
}

#p2-hotels .backandforth-p7 {
  left:50%;
  bottom:10%;
}

#p2-hotels .backandforth-c6 {
  left:42%;
  top:40%;
}

#p2-hotels .backandforth-c5 {
  
  left:22%;
}
#p2-hotels .backandforth-p5 {
  top:5%;
}
 
#p2-hotels .backandforth-p4 {
  left:12%;
  top:10%;
}

#p2-hotels .backandforth-p2 {
  
  top:33%;
}

#p2-hotels .backandforth-p8 {
  left: 32%;
  position: absolute;
  top: 5%;
}

/* static circles */

.circle-container {
  position: relative;
  width:50%;
  height: 700px;
  border-radius: 50%;
  padding: 0;
  list-style: none;
  margin: 2rem auto 0;
}
.panel ul {
 margin-right:20px;
}
.panel ul.circle-container li {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -90px;
  float: none;

  
}
.panel ul.circle-container.border-blue li {   border:4px solid #2c2b40; } 

.circle-container > *:nth-of-type(1) {
  transform:rotate(0deg)  translate(15em) rotate(0deg);
}
.circle-container > *:nth-of-type(2) {
  transform: rotate(72deg) translate(15em) rotate(-72deg);
}
.circle-container > *:nth-of-type(3) {
  transform: rotate(144deg) translate(15em) rotate(-144deg);
}
.circle-container > *:nth-of-type(4) {
  transform:rotate(216deg) translate(15em) rotate(-216deg);
}
.circle-container > *:nth-of-type(5) {
  transform:rotate(288deg)  translate(15em) rotate(-288deg);
}



.panel  ul, .panel > li { list-style: none; margin: 0; padding: 0; }

.panel  ul { 
    text-align: center; 
    justify-content: space-between;
    margin: 30px; width: 60%;  
    margin-right: 40%;
    display: flex;  
    flex-flow: wrap; 
    clear: both; 
    justify-content: flex-end;
}

.panel  ul  li { width: 20%; text-align: center; position: relative; float: right; margin: 10px; padding-bottom: 20%; border-radius: 50%; overflow: hidden;   }

.panel ul li  img { position: absolute; width: 100%; height: 100%; top: 0; left: 0; object-fit: cover; }
 


/*
 *  scrollbar
 */

 
.scrollbar {
  
  margin-bottom: 25px;
  height: 100%;
  overflow-y: scroll;
}
.scrollbar::-webkit-scrollbar-track
 {
   -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
   background-color: #ddd;
 }
 
 .scrollbar::-webkit-scrollbar
 {
   width: 2px;
   background-color: #ddd;
 }
 
.scrollbar::-webkit-scrollbar-thumb
 {
   background-color: #000000;
 }
 

 /* products h2 */
 #ar-products .animated h2,
 #ar-services .animated h2 {
   position: static;
   text-align: center;    
 }
 #ar-products .animated h2{
  line-height: 140px;
 }
 #ar-services .animated h2 {
   line-height:160px ;
 }
  #ar-services  .circle-1,   #ar-services   .circle-1 .main-wrapper-inside,   #ar-services    .circle-1 .main-wrapper,
  #ar-services  .circle-2,   #ar-services   .circle-2 .main-wrapper-inside,   #ar-services   .circle-2 .main-wrapper,
  #ar-services  .circle-3,   #ar-services   .circle-3 .main-wrapper-inside,   #ar-services   .circle-3 .main-wrapper {
  width: 200px;
  height: 200px;
 }

 #ar-services .backandforth-p1, #retails .backandforth-p1 {
  left: 10%;
  top:16%;
 }

 #ar-services .backandforth-p2, #retails .backandforth-p2 {
  top: 45%;
  left:23%;
 }

 #ar-services .backandforth-p3, #retails .backandforth-p3 {
  top: 15%;
  left: 34%;
 }

 #ar-services .backandforth-p4, #retails .backandforth-p4 {
  top: 53%;
  left: 42%;
 }

 #retails .backandforth-p4 {
  top: 47%;
  left: 42%;
 }

 #turn-key ul{
   margin-top: 5%;
 } 


 /* Solar signage */
 #solar-2  .circle-1,  #solar-2   .circle-1 .main-wrapper-inside,  #solar-2    .circle-1 .main-wrapper,
 #solar-3  .circle-1,  #solar-3   .circle-1 .main-wrapper-inside,  #solar-3   .circle-1 .main-wrapper {
  width: 300px;
  height: 300px;
 }

#solar-2 .circle-1 h2
 { 
  position: static;
  margin-top: 110px;
}
 
#solar-3 .circle-1 h2  { 
  position: static;
  margin-top: 130px;
}

#solar-1 .circle-1 h2  { 
  position: static;
  margin-top: 130px;
}

/*led-clients */
#led-clients .circle-container > *:nth-of-type(1),
#led-products .circle-container > *:nth-of-type(1)  {
  transform:rotate(0deg)  translate(15em) rotate(0deg);
}
#led-clients .circle-container > *:nth-of-type(2),
#led-products .circle-container > *:nth-of-type(2)  {
  transform: rotate(60deg) translate(15em) rotate(-60deg);
}
#led-clients .circle-container > *:nth-of-type(3),
#led-products .circle-container > *:nth-of-type(3) {
  transform: rotate(120deg) translate(15em) rotate(-120deg);
}
#led-clients .circle-container > *:nth-of-type(4),
#led-products .circle-container > *:nth-of-type(4) {
  transform:rotate(180deg) translate(15em) rotate(-180deg);
}
#led-clients .circle-container > *:nth-of-type(5),
#led-products .circle-container > *:nth-of-type(5) {
  transform:rotate(240deg)  translate(15em) rotate(-240deg);
}
#led-clients .circle-container > *:nth-of-type(6),
#led-products .circle-container > *:nth-of-type(6) {
  transform:rotate(300deg)  translate(15em) rotate(-300deg);
}

#led-products .circle-container li  {
  background: #333;
  width: 183px;
  height: 1px; 
}
#led-products .circle-container li h2 {
  font-size: 1.5rem;
    word-break: break-word;
    width: 80%;
    margin: 34% auto;
}

#single-circle .circle-1,
#single-circle .circle-1 .main-wrapper-inside, 
#single-circle .circle-1 .main-wrapper{
  width: 300px;
  height: 300px;
}
#single-circle .circle-1 h2 {
  position: static;
  left:auto;
  top:auto;
  margin-top:120px;
}


/* fixed enquire now */
a.tag {
  position: absolute;
  top:0; 
  left:0;
  content:'';
  background: url("../images/enquire-now.png") no-repeat;
  height: 150px;
  width: 86px;
  cursor: pointer;
  z-index: 91;
}


.enquire-form {
  width: 300px;
  height: 300px;
  background: #ccc;
  position: absolute;
  left: 10px;
  top: 10px;
  display: none;
}
 
.toggle {
  width: 400px;
  height: 300px;
  background: #ccc;
  position: absolute;
  left: 0;
  top: 0; 
}

 
:root {
  --white: #afafaf;
  --yellow:  #ffff00;
  --bodyColor: #292a2b;
  --borderFormEls: hsl(0, 0%, 10%);
  --bgFormEls: hsl(0, 0%, 14%);
  --bgFormElsFocus: hsl(60, 8%, 20%);
}

select {
  appearance: none;
}

/* Remove native arrow on IE */
select::-ms-expand {
  display: none;
}

/*Remove dotted outline from selected option on Firefox*/
/*https://stackoverflow.com/questions/3773430/remove-outline-from-select-box-in-ff/18853002#18853002*/
/*We use !important to override the color set for the select on line 99*/
select:-moz-focusring {
  color: transparent !important;
  text-shadow: 0 0 0 var(--white);
}

textarea {
  resize: none;
}
 


/* FORM ELEMENTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.logo-section {
  width: 200px;
  margin: 0 auto;
}
.logo-section img {
   
  margin:0 auto;
}
.lightbox-target-2 {
   background: url("../images/bg-black.jpg");
}
.my-form {
  width: 60%;
  margin: 0 auto;
}
.my-form li,
.my-form .grid > *:not(:last-child) {
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
}

.my-form select,
.my-form input,
.my-form textarea,
.my-form button {
  width: 100%;
  line-height: 1.5;
  padding: 10px 0px 10px 5px;
  border: 1px solid var(--borderFormEls);
  color: var(--white);
  background: var(--bgFormEls);
  transition: background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
    transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

 

.my-form ::placeholder {
  color: inherit;
  /*Fix opacity issue on Firefox*/
  opacity: 1;
}

.my-form select:focus,
.my-form input:focus,
.my-form textarea:focus,
.my-form button:enabled:hover,
.my-form button:focus,
.my-form input[type="checkbox"]:focus + label {
  background: var(--bgFormElsFocus);
}

.my-form select:focus,
.my-form input:focus,
.my-form textarea:focus {
  transform: scale(1.02);
}

.my-form *:required,
.my-form select {
  background-repeat: no-repeat;
  background-position: center right 12px;
  background-size: 15px 15px;
}

.my-form *:required {
  background-image: url("../images/asterisk.svg");  
}

.my-form select {
  background-image: url(../images/down.svg);
}

.my-form *:disabled {
  cursor: default;
  filter: blur(2px);
}


/* FORM BTNS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form .required-msg {
  display: none;
  background: url(../images/asterisk.svg)
    no-repeat center left / 15px 15px;
  padding-left: 20px;
  color:var(--white);
}

.my-form .btn-grid {
  position: relative;
  overflow: hidden;
  transition: filter 0.2s;
}

.my-form button {
  font-weight: bold;
}

.my-form button > * {
  display: inline-block;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

.my-form button .back {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-110%, -50%);
}

.my-form button:enabled:hover .back,
.my-form button:focus .back {
  transform: translate(-50%, -50%);
}

.my-form button:enabled:hover .front,
.my-form button:focus .front {
  transform: translateX(110%);
}


/* CUSTOM CHECKBOX
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.my-form input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  padding-left: 2rem;
  transition: background 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
  color: var(--white)
}
.my-form input[type="checkbox"] + label a{ 
  color: var(--yellow);

}

.my-form input[type="checkbox"] + label::before,
.my-form input[type="checkbox"] + label::after {
  content: '';
  position: absolute;
}

.my-form input[type="checkbox"] + label::before {
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
}

.my-form input[type="checkbox"]:checked + label::before {
  background: var(--yellow);
}

.my-form input[type="checkbox"]:checked + label::after {
  left: 7px;
  top: 7px;
  width: 6px;
  height: 14px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
}

 

/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 600px) {
  .my-form .grid {
    display: grid;
    grid-gap: 1.5rem;
  }

  .my-form .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .my-form .grid-3 {
    grid-template-columns: auto auto auto;
    align-items: center;
  }

  .my-form .grid > *:not(:last-child) {
    margin-bottom: 0;
  }

  .my-form .required-msg {
    display: block;
    color:var(--white)
  }
}

@media screen and (min-width: 541px) {
  .my-form input[type="checkbox"] + label::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .my-form input[type="checkbox"]:checked + label::after {
    top: 3px;
  }
}
  
.easyPaginateNav{
  display: flex;
  justify-content: center;
  width: 50% !important;
    margin-top: 30px !important;
    position: absolute;
    bottom: 5%;
    left: 10%;
}
.easyPaginateNav a{
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  color: #fff;

}
.easyPaginateNav a:not(:first-child){
  margin-left: 5px;
}
.easyPaginateNav a:first-child{
  border-radius: 10px 0 0 10px;
}
.easyPaginateNav a:last-child{
  border-radius: 0 10px 10px 0;
}
.easyPaginateNav a:hover{
  background-color: #ffff00;
  color:#000;
}
#pagination a.active{
  background-color: #ffff00;;
}

.filter { 
 	margin: 10px 10px;
}

.filter a {
  text-align: center;
  padding: .7em 1em; 
  color: #ffff00;
  text-decoration: none;
}

.filter a.current {color: green; } 

.box-group {
  text-align:center;
}


.back-button {
	color: #000; 
	border-radius: 50%; 
	font-weight: 400;
 line-height: 40px;
  left: 0;
  position: absolute;
    top: 0;
  margin:20px;
	background-color: #ffff00;
  cursor: pointer; 
  border:none;	
  height: 50px;
    width: 50px;

 }


.back-button:hover {
	background-color: green;	
  color:#fff;
}

.dbl-text {
  line-height: 30px !important; margin-top: 59px !important;
}