/*!
 * Author: Akash Bhadange
 */

body {
  /* background-color: #A252D2; */
  background: rgb(89, 83, 67);
  background: linear-gradient(180deg, rgba(89, 83, 67, 1) 0%, rgba(224, 192, 102, 1) 35%, rgba(187, 150, 46, 1) 100%);
  letter-spacing: 0.03em;
}

a {
  color: #7447ae;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

p {
  font-family: "Poppins", serif;
}

section {
  width: 100%;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
}

.purple {
  color: #503023;
}

.pink {
  color: #F04134;
}

.blue {
  color: #E8B897;
}

/* Hero Section */

.hero {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
}

.home1 {
  text-align: center;
}

.home1 img {
  width: 250px;
}

.home4 {
  /* padding: 120px 0px; */
  position: relative;
}

.home4 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.822);
}


.purple1 {
  font-size: 16px;
  font-weight: 300;
  margin-top: 20px;
}

header.hero .row {
  position: relative;
}

a.menu {
  position: absolute;
  right: 0;
  top: 3em;
}

a.menu img {
  max-width: 40px;
}

a.menu:hover {
  transform: translateX(-5px);
  -webkit-transform: translateX(-5px);
}

.hero-text {
  position: absolute;
  top: 20%;
  left: 10%;
}

.hero-text h1 {
  font-family: "Caveat", serif;
  font-size: 130px;
  font-weight: 600;
  color: #fff;
}

.hero-text h1 span {
  font-weight: 300;
  color: #fff;
}

.hero-text p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  font-family: "Poppins", serif;
}


ul.social-links li {
  display: inline-block;
}

ul.social-links li a {
  padding: 5px;
  opacity: 0.6;
}

ul.social-links li.label {
  font-size: 20px;
  opacity: 0.6;
  font-weight: 600;
  color: #000000;
}

ul.social-links li a:hover {
  opacity: 1;
}

ul.social-links li a img {
  max-height: 30px;
  filter: drop-shadow(2px 4px 6px black);
}

/* text animation css start  */

.text-shadow {
  color: transparent;
  -webkit-text-stroke: #fff;
  -webkit-text-stroke-width: 1px;
  text-shadow: 2px 2px 10px #2962ff;
  transition: all 0.5s ease-in-out;
  text-align: center;
  letter-spacing: 0.2em;
  animation: flicker 1s ease-in-out infinite alternate;
}


@keyframes flicker {
  0% {
    opacity: 0.5;
    text-shadow: 2px 2px 10px #2962ff;
  }

  100% {
    opacity: 1;
    text-shadow: 2px 2px 20px #2962ff;
  }
}

/* text animation css end  */

.about1{
  padding: 100px 0px;
}

/* Case study */
.case-study .home2 {
  transform: translateY(-80px);
  -webkit-transform: translateY(-80px);
  padding: 5em 3em;
  background-color: #ffffff;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}


.home2 h1 {
  font-family: "Poppins", serif;
  font-weight: 400;
  color: #4e4c58;
  font-size: 3em;
  position: relative;
  padding-bottom: 10px;
}

.home2 h1 span {
  font-weight: 600;
}

.home2 h1:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 100px;
}

.home2 h1.purple:after {
  background-color: #503023;
}

.home2 h1.pink:after {
  background-color: #F04134;
}

.home3 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.home3 a {
  text-decoration: none;
  background-color: #503023;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 25px;
}

.home3 a:hover {
  animation: bounce 4s ease-in-out infinite;
}

.home5 {
  text-align: center;
}

.home5 img {
  width: 150px;
  filter: drop-shadow(2px 4px 6px black);
}


/* Statistics */
.stats {
  margin: 2em 0;
}

.stat-box {
  padding: 30px;
}

.stat-box h2 {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 40px;
}

.stat-box h3 {
  font-family: "Poppins", serif;
  font-weight: 600;
  color: #4e4c58;
  font-size: 15px;
}



/* Footer */
.footer {
  background-color: #1C100D;
  padding: 5em;
}

.footer h1 {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-size: 3em;
  color: #fff;
  margin-bottom: 2em;
}

.footer h1 span {
  color: #fff;
  font-weight: 300;
}

.footer h1:after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-40px, 10px);
}

.footer ul.social-links li a {
  padding-left: 12px;
  padding-right: 12px;
}

.footer ul.social-links li a img {
  max-height: 40px;
}

.footer2 a img {
  width: 200px;
  margin-bottom: 30px;
}

/* Sub-footer */
.sub-footer {
  background-color: #1c100ded;
  padding: 2em;
  font-family: "Poppins", serif;
  font-weight: 300;
  box-shadow: #fff 0px 7px 29px 0px;
}

.sub-footer p {
  margin: 0;
  font-size: 1.2em;
  color: #fff;
}

.sub-footer p a {
  color: #fff;
}

.sub-footer p a:hover {
  opacity: 0.8;
}


/* Main navigation */
nav {
  height: 40px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 3em;
  cursor: pointer;
  transition: .25s ease-in-out;
  z-index: 9;
}

#menu-toggle {
  width: 40px;
  clear: both;
  float: right;
}

#menu-toggle span.line {
  display: block;
  height: 4px;
  width: 40px;
  background-color: #ffffff;
  transition: .25s ease-in-out;
}

#menu-toggle .hamburger span.line {
  margin-bottom: 0.45em;
  clear: both;
  float: right;
}

#menu-toggle .hamburger span.line:nth-child(1) {
  width: 30px;
  transition-delay: .25s;
}

#menu-toggle .hamburger span.line:nth-child(2) {
  transition-delay: .325s;
}

#menu-toggle .hamburger span.line:nth-child(3) {
  width: 20px;
  transition-delay: .475s;
}

#menu-toggle .cross span.line {
  width: 0px;
  position: absolute;
  top: 10px;
  right: 0;
}

#menu-toggle .cross span.line:nth-child(1) {
  transform: rotate(45deg);
  transition-delay: .0s;
}

#menu-toggle .cross span.line:nth-child(2) {
  transform: rotate(-45deg);
  transition-delay: .25s;
}

#menu-toggle.open .hamburger span.line {
  width: 0px;
}

#menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}

#menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: .125s;
}

#menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: .25s;
}

#menu-toggle.open .cross span.line:nth-child(1) {
  width: 40px;
  transition-delay: 1s;
}

#menu-toggle.open .cross span.line:nth-child(2) {
  width: 40px;
  transition-delay: 1.25s;
}

ul.main-nav {
  padding-right: 20px;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: .25s all;
}

ul.main-nav li {
  position: relative;
  display: inline-block;
}

ul.main-nav li a {
  color: #ffffff;
  font-family: "Poppins", serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 15px;
  display: block;
  text-decoration: none;
}

ul.main-nav li a:hover {
  color: #ffbe61;
}

/* Show navigation */
ul.main-nav.show-it {
  opacity: 1;
  visibility: visible;
  transition-delay: .25s;
}

/* Dropdown menu */
ul.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: rgba(0, 0, 0, 0.9);
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

ul.main-nav .dropdown-menu li {
  display: block;
}

ul.main-nav .dropdown-menu li a {
  padding: 8px 15px;
  color: #fff;
  white-space: nowrap;
}

ul.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.footer1 {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer1 a {
  color: #ffffff;
  text-decoration: none;
}

/* scroll bar css start  */

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: black;
}

body::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 20px;
  border: 3px solid black;
}

/* scroll bar css end  */

/* scroll to top css start  */
.progress-wrap {
  position: fixed;
  bottom: 90px;
  right: 40px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 400ms linear;
  background-color: #503023;
  border: 1.2px solid #000;
}

.progress-wrap i {
  position: absolute;
  color: #ffffff;
  font-size: 14px;
  z-index: 2;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #ffffff;
  stroke-width: 4;
  transition: stroke-dashoffset 0.4s linear;
}

/* scroll to top css end  */

/* loader css start  */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffffffa;
  /* White background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.loader-logo {
  width: 350px;
  height: auto;
  margin-bottom: 20px;
  animation: fadeInOut 6s ease-in-out infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.loading-text {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  position: absolute;
  bottom: 50px;
  /* Show at the bottom */
}


/* loader css end  */


/* Let's optimise it for mobile devices */

@media (max-width: 720px) {
  .btn-lg {
    padding: .8em 3em;
    font-size: .8em;
  }

  .home2 h1 {
    font-size: 2em;
  }

  header.hero {
    text-align: center;
    padding-bottom: 0;
  }

  header.hero h1 {
    font-size: 2em;
    margin-top: 1.5em;
  }

  header.hero h3 {
    font-size: 1.2em;
    line-height: 1.6em;
  }

  ul.social-links li.label {
    display: block;
    font-size: 16px;
    margin-bottom: 1em;
  }

  ul.social-links li a {
    opacity: 1;
  }

  .testimonial {
    padding-top: 3rem;
  }

  .case-study .col-md-12 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .case-study .col-md-12 {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }

  /*Swiper classes*/
  .client-box.swiper-slide-next {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: none;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .swiper-container {
    padding: 4em 0em;
  }

  .client-box {
    padding: 1em;
    text-align: center;
  }

  .stat-box {
    padding: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .stat-box h1 {
    font-size: 3.6em;
  }

  .stat-box h3 {
    font-size: 1.4em;
  }

  .contact-banner {
    padding: 2em;
  }

  .contact-banner h1 {
    font-size: 2em;
  }

  .footer {
    padding: 1em 0em;
  }
}


@media only screen and (min-width: 300px) and (max-width: 519px) {
  .home4 {
    padding: 75px 0px;
    position: relative;
    background-size: 100% 100% !important;
    background-attachment: revert !important;
  }

  .hero-text h1 {
    font-family: "Caveat", serif;
    font-size: 4.5em;
    font-weight: 600;
    line-height: 1.0em;
    color: #fff;
  }
}