@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');


:root {
  --primary-color: #212121;
  --third-color: #e30000;
  --secondary-color: #004aad;
  --gray-color: #656565;
  --light: #f2f7ff;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --serif: 'Merriweather', serif;
}

html{
  scroll-behavior: smooth;
}

body {
  color: var(--primary-color);
  background-color: #fff;
  font: 500 1rem "Open Sans", sans-serif;
  overflow-x: hidden;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

a{
  color: var(--primary-color);
  transition: all 300ms ease-in-out;
}

a.bg-secondary:hover{
  background-color: var(--primary-color) !important;
}

img {
  width: 100%;
  display: block;
}

.object-cover {
  object-fit: cover;
}

.container-fluid{
    padding-left: 3rem;
    padding-right: 3rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 997;
  transition: all 300ms ease-in-out;
}

.header.fixed{
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.logo {
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a{
  width: 170px;
  padding: 2px 0;
}

.header.fixed .logo a{
  width: 120px;
}

.navi{
  display: flex;
  gap: 30px;
}

.navi ul{
  gap: 0 10px;
}

.navi li a{
  color: var(--primary-color);
  display: block;
  padding: 5px 8px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  transition: all 300ms ease-in-out;
}

.navi li a.active,
.navi li:hover > a{
  color: var(--secondary-color);
}

.navi .readmore .dropdown{
  position: absolute;
  right: 0;
  width: 210px;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
  border-bottom: 2px solid var(--secondary-color);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  pointer-events: none;
}

.navi .readmore:hover .dropdown{
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.navi .readmore .dropdown a{
  font-size: 13px;
}

.header.fixed .navi li a{
  font-size: 12px;
}

.menuBtn {
  height: 40px;
  background-color: transparent;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.menuBtn .menuLine {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 26px;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover {
  color: #000;
}

.menuBtn .menuLine::before,
.menuBtn .menuLine::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover .menuLine::before,
.menuBtn:hover .menuLine::after {
  opacity: 0.75;
}

.menuBtn .menuLine::before{
  width: 100%;
}

.menuBtn .menuLine::after{
  width: 70%;
}
.menuBtn:hover .menuLine::after {
  width: 85%;
}

.header.fixed .menuBtn  .menuLine::before,
.header.fixed .menuBtn  .menuLine::after{
  background-color: var(--primary-color);
}

.menuBtn.closeMenuBtn{
  gap: 2px;
}

.menuBtn.closeMenuBtn .menuLine::before {
  -webkit-transform: rotate(45deg) translate(3px, 2px);
  transform: rotate(45deg) translate(3px, 2px);
}

.menuBtn.closeMenuBtn .menuLine::after {
  width: 100%;
  -webkit-transform: rotate(-45deg) translate(3px, -2px);
  transform: rotate(-45deg) translate(3px, -2px);
}

.header.notfixed {
  top: -100px;
}

.mbMenuContainer{
	position:fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index:100;
	background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(10px);
	display:none;
  overflow: hidden;
}

.mbMenuContainer .inner{
	position:relative;
	height:100%;
	width:420px;
	padding:0 24px 24px;
  background-color: #fff;
  margin-left: auto;
	margin-right:-1px;
	overflow:auto;
	display:flex;
  flex-direction: column;
	opacity:0;
	transform:translateY(-50%) scale(.2);
  transform-origin: top right;
	transition:all 0.5s linear 500ms;
}

.mbMenuContainer.active .inner{
	opacity:1;
	transform:translateY(0%) scale(1);
}

.mbMenuHeader{
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mbMenuContainer .mbMenu{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1; 
}

.mbMenuContainer .mbMenu ul{
	margin:20px 0 0;
  display: flex;
  flex-direction: column;
}

.mbMenuContainer .mbMenu ul li a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgb(0 0 0 / 10%);
	color:var(--primary-color);
  font-weight: 800;
  font-size: 2rem;
	transition:all 300ms ease-in-out;
  position: relative;
}

.mbMenuContainer .mbMenu ul li:last-of-type a{
  border-bottom: 0;
}

.mbMenuContainer .mbMenu ul li:hover > a,
.mbMenuContainer .mbMenu ul li a.active{
    color: var(--secondary-color);
}

.mbMenuContainer .mbMenu ul li a i{
  transform: rotate(90deg);
  font-size: 80%;
  opacity: 0.2;
}
.mbMenuContainer .mbMenu ul li a.active i,
.mbMenuContainer .mbMenu ul li:hover > a i,
.mbMenuContainer .mbMenu ul li a:focus i{
  opacity: 1;
}

.menuFooter{
  display: flex;
  align-items: center;
  gap: 8px 12px;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgb(0 0 0 / 10%);
}
.menuFooter a.active,
.menuFooter a:hover{
  color: var(--secondary-color);
}

.socialBtn ul i{
  width: 36px;
  height: 36px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

i.fa-facebook-f:hover{
  background-color: var(--facebook);
}
i.fa-twitter:hover{
  background-color: var(--twitter);
}
i.fa-linkedin-in:hover{
  background-color: var(--linkedin);
}
i.fa-instagram:hover{
  background-color: var(--instagram);
}
i.fa-youtube:hover{
  background-color: var(--youtube);
}
/*header*/

.banner {
  height: calc(100vh - 60px);
  margin-top: 60px;
  position: relative;
  background: #000;
  color: #fff;
  z-index: 1;
}

.bannerText {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  text-transform: uppercase;
}

.bannerText .h1{
  font-weight: 800;
  font-size: 5vw;
  letter-spacing: 0.25vw;
  margin-left: 0.5vw;
  -webkit-box-reflect: below -3vw linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.0), rgba(0,0,0,0.4));
}

.bannerText h5{
  font-size: 1.75vw;
  letter-spacing: 0.125vw;
  -webkit-box-reflect: below -10px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.carousel-indicators{
	align-items:center;
  justify-content: center;
  margin-top: 1rem;
}

.carousel-indicators li{
	width:10px;
	height:10px;
  border-radius: 50%;
	background-color:transparent;
	opacity:1;
	text-indent:inherit;
	border:1px solid var(--gray-color);
	transition:all 300ms ease-in-out;
}

.carousel-indicators li:hover, .carousel-indicators .active{
  border-color: var(--third-color);
	background-color:var(--third-color);
}

/* product container */
.swiper-slide{
  height: auto;
}
.productBox .card{
  height: 100%;
  background: var(--light);
  background: radial-gradient(circle at 50% -90%, var(--secondary-color), var(--light) 100%);
  transition: all 300ms ease-in-out;
}

.productBox.hovered .card,
.productBox .card:hover{
  background-color: #fff !important;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
}

.card-img{
  height: 200px;
  position: relative;
}
.card-img img{
  position: absolute;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: darken;
  transition: all 300ms ease-in-out
}

.card-img img.hover-img{
  opacity: 0;;
}

.productBox .card:hover .card-img img{
  opacity: 0;
}
.productBox .card:hover .card-img img.hover-img{
  opacity: 1;
}

.card.exploremore-card:hover{
  background-color: var(--third-color) !important;
}


.card-title{
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--third-color);
}

.card-body{
  position: relative;
}

.card-body .viewmore{
  position: absolute;
  bottom: 1.25rem;
}

.card-text{
  font-size: 14px;
}

.card-body li{
  margin: 5px 0;
  font-size: 14px;
}
/* product container */

/* director's msg */
.luminariesText p{
  font-size: 1rem;
  position: relative;
  padding: 0 3.5rem;
}
.luminariesText p em{white-space: nowrap;}
.luminariesText p i{
  font-size: 3rem;
  top: 0;
  position: absolute;
  color: rgb(255 255 255 / 10%);
}
.luminariesText p i.fa-quote-left{
  left: 0;
}
.luminariesText p i.fa-quote-right{
  right: 0;
}
/* director's msg */

/* clients */
.clientsBox .img-fluid{
  height: 100px;
  border-radius: 10px;
  border: 1px solid rgb(0 0 0 / 10%);
  position: relative;
}
.clientsBox .img-fluid img{
  position: absolute;
  width: auto;
  max-width: 60%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: all 300ms ease-in-out;
}
/* clients */

/* infra */
svg{
  width: 100%;
  height: 100%;
  display: block;
}
svg:not([fill]){
  fill: currentColor;
  stroke: currentColor;
}

.iconBox .inner{
  display: block;
  border: 1px solid rgb(0 0 0 / 15%);
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
  isolation: isolate;
  background: center / cover no-repeat #fff;
}

.iconBox .inner .img-fluid{
  width: 60px;
  margin: 0 auto 10px;
  transition: all 300ms ease-in-out;
  color: var(--secondary-color);
}

.iconBox .inner .img-fluid.border-red{
  border: 2px solid var(--secondary-color);
}

.iconBox .inner h4, .iconBox .inner small{
  font-weight: 700;
}
/* infra */

p {
  line-height: 1.75;
}

.padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.headingContainer{
  margin-bottom: 30px;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.heading .h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading h6 {
  display: block;
  font-weight: 700;
}

.heading .h1 {
  font-size: 2.25rem;
  line-height: .75;
  text-transform: uppercase;
}

div[class^='heading bg-'] .h1 {
  text-transform: capitalize;
}

.heading .display-4 {
  font-weight: 700;
}


.heading .h3 {
  line-height: 1.25;
  text-transform: uppercase;
}

.heading h5 {
  font-weight: 500;
  color: var(--gray-color);
}

.heading h6 {
  font-weight: 400;
  letter-spacing: 2px;
}

.text-red{
  color: var(--third-color) !important;
}
.text-secondary{
  color: var(--secondary-color) !important;
}

.text-normalcase{
  text-transform: none !important;
}

.text-serif{
  font-family: var(--serif);
}

.bg-primary{
  background-color: var(--primary-color) !important;
  color: var(--light);
}
.bg-secondary{
  background-color: var(--secondary-color) !important;
}

.bg-light{
  background-color: var(--light) !important;
}

.bg-secondary-gradient{
  background-image: radial-gradient(circle at 50% -100%, var(--third-color), var(--secondary-color));
}

.bg-image{
  background: center / cover no-repeat fixed;
}

.bg-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 70%);
  z-index: -1;
}

.bg-image.overlay-white::before{
  background: linear-gradient(to left, rgb(255 255 255 / 40%), rgb(255 255 255 / 95%));
}

.scroller{
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cfcfcf;
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.gap-row{
  row-gap: 30px;
}
.gap-form-row{
  row-gap: 10px;
}

.viewmore .button{
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.viewmore .button:hover{
  color: var(--secondary-color);
}

.viewmore .button.text-white:hover{
  text-decoration: underline;
}

.viewmore .button i{
  transition: transform 300ms ease-in-out;
}

.viewmore .button:hover i{
  transform: translateX(5px);
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore .button {
  display: table;
  padding: 10px 15px;
  min-width: 140px;
  color: #fff;
  background-color: var(--secondary-color);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 1;
}

.readmore button {
  border-radius: 0;
  border: none;
  font-size: 14px;
  background: none;
}

.readmore .button:hover {
  background-color: var(--third-color);
}

.readmore .button.bg-white{
  color: #000;
  background-color: #fff;
}

.readmore .button.bg-white:hover{
  color: #fff;
  background-color: var(--secondary-color) !important;
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply{
  mix-blend-mode: multiply;
}

.position-relative{
  z-index: 1;
}

/* custom swiper controls */
.swiper{
  padding: 0 20px;
}

.swiper::before,
.swiper::after{
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 20px;
  background-color: #fff;
  z-index: 2;
}

.swiper-button-next, .swiper-button-prev{
  width: 40px;
    height: 40px;
    margin-top: -20px;
  border-radius: 50%;
  background: url(../images/arrow-left.png) center / 16px no-repeat #fff;
  border: 1px solid var(--secondary-color);
  transition: all 300ms ease-in-out;
}

.swiper::before,
.swiper-button-prev{
  left: 0;
}
.swiper::after,
.swiper-button-next{
  right: 0;
}

.swiper-button-next:hover, .swiper-button-prev:hover{
    background-color: var(--secondary-color);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev{
  transform: rotate(-180deg);
}

.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}

.bottom-control{
  top: calc(100% - 36px);
}

.bottom-control.swiper-button-next{
  right: 13%;
}
.bottom-control.swiper-button-prev{
  left: 13%;
}

.swiper-pagination{
  bottom: 0 !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

/*Footer*/
.footer-area {
  /* background: var(--secondary-color); */
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 1;
  color: #fff;
}

.footer-area p{
  font-size: 13px;
}

.footer-area a{
  display: inline-block;
  color: #fff;
  font-size: 13px;
  padding: 5px 0;
}
.footer-area a:hover{
  color: var(--yellow);
}

.foot-links{
  position: relative;
  z-index: 1;
}

.foot-menu h6{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.foot-menu.socialBox a{
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.footer-bottom{
  padding: 10px 0;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.footer-bottom > div{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo{
  width: 110px;
}

.copyrights{
  margin-right: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.copyrights p{
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 12px;
}

.copyrights p img{
  width: 13px;
  margin-left: 5px;
}

.button-top {
  background: var(--primary-color);
  position: fixed;
  cursor: pointer;
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  z-index: 99;
}

.button-top:hover {
  background: var(--third-color);
}
/*Footer*/

.socialBtn i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

i.fa-facebook-f{
  background-color: var(--facebook);
}
i.fa-twitter{
  background-color: var(--twitter);
}
i.fa-linkedin-in{
  background-color: var(--linkedin);
}
i.fa-instagram{
  background-color: var(--instagram);
}
i.fa-youtube{
  background-color: var(--youtube);
}
i.fa-phone{
  animation: breathe 1s alternate linear infinite;
}
i.fa-tty{
  background-color: var(--youtube);
  animation: breathe 1s alternate linear infinite 500ms;
}
i.fa-envelope{
  animation: breathe 1s alternate linear infinite 1s;
}

/***** Inside pages start *****/
.insideBanner{
    height: 300px;
    margin-top: 66px;
    position: relative;
    background: #140d07;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}
.insideBanner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
  z-index: -1;
  pointer-events: none;
}
.insideBanner img{
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.breadcrumb{
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  padding: 10px 0;
  font-size: 13px;
}

.breadcrumb-item+.breadcrumb-item::before{
  content: '\276D';
}

.breadcrumb li,
.breadcrumb li a{
  color: var(--gray-color);
}

.breadcrumb li a:hover{
  color: var(--secondary-color);
}

.emptybox{
  margin-top: 66px;
}

.emptybox hr{
  border-top-color: var(--secondary-color);
  margin-bottom: 0;
}

.bannerContainer{
  padding: 0 15px;
  width: 100%;
  max-width: 1024px;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  transform: translate(-50%,-50%);
  color: #fff;
  z-index: 1;
}

.bannerContainer .h1,
.bannerContainer .h2{
  font-weight: 700;
  text-transform: capitalize;
}

/* contact page */
.form-details .inner {
  background-color: var(--primary-color);
  padding: 2rem;
  border-radius: 10px 0 0 10px;
}

.address-details .inner {
  padding: 2rem;
  border: 1px solid rgb(0 0 0 / 10%);
  height: 100%;
  border-radius: 0 10px 10px 0;
}

.address-details .contact-details li a,
.address-details .inner p {
  color: rgb(0 0 0 / 50%);
}

.address-details .contact-details li {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.address-details .contact-details li:not(:last-of-type) {
  margin-bottom: 10px;
}

.address-details .contact-details li i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(0 0 0 / 10%);
  color: var(--primary-color);
}

.address-details .contact-details li a:hover {
  color: var(--secondary-color);
}
/* contact page */
/***** Inside pages end *****/

.form-group {
  margin-bottom: 20px;
}

.form-group>div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 30%);
  background: none;
  outline: none;
  height: auto;
  padding: 10px 0;
}

.form-control[readonly] {
  background: none;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}
.form-control.form-control-white {
  border-bottom-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.form-control.form-control-white::placeholder {
  color: rgb(255 255 255 / 70%);
}

.form-control.form-control-white:focus {
  border-bottom-color: #fff;
}
/* customize modal */
.modal-backdrop.show{
  opacity: 1;
  background: rgb(201 20 20 / 92%);
  backdrop-filter: blur(5px);
}

.close{
  font-weight: 200;
  font-size: 3rem;
  color: #fff;
  opacity: .75;
  box-shadow: none;
}

.close:hover{
  color: #fff;
  opacity: 1 !important;
}

.modal-content{
  border: 0;
  border-radius: 0;
}

.note {
  font-size: 10px;
  display: block;
  margin-top: 3rem;
}
/* customize modal */

/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut{
  transform: scale(0);
  transition: all .8s ease-in-out;
}

.zoomIn{
  transform: scale(1);
}
/*transformation Animation*/

.list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.list li::before{
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../images/bullet.png) center / contain no-repeat;
  left: 0;
  top: 4px;
  pointer-events: none;
}
