body {
  background-color: rgb(0, 0, 0);
}
/*Default style*/
.dark-bg {
  background-color: rgb(0, 0, 0);
}
.secondary-heading {
  text-align: center;
  font-size: 26px;
  color: #8d7339;
  line-height: 1.5;
  font-weight: bold;
}
.padding-100 {
  padding: 0 100px;
}
.grid--3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 15px;
}

.sidebar-floating-img {
  width: 30%;
  position: absolute;
  right: -100px;
  top: -60px;
  opacity: 50%;
  transform: rotate(50deg);
  overflow: hidden;
}
/*Default style*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Mulish', sans-serif;
  /* font-family: 'Noto Sans', sans-serif; */
}
.custom-nav {
  background-color: rgb(0, 0, 0) !important;
  padding: 0 100px !important;
}
.armani-logo img {
  width: 20%;
}
.custom-nav ul li a {
  color: #fff !important;
}
/*About Section Start*/
.about-section {
  padding: 50px 0;
  background-color: black;
  position: relative;
  overflow: hidden;
}
.intro-title {
  text-align: center;
  font-size: 36px;
  font-family: 'great-vibes', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #d7a62e;
}

.armani-about-details {
  display: flex;
  gap: 60px;
  padding: 0 100px;
}
.about-inner-heading {
  color: rgb(197, 197, 197);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.about-content p {
  color: #858585;
  font-size: 15;
  line-height: 1.7;
  text-align: justify;
}
.about-img {
}
.about-content {
  /* border: 1px solid tomato; */
  /* padding: 20px; */
}
.learn-more-btn {
  padding: 10px 25px;
  background-color: #b4780b;
  font-size: 16px;
  color: #fff;
}

/*What We Provide*/
.what-we-provide {
  background-color: rgb(0, 0, 0);
  padding: 0 100px;
}

.wwp-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 30px;
  margin: 30px 0;
}

.wwp-box {
  /* border: 1px solid tomato; */
  padding: 20px 25px;
  box-shadow: 1px 1px 15px 2px #ffb7001e;
  border: 1px solid #d7a72e32;
}

.wwp-box h3 {
  color: #fff;
  font-size: 26px;
  text-align: center;
  line-height: 2;
}

.wwp-box p {
  color: #858585;
  font-size: 16px;
  text-align: center;
}

/*Pricing Section*/
.pricing-box {
  padding: 100px;
  border: 1px solid goldenrod;
}

/*Achievement Section Start*/
.achievement-box {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 40px;
}

.achievement-left-box {
  flex-basis: 50%;
}
.achievement-left-box p {
  color: #858585;
}

.achievement-inner-heading {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(206, 206, 206);
}
.achievement-right-box {
  position: relative;
}
.achievement-right-box img {
  /* box-shadow: 0 0 15px 5px rgb(43, 43, 43); */
  border-radius: 5px;
}
.achievement-number-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
}

.achievement-num-box {
  /* border: 1px solid #fff; */
  border-radius: 15px;
  padding: 50px 30px;
  background-image: url('../images/count-bx-bg.png');
  background-color: #ffae00;
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  text-align: center;
}
.achievement-num-box-left {
}
.achievement-num-box-right {
}

.achievement-count {
  color: #fff !important;
  font-size: 36px;
  font-weight: 400;
}
.achievement-count-label {
  color: #fff !important;
  font-size: 18px;
  text-transform: uppercase;
}

.floating-image {
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 10%;
  animation-name: floating-image-up;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating-image-up {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}
/*Achievement Section End*/

/*Package Section Start*/
.package-container {
  display: flex;
  justify-content: center;
  margin: 150px 0 80px 0;
}
.package-box {
  margin: 25px;
  border: 1px solid #d7a62e;
  padding: 130px 15px 50px 15px;
  position: relative;
}

.package-box img {
  width: 50%;
  border: 5px solid #b4780b;
  border-radius: 100px;
  position: absolute;
  top: 0;
  transform: translate(40%, -50%);
}

.package-title {
  color: rgb(196, 196, 196);
  font-size: 22px;
  text-transform: uppercase;
  margin: 20px 0;
}

.package-box p {
  color: rgb(121, 121, 121);
}
/*Package Section End*/

/*Media Queries*/

@media only screen and (max-width: 600px) {
  .custom-nav {
    padding: 0 20px;
  }
  /*Default Style*/

  .secondary-heading {
    text-align: center;
    font-size: 26px;
    color: #8d7339;
    line-height: 1.5;
    font-weight: bold;
  }
  .padding-100 {
    padding: 0 20px;
  }
  .grid--3 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    column-gap: 15px;
  }

  /*Default Style*/
  .armani-about-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .about-inner-heading {
    font-size: 26px;
    text-align: center;
  }
  .achievement-inner-heading {
    font-size: 26px;
    text-align: center;
  }
  .about-img img {
    width: 100%;
  }

  .wwp-content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 25px;
  }
  .what-we-provide {
    padding: 20px;
  }

  .achievement-box {
    flex-direction: column;
  }

  .floating-image {
    width: 20%;
    left: 0;
  }

  .achievement-right-box img {
    width: 100%;
  }

  .achievement-box {
    flex-direction: column;
  }

  .achievement-num-box {
    padding: 10px 15px;
  }

  .package-container {
    flex-direction: column;
  }
}
