@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap");

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
}

body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
/* body {
  -ms-overflow-style: none; /* IE and Edge 
  scrollbar-width: none; /* Firefox 
  /* height: 100%; 
} */
/*css for navigation*/

/* #Navigation
================================================== */

.navbar {
  font-family: "Martel Sans", sans-serif;
  font-size: 12px;
}

#navbarSupportedContent {
  opacity: 1;
  transition: all 0.3s ease-out;
}
#navbarSupportedContent.scroll-on {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.start-header {
  opacity: 1;
  width: 100%;
  transform: translateY(0);
  padding: 20px 0;
  z-index: 2;
  /* box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15); */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* background-color: rgba(159, 231, 216, 0.2); */
}
.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* height:25px; */
  background-color: rgba(0, 0, 0, 0.2);
  /* background: url("../images/IMG_3647.JPG") 100% 100% no-repeat;
  background-position: 100% 100%;
  background-size: cover, cover;
  position: fixed; */
}
.menuIcon1 {
  font-size: 10px;
  color: white;
  opacity: 1;
  margin-top: 10px;
  animation: blink 0.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
  -webkit-animation: blink 0.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
  cursor: pointer;
}
.menuIcon2 {
  font-size: 10px;
  color: white;
  opacity: 0;
}

.scroll-on .menuIcon2 {
  opacity: 1;
  /* margin-top: 10px;
  animation: blink 0.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate;
  -webkit-animation: blink 0.5s cubic-bezier(0.5, 0, 1, 1) infinite alternate; */
  cursor: pointer;
}

@keyframes blink {
  from {
    opacity: 1;
    font-size: 10;
  }
  to {
    opacity: 0;
    font-size: 5;
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 1;
    font-size: 10;
  }
  to {
    opacity: 0;
    font-size: 5;
  }
}
.start-header.scroll-on .navbar-brand img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  padding: 0;
}
.navbar-brand img {
  height: 28px;
  width: auto;
  display: block;
  /* filter: brightness(10%); */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}
.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: all 200ms linear;
}
.nav-item:hover .nav-link {
  color: #21c4d3 !important;
  text-decoration: none;
}
.nav-item.active .nav-link {
  color: #777 !important;
}
.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
}
.nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  /* background-color: #8167a9; */
  opacity: 0.5;
  transition: all 200ms linear;
}
.nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}
.nav-item.active:hover:after {
  opacity: 0;
}
.nav-item {
  position: relative;
  transition: all 200ms linear;
}
a {
  text-transform: uppercase;
}

.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0;
  margin: 0;
  transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
  /* padding: 20px!important; */
  display: none;
  position: absolute;
  margin: 0;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  background-color: transparent;
  border: none;
  border-radius: 3px;
  /* box-shadow: 5 5px 10px 5 rgba(138, 155, 165, 0.747); */
  transition: all 200ms linear;
  font-family: "Martel Sans", sans-serif;
  font-size: 12px;
  -webkit-box-shadow: 2px 2px 5px 2px rgba(43, 42, 42, 0.863);
  -moz-box-shadow: 2px 2px 5px 2px rgba(43, 42, 42, 0.863);
  box-shadow: 2px 2px 5px 2px rgba(43, 42, 42, 0.863);
}


.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  box-shadow: 5 5px 10px 5 rgba(138, 155, 165, 0.747);
  padding: 5px 20px;
  color: #fff;
  border-radius: 2px;
  transition: all 200ms linear;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #c1b6ac;
  background-color: transparent;
}

/*Css for Left Right Navigation*/

.parentLeft {
  height: 60px;
  width: 60px;
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.parentLeft:hover .circleLeft {
  height: 40px;
  width: 40px;
  margin-left: 15px;
  border: 1px solid rgba(255, 255, 255, 1);
  transition: all 0.3s ease-out;
}

.circleLeft {
  position: absolute;
  background: transparent;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  border: 1px solid rgba(255, 255, 255, 1);
  margin-top: 20px;
  margin-left: 20px;
  /* border-width: 1px; */
  border-style: solid;
  /*   animation: blinker 0.6s infinite ease-out alternate; */
  cursor: pointer;
}

.lineLeft {
  position: absolute;
  height: 1px;
  width: auto;
  margin-top: 35px;
  margin-left: 20px;
  transition: all 0.4s ease-out;
  background: rgb(0, 255, 255);
  background-size: 200% 100%;
  background-position: bottom left;
}
.lineLeft::after {
  content: "WEBSITE DESIGN";
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 100;
  /* clear: both; */
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  color: white;
}
.parentRight {
  height: 60px;
  width: 60px;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
.parentRight:hover .circleRight {
  height: 40px;
  width: 40px;
  margin-left: 15px;
  border: 1px solid rgba(255, 255, 255, 1);
  transition: all 0.3s ease-out;
}

.circleRight {
  position: absolute;
  background: transparent;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  border: 1px rgba(255, 255, 255, 1);
  margin-top: 20px;
  margin-left: 20px;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
}

.lineRight {
  position: absolute;
  background: aqua;
  height: 1px;
  width: auto;
  margin-top: 35px;
  margin-left: 20px;
  transition: all 0.4s ease-out;
  background-size: 200% 100%;
  background-position: bottom right;
}

.lineRight::after {
  content: "MOBILE APP";
  font-family: "Poppins", sans-serif;
  background: #fff;
  left: 100%;
  font-size: 12px;
  font-weight: 100;
  clear: both;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  color: white;
}

/*End of left right navigation css*/

/*CSS for Scroll down Navigation*/
.downNavigation {
  position: absolute;
  transform: translateY(320%);
  z-index: 2;
  text-align: center;
  left: 48%;
  /* margin-left: 50%; */
  /* background: black;  */
}

.parentDown {
  height: 60px;
  width: 60px;
  position: relative;
  cursor: pointer;
  /* width: 50%; */
  margin: 0 auto;
  /* background: black; */
}


.circleDown {
  position: absolute;
  background: transparent;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  border: 1px #b58048;
  margin-top: 10px;
  margin-left: 10px;
  border-width: 1px;
  border-style: solid;
  /* animation: blinker 1s infinite ease-out; */
  cursor: pointer;
}


@keyframes animateD {
  from {
    width: 40px;
    background: #ff4500;
  }

  to {
    width: 1px;
    margin-left: 40px;
    background: #ff847c;
  }
}

/* @keyframes blinker {
  from {
    opacity: 1.0;
    
  }
  to {opacity: 0.0;}
} */

@keyframes blinkerDown {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleyY(1);
  }
}

/*CSS End for DownNavigation*/

/*CSS for Scroll Up Navigation*/
.upNavigation {
  /* position: absolute; */
  /* transform: translateY(-10px); */
  z-index: 2;
  text-align: center;
  /* left: 48%; */
}

.parentUp {
  height: 60px;
  width: 60px;
  position: relative;
  cursor: pointer;
  /* width: 50%; */
  margin: 0 auto;
  /* background: black; */
}

.circleUp {
  position: absolute;
  background: transparent;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  border: 1px rgba(255, 255, 255, 1);
  margin-top: 15px;
  margin-left: 15px;
  border-width: 1px;
  border-style: solid;
  /* animation: blinker 1s infinite ease-out; */
  cursor: pointer;
}

.lineUp {
  position: absolute;
  background: #ff9e03;
  height: 60px;
  /* width: 1px; */
  margin-bottom: 0px;
  margin-left: 20px;
  transition: all 0.5s ease-out;
  /* background: linear-gradient(to right,black 10%,aqua 90%); */
  /* background-size: 100% 200%; */
  /* background-position: left top; */
  animation: animateU 0.75s forwards, blinkerUp 1.5s infinite ease-out;

  transform-origin: 50% 100%;
}

@keyframes animateU {
  from {
    width: 30px;
    background: rgba(255, 255, 255, 1);
  }

  to {
    width: 1px;
    margin-left: 30px;
    background: #ff9e03;
  }
}

@keyframes blinkerUp {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleyY(1);
  }
}

.slide1 {
  height: 100vh;
  background-image: linear-gradient(rgba(10, 0, 0, 0.2), rgba(10, 0, 0, 0.4)), url("../images/IMG_3647.JPG");
  background-position: center center, center center;
  background-size: cover, cover;

}


.slide1 h1 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  line-height: 90px;
  font-weight: 600;
  position: relative;
}

#header1 span{
  opacity: 0;
}

.slide3 h1 {
  color: #e9c705d7;
  font-family: "Poppins", sans-serif;
  font-size: 70px;
  line-height: 70px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.slide3 p {
  z-index: 1;
}


.slide2 #header2 {
  /* font-family: 'one_dayregular'; */
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  /* font-family: 'lorabold_italic'; */
  margin: 1% 1%;
  text-align: center;
  line-height: 1.4em;
  text-align: center !important;
  font-size: 40px !important;
  z-index: 1;
  position: absolute;
  /* letter-spacing: 1px; */
}

.slide2 #header2 span {
  font-family: "Roboto Condensed", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px white;
  font-size: 5vw !important;
  /* stroke-width: 10px; */
  /* font-weight: 600; */
  /* stroke: rgba(0, 0, 0, 0.2); */
}

.img-loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: #000; */
}


.slide4 p {
  color: #67727e;
}

.slide5 ul{
  text-decoration: none;
  list-style: none;
  
}

.slide5 ul li{
  line-height: 35px;
}

.slide8{
  margin: 0;
  transform: translateY(-40px);
  transition: all 1s ease-in-out;
}
.p1 {
  color: #fff;
  font-size: 16px;
  font-weight: 2px;
}

#shareIcon,
#socialMedia {
  z-index: 1000;
  cursor: pointer;
}

/* Footer Animation */

.footer {
  z-index: 1;
  font-size: 11px;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 0px;
}
.footerContainerLeft {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 40px;
  height: 100px;
  /* width: 300px; */
  overflow: hidden;
  /*   border: 1px solid #000; */
  cursor: pointer;
  float: left;
}
.leftCenter {
  margin-top: 50px;
  transition: all 0.4s ease-in-out;
}

.leftCenter a {
  margin: 20px;
}

.leftBottom {
  /* opacity: 0; */
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.4s ease-in-out;
}

.footerContainerLeft:hover .leftCenter {
  margin-top: 20px;
  margin-left: 0px;
  transition: all 0.3s ease-in-out;
}

.footerContainerLeft:hover .leftCenter a {
  margin-left: 0px;
  transition: all 0.3s ease-in-out;
}

.footerContainerLeft:hover .leftCenter .fa-copyright {
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.footerContainerLeft:hover .leftBottom {
  /* opacity: 1; */
  visibility: visible;
  margin-bottom: 30px;
  padding-left: 10px;
  transform: translateY(0);
  font-size: 12px;
  letter-spacing: 2px;
}

.footerContainerRight {
  display: flex;
  height: 100px;
  /* width: 300px; */
  overflow: hidden;
  cursor: pointer;
  float: right;
  flex-direction: column;
  justify-content: space-between;
  
}

.RightCenter {
  margin-top: 50px;
  margin-left: 50%;
  transition: all 0.3s ease-in-out;
  display: flex;
}

.RightCenter .fa-share-alt {
  margin-left: 20px;
}

.RightBottom {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  /* border: 1px solid #000; */
  margin-left: 10%;
}

.footerContainerRight:hover .RightCenter .fa-share-alt {
  visibility: hidden;
  opacity: 0;
}

.footerContainerRight:hover .RightCenter {
  margin-top: 20px;
  overflow: hidden;
  display: inline;
  transition: all 0.3s ease-in-out;
}

.footerContainerRight:hover .RightCenter a {
  margin-left: 50%;
  transition: all 0.3s ease-in-out;
}

.footerContainerRight:hover .RightBottom {
  opacity: 1;
  visibility: visible;
  transform: translateY(-60px);
  transition: all 0.5s ease-in-out;
}

.footer ul {
  display: flex;
  position: absolute;
  margin-left: 40%;
}

.footer ul li {
  list-style: none;
  text-decoration: none;
  /* margin: 0 1px; */
}

.footer ul li a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  /*   background: #333; */
  border-radius: 50%;
  color: #666;
  font-size: 10px;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0;
  text-transform: capitalize;
}

.footer ul li a:before {
  content: "";
  position: absolute;
  
  border-radius: 50%;
  transform: scale(0.9);
}

.footer ul li a:hover:before {
  transform: scale(0.9);
}

.footer ul li a:hover {
  color: #ffee10;
  box-shadow: 0 0 10px #ffee10;
  text-shadow: 0 0 10px #ffee10;
}
