/*
* ----------------------------------------------------------------------------------------
Author       : msjalal_themes
Template Name: Banjo - Personal Portfolio HTML Template
Version      : 1.0                                          
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.Global CSS Style
* 02.Preloader CSS Style
* 03.Menu CSS Style
* 04.Header CSS Style
* 05.About CSS Style
* 06.Timeline CSS Style
* 07.Skill CSS Style
* 08.Service CSS Style
* 09.Project CSS Style
* 10.Testimonial CSS Style
* 11.Price CSS Style
* 12.BLOG CSS Style
* 13.Company CSS Style
* 14.Contact CSS Style
* 15.Footer CSS Style
* 16.Back to Top Icon CSS Style
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 01.Global CSS Style
* ----------------------------------------------------------------------------------------
*/
:root {
  --primary-color: #F4F3ED;
  --main-color: #070707;
  --heading-color: rgb(29, 29, 38);
  --text-color: #1F1F1F;
  --black-color: #070707;
  --white-color: #fff;
  --gray-color: #E6EAEE;
  --border-color: #ddd;
  --btn-color: #333;
  --btn-hover: #333;
  --hover-color: #1F1F1F;
  --body-background: #F4F3ED;
  --text-font: "Poppins", sans-serif;
  --title-font: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", serif;
  font-size: 14px;
  line-height: 24px;
  background-color: var(--body-background);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.btn-box {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background-color: #ff720f;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  color: #fff;
  position: relative;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  padding: 12px 24px;
}

.btn-box i {
  position: absolute;
  font-size: 14px;
  top: 18px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn-box:hover {
  background-color: #333;
}

.btn-box:hover i {
  left: 5px;
  visibility: visible;
  opacity: 1;
}

.theme-btn {
  background: var(--black-color);
  color: var(--white-color);
  cursor: pointer;
  display: inline-block;
  border: 1px solid var(--border-color);
  font-size: 16px !important;
  font-weight: 500;
  line-height: 20px;
  margin: 0 5px 10px 0;
  overflow: visible;
  border-radius: 7px;
  padding: 20px 34px;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s
}

.theme-btn:hover {
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--black-color);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background: var(--gray-color);
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}


/*
* ----------------------------------------------------------------------------------------
* 02.Preloader CSS Style
* ----------------------------------------------------------------------------------------
*/
#loading {
  background-color:var(--black-color);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);

}

.object {
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid #FFF;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #FFF;
  border-right: 5px solid transparent;

  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;

}

#object_one {
  left: 75px;
  top: 75px;
  width: 50px;
  height: 50px;
}

#object_two {
  left: 65px;
  top: 65px;
  width: 70px;
  height: 70px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#object_three {
  left: 55px;
  top: 55px;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

#object_four {
  left: 45px;
  top: 45px;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;

}

@-webkit-keyframes animate {
  50% {

    -ms-transform: rotate(360deg) scale(0.8);
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}

@keyframes animate {

  50% {

    -ms-transform: rotate(360deg) scale(0.8);
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }

}

/*
* ----------------------------------------------------------------------------------------
* 03.Menu CSS Style
* ----------------------------------------------------------------------------------------
*/

.menu-area {
  position: fixed;
  padding-top: 20px;
  padding-bottom: 10px;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom: 1px solid #ddd;
}

.menu-area a {
  color: var(--black-color) !important;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-area .navbar-brand {
  font-size: 26px;
  padding-left: 40px;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-area .navbar-brand:hover {
  color: #fff;
}

.navbar-nav li a:hover {
  color: #858181 !important;
}

.menu-area .navbar-brand img {
  width: 100px;
}

/*======Sticky Menu CSS========*/
.menu-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--body-background);
  border-bottom: 1px solid #ddd;
  padding-top:10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.menu-area.sticky a {
  color: var(--black-color) !important;
}

/*
* ----------------------------------------------------------------------------------------
* 04.Header CSS Style
* ----------------------------------------------------------------------------------------
*/
.main-hero-area {
  padding-top: 140px;
  background: var(--primary-color);
  padding-bottom: 60px;
}

.hero-content {
  position: relative;
}

.dev-icon {
  text-align: center;
}

.hero-content h5 {
  font-size: 20px;
  text-align: left;
  text-transform: capitalize;
  color: var(--main-color);

}

.hero-content h5 i {
  margin-right: 10px;
}

.hero-content h2 {
  font-weight: 700;
  font-size: 140px;
  text-transform: uppercase;
  text-align: center;
  color: var(--main-color);
  line-height: 150px;

}

.hero-content h2 span {
  display: block;
  text-align: right;
}

.hero-content p {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-color);
}

.hero-btns {
  margin-top: 30px;
}

.hero-content .hero-btns .read-more {
  margin-top: 15px;
  text-decoration: underline;
}

.author-image-part {
  z-index: 1;
  overflow: hidden;
  max-width: 575px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  border-radius: 0 0 580px 565px;
}

.author-image-part .bg-circle {
  z-index: -2;
  width: 425px;
  height: 425px;
  position: absolute;
  left: 5%;
  top: 4%;
  border-radius: 50%;
  background: var(--black-color);
}

.author-image-part .progress-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  text-align: center;
}

.hero-counter-area {
  margin-top: 60px;
}

.counter-item {
  text-align: center;
}

.counter-title {
  color: var(--main-color);
}

.hero-counter-area .count-text {
  line-height: 1;
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
  font-size: 50px;

}

.hero-counter-area .count-text.plus:after {
  content: '+';
}

.hero-counter-area .count-text.k-plus:after {
  content: 'k+';
}

.hero-counter-area .count-text.percent:after {
  content: '%+';
}

.hero-counter-area .counter-title {
  display: block;
}

.hero-image {
  text-align: center;
  position: relative;
}

.hero-image img {
  width: 400px;
  text-align: center;
  border-radius: 20px;
  border: 3px solid #fff;
  margin-top: -100px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.hero-image img:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/*=======Clienti Reviews=========*/
.clienti-reviews .clienti-profile {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}

.clienti-reviews .clienti-profile li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  height: 60px;
  width: 60px;
  margin-left: -15px;
  border-radius: 100%;
}

.clienti-reviews .clienti-profile li img {
  border-radius: 100%;
}

.clienti-reviews .clienti-profile li:first-child {
  margin-left: 0px;
}

.clienti-reviews .reviews {
  font-size: 20px;
  font-weight: 500;
  color: var(--main-color);
  display: block;
  margin-top: 20px;
}

.clienti-reviews .reviews span {
  color: #969696;
}

.clienti-reviews .reviews p {
  margin-top: 20px;
  font-size: 16px;
}

/*========Wheel===============*/
.rotatewheel {
  width: 80px;
  height: 80px;
  -webkit-animation: rotation infinite 3s linear;
          animation: rotation infinite 3s linear;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*
* ----------------------------------------------------------------------------------------
* 05.About CSS Style
* ----------------------------------------------------------------------------------------
*/

/*===========About Image Black CSS============*/
.about-back-area {
  background-size: cover;
  background-position: center;
  padding: 400px 0;
  position: relative;
  z-index: 2;

}
.about-back-area i {
  font-size: 30px;
  display: inline-block;
  text-align: right;
  border: 1px solid #000;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 20px 10px;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: #fff;
  background: #000;
  margin-right: 20px;
}

.about-parent {
  position: relative;
}

.about-quota-left {
  position: absolute;
  width: 350px;
  height: 200px;
  top: -200px;
  left: 0;
  border-radius: 7px;
  background-color: var(--primary-color);
}

.about-quota-right {
  position: absolute;
  width: 350px;
  height: 200px;
  top: 50px;
  right: 0;
  border-radius: 7px;
  background-color: var(--primary-color);
}

.about-quota-left h4,
.about-quota-right h4 {
  color: var(--black-color);
  font-size: 24px;
  padding: 15px 15px 0;
  margin-bottom: 30px;
}

.about-quota-left h5,
.about-quota-right h5 {
  color: var(--black-color);
  font-size: 90px;
  padding: 0px 15px;
  font-weight: 700;
}

.about-back-area p {
  font-size: 20px;
  text-transform: capitalize;
  padding: 0px 16px;
}

.quat-btn {
  text-align: center;
  display: inline-block;
  padding: 12px 18px;
  background-color: var(--black-color);
  color: var(--white-color);
  margin-left: 15px;
  border-radius: 50%;

}
/*===========About Area CSS================*/
.about-area {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--black-color);
}

.hero-content .job {
  display: inline-block;
  background-color: #f5f5f5;
  padding: 15px 40px;
  margin-top: 10px;
}

.hero-content .job span {
  position: relative;
  display: inline-block;
  padding-right: 15px;
  margin-right: 10px;
}

.hero-content .job span:last-child {
  margin: 0px;
  padding: 0px;
}

.hero-content .job span:last-child:after {
  display: none;
}

.hero-content .job span:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: rgba(0, 0, 0, .15);
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  border-radius: 100%;
}

.about-content-part p {
  font-size: 28px;
  line-height: 1.4em;
  color: var(--primary-color);
}

.about-image-part {
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.about-image-area img {
  width: 50%;
  text-align: center;
}

.about-image-part img {
  border-radius: 10px;
}

.about-image-part h2 {
  margin-top: 30px;
  font-size: 30px;
}

.about-content-part h2 {
  font-size: 55px;
  line-height: 72px;
  margin-bottom: 20px;
}

.about-content-part h2 span {
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-social {
  margin-top: 30px;
}

.about-social ul {
  list-style: none;
}

.about-social ul li {
  display: inline-block;
  margin-right: 15px;

}

.about-social ul li a {
  font-size: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 14px;
  border-radius: 3px;
}

.about-image-part .dot-shape {
  position: absolute;
  left: -10%;
  top: 25%;
  -webkit-animation: rotated_circle linear 10s infinite;
  animation: rotated_circle linear 10s infinite;
}

.about-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  border: 1px solid rgb(237, 237, 238);
  padding: 15px 20px 10px 20px;
  border-radius: 30px;
}

.about-btn img {
  border-radius: 50%;
  margin-right: 15px;
}

.about-btn h6 {
  font-weight: 400;
  color: rgb(119, 119, 125);
  margin-bottom: 0;
  margin-right: 15px;
  margin-top: -5px;

}

.about-btn i {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.about-counter-part {
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 50px;
  position: relative;
}

.about-counter-part:before {
  position: absolute;
  content: "";
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  height: 28px;
  width: 28px;
  background-color: var(--primary-color);
}

.about-counter-part h2 {
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.4px;
  color: var(--black-color);
  margin-bottom: 15px;
}

.about-counter-part p {
  color: var(--black-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

h2.about-pre-title {
  font-size: 40px;
  font-family: var(--text-font);
  margin-bottom: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
}

.single-about-content-part span {
  color: var(--primary-color);
}

/*=====Counter CSS==========*/

.counter-area {
  background-color: #333;
  color: #fff;
}

.single-counter {
  text-align: center;
}

.single-counter i {
  font-size: 50px;
  font-weight: 900;
  color: var(--primary-color);

}

.single-counter h4 {
  font-size: 60px;
  margin: 10px 0;
  font-weight: 700;
  display: inline-block;
  color: var(--primary-color);
}

.single-counter p {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--primary-color);
}

/*========Section Title========*/
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-white {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  position: relative;
  font-size: 100px;
  text-transform: uppercase;
  padding-bottom: 20px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  color: transparent;
  text-align: center;
  color: var(--black-color);
}

.section-title-white h2 {
  position: relative;
  font-size: 100px;
  text-transform: uppercase;
  padding-bottom: 20px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  color: transparent;
  text-align: center;
  -webkit-text-stroke: 2px var(--white-color);
}

.section-title-black h2 {
  position: relative;
  font-size: 100px;
  text-transform: uppercase;
  padding-bottom: 20px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  color: transparent;
  text-align: center;
  -webkit-text-stroke: 2px var(--black-color);
}

.section-title-black h4 {
  position: relative;
  font-size: 100px;
  text-transform: uppercase;
  padding-bottom: 20px;
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
  color: transparent;
  text-align: center;
  letter-spacing: 10px;
  color: var(--black-color);
}

.section-title-black p {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  font-weight: 500;
  color: var(--black-color);
}


/*
* ----------------------------------------------------------------------------------------
* 06.Timeline CSS Style
* ----------------------------------------------------------------------------------------
*/
.timeline-area {
  background-color: var(--primary-color);
  padding-top: 60px;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--black-color);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.timeline li {
  display: table;
  clear: both;
  position: relative;
}

.timeline-box {
  border: 1px solid var(--border-color);
  padding: 20px;
  width: 45%;
  margin-bottom: 20px;
  text-align: right;
  background: var(--gray-color);
  border-radius: 8px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.timeline-box span {
  font-size: 18px;
  color: var(--white-color);
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--black-color);
  border: 1px solid #333;
  margin: 20px 0;
  display: inline-block;
}

.timeline-box h4 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
}

.timeline li:nth-child(2n) .timeline-box {
  float: right;
  text-align: left;
}

.timeline li:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  background-color: var(--black-color);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*
* ----------------------------------------------------------------------------------------
* 07.Skill CSS Style
* ----------------------------------------------------------------------------------------
*/
.skill-area {
  /* padding: 60px 0; */
  background: var(--primary-color);
  padding-top: 80px;
  padding-bottom: 60px;
}

.skill-item {
  -webkit-transition: 0.5s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 14px;
  padding: 40px 15px;
  background: var(--gray-color);
  border: 1px solid #ddd;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.skill-item h5 {
  color: var(--main-color);
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 20px;
  background: var(--body-background);
  border-radius: 50px;
  display: inline-block;
  padding: 20px;
  text-align: center;
}

.skill-item h4 {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}

.skill-item .percent {
  padding: 10px;
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--black-color);
}

.skill-item:hover .percent {
  color: var(--heading-color);
}

.extra-skills ul {
  margin-top: 30px;
}

ul.extra-skills li {
  border: 2px solid var(--border-color);
  display: inline-block;
  border-radius: 12px;
  padding: 3px 10px;
  margin-bottom: 10px;
  margin-right: 20px;
}

ul.extra-skills li i {
  padding-right: 10px;
}

/*
* ----------------------------------------------------------------------------------------
* 08.Services CSS Style
* ----------------------------------------------------------------------------------------
*/
.service-area {
  background-color: var(--black-color);
}

.single-service {
  border: 1px solid #ddd;
  background-color: var(--gray-color);
  padding: 30px 20px;
  margin-top: 20px;
  position: relative;
  text-align: center;
  border-radius: 7px;
  -webkit-box-shadow: 5px 5px #ddd;
          box-shadow: 5px 5px #ddd;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.single-service:hover {
  background-color: var(--primary-color);
  -webkit-transform: scale(1.05) rotate(2deg);
      -ms-transform: scale(1.05) rotate(2deg);
          transform: scale(1.05) rotate(2deg);
}

.single-service:hover.single-service i {
  color: var(--black-color);
  background-color: var(--gray-color);
}

.single-service:hover::before {
  width: 100%;

}

.single-service:hover::after {
  width: 100%;
}

.single-service span {
  position: absolute;
  top: 20px;
  left: 10px;
  font-size: 60px;
  font-weight: 600;
  color: #ddd;
}

.single-service i {
  font-size: 30px;
  background-color: var(--black-color);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  color: var(--white-color);
  margin: 20px 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.single-service h4 {
  font-size: 26px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

/*
* ----------------------------------------------------------------------------------------
* 09.Project CSS Style
* ----------------------------------------------------------------------------------------
*/

.single-project {
  position: relative;
}

.project-content {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  text-align: center;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.project-content i {
  font-size: 30px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--gray-color);
  border-radius: 50%;
  color: var(--black-color);
}

.single-project:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: 0;
  z-index: 1;
  visibility: hidden;

  -webkit-transform: scale(0);

      -ms-transform: scale(0);

          transform: scale(0);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.single-project:hover.single-project::before {
  opacity: .75;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.single-project:hover .project-content {
  opacity: 1;
  visibility: visible;
}

.project-content a {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  display: inline-block;
}

.project-content h4 {
  font-size: 22px;
  text-transform: uppercase;
}

.project-content h4 span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

/*
* ----------------------------------------------------------------------------------------
* 10.Testimonial CSS Style
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
  background-color: var(--black-color);
  color: var(--primary-color);
}


.single-testimonial {
  text-align: center;
  margin: 0 auto;
}

.single-testimonial img {
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #ddd;
}

.single-testimonial p {
  margin-top: 20px;
  font-size: 16px;
}

.single-testimonial h4 {
  font-size: 22px;
  text-transform: capitalize;
}

.single-testimonial h4 span {
  display: block;
  font-size: 16px;
  text-transform: lowercase;
  margin-top: 10px;
}

.slick-dots {
  list-style: none;
  margin: 0;
  padding: 10px;
  text-align: center;
  padding-bottom: 20px;
}

.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}

.slick-dots li button {
  background-color: var(--white-color);
  width: 15px;
  border-radius: 50%;
  border: 0;
  color: transparent;
  height: 15px;
}

.slick-dots li.slick-active button {
  background-color: var(--gray-color);
}

/*
* ----------------------------------------------------------------------------------------
* 11.Price CSS Style
* ----------------------------------------------------------------------------------------
*/

.price-area {
  background-color: var(--primary-color);
}

.single-price {
  text-align: center;
  background: var(--gray-color);
  padding: 30px 20px;
  border: 1px solid #ddd;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 7px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.single-price:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  border-color: var(--gray-color);
  background-color: var(--black-color);
  color: var(--primary-color);
}

.single-price h4 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 20px 0;
  padding: 20px;
  border-radius: 7px;
}

.single-price h2 span {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
}

.single-price h2 {
  font-size: 50px;
  font-weight: 700;
  margin: 30px 0;
  border-bottom: 1px solid #ddd;
  /* margin-bottom: 12px; */
  padding-bottom: 20px;
}

.single-price ul {
  margin: 0;
  padding: 0 30px;
}

.single-price li {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  font-size: 16px;
}

.single-price a {
  margin-top: 20px;
}

/*
* ----------------------------------------------------------------------------------------
* 12.Blog CSS Style
* ----------------------------------------------------------------------------------------
*/

.blog-area {
  background-color: var(--gray-color);
}

.blog-content {
  padding: 30px 20px;
  background-color: var(--body-background);

}
.single-blog {
  border: 1px solid #ddd;
  background-color: var(--gray-color);
  overflow: hidden;
}

.blog-content .blog-link {
  font-size: 24px;
  text-transform: capitalize;
  color: #333;
  position: relative;
}

.blog-content .blog-admin {
  color: #333;
  text-transform: capitalize;
}

.blog-content ul {
  margin: 0;
  padding: 0;
}

.blog-content ul li {
  display: inline-block;
  position: relative;
}

.blog-content ul li a {
  font-size: 14px;
}

.blog-content a.btn-box {
  font-size: 16px !important;
  color: #fff !important;
}

.blog-content p {
  margin: 20px 0;
}

.blog-img {

  overflow: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;

}

.blog-img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/*
* ----------------------------------------------------------------------------------------
* 13.Company CSS Style
* ----------------------------------------------------------------------------------------
*/

.company-design-area {
  background-color: var(--black-color);
  padding: 100px 0px;
}

.company-design-area h2 {
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 5px;
  font-weight: 500;
}

.scroller__inner {
  padding-block: 16px;
  padding-block: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px;
  gap: 5rem;
}

.scroller__inner img {
  margin-right: 30px;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, white), color-stop(80%, white), to(transparent));
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
          mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, white), color-stop(80%, white), to(transparent));
}

.scroller[data-animated="true"] .scroller__inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

/*
* ----------------------------------------------------------------------------------------
* 14.Contact CSS Style
* ----------------------------------------------------------------------------------------
*/

.contact-area {
  background-color: var(--primary-color);
}

.contact-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 7px;
  border: 1px solid #ddd;
}

.contact-form textarea {
  padding: 30px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
}

.contact-form input[type='submit'] {
  display: inline-block !important;
  color: #fff;
  background: var(--black-color);
  border: 0;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 600;
}

.contact-address ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.contact-icon i {
  font-size: 26px;
  width: 55px;
  height: 55px;
  background-color: var(--gray-color);
  text-align: center;
  line-height: 50px;
  color: var(--black-color);
  border-radius: 50%;
  border: 2px solid var(--gray-color);
  margin-right: 20px;
}

.contact-address h4 {
  font-size: 18px;
  text-transform: uppercase;
  padding: 5px 0;
}

.contact-address h4 span {
  display: block;
  font-size: 14px;
  text-transform: lowercase;
  line-height: 20px;
  margin: 5px 0;
}

/*
* ----------------------------------------------------------------------------------------
* 15.Footer CSS Style
* ----------------------------------------------------------------------------------------
*/

.footer-area {
  background-color: var(--black-color);

}

.footer-content {
  text-align: center;
  color: var(--body-background);
}

.footer-content h2 {
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 20px 0;
}

.footer-content a {
  color: var(--body-background);
  font-size: 20px;
  margin: 0px 10px;
  padding-bottom: 20px;
  display: inline-block;
}

.footer-content a:hover {
  color: var(--gray-color);
}

.footer-content p {
  font-size: 16px;
  text-transform: capitalize;
  margin-top: 30px;
}

.footer-social {
  border-bottom: 1px solid #969696;
}

/*
* ----------------------------------------------------------------------------------------
*** 16. Back to Top Icon CSS Style
* ----------------------------------------------------------------------------------------
*/
#back-to-top {
  position: fixed;
  right: 50px;
  bottom: 70px;
  background-color: #181717;
  color: #fff;
  z-index: 9;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #484747;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  cursor: pointer;
  -webkit-box-shadow: rgba(196, 197, 198, 0.2) 0px 8px 24px;
          box-shadow: rgba(196, 197, 198, 0.2) 0px 8px 24px;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  bottom: 50px;
}