@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
.web-bg {
  background-image: url('../bg.jpg');
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

body {
  color: #ffffff;
  font-family: 'Poppins', sans-serif !important;
}

.nav-toggler {
  cursor: pointer;
}

.welcome-sec {
  height: 80vh;
  max-width: 50%;
}

.title {
  font-weight: bold;
  font-size: 48px;
}

.subtitle {
  font-weight: bold;
  font-size: 48px;
}

.btn-purple {
  background-color: #ff0066;
  color: #fff;
}

.btn-purple:hover {
  background-color: #ff0066d2;
  color: #fff;
}

.btn-purple:focus {
  box-shadow: none;
}

.btn-purple-square{
  background-color: #ff0066;
  color: #fff;
  border-radius: 0;
}

.btn-purple-square:hover {
  background-color: #ff0066d2;
  color: #fff;

}
.btn-purple-square:focus {
  box-shadow: none;

}

.btn-outline-purple {
  border: 1px solid #ff0066;
  color: #ff0066;
  transition: .5s;
}

.btn-outline-purple:hover {
  background-color: #ff0066;
  color: #fff;
  transition: .5s;
}

.btn-outline-purple:focus {
 box-shadow: none;
}
.text-color {
  color: #1a1a1a;
}

.experience {
  display: flex;
  align-items: center;
  

  
}

.exp-year {
  color: #ff0066;
  font-weight: bold;
  font-size: 64px;
  padding: 1rem 0.5rem;
  align-self: center;

}

.exp-desc {
  max-width: 200px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  align-self: center;

  
}



/* Skills Counter */

.chart {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 150px;
  text-align: center;
}

.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.percent {
  display: inline-block;
  line-height: 150px;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
}

.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: .8em;
}

/* Skills Counter End */


.product{
  margin: 1rem !important;
  border-radius: 0;
  border: none;
}

.card-img-overlay{
 background-color: #1a1a1a77;
}

.owl-dot:focus{
  outline: none !important;
  border: none !important;
}

.owl-dot.active span{
  background-color: #ff0066 !important;
}
.owl-dot:hover span{
  background-color: #ff0066ad !important;
}

.work-process{
  background-image: url("../star.png") !important;
  
}
.work-process .card-body{
  z-index: 1 !important;
}


.process-title{
  font-size: 20px;
  font-weight: bold;
}
.process-sub{
  font-size: 14px;
}

.process-overlay{
  background-color: #0e082752;  
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.secondary-bg{
  background-color: #f9f9f9;
}

.services i{
  color: #ff0066;
  margin-left: 1rem;
  font-size: 1.5rem;
}

.btn-service{
  background-color: #f6f6f6 !important;
  padding: 1rem;
  border: 1px solid #aaaaaa;
  margin: 0.5rem;
  width: 100%;
  font-weight: bold;
  transition:all .5s;
}

.btn-service:hover{  
  border: 1px solid #f6f6f6;
  
}

.services button:focus{
  outline: none;  
  box-shadow: none;
}

footer{
  background-color: #0e1118;
}

.info-item{
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.info-item .icon{
  margin-right: 1rem;  
}

.info-item .icon i{
  font-size: 2rem;
  color: #ff0066;
}

.info-title{
  font-size: 12px;
  color: #9d9ea3;
}
.info-text{
  font-weight: bold;
  font-size: 20px;
}

.form {
  margin-top: 2rem;
}

.form input{
  margin: 1rem 1rem;
  padding: 2rem;
  background-color: #1e212a;
  border: none;
  color: #fff;
}

.form input:focus{
  background-color: #1e212a;
  box-shadow: none;
  color: #fff;
}

.footer-end{
  background-color: #14151a;
  
}

/* The side navigation menu */

.sidenav {
  height: 100%;
  /* 100% Full-height */
  width: 0;
  /* 0 width - change this with JavaScript */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Stay on top */
  top: 0;
  /* Stay at the top */
  right: 0;
  background-color: #111;
  /* Black*/
  overflow-x: hidden;
  /* Disable horizontal scroll */
  padding-top: 60px;
  /* Place content 60px from the top */
  transition: 0.5s;
  /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */

.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */

#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}