body {
  margin: 0;
  font-family: var(--def-font);
}
:root {
  --def-font: "Montserrat", sans-serif;
  --sec-font: "Poppins", sans-serif;
  --light-color: #fff;
  --dark-color: #343434;
  --sDark-color: #1c1c1c;
  --pDark-color: #748182;
  --list-color: #222;
  --main-color: #0078ff;
  --bg-main-color: #f4f4f4;
  --bg-gray: #f7f7f7;
}
p {
  font-family: var(--sec-font);
  color: var(--pDark-color);
}
h2,
h3,
h4,
h6 {
  color: var(--dark-color);
}

/* *************************** 
Styling for header Navbar
******************************* */
.navbar .navbar-nav .nav-link {
  color: var(--light-color);
  font-size: 15px;
  font-family: var(--sec-font);
  padding: 0px 20px;
  position: relative;
}
.navbar .navbar-nav .nav-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--light-color);
  position: absolute;
  bottom: 0;
  left: 20px;
  transition: all 0.3s ease-in;
}
.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  width: 50%;
}
.navbar .navbar-brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--light-color);
}

/* *************************** 
Styling for header Content
******************************* */
#header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.601)),
    url("../Daniels-img/bg.jpg");
  background-position: center;
  background-size: cover;
}
#header .head-content {
  color: var(--light-color);
}
#header .head-content h5 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 10px;
}
#header .head-content h1 {
  font-size: 60px;
  padding: 12px 0;
  font-weight: 200;
}
#header .head-content h1 span::before {
  content: "";
  animation: typingLoop 7s infinite;
}
@keyframes typingLoop {
  /* Typing Larry Daniels */
  0% {
    content: "";
  }
  2% {
    content: "L";
  }
  4% {
    content: "La";
  }
  6% {
    content: "Lar";
  }
  8% {
    content: "Larr";
  }
  10% {
    content: "Larry";
  }
  12% {
    content: "Larry ";
  }
  14% {
    content: "Larry D";
  }
  16% {
    content: "Larry Da";
  }
  18% {
    content: "Larry Dan";
  }
  20% {
    content: "Larry Dani";
  }
  22% {
    content: "Larry Danie";
  }
  24% {
    content: "Larry Daniel";
  }
  26% {
    content: "Larry Daniels";
  }

  /* Delete Larry Daniels */
  28% {
    content: "Larry Daniel";
  }
  30% {
    content: "Larry Danie";
  }
  32% {
    content: "Larry Dani";
  }
  34% {
    content: "Larry Dan";
  }
  36% {
    content: "Larry Da";
  }
  38% {
    content: "Larry D";
  }
  40% {
    content: "Larry ";
  }
  42% {
    content: "Larry";
  }
  44% {
    content: "Larr";
  }
  46% {
    content: "Lar";
  }
  48% {
    content: "La";
  }
  50% {
    content: "L";
  }
  52% {
    content: "";
  }

  /* Typing Developer */
  54% {
    content: "D";
  }
  56% {
    content: "De";
  }
  58% {
    content: "Dev";
  }
  60% {
    content: "Deve";
  }
  62% {
    content: "Devel";
  }
  64% {
    content: "Develo";
  }
  66% {
    content: "Develop";
  }
  68% {
    content: "Develope";
  }
  70% {
    content: "Developer";
  }

  /* Delete Developer */
  72% {
    content: "Develope";
  }
  74% {
    content: "Develop";
  }
  76% {
    content: "Develo";
  }
  78% {
    content: "Devel";
  }
  80% {
    content: "Deve";
  }
  82% {
    content: "Dev";
  }
  84% {
    content: "De";
  }
  86% {
    content: "D";
  }
  88% {
    content: "";
  }

  /* Typing Designer */
  90% {
    content: "D";
  }
  92% {
    content: "De";
  }
  94% {
    content: "Des";
  }
  96% {
    content: "Desi";
  }
  97% {
    content: "Desig";
  }
  98% {
    content: "Design";
  }
  99% {
    content: "Designe";
  }
  100% {
    content: "Designer";
  }
}
#header .social-icons ul li {
  font-size: 15px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
}

/* *************************** 
Styling for About Section content
******************************* */
#about .about-img::after {
  content: "";
  width: 85%;
  height: 75%;
  position: absolute;
  bottom: -20px;
  left: -5px;
  background-image: url(../Daniels-img/dots.png);
  background-repeat: repeat;
  z-index: -2;
}
.about-content .sp-cont {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.about-content .progress {
  --bs-progress-height: 1.5rem;
  --bs-border-radius: 5px;

  background: #f7f7f7;
}
.about-content .progress-bar {
  background-color: var(--sDark-color);
  --bs-border-radius: 5px;
  --bs-progress-height: 2rem;
}
.about-content .progress-bar h6 {
  font-size: 13px;
  color: #fff;
  position: absolute;
  left: 5px;
  top: 3px;
}
.about-content .progress-bar::after {
  content: "95%";
  position: absolute;
  right: 10px;
}
.about-content .btn {
  font-size: 13px;
  font-family: var(--sec-font);
  margin-top: 20px;
  padding: 10px 30px;
  background-color: var(--sDark-color);
  color: var(--light-color);
  border: 2px solid var(--sDark-color);
  transition: all 0.5s ease;
}
.about-content .btn.sp-btn {
  background-color: transparent;
  color: var(--sDark-color);
}
.about-content .btn:hover {
  background-color: transparent;
  color: var(--sDark-color);
}
.about-content .btn.sp-btn:hover {
  background-color: var(--sDark-color);
  color: var(--light-color);
}

/* *************************** 
Styling for Services Section content
******************************* */
.head-section h3 {
  font-size: 40px;
  font-weight: 900;
  position: relative;
  z-index: 3;
}
.head-section h3::after {
  content: "";
  width: 15%;
  height: 25px;
  background-image: url("../Daniels-img/dots.png");
  background-repeat: repeat;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
/* *************************** 
Styling for Services Section Card
******************************* */
#services {
  background-color: var(--bg-gray);
  padding: 100px 0;
}
.cards .card-body {
  padding: 60px 15px;
  background: #fff;
  box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border-radius: 5px;
  --bs-border-width: 0;
}
.cards .card-text {
  word-spacing: 2px;
  font-size: 14px;
  width: 80%;
  margin: 0 auto;
}
.cards .card-body i {
  background-color: var(--bg-main-color);
  transition: all 0.6s ease;
}
.cards .card-body:hover i {
  background-color: var(--sDark-color);
  color: var(--light-color);
}

/* *************************** 
Styling for Portfolio Section Cards
******************************* */
#portfolio {
  padding: 100px 0;
}
#portfolio .item {
  overflow: hidden;
}
#portfolio .layer {
  background-color: #ffffffeb;
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 7px;
  right: 7px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(10px);
}
#portfolio .item:hover .layer,
#portfolio .layer:hover h6,
#portfolio .layer:hover i {
  opacity: 1;
  transform: translateY(0);
}
#portfolio .layer h6 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  transform: translateY(-20px);
  transition: all 0.5s ease;
}
#portfolio .layer i {
  font-size: 12px;
  padding: 8px;
  color: var(--light-color);
  background-color: var(--dark-color);
  border-radius: 50%;
  transform: translateY(10px);
  transition: all 0.5s ease;
}
#portfolio .nav-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #222;
  position: absolute;
  bottom: 0;
  left: 20%;
  transition: all 0.5s ease;
}
#portfolio .nav-link.active::after {
  width: 50%;
}

#portfolio .nav-link {
  color: #222;
  --bs-nav-pills-link-active-bg: transparent;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
/* *************************** 
Styling for Testimonials Section 
******************************* */
#testimonials {
  background-color: var(--bg-gray);
  padding: 100px 0;
}
#testimonials .test-p {
  word-spacing: 2px;
}

#testimonials .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: var(--pDark-color);
  border-radius: 50%;
}
/* *************************** 
Styling for Counter Section 
******************************* */
#counter {
  padding: 100px 0;
}
/* *************************** 
Styling for Our-team Section 
******************************* */
#our-team {
  background-color: var(--bg-gray);
  padding: 100px 0;
}
#our-team .our-cards .card-body {
  background-color: #5b5b5b;
}
#our-team .our-cards .card {
  position: relative;
  overflow: hidden;
}
#our-team .card h5 {
  font-weight: bold;
  text-transform: uppercase;
}
#our-team .our-cards .our-layer {
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 5px;
  bottom: 127px;
  left: 5px;
  right: 5px;
  opacity: 0;
  transform: rotateY(180deg) scale(0.5, 0.5);
  transition: all 0.5s ease;
}

#our-team .card .img-area {
  overflow: hidden;
  cursor: pointer;
}
#our-team .our-cards .card .img-area img {
  transition: all 0.5s ease;
}
#our-team .our-cards .card .img-area:hover img {
  transform: scale(1.2);
}
#our-team .our-cards .card:hover .our-layer {
  opacity: 1;
  transform: rotateY(0deg) scale(1, 1);
}

#our-team .our-cards .our-layer ul li {
  padding: 15px;
  margin: 0 10px;
  font-size: 25px;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  width: 15%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#our-team .our-cards .our-layer ul li a {
  color: #fff;
}
/* *************************** 
Styling for Contact-us Section 
******************************* */
#contact-us {
  padding: 100px 0;
}
#contact-us .contact-det i {
  background-color: var(--bg-gray);
  transition: all 0.5s ease;
}
#contact-us .contact-det:hover i {
  color: #ccc;
  background-color: #1c1c1c;
}
.form-control:focus {
  box-shadow: none;
  border: none;
}
#contact-form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
  resize: both;
}
#contact-form .btn {
  background: #1c1c1c;
  color: #eee;
  padding: 10px 40px;
  transition: all 0.5s ease;
}
#contact-form .btn:hover {
  background-color: #fff;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}
/* *************************** 
Styling for Footer Section 
******************************* */
footer {
  background-color: var(--sDark-color);
  padding: 25px 0 20px;
  text-align: center;
}
footer p {
  font-size: 13px;
  word-spacing: 2px;
}

@media  (max-width: 768px) {
      #about .about-img::after {
    display: none;
}
}