.item-1, 
.item-2, 
.item-3,
.item-4,
.item-5 {
	position: absolute;
  display: block;
	top: 0em;
  
  width: 60%;
  
  font-size: 2em;

	animation-duration: 20s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	color:#fff;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .item-1, 
.item-2, 
.item-3,
.item-4,
.item-5 {
	
  font-size: 21px!important;


}
  
}



.item-1{
	animation-name: anim-1;
}

.item-2{
	animation-name: anim-2;
}

.item-3{
	animation-name: anim-3;
}

@keyframes anim-1 {
	0%, 8.3% { left: -100%; opacity: 0; }
  8.3%,25% { left: 25%; opacity: 1; }
  33.33%, 100% { left: 110%; opacity: 0; }
}

@keyframes anim-2 {
	0%, 33.33% { left: -100%; opacity: 0; }
  41.63%, 58.29% { left: 25%; opacity: 1; }
  66.66%, 100% { left: 110%; opacity: 0; }
}

@keyframes anim-3 {
	0%, 66.66% { left: -100%; opacity: 0; }
  74.96%, 91.62% { left: 25%; opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

 

.item-4 {
  animation-name: anim-4;
}

.item-5 {
  animation-name: anim-5;
}
@keyframes anim-4 {
  0%, 91.62% { left: -100%; opacity: 0; }
  100% { left: 110%; opacity: 0; }
}

@keyframes anim-5 {
  0%, 100% { left: -100%; opacity: 0; }
  8.3%, 58.29% { left: 25%; opacity: 1; }
  66.66%, 100% { left: 110%; opacity: 0; }
}


	.panel-login {
	border-color: #ccc;
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
	background-color: #fff;

}
.panel-login>.panel-heading {
	color: #00415d;
	background-color: #fff;
	border-color: #fff;
	text-align:center;
	padding:25px;

}
.panel-login>.panel-heading a{
	text-decoration: none;
	color: #666;
	font-weight: bold;
	font-size: 15px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
.panel-login>.panel-heading a.active{
	color: #029f5b;
	font-size: 18px;
}
.panel-login>.panel-heading hr{
	margin-top: 10px;
	margin-bottom: 0px;
	clear: both;
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
	background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
	background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
	background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
}
.panel-login input[type="text"],.panel-login input[type="email"],.panel-login input[type="password"] {
	height: 45px;
	border: 1px solid #ddd;
	font-size: 16px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	transition: all 0.1s linear;
	margin:7px 0px;

}
.panel-login input:hover,
.panel-login input:focus {
	outline:none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-color: #ccc;
}
.btn-login {
	background-color: #59B2E0;
	outline: none;
	color: #fff;
	font-size: 14px;
	height: auto;
	font-weight: normal;
	padding: 14px 0;
	text-transform: uppercase;
	border-color: #59B2E6;
}
.btn-login:hover,
.btn-login:focus {
	color: #fff;
	background-color: #53A3CD;
	border-color: #53A3CD;
}
.forgot-password {
	text-decoration: underline;
	color: #888;
}
.forgot-password:hover,
.forgot-password:focus {
	text-decoration: underline;
	color: #666;
}

.btn-register {
	background-color: #1CB94E;
	outline: none;
	color: #fff;
	font-size: 14px;
	height: auto;
	font-weight: normal;
	padding: 14px 0;
	text-transform: uppercase;
	border-color: #1CB94A;
}
.btn-register:hover,
.btn-register:focus {
	color: #fff;
	background-color: #1CA347;
	border-color: #1CA347;
}
.cover{
	background-color: #2d2c2b0a;
    padding: 10px;
}


.offset-header-odd,
  .offset-header-even {
    display: block;
    animation-name: slideUp;
    animation-duration: 4s;
    animation-timing-function: ease-in;
  }
  .offset-header-odd {
    text-align: left;
    animation-delay: 0s;
    animation-fill-mode: forwards;
  }
  .offset-header-even {
    text-align: right;
    animation-delay: 150ms;
    animation-fill-mode: both;
  }

  @keyframes slideUp {
    0%,
    50% {
      transform: translateY(100%);
      opacity: 0;
    }
     
    60%,
    100% {
      transform: translateY(0);
      opacity: 1;
    
    }
  }

.carousel {
  width: 100%;
  overflow-x: scroll;
  padding: 30px;
  padding-top: 80px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.carousel__container {
  white-space: nowrap;
  margin: 5px 0px;
  padding-bottom: 10px;
  display: inline-block;
}

.categories__title {
 color: rgb(77, 55, 102);
  font-size: 28px;
  position: absolute;
  padding-left: 30px;
}

.carousel-item {
  width: 200px;
  height: 250px;
  border-radius: 20px;
  background-color: #95bcd6;
  overflow: hidden;
  margin-right: 20px;
  margin-top: 70px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 1000ms all;
  transition: 1000ms all;
  -webkit-transform-origin: center left;
  transform-origin: center left;
  position: relative;
}

.carousel-item:hover ~ .carousel-item {
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}

.carousel__container:hover .carousel-item {
  opacity: 0.3;
}

.carousel__container:hover .carousel-item:hover {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 1;
}

.carousel-item__img {
  width: 200px;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.carousel-item__details {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.9)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  font-size: 10px;
  opacity: 0;
  -webkit-transition: 450ms opacity;
  transition: 450ms opacity;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.carousel-item__details:hover {
  opacity: 1;
}

.carousel-item__details span {
  /* width: 10px;
  height: 10px; */
  font-size: 0.9rem;
  color: #2ecc71;
  /* background-color: white; */
}

.carousel-item__details .controls {
  padding-top: 180px;
}

.carousel-item__details .carousel-item__details--title,
.carousel-item__details--subtitle {
  color: #fff;
  margin: 5px 0;
}


 .cardservice {
  position: relative;
  
  height: 250px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 10px;
  transition: 0.5s;
}

 .cardservice:nth-child(1) .box .content a {
  background: #2196f3;
}

 .cardservice:nth-child(2) .box .content a {
  background: #e91e63;
}

 .cardservice:nth-child(3) .box .content a {
  background: #23c186;
}

 .cardservice .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #2a2b2f59;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

 .cardservice .box:hover {
  transform: translateY(-50px);
}

 .cardservice .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

 .cardservice .box .content {
  padding: 20px;
  text-align: center;
}

 .cardservice .box .content h2 {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8rem;
  color: rgb(255 255 255 / 36%)
}

 .cardservice .box .content h3 {
  font-size: 1.8rem;
  color: #000;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

 .cardservice .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}

 .cardservice .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: black;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
 .cardservice .box .content a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}

.rotate {
  position: absolute;
  top: 0px;
  opacity: 0;
  -moz-opacity: 0;
  filter:alpha(opacity=0);
}
.rotate li{
    list-style:none;
}
.rotate:nth-child(1) {
  -webkit-animation: rotate 30s 0s infinite linear;
          animation: rotate 30s 0s infinite linear;
}
 
.rotate:nth-child(2) {
  -webkit-animation: rotate 30s 10s infinite linear;
          animation: rotate 30s 10s infinite linear;
}
 
.rotate:nth-child(3) {
  -webkit-animation: rotate 30s 20s infinite linear;
          animation: rotate 30s 20s infinite linear;
}

 @-webkit-keyframes "rotate" {
 0% {
   opacity: 0;
 }
 2% {
   opacity: 1;
 }
 31% {
   opacity: 1;
 }
 33% {
   opacity: 0;
 }
 100% {
   opacity: 0;
 }
}

 @keyframes "rotate" {
 0% {
   opacity: 0;
 }
 2% {
   opacity: 1;
 }
 31% {
   opacity: 1;
 }
 33% {
   opacity: 0;
 }
 100% {
   opacity: 0;
 }
}
@media only screen and (max-width: 600px) {
 wordCarousel div {
     overflow: hidden;
     position: relative;
     /*float: right;*/
     height:50px;
     padding-top: 10px;
     margin-top: -10px;
}
 .wordCarousel div li {
     font-size:15px!important;
     padding: 0 10px;
     height: 25px;
     margin-bottom: 25px;
     display: block;
     color:#fff;
}
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
   wordCarousel div {
     overflow: hidden;
     position: relative;
     /*float: right;*/
     height:50px;
     padding-top: 10px;
     margin-top: -10px;
}
 .wordCarousel div li {
     font-size:15px!important;
     padding: 0 10px;
     height: 25px;
     margin-bottom: 25px;
     display: block;
     color:#fff;
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
 .wordCarousel div {
     overflow: hidden;
     position: relative;
     /*float: right;*/
     height:55px;
     padding-top: 10px;
     margin-top: -10px;
}
 .wordCarousel div li {
      font-size:19px!important;
     padding: 0 10px;
     height: 35px;
     margin-bottom: 35px;
     display: block;
     color:#fff;
}
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .wordCarousel div {
     overflow: hidden;
     position: relative;
     /*float: right;*/
     height:100px;
     padding-top: 10px;
     margin-top: -10px;
}
 .wordCarousel div li {
      font-size:24px!important;
     padding: 0 10px;
     height: 45px;
     margin-bottom: 45px;
     display: block;
     color:#fff;
}
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .wordCarousel div {
     overflow: hidden;
     position: relative;
     /*float: right;*/
     height:100px;
     padding-top: 10px;
     margin-top: -10px;
}
 .wordCarousel div li {
      font-size:24px!important;
     padding: 0 10px;
     height: 45px;
     margin-bottom: 45px;
     display: block;
     color:#fff;
}
}

 .flip2 {
     animation: flip2 6s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}
 .flip3 {
     animation: flip3 8s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}
 .flip4 {
     animation: flip4 10s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}
 @keyframes flip2 {
     0% {
         margin-top: -180px;
    }
     5% {
         margin-top: -90px;
    }
     50% {
         margin-top: -90px;
    }
     55% {
         margin-top: 0px;
    }
     99.99% {
         margin-top: 0px;
    }
     100% {
         margin-top: -270px;
    }
}
 @keyframes flip3 {
     0% {
         margin-top: -270px;
    }
     5% {
         margin-top: -180px;
    }
     33% {
         margin-top: -180px;
    }
     38% {
         margin-top: -90px;
    }
     66% {
         margin-top: -90px;
    }
     71% {
         margin-top: 0px;
    }
     99.99% {
         margin-top: 0px;
    }
     100% {
         margin-top: -270px;
    }
}
 @keyframes flip4 {
     0% {
         margin-top: -360px;
    }
     5% {
         margin-top: -270px;
    }
     25% {
         margin-top: -270px;
    }
     30% {
         margin-top: -180px;
    }
     50% {
         margin-top: -180px;
    }
     55% {
         margin-top: -90px;
    }
     75% {
         margin-top: -90px;
    }
     80% {
         margin-top: 0px;
    }
     99.99% {
         margin-top: 0px;
    }
     100% {
         margin-top: -270px;
    }
}


 .image-wrap {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow-x: hidden;
        }

        .banner-content {
            position: absolute;
            z-index: 99999;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            text-align: center;
            font-size: 1.5em;
            color: #fff;
            line-height: 1.5;
        }

        .img-content img {
            width: 100%;
            height: 100vh;
            display: block;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: #530473;
            opacity: .8;
            z-index: 999;
            height: 100%;
        }

        .ban-btn {
            border: none;
            color: #000!important;
            padding: 15px 32px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            border-radius: 4px;
            border-width: 0px!important;
    border-color: #ffffff;
    font-family: 'Museo Sans 700',Helvetica,Arial,Lucida,sans-serif!important;
   background:rgb(255 234 112);
    /*background-image: linear-gradient(135deg,#EE7E31 0%,#EFAC3C 100%)!important;*/
        }

      .char{
           
            animation: an 1s ease-out 1 both;
            display: inline-block;
        }

        @keyframes an{
            from{
                opacity: 0;
                transform: perspective(500px) translate3d(-35px, -40px, -150px) rotate3d(1, -1, 0, 35deg);
            }
            to{
                opacity: 1;
                transform: perspective(500px) translate3d(0, 0, 0);
            }
        }

      .texteffect1 {
  -moz-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-name: slidein-left;
  -webkit-animation-name: slidein-left;
}

@-moz-keyframes slidein-left {
  from {
    margin-left: 100%;
    width: 300%
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

@-webkit-keyframes slidein-left {
  from {
    margin-left: 100%;
    width: 300%
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

.texteffect {
  -moz-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-name: slidein-right;
  -webkit-animation-name: slidein-right;
}

@-moz-keyframes slidein-right {
  from {
    margin-right: 100%;
    width: 300%
  }
  to {
    margin-right: 0%;
    width: 100%;
  }
}

@-webkit-keyframes slidein-right {
  from {
    margin-right: 100%;
    width: 300%
  }
  to {
    margin-right: 0%;
    width: 100%;
  }
}

.line {
  width: 100%;
  height: 4rem;
  overflow: hidden;
  border: 1px solid black;
  padding: 0;
  margin-bottom: 16px;
}

/* flipping class and key frames*/
.flipX {
  animation: 1s anim-flipX ease infinite;
}
@keyframes anim-flipX {
  0% {
    opacity: 0;
    transform: rotateX(90def);
  }
  50% {
    opacity: 1;
    transform: rotateX(720deg);
  }
  100% {
    /* animate nothing to pause animation at the end */
    opacity: 1;
    transform: rotateX(720deg);
  }
}

/* lineup class and keyframes */
.lineUp {
  animation: 2s anim-lineUp ease-out ;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
/* flipY class and keyframes*/
.flipY {
  animation-name: spin, depth;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 6s;
}
@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-360deg);
  }
}
@keyframes depth {
  0% {
    text-shadow: 0 0 black;
  }
  25% {
    text-shadow: 1px 0 black, 2px 0 black, 3px 0 black, 4px 0 black, 5px 0 black;
  }
  50% {
    text-shadow: 0 0 black;
  }
  75% {
    text-shadow: -1px 0 black, -2px 0 black, -3px 0 black, -4px 0 black,
      -5px 0 black;
  }
  100% {
    text-shadow: 0 0 black;
  }
}

/* subtle zoom to attention and then back */
.pop-outin {
  animation: 2s anim-popoutin ease infinite;
}

@keyframes anim-popoutin {
  0% {
    color: black;
    transform: scale(0);
    opacity: 0;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  25% {
    color: red;
    transform: scale(2);
    opacity: 1;
    text-shadow: 3px 10px 5px rgba(0, 0, 0, 0.5);
  }
  50% {
    color: black;
    transform: scale(1);
    opacity: 1;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    /* animate nothing to add pause at the end of animation */
    transform: scale(1);
    opacity: 1;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
  }
}

.fromtop {
  animation: 2s anim-fromtop linear infinite;
}
@keyframes anim-fromtop {
  0% { opacity: 0; transform: translateY(-100%);}
  25% { opacity: 1; transform: translateY(0%);}
  50% {
  }
  100% {
  }
}

.bg-black1000 {
    background-color: #0D1B29 !important;
}
.blue-bg{
    background-image: linear-gradient(135deg,#38ACE1 0%,#2273B8 100%)!important;
}
.socialbtnfb{
    padding: 20px;
  font-size: 24px;
  background: #3B5998;
  color: white;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}
.insta{
   display: inline-block;
 
  text-align: center;
  
  color: #fff;
 
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  box-shadow: 0px 3px 10px rgba(0,0,0,.25);
}
        #overlaydyn {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 70%);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        #popupdyn {
            visibility: hidden;
            position: relative;
            background-color: #fff;
            padding: 20px;
            max-width: 350px;
            text-align: center;
            z-index: 1001;
        }

        #closeBtndyn {
            position: absolute;
            top: 1px;
            left: 10px;
            cursor: pointer;
            color: #0050d1;
            font-weight: bold;
            font-size:30px;
        }

        #navigateBtn {
            margin-top: 20px;
            padding: 10px;
            background-color: #0050d1;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }
        
         .test-wrap1 {
  position: relative;
  border-bottom: 2px solid #f4f6fc;
}
.testi-style1 .testi-icon  {
    background-color: #d2d2d5;
    background-color: var(--theme-color);
    border-radius: 50%;
    color: #fff;
  
    display: inline-block;
    font-size: 24px;
    height: 60px;
    height: var(--icon-size,60px);
    line-height: 60px;
    line-height: var(--icon-size,60px);
    text-align: center;
    width: 60px;
    width: var(--icon-size,60px);
}
.testi-style1 {
  background-color: #d2d2d5;
  padding: 1px 40px 35px 40px;
  margin: 15px 0 30px 0;
  border-radius: 5px;
  transition: all ease 0.4s;
}
.testi-style1:hover {
  background-color: #fff;
  box-shadow: 0px 10px 31px rgba(169, 177, 193, 0.17);
}
/*.testi-style1 .testi-icon {
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--white-color);
  border-radius: 5px;
  margin: -25px 0 20px 0;
}*/

.testi-style1 .testi-icon {
    border-radius: 50%;
    margin: -25px 200px 20px;
    /* padding: 10px; */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.testi-style1 .testi-icon  {
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  line-height: var(--icon-size, 60px);
  color: #fff;
  font-size: 24px;
 
  background-color: gray;
  text-align: center;
  display: inline-block;
}
.testi-style1 .testi-text {
  margin: 0 0 22px 0;
}
.testi-style1 .testi-name {
  margin: 0;
}
.testi-style1 .testi-degi {
  font-size: 14px;
  display: block;
  color: var(--theme-color);
}



 .widget_nav_menu td a:before {
    color: #878d97;
    content: '\f08e'; 
    /*content: "\f08e";*/
}
.widget_nav_menu td a:before, .widget_nav_menu td a:hover {
    color: #0e5af2;
   
}

.widget_nav_menu td a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    /* content: "\f007"; */
    content: '\f35d';
    /* content: "\f08e"; */
    /* font-family: Font Awesome\ 5 Pro; */
    /* content: '\f08e'; */
    /* font-family: "Font Awesome 5 Square"; */
    font-weight: 900;
    position: absolute;
    right: 50px;
    /* top: 0;*/
}
.cardnew{
    background-color: :#fff;
}
.cardnew:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0,0,0,0.11),
    0 24px 46px var(--box-shadow-color);
}

.cardnew:hover .overlay {
  transform: scale(4) translateZ(0);
}
a{
    text-decoration: none!important;
}

.errorMessage, span.required {
    color: #F00;
}
