/* Start Importing Theme Default Style */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* -- Body Style -- */
body {
  font-family: "Nunito", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  background-color: #000;
  margin: auto;
  position: relative;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.h1, h1 {
  font-size: 45px;
}

.h2, h2 {
  font-size: 40px;
}

.h3, h3 {
  font-size: 24px;
}

.h4, h4 {
  font-size: 20px;
}

.h5, h5 {
  font-size: 18px;
}

.h6, h6 {
  font-size: 14px;
}

img {
  width: 100%;
}

.highlight--txt {
  color: #F88511;
}

/* -- Common Button -- */
/* -- List Style -- */
ul {
  margin: 0;
  padding: 0;
}

ul li {
  display: inline-block;
  list-style: none;
}

/* -- Parmalink -- */
a:hover {
  color: #F88511;
  text-decoration: none;
}

/* -- Padding -- */
.padding__common {
  padding-top: 115px;
  padding-bottom: 115px;
}

.padding__common--two {
  padding-top: 110px;
  padding-bottom: 85px;
}

/* -- Color -- */
.color__primary {
  color: rgba(255, 255, 255, 0.8);
}

.color__secondary {
  color: #ffffff;
}

.color__heighlight {
  color: #F88511;
}

.color__white {
  color: #ffffff;
}

.bg__primary {
  background: #080808;
}

.bg__secondary {
  background: #111111;
}

.bg__highlight {
  background: #F88511;
}

.bg__dark {
  background: #111111;
}

/* -- Grid  Style -- */
.grid--container {
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
}

/* -- Flex Style -- */
.flex--yes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* -- Anchor tag Style -- */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

/* -- List Style -- */
.list--none li {
  list-style: none;
  display: inline-block;
}

/* -- Input Group Psudo element Style -- */
.input-group > .form-control:focus, .input-group > .form-select:focus {
  z-index: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* -- Iframe  Style -- */
iframe {
  width: 100%;
}

/* -- Text Transform Style -- */
.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.lowercase {
  text-transform: lowercase;
}

/* -- Input Focus Style -- */
.focus:focus, .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

input:focus,
button:focus,
textarea:focus {
  border-color: transparent;
  outline-color: transparent;
  outline: 0;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Owl Dots Style one*/
.owl-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  left: 0;
}

.owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  width: 12px;
  height: 12px;
  cursor: pointer;
  border-radius: 50%;
  background: linear-gradient(145deg, #111111, #080808);
  -webkit-box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
          box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
  -webkit-transition: .4s;
  transition: .4s;
}

.owl-dot::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  background: #F88511;
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.owl-dot.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* -- Rotate Animation -- */
.rotateme {
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

/* Navbar Style */
.navbar {
  position: fixed;
  left: 0;
  z-index: 999;
  width: 100%;
  top: 0;
}

.navbar.fixed-header {
  background: #111111;
  -webkit-box-shadow: 0 0 30px rgba(77, 77, 77, 0.3);
          box-shadow: 0 0 30px rgba(77, 77, 77, 0.3);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.navbar.fixed-header .navbar__navitem {
  border-right: 1px solid rgba(15, 10, 10, 0.1);
}

.navbar.fixed-header .navbar__navlink:hover {
  color: #F88511;
}

.navbar.fixed-header .navbar__brand span {
  color: #F88511;
}

.navbar__brand {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
}

.navbar__brand span {
  color: #F88511;
}

.navbar__brand:hover {
  color: #ffffff;
}

.navbar-toggler-icon {
  color: #F88511;
}

.navbar__toggler--icon i:nth-child(2) {
  display: none;
}

/* Hero Section Style */
.hero {
  position: relative;
  /* background: url(../images/bg1.jpg) no-repeat center/cover scroll; */
  background-color: #000;
}

.hero__wrapper {
  position: relative;
  max-height: 970px;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 43%;
  -webkit-transform: translate(-43%, -50%);
          transform: translate(-43%, -50%);
}

.hero__title {
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero__ah--headline {
  color: #F88511;
  text-transform: capitalize;
}

.hero__desc {
  font-size: 20px;
  color: #ffffff;
  width: 100%;
  margin: 20px 0 35px;
}

.hero__btn--link {
  padding: 3px 30px;
  line-height: 46px;
  display: inline-block;
  background: #F88511;
  text-transform: capitalize;
  border: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  letter-spacing: 1px;
}

.hero__btn--link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  background: #ffffff;
  z-index: -1;
}

.hero__btn--link:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

.hero__btn--link:hover {
  color: #F88511;
}

.hero__social {
  position: absolute;
  right: 40px;
  bottom: 30px;
}

.hero__social--item i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #ffffff;
  border-radius: 50%;
  color: #F88511;
  margin-right: 8px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.hero__social--item i:hover {
  background: #F88511;
  color: #ffffff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* Scroll Down Style one */
.arrow__down {
  position: absolute;
  bottom: 30px;
  left: 50px;
  height: 50px;
  width: 30px;
  border: 2px solid #F88511;
  border-radius: 15px;
}

.arrow__down span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #F88511;
  border-right: 2px solid #F88511;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: -8px auto;
  top: 23px;
  position: relative;
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
}

.arrow__down span:nth-child(2) {
  -webkit-animation-delay: -.2s;
          animation-delay: -.2s;
}

.arrow__down span:nth-child(3) {
  -webkit-animation-delay: -.4s;
          animation-delay: -.4s;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-10px, -10px);
            transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
    border-color: #111111;
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-10px, -10px);
            transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
    border-color: #111111;
  }
}

/* Animation Headline Style one */
.ah-headline.clip .ah-words-wrapper {
  font-weight: 500;
}

.ah-headline.clip .ah-words-wrapper::after {
  background-color: #F88511;
}

/* Start Section Head Style one */
.section__head {
  padding-bottom: 55px;
}

.section__title {
  font-weight: 800;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 40px;
}

.section__desc {
  margin: 0 auto;
  font-size: 18px;
  width: 50%;
}

.small--title {
  color: #ffffff;
  position: relative;
  padding: 0 0 15px;
  margin-bottom: 30px;
}

.small--title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 3px;
  background: #F88511;
}

.btn--icon {
  margin-left: 10px;
}

/* For Title Background Text */
.title {
  position: relative;
  z-index: 1;
}

.title__bg--text {
  font-size: 110px;
  font-weight: 800;
  letter-spacing: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-transform: uppercase;
  color: #111111;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: #111111;
  z-index: -1;
}

.title__bg--text.color--two {
  color: #080808;
  -webkit-text-stroke-color: #080808;
  opacity: .5;
}

/* Start About Style one */
.about {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: -250px;
  width: 45%;
  height: 1200px;
  background: #F88511;
  z-index: -1;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
}

.about--thumb {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about__content {
  padding-left: 50px;
}

.about__name {
  color: #ffffff;
  margin-bottom: 30px;
}

.about__designation {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
}

.about__desc {
  margin-bottom: 30px;
  font-size: 20px;
}

.about__bio--list {
  padding: 10px 0;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about__bio--title {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  max-width: 90px;
}

.about__bio--desc {
  margin-bottom: 0;
  padding-left: 15px;
  font-size: 16px;
}

.about__btn--link {
  margin-top: 15px;
  padding: 3px 30px;
  line-height: 46px;
  display: inline-block;
  background: #F88511;
  text-transform: capitalize;
  border: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  letter-spacing: 1px;
}

.about__btn--link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  background: #ffffff;
  z-index: -1;
}

.about__btn--link:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

.about__btn--link:hover {
  color: #F88511;
}

.about__exp--single {
  padding: 15px 40px 30px 0;
  border-radius: 5px;
  margin-bottom: 24px;
}

.about__exp--number {
  color: #F88511;
  margin-bottom: 10px;
}

.about__exp--title {
  text-transform: capitalize;
}

/* Start Service Style one */
.service__single--item {
  background: #111111;
  padding: 40px 40px 35px;
  position: relative;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  z-index: 1;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
}

.service__single--item:hover {
  -webkit-box-shadow: 0 5px 25px rgba(17, 17, 17, 0.9);
          box-shadow: 0 5px 25px rgba(17, 17, 17, 0.9);
}

.service__single--item::before {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  opacity: 0;
  pointer-events: none;
  top: auto;
  right: 0;
  border-left: 5px solid #F88511;
  border-right: 5px solid #F88511;
  height: 0;
}

.service__single--item:hover::before {
  height: 100%;
  opacity: 1;
  top: 0;
  bottom: auto;
}

.service__single--item:hover .service__price {
  font-size: 45px;
  color: #F88511;
  opacity: 1;
}

.service__single--item:hover .service__price--unite {
  font-size: 25px;
}

.service__icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 50px;
  margin-bottom: 20px;
  color: #F88511;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.service__category {
  position: relative;
  color: #F88511;
  text-transform: uppercase;
  padding: 5px 0;
  font-size: 14px;
  margin-bottom: 15px;
  z-index: 1;
}

.service__title {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 28px;
}

.service__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.service__details--btn {
  display: block;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 5px 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .1rem;
}

.service__details--btn:hover {
  color: #F88511;
  letter-spacing: .15rem;
}

.service__pricing {
  position: absolute;
  right: 50px;
  top: 45px;
}

.service__price {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.8);
  opacity: .5;
  -webkit-transition: .4s;
  transition: .4s;
}

.service__price--unite {
  font-size: 20px;
  -webkit-transition: .4s;
  transition: .4s;
}

/* Skill Section Style one */
.skill__subtitle {
  margin-bottom: 40px;
}

.skill__highlight--text {
  font-size: 20px;
  letter-spacing: 1px;
  color: #F88511;
}

.skill__highlight--text span {
  height: 1px;
  width: 45px;
  background: #F88511;
  margin-right: 10px;
  display: inline-block;
}

.skill__signature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.skill__signature img {
  width: 200px;
  margin-bottom: 40px;
  border-right: 1px solid #F88511;
  padding-right: 30px;
  margin-right: 40px;
}

.skill__signature .author--name {
  margin-bottom: 5px;
}

.skill__signature .author--desi {
  font-size: 14px;
}

.skill__btn--link {
  padding: 3px 30px;
  line-height: 46px;
  display: inline-block;
  background: #F88511;
  text-transform: capitalize;
  border: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  letter-spacing: 1px;
}

.skill__btn--link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  background: #ffffff;
  z-index: -1;
}

.skill__btn--link:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

.skill__btn--link:hover {
  color: #F88511;
}

.skill__desc--text {
  font-size: 20px;
}

.skill .padding--left {
  padding-left: 60px;
}

.skill__single--inner {
  margin-bottom: 24px;
  padding-bottom: 25px;
  display: block;
}

.skill__single--inner:last-child {
  margin-bottom: 5px;
}

.skill__title--inner {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.skill__bar--inner {
  height: 20px;
  background: #080808;
  position: relative;
}

.skill__progress--line {
  position: relative;
  top: 0;
  left: 0;
  width: 60px;
  height: 20px;
  background: #F88511;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.skill__count--box {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Experience Section Style one */
.exp__title {
  text-align: center;
}

.exp__title--inner {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 24px;
}

.exp__subtitle {
  text-transform: capitalize;
  margin-top: 10px;
}

.exp__single--item {
  padding: 25px 25px 0 0;
}

.exp__single--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; */
  padding-bottom: 25px;
}

.exp__single--inner:hover .exp__inner--desc {
  -webkit-box-shadow: 0 5px 15px rgba(17, 17, 17, 0.8);
          box-shadow: 0 5px 15px rgba(17, 17, 17, 0.8);
}

.exp__single--inner:hover .exp__inner--icon i {
  color: #F88511;
  -webkit-box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
          box-shadow: 1px 4px 2px -3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px -2px rgba(255, 255, 255, 0.2) inset;
}

.exp__inner--desc {
  margin-left: 20px;
  margin-top: 5px;
  padding: 30px;
  background: #080808;
  border-radius: 5px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
  z-index: 2;
}

.exp__inner--icon {
  position: relative;
  z-index: 1;
}

.exp__inner--icon i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #111111, #080808);
  -webkit-box-shadow: 1px 4px 2px 3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px 3px rgba(255, 255, 255, 0.1) inset;
          box-shadow: 1px 4px 2px 3px rgba(0, 0, 0, 0.7) inset, -1px -3px 3px 3px rgba(255, 255, 255, 0.1) inset;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.exp__inner--icon::before {
  position: absolute;
  top: 50px;
  left: 50%;
  content: "";
  height: 70%;
  width: 3px;
  background: linear-gradient(145deg, #080808, #111111);
  z-index: -1;
}

.exp__year {
  margin-bottom: 16px;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  background: #F88511;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.exp__desc {
  margin: 0;
  color: #ffffff;
  opacity: 0.8;
  text-transform: capitalize;
  font-size: 17px;
}

.exp__single--inner:hover .exp__year {
  background: #ffffff;
  color: #F88511;
}

/* Portfolio Section Style one */
.portfolio__nav {
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.portfolio__nav--menu {
  font-size: 17px;
  font-weight: 400;
  line-height: 35px;
  text-transform: capitalize;
  text-align: center;
}

.portfolio__nav--item {
  cursor: pointer;
  margin: 0 12px;
}

.portfolio__nav--item:hover {
  color: #F88511;
}

.portfolio__nav--item.active {
  color: #F88511;
}

.portfolio__item {
  margin-bottom: 30px;
}

.portfolio__item:hover .portfolio__img {
  /* -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-filter: grayscale(0);
          filter: grayscale(0); */
}

.portfolio__thumb {
  position: relative;
  overflow: hidden;
}

.portfolio__thumb:hover .portfolio__content {
  width: 90%;
  top: 50%;
  opacity: 1;
}

.portfolio__img {
  /* -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: grayscale(1);
          filter: grayscale(1); */
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.portfolio__content {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0;
  background: #080808;
  width: 70%;
  padding: 25px 15px;
  border-radius: 3px;
}

.portfolio__info--title {
  margin-bottom: 10px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.portfolio__info--title:hover {
  color: #F88511;
}

.portfolio__info--category {
  margin-bottom: 0;
}

.portfolio .modal-title {
  color: #111111;
}

/* Testimonial Carousel Style one */
.testimonial__item {
  margin: 10px 20px;
  background: #080808;
  padding: 50px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.testimonial__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}

.testimonial__thumb {
  width: 100px;
}

.testimonial__thumb img {
  border-radius: 3px;
}

.testimonial__author {
  padding-left: 30px;
}

.testimonial__author--name {
  margin-bottom: 8px;
}

.testimonial__author--desi {
  margin: 0;
}

.testimonial__desc {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial__rating--value {
  display: inline-block;
  vertical-align: middle;
  background: #ffffff;
  border-radius: 30px;
  padding: 0 10px;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(28, 29, 36, 0.1);
          box-shadow: 1px 1px 1px 1px rgba(28, 29, 36, 0.1);
  font-size: 9px;
  color: #111111;
}

.testimonial__rating--value i {
  color: #F88511;
  margin-right: 3px;
}

.testimonial__icon {
  font-size: 65px;
  position: absolute;
  right: 45px;
  top: 50px;
  color: #111111;
  opacity: .6;
}

/* Blog Post Style one */
.blog__single--post {
  margin-bottom: 30px;
}

.blog__thumb {
  position: relative;
  overflow: hidden;
}

.blog__thumb img {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.blog__single--post:hover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.blog__meta {
  color: #F88511;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog__meta--icon {
  margin-right: 10px;
}

.blog__meta--item {
  margin-right: 25px;
}

.blog__content {
  padding: 35px 30px 40px;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  background: #111111;
}

.blog__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
}

.blog__title:hover {
  color: #F88511;
}

.blog__desc {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.blog__btn {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .1rem;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
  color: #ffffff;
}

.blog__btn:hover {
  color: #F88511;
  letter-spacing: .15rem;
}

/* Breadcumb  Style */
.breadcumb {
  height: 300px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* background: url(../images/bd-bg.jpg) no-repeat center/cover scroll; */
  background-color: #000;
  z-index: 1;
}

.breadcumb::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.breadcumb--title {
  margin-top: 50px;;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #ffffff;
}

.breadcumb__list--item {
  margin-right: 10px;
  font-size: 18px;
  text-transform: capitalize;
}

.breadcumb__list--item:nth-Child(2) {
  color: #F88511;
}

.breadcumb__list--item .list--link {
  -webkit-transition: .3s;
  transition: .3s;
}

.breadcumb__list--item .list--link:hover {
  color: #F88511;
}

/* Blog Details Style */
.blog__details .content__wrapper {
  background: #111111;
}

.blog__details .content__wrapper .details--thumb img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: .5s;
  transition: .5s;
}

.blog__details .content__wrapper .details--thumb img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.blog__details .content__wrapper--text {
  padding: 0 40px 40px;
}

.blog__details .content__wrapper--text .blog__title {
  font-size: 35px;
}

.blog__details .content__wrapper--text .blog__details {
  font-size: 18px;
  margin-bottom: 30px;
}

.blog__details .content__wrapper--text .blog__quote--content {
  padding: 35px 40px 45px;
  -webkit-box-shadow: 0px 0px 50px 50px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 50px 50px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-bottom: 30px;
}

.blog__details .content__wrapper--text .blog__quote--content .highlight--text {
  font-size: 20px;
  letter-spacing: 1px;
  color: #F88511;
}

.blog__details .content__wrapper--text .blog__quote--content .highlight--text span {
  height: 1px;
  width: 45px;
  background: #F88511;
  margin-right: 10px;
  display: inline-block;
}

.blog__details .content__wrapper--text .blog__quote--content .desc--text {
  font-style: italic;
  font-size: 20px;
}

.blog__details .content__wrapper .contact__form--wrapper {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 30px 0 10px;
}

.blog__details .blog__social--title {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog__details .blog__social--item i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #ffffff;
  border-radius: 50%;
  color: #F88511;
  margin-right: 12px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.blog__details .blog__social--item i:hover {
  color: #ffffff;
  background: #F88511;
}

.blog__details .blog__pagination {
  margin-top: 50px;
}

.blog__details .blog__pagination--item a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  -webkit-transition: .3s;
  transition: .3s;
}

.blog__details .blog__pagination--item a:hover {
  color: #F88511;
}

/* Contact Section Style one */
.contact {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: -250px;
  width: 45%;
  height: 1200px;
  background: #F88511;
  z-index: -1;
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
}

.contact__section--desc {
  font-size: 20px;
}

.contact__form--wrapper {
  background: #080808;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  padding: 50px;
}

.contact__form--wrapper .small--title::after {
  right: auto;
}

.contact__form--group {
  margin-bottom: 30px;
  position: relative;
}

.contact__form--input {
  border-radius: 3px;
  border: 2px solid rgba(28, 29, 36, 0.9);
  height: 45px;
  font-size: 15px;
  color: #ffffff;
  background: #111111;
}

.contact__form--input:focus {
  border-color: #F88511;
  background: #111111;
  color: #ffffff;
}

.contact__form--input.textarea {
  height: inherit;
}

.contact__btn--link {
  padding: 3px 30px;
  line-height: 46px;
  display: inline-block;
  background: #F88511;
  text-transform: capitalize;
  border: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  letter-spacing: 1px;
}

.contact__btn--link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  background: #ffffff;
  z-index: -1;
}

.contact__btn--link:hover::after {
  height: 100%;
  bottom: auto;
  top: 0;
}

.contact__btn--link:hover {
  color: #F88511;
}

.contact__info--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.contact__info--icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #080808;
  color: #F88511;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
}

.contact__info--title {
  margin-bottom: 10px;
}

.contact__info--txt {
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Footer Section Style one */
.footer__social--item i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #ffffff;
  border-radius: 50%;
  color: #F88511;
  margin-right: 8px;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.footer__social--item i:hover {
  background: #F88511;
  color: #ffffff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.footer__copyright-txt {
  font-size: 14px;
}

.footer__copyright-txt a {
  color: #F88511;
  font-size: 15px;
}

/* Scroll Up Style one */
#scrollup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #F88511;
  width: 25px;
  height: 45px;
  z-index: 99;
  border-radius: 6px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

#scrollup span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #F88511;
  border-left: 3px solid #F88511;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: -12px auto;
  top: 33px;
  position: relative;
  -webkit-animation: scrollUp 2s infinite;
          animation: scrollUp 2s infinite;
}

#scrollup span:nth-child(2) {
  -webkit-animation-delay: -.2s;
          animation-delay: -.2s;
}

#scrollup span:nth-child(3) {
  -webkit-animation-delay: -.4s;
          animation-delay: -.4s;
}

@-webkit-keyframes scrollUp {
  0% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-10px, -10px);
            transform: rotate(45deg) translate(-10px, -10px);
    border-color: #ffffff;
  }
}

@keyframes scrollUp {
  0% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-10px, -10px);
            transform: rotate(45deg) translate(-10px, -10px);
    border-color: #ffffff;
  }
}

/* Responsive Style START Here */
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .example {
    background: pink;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  /* Navbar */
  .navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    padding: 0;
  }
  .navbar__navitem {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 20px;
  }
  .navbar__navlink {
    padding: 0 10px;
    line-height: 70px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .05rem;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .navbar__navlink:hover {
    color: #F88511;
  }
}

/*  large devices (large laptops 1366px) */
@media only screen and (max-width: 1366px) {
  /* Hero */
  .hero__desc {
    width: 75%;
  }
  .hero__title {
    font-size: 65px;
  }
  /* Service */
  .service__title {
    font-size: 25px;
  }
  .service__single--item {
    padding: 40px 35px 35px;
  }
  /* About */
  .about__content {
    padding-left: 15px;
  }
  .about__bio--desc {
    padding-left: 0;
  }
  .about__bio--title {
    font-size: 16px;
  }
  .about__desc {
    font-size: 17px;
  }
  .about__btn--link {
    margin-top: 0;
  }
  /* Skill */
  .skill__desc--text {
    font-size: 17px;
  }
  /* Portfolio */
  .portfolio__content {
    width: 90%;
  }
  /* Contact */
  .contact__section--desc {
    font-size: 18px;
  }
}

/*  Medium devices (Medium laptops 1170px) */
@media only screen and (max-width: 1170px) {
  /* Hero */
  .hero__desc {
    width: 85%;
  }
  .hero__wrapper {
    height: 800px;
  }
  .hero__content {
    left: 35%;
  }
}

/* Medium devices (landscape tablets, 991px and down) */
@media only screen and (max-width: 991px) {
  /* Navbar Mobile Menu */
  .navbar {
    background: #080808;
  }
  .navbar__navlink {
    color: #ffffff;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
  }
  .navbar__navlink::before {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 14px;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .navbar__navlink:hover, .navbar__navlink:focus {
    color: #F88511;
  }
  .navbar__navlink:hover::before {
    opacity: 1;
  }
  .navbar-toggler:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar.fixed-header .navbar__navitem {
    border: none;
  }
  /* Section Head */
  .section__desc {
    width: 75%;
  }
  /* About */
  .about::after {
    left: -633px;
    width: 100%;
    -webkit-transform: skew(-33deg);
            transform: skew(-33deg);
  }
  .about--thumb {
    margin-bottom: 60px;
  }
  /* Padding Common */
  .padding__common {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .padding__common--two {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  /* Skill */
  .skill .padding--left {
    padding-left: 0;
    margin-top: 40px;
  }
  /* Content */
  .contact::after {
    display: none;
  }
  .contact__form--wrapper {
    margin-top: 40px;
  }
  .contact__section--desc {
    width: 75%;
  }
  /* Blog */
  .blog__title {
    font-size: 20px;
  }
}

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 768px) {
  /* Hero */
  .hero__wrapper {
    height: 600px;
  }
  .hero__content {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    left: 50px;
  }
  .hero__desc {
    width: 95%;
  }
  .hero__title {
    font-size: 60px;
  }
  /* About */
  .about__bio--desc {
    padding-left: 60px;
  }
  .title__bg--text {
    font-size: 85px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and down) */
@media only screen and (max-width: 600px) {
  /* Hero */
  .hero__content {
    text-align: center;
    left: 50%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__desc {
    font-size: 17px;
    width: 80%;
    margin: 20px auto 35px;
  }
  .hero__ah--headline {
    font-size: 30px;
  }
  .hero__scroll--btn {
    display: none;
  }
  .hero__social {
    display: none;
  }
  /* Contact */
  .contact__section--desc {
    width: 100%;
  }
  .contact__section--desc {
    font-size: 17px;
  }
  /* Section Head */
  .section__desc {
    width: 90%;
  }
  /* Testimonial */
  .testimonial__item {
    padding: 35px;
    margin: 10px;
  }
  .testimonial__desc {
    font-size: 16px;
    margin-bottom: 10px;
  }
  /* Experience */
  .exp__title--inner {
    font-size: 22px;
  }
  /* Blog Details */
  .blog__details .content__wrapper--text .blog__title {
    font-size: 26px;
  }
  .blog__details .content__wrapper--text .blog__details {
    font-size: 17px;
  }
  .blog__details .content__wrapper--text .blog__quote--content .desc--text {
    font-size: 18px;
  }
  /* Footer bottom */
  .footer__content {
    display: block;
    text-align: center;
  }
  .footer__social {
    padding-bottom: 20px;
  }
  .h1, h1 {
    font-size: 35px;
  }
  .title__bg--text {
    font-size: 55px;
  }
}

/* Extra small devices (phones, 360px and down) */
@media only screen and (max-width: 360px) {
  /* Hero */
  .hero__desc {
    width: 90%;
  }
  .arrow__down {
    left: 15px;
  }
  /* About */
  .about__content {
    padding-left: 0;
  }
  .about__exp--single {
    padding: 15px 0 40px 0;
    margin-bottom: 0;
    text-align: center;
  }
  .about__btn {
    text-align: center;
  }
  /* Skill */
  .skill__signature {
    display: block;
  }
  /* Experience */
  .exp__inner--desc {
    margin-left: 0;
  }
  .exp__desc {
    font-size: 16px;
  }
  .exp__title--inner {
    font-size: 18px;
  }
  /* Testimonial */
  .testimonial__item {
    padding: 25px;
    margin: 5px;
  }
  .testimonial__details {
    display: block;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    margin-bottom: 30px;
  }
  .testimonial__author {
    padding-left: 0;
    margin-top: 20px;
  }
  /* Blog Details */
  .blog__details .content__wrapper--text {
    padding: 0 20px 40px;
  }
  .blog__details .content__wrapper--text .blog__quote--content {
    padding: 35px 20px 45px;
  }
  /* Contact */
  .contact__form--wrapper {
    padding: 40px 30px;
  }
  /* Section Shape Text */
  .title__bg--text {
    font-size: 60px;
    letter-spacing: 0;
  }
}

/* Responsive Style END Here */
/*# sourceMappingURL=style.css.map */