/* -------------------------------------------------------------------
   Base                               
   ------------------------ /
 * 01.Base
 * 02.Typography
 * 03.Helper Class
   ------------------------ /
   Components                               
   ------------------------ /
 * 04.Buttons  
 * 05.Animations 
 * 06.Form(Input, Comment)
 * 07.Pagination 
 * 08.Preloader
   ------------------------ /
   Layout                               
   ------------------------ /
 * 09.Header
 * 10.Hero Banner 
 * 11.About Me
 * 12.My Resume  
 * 13.My Skills 
 * 14.Counters
 * 15.My Services 
 * 16.Portfolio (Gallery)
 * 17.Clients 
 * 18.Team
 * 19.Banner
 * 20.Blog
 * 21.Contact
 * 22.Footer
 * 23.Breadcrumb
 * 24.Sidebar  
 * 25.RTL Mode
   ------------------------ /
   Pages                               
   ------------------------ /
 * 26.Blog Single
 * 27.Intro Page    
 * 28.Other Help CSS

------------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* 01.Base                               
/* ---------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
body, html {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #635e74;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: #302d3b;
  color: #fff;
}

::selection {
  background: #302d3b;
  color: #fff;
}

a:link, a:hover, a:active, a:visited {
  text-decoration: none;
}

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

textarea, textarea:focus, input, input:focus, button, button:focus {
  outline: none;
  resize: inherit;
}

.owl-carousel .owl-item img {
  display: block;
  width: auto;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  body, html {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------- */
/* 02.Typography                               
/* ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.5;
}

h1, .h1 {
  font-size: 48px;
}

h2, .h2 {
  font-size: 3.2rem;
}

h3, .h3 {
  font-size: 1.875rem;
}

h4, .h4 {
  font-size: 2.25rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1.125rem;
}

p {
  line-height: 1.8;
  margin: 0;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra Small devices (portrait phones, less than 575px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  h3, .h3 {
    font-size: 1.8rem;
  }
  h4, .h4 {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------------------------- */
/* 03.Helper Class                              
/* ---------------------------------------------------------------- */
.page-wrapper {
  overflow-x: hidden;
  position: relative;
}

.section {
  padding: 100px 0;
  overflow: hidden;
}

.section .section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section .section-heading h4 {
  margin-bottom: 15px;
  padding-bottom: 20px;
  text-align: center;
  display: block;
  position: relative;
}

.section .section-heading h4:after {
  content: "";
  width: 130px;
  height: 4px;
  bottom: 0;
  left: 50%;
  position: absolute;
  background: #ff5500;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section .section-heading h4:before {
  content: "";
  width: 30px;
  height: 30px;
  bottom: -12px;
  left: 50%;
  z-index: 4;
  position: absolute;
  border: 8px solid #fff;
  background: #ff5500;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bg-primary-light {
  background: rgba(255, 85, 0, 0.07);
}

.bg-primary-light.section .section-heading h4:before {
  border: 8px solid #faf7f3;
}

.mb-30 {
  margin-bottom: 30px;
}

.pb-minus-70 {
  padding-bottom: 70px;
}

.owl-carousel .owl-dots {
  line-height: 0 !important;
  margin-top: 30px !important;
}

.owl-carousel .owl-dots .owl-dot {
  margin-right: 8px;
  vertical-align: middle;
}

.owl-carousel .owl-dots .owl-dot:last-child {
  margin-right: 0;
}

.owl-carousel .owl-dots .owl-dot span {
  margin: 0;
  width: 30px;
  height: 6px;
  display: block;
  border-radius: 0;
  background: rgba(17, 17, 17, 0.08);
  -webkit-transition: background-color 400ms cubic-bezier(0.65, 0, 0.35, 1);
  transition: background-color 400ms cubic-bezier(0.65, 0, 0.35, 1);
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #ff5500;
}

.owl-carousel .item:hover {
  cursor: w-resize;
}

/* ---------------------------------------------------------------- */
/* 04.Buttons                                                     
/* ---------------------------------------------------------------- */
.default-primary-btn {
  padding: 18px 40px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  border-radius: 4px;
  background: #ff5500;
  color: #fff;
  border: none;
  outline: none;
}

.default-primary-btn:hover {
  color: #fff;
  background: #302d3b;
}

.default-video-btn {
  width: 60px;
  height: 60px;
  margin-left: 15px;
  line-height: 60px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  border-radius: 4px;
  background: #302d3b;
  color: #fff;
  border: none;
  outline: none;
}

.default-video-btn:hover {
  color: #fff;
  background: #ff5500;
}

.scroll-top-btn {
  bottom: 0;
  opacity: 0;
  right: 10px;
  width: 54px;
  height: 54px;
  z-index: 1444;
  line-height: 54px;
  font-size: 16px;
  border-radius: 4px;
  text-align: center;
  position: fixed;
  visibility: hidden;
  color: #fff !important;
  background: #ff5500;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.scroll-top-btn:hover {
  color: #fff;
  background: #302d3b;
}

.scroll-top-btn.active {
  opacity: 1;
  bottom: 10px;
  visibility: visible;
}

/* ---------------------------------------------------------------- */
/* 05.Animations                                                     
/* ---------------------------------------------------------------- */
@-webkit-keyframes preloaderProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes preloaderProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes preloaderOpen {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes preloaderOpen {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@-webkit-keyframes colorChange {
  0% {
    color: #fff;
  }
  50% {
    opacity: 0.2;
    color: #ff5500;
  }
  75% {
    opacity: 1;
    color: #fff;
  }
  100% {
    opacity: 0.2;
    color: #ff5500;
  }
}

@keyframes colorChange {
  0% {
    color: #fff;
  }
  50% {
    opacity: 0.2;
    color: #ff5500;
  }
  75% {
    opacity: 1;
    color: #fff;
  }
  100% {
    opacity: 0.2;
    color: #ff5500;
  }
}

@-webkit-keyframes skChase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes skChase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes skChaseDot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes skChaseDot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes skChaseDotBefore {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes skChaseDotBefore {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

/* ---------------------------------------------------------------- */
/* 06.Form(Input, Comment)                             
/* ---------------------------------------------------------------- */
.custom-modal {
  z-index: 99999999;
}

.custom-modal .modal-content {
  background: transparent;
  border: none;
}

.custom-modal .modal-content .modal-header {
  padding: 20px 30px;
  background: #ff5500;
  border-radius: 10px 10px 0 0;
}

.custom-modal .modal-content .modal-header .modal-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.custom-modal .modal-content .modal-header button {
  opacity: 1;
  border: none;
  background: transparent;
}

.custom-modal .modal-content .modal-header button span {
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}

.custom-modal .modal-content .modal-body {
  padding: 30px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.custom-modal .modal-content .modal-body .popup-form-group {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.custom-modal .modal-content .modal-body .popup-form-group .popup-form-control {
  height: 60px;
  outline: none;
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 10px;
  color: #111;
  background: #fff;
  padding: 0 20px 0 60px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.custom-modal .modal-content .modal-body .popup-form-group .popup-form-control:focus {
  outline: none;
  border-color: #ff5500;
}

.custom-modal .modal-content .modal-body .popup-form-group > span {
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ff5500;
  font-size: 16px;
}

.custom-modal .modal-content .modal-body .popup-form-group textarea {
  height: auto !important;
  padding: 17px 20px 17px 60px !important;
}

#contactFormSuccessModal .modal-header, #contactFormDangerModal .modal-header {
  text-align: center;
  padding: 20px;
  border: 0;
}

#contactFormSuccessModal .modal-header h5, #contactFormSuccessModal .modal-header button, #contactFormDangerModal .modal-header h5, #contactFormDangerModal .modal-header button {
  color: #fff;
}

#contactFormSuccessModal .modal-header.danger, #contactFormDangerModal .modal-header.danger {
  background: #f87260;
  color: #fff;
}

#contactFormSuccessModal .modal-header.success, #contactFormDangerModal .modal-header.success {
  background: #2BB93B;
  color: #fff;
}

#contactFormSuccessModal .modal-body, #contactFormDangerModal .modal-body {
  border-radius: 0;
}

#contactFormSuccessModal .modal-body .form-popup-inner, #contactFormDangerModal .modal-body .form-popup-inner {
  text-align: center;
}

#contactFormSuccessModal .modal-body .form-popup-inner .form-icon, #contactFormDangerModal .modal-body .form-popup-inner .form-icon {
  margin-bottom: 30px;
}

#contactFormSuccessModal .modal-body .form-popup-inner .form-icon svg, #contactFormDangerModal .modal-body .form-popup-inner .form-icon svg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

#contactFormSuccessModal .modal-body .form-popup-inner .form-icon svg .path, #contactFormDangerModal .modal-body .form-popup-inner .form-icon svg .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}

#contactFormSuccessModal .modal-body .form-popup-inner .form-icon svg .path.circle, #contactFormDangerModal .modal-body .form-popup-inner .form-icon svg .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
          animation: dash 0.9s ease-in-out;
}

#contactFormSuccessModal .modal-body .form-popup-inner .form-icon svg .path.line, #contactFormDangerModal .modal-body .form-popup-inner .form-icon svg .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
          animation: dash 0.9s 0.35s ease-in-out forwards;
}

#contactFormSuccessModal .modal-body .form-popup-inner .form-icon svg .path.check, #contactFormDangerModal .modal-body .form-popup-inner .form-icon svg .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dashCheck 0.9s 0.35s ease-in-out forwards;
          animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}

#contactFormSuccessModal .modal-body .form-popup-inner .form-icon.danger svg, #contactFormDangerModal .modal-body .form-popup-inner .form-icon.danger svg {
  fill: #f87260;
  stroke: #f87260;
  background: rgba(248, 114, 96, 0.1);
}

#contactFormSuccessModal .modal-body .form-popup-inner .form-icon.success svg, #contactFormDangerModal .modal-body .form-popup-inner .form-icon.success svg {
  fill: #2BB93B;
  stroke: #2BB93B;
  background: rgba(43, 185, 59, 0.1);
}

#contactFormSuccessModal .modal-footer, #contactFormDangerModal .modal-footer {
  border-radius: 0 0 20px 20px;
  background: #fff;
  padding: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#contactFormSuccessModal .modal-footer .popup-link, #contactFormDangerModal .modal-footer .popup-link {
  font-weight: 700;
  color: #111;
}

#contactFormSuccessModal .modal-footer .popup-link.success:hover, #contactFormDangerModal .modal-footer .popup-link.success:hover {
  color: #2BB93B;
  text-decoration: underline;
}

#contactFormSuccessModal .modal-footer .popup-link.danger:hover, #contactFormDangerModal .modal-footer .popup-link.danger:hover {
  color: #f87260;
  text-decoration: underline;
}

.contact-alerts .empty-form span, .contact-alerts .email-invalid span,
.contact-alerts .phone-invalid span, .contact-alerts .empty-select span,
.contact-alerts .security-alert span {
  display: block;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: #f87260;
}

.custom-form-group .captcha-input {
  padding-left: 90px !important;
}

.custom-form-group #contactFormCaptchaSpan, #contactFormCaptchaSpan2 {
  position: absolute;
  top: 0;
  height: 60px;
  display: block;
  width: 70px;
  line-height: 60px;
  background: #ff5500;
  color: #fff;
  font-weight: 500;
  border-radius: 5px 0 0 5px;
}

body[style], header[style] {
  padding-right: 0 !important;
}

.modal-open {
  overflow: auto;
  padding-right: 0 !important;
}

.custom-form-group {
  position: relative;
}

.custom-form-group .custom-select {
  height: auto;
}

.custom-form-group .custom-form-control {
  width: 100%;
  display: block;
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 17px 20px 17px 60px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.custom-form-group .custom-form-control:focus {
  border-color: #ff5500;
}

.custom-form-group > span {
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ff5500;
  font-size: 16px;
}

.comment-block {
  margin-bottom: 30px;
}

.comment-block .comments-wrap .comments-item-wrap {
  margin-bottom: 20px;
}

.comment-block .comments-wrap .comments-item-wrap .comments-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.comment-block .comments-wrap .comments-item-wrap .comments-item .comment-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comment-block .comments-wrap .comments-item-wrap .comments-item .comment-header a {
  color: #111;
  text-transform: capitalize;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.comment-block .comments-wrap .comments-item-wrap .comments-item .comment-header a i {
  margin-right: 10px;
  color: #ff5500;
}

.comment-block .comments-wrap .comments-item-wrap .comments-item .comment-header a:hover {
  color: #ff5500;
}

.comment-block .comments-wrap .comments-item-wrap .comments-item img {
  margin-right: 15px;
  border-radius: 4px;
}

.comment-block .comments-wrap .comments-item-wrap .comments-item.sub-comment {
  margin-top: 20px;
  margin-left: 120px;
}

.comment-block .comments-wrap .comments-item-wrap:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 576px) {
  .comment-block .comments-wrap .comments-item-wrap .comments-item.sub-comment {
    margin-left: 15px;
  }
}

/* ---------------------------------------------------------------- */
/* 07.Pagination                              
/* ---------------------------------------------------------------- */
.pagination-wrap {
  margin-top: 20px;
}

.pagination-wrap .pagination-link {
  width: 50px;
  height: 50px;
  color: #111;
  line-height: 50px;
  margin: 0 5px 0 0;
  text-align: center;
  display: inline-block;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.pagination-wrap .pagination-link:hover, .pagination-wrap .pagination-link.active {
  background: #ff5500;
  color: #fff !important;
}

.pagination-wrap .pagination-link:last-child {
  margin-right: 0;
}

/* ---------------------------------------------------------------- */
/* 08.Preloader                            
/* ---------------------------------------------------------------- */
#preloader-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #302d3b;
}

#preloader-wrap .sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-animation: skChase 2.5s infinite linear both;
          animation: skChase 2.5s infinite linear both;
}

#preloader-wrap .sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: skChaseDot 2.0s infinite ease-in-out both;
          animation: skChaseDot 2.0s infinite ease-in-out both;
}

#preloader-wrap .sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: skChaseDotBefore 2.0s infinite ease-in-out both;
          animation: skChaseDotBefore 2.0s infinite ease-in-out both;
}

#preloader-wrap .sk-chase-dot:nth-child(1) {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

#preloader-wrap .sk-chase-dot:nth-child(2) {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

#preloader-wrap .sk-chase-dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

#preloader-wrap .sk-chase-dot:nth-child(4) {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

#preloader-wrap .sk-chase-dot:nth-child(5) {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

#preloader-wrap .sk-chase-dot:nth-child(6) {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

#preloader-wrap .sk-chase-dot:nth-child(1):before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

#preloader-wrap .sk-chase-dot:nth-child(2):before {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

#preloader-wrap .sk-chase-dot:nth-child(3):before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

#preloader-wrap .sk-chase-dot:nth-child(4):before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

#preloader-wrap .sk-chase-dot:nth-child(5):before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

#preloader-wrap .sk-chase-dot:nth-child(6):before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

/* ---------------------------------------------------------------- */
/* 09.Header                                                   
/* ---------------------------------------------------------------- */
.header {
  padding: 10px 0;
  -webkit-transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
}

.header .navbar-brand {
  padding: 0;
  color: #fff;
  margin-right: 0;
  text-transform: capitalize;
}

.header .navbar-brand img {
  display: none;
}

.header .navbar-brand img.logo-transparent {
  display: block;
}

.header .default-nav-btn {
  padding: 18px 35px;
  text-align: center;
  margin-left: 20px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  background: #ff5500;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 4px;
}

.header .default-nav-btn:hover {
  color: #fff;
  background: #302d3b;
}

.header .nav-item .nav-link {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 28px 20px;
  text-transform: uppercase;
  display: block;
  position: relative;
  line-height: 28px;
  opacity: 0.8;
}

.header .nav-item .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: #fff;
}

.header .nav-item .nav-link.active {
  opacity: 1;
}

.header .nav-item .nav-link:not(.active):after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  z-index: 7;
  content: '';
  position: absolute;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  background: #fff;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header .nav-item .nav-link:not(.active):hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.header .nav-item:hover > a {
  color: #fff;
  opacity: 1;
}

.header .nav-item.dropdown:hover .nav-link:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.header .nav-item.dropdown .dropdown-menu {
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 15px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 3px 15px 0 rgba(17, 17, 17, 0.1);
}

.header .nav-item.dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  color: #111;
  font-size: 0.875rem;
  display: block;
  font-weight: 400;
  padding: 12px 20px;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background: #ff5500;
  border-bottom-color: #ff5500;
}

.header .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: 0;
}

.header .nav-item.dropdown .dropdown-toggle {
  padding-right: 25px !important;
}

.header .nav-item.dropdown .dropdown-toggle:after {
  display: inline-block;
  margin-left: 0;
  vertical-align: initial;
  content: "";
  border: none;
}

.header .nav-item.dropdown .dropdown-toggle:before {
  content: "\f078";
  top: 50%;
  right: 0;
  position: absolute;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .nav-item.dropdown .dropdown-toggle[aria-expanded="true"]:before {
  top: 28px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header .navbar-toggler {
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0 10px 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header .navbar-toggler .togler-icon-inner span {
  height: 3px;
  margin: 5px;
  width: 30px;
  display: block;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .navbar-toggler .togler-icon-inner span:nth-child(2) {
  width: 20px !important;
  margin-left: auto;
}

.header .navbar-toggler .togler-icon-inner span:last-child {
  margin-bottom: 0;
}

.header .navbar-toggler[aria-expanded="true"] .togler-icon-inner span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.header .navbar-toggler[aria-expanded="true"] .togler-icon-inner span:nth-child(2) {
  opacity: 0;
}

.header .navbar-toggler[aria-expanded="true"] .togler-icon-inner span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

/* Header Shrink */
.default-header .nav-item:hover .nav-link {
  color: #ff5500;
}

.default-header .nav-item .nav-link {
  color: #111;
  opacity: 1;
}

.default-header .nav-item .nav-link.active, .default-header .nav-item .nav-link:hover {
  color: #ff5500;
}

.default-header .nav-item .nav-link:after {
  background: #ff5500;
}

.default-header .nav-item .nav-link:not(.active):after {
  background: #ff5500;
}

.default-header .navbar-toggler .togler-icon-inner span {
  background-color: #111;
}

.header-shrink {
  border-bottom: none;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 3px 15px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 3px 15px 0 rgba(17, 17, 17, 0.1);
}

.header-shrink .nav-item:hover .nav-link {
  color: #ff5500;
}

.header-shrink .nav-item .nav-link {
  color: #111;
  opacity: 1;
}

.header-shrink .nav-item .nav-link.active, .header-shrink .nav-item .nav-link:hover {
  color: #ff5500;
}

.header-shrink .nav-item .nav-link:after {
  background: #ff5500;
}

.header-shrink .nav-item .nav-link:not(.active):after {
  background: #ff5500;
}

.header-shrink .navbar-toggler .togler-icon-inner span {
  background-color: #111;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
  .header .container {
    max-width: 100%;
    padding: 0;
  }
  .header .navbar-brand {
    padding: 10px 0 10px 15px;
  }
  .header .main-menu {
    background: #fff;
  }
  .header .main-menu .navbar-nav {
    max-height: 230px;
    overflow: hidden;
    overflow-y: auto;
  }
  .header .main-menu .navbar-nav .nav-item:nth-child(6) .nav-link {
    border-bottom: 0;
  }
  .header .main-menu .navbar-nav .nav-link {
    color: #111;
    padding: 7px 15px !important;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    opacity: 1;
    border-bottom: 1px solid #eee;
  }
  .header .main-menu .navbar-nav .nav-link:after {
    display: none;
  }
  .header .main-menu .navbar-nav .nav-link.active {
    background: #ff5500;
    color: #fff !important;
    border-color: #ff5500;
  }
  .header .main-menu .navbar-nav .nav-link:not(.active):hover {
    background: #ff5500;
    color: #fff !important;
    border-color: #ff5500;
  }
  .header .main-menu .nav-item .dropdown-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #faf7f3;
  }
  .header .main-menu .nav-item .dropdown-menu .dropdown-item:hover {
    background: #ff5500;
  }
  .header .dropdown-toggle:before {
    top: 23px !important;
    right: 20px !important;
  }
  .header .dropdown-toggle[aria-expanded="true"]:before {
    top: 7px !important;
    -webkit-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }
  .navbar-btn-resp {
    display: none !important;
  }
  /* Header Shrink */
  .header-shrink .nav-item:hover .nav-link {
    color: #ff5500;
  }
  .header-shrink .nav-item .nav-link {
    color: #111;
  }
  .header-shrink .nav-item .nav-link.active, .header-shrink .nav-item .nav-link:hover {
    color: #ff5500;
  }
  .header-shrink .nav-item .nav-link:after {
    background: #ff5500;
  }
  .header-shrink .nav-item .nav-link:not(.active):after {
    background: #ff5500;
  }
  .header-shrink .togler-icon-inner span {
    background-color: #111;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Large devices (desktop, less than min-width: 992px)
/* ---------------------------------------------------------------- */
@media screen and (min-width: 991.98px) {
  .dropdown-menu {
    border: 0;
    top: 100%;
    left: 0;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    color: #111;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    display: initial;
    min-width: 230px;
    border-radius: 0;
    position: absolute;
  }
  .dropdown-menu.show {
    opacity: 1;
    top: 100%;
    visibility: visible;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

/* ---------------------------------------------------------------- */
/* 10.Hero Banner                                              
/* ---------------------------------------------------------------- */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-banner .hero-inner .hero-social-links {
  margin-bottom: 20px;
}

.hero-banner .hero-inner .hero-social-links a {
  width: 40px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: #ff5500;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin-right: 10px;
  border-radius: 4px;
}

.hero-banner .hero-inner .hero-social-links a:hover {
  background: #302d3b;
  color: #fff;
}

.hero-banner .hero-inner h1 {
  margin-bottom: 30px;
}

.hero-banner .hero-inner p {
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.hero-banner .hero-image-wrap {
  text-align: right;
}

.hero-banner .hero-image-wrap .hero-image-inner {
  text-align: right;
  position: relative;
  display: inline-block;
}

.hero-banner .hero-image-wrap .hero-image-inner img {
  border-radius: 4px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query Less Than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
  .hero-banner .hero-image-wrap {
    display: none;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query ( less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .hero-banner .hero-inner h1 {
    font-size: 3rem;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 576px) {
  .hero-banner .hero-inner h1 {
    font-size: 2.1rem;
  }
  .hero-banner .hero-inner p {
    font-size: 1rem;
  }
}

/* ---------------------------------------------------------------- */
/* 11.About Me                               
/* ---------------------------------------------------------------- */
.about-image-wrap {
  text-align: left;
}

.about-image-wrap img {
  border-radius: 4px;
}

.about-inner {
  margin-bottom: 30px;
}

.about-inner h3 {
  margin-bottom: 15px;
}

.about-inner p {
  margin-bottom: 15px;
}

.about-details {
  margin-bottom: 26px;
}

.about-details .about-details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.about-details .about-details-item i {
  color: #fff;
  margin-right: 15px;
  font-size: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 4px;
  background: #ff5500;
}

.about-details .about-details-item .text h5 {
  margin-bottom: 6px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query Less Than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
  .about-image-wrap {
    display: none;
  }
}

/* ---------------------------------------------------------------- */
/* 12.My Resume                               
/* ---------------------------------------------------------------- */
.resume-item {
  margin-bottom: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.resume-item .resume-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px 80px 30px 30px;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.resume-item .resume-header .resume-toggle {
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ff5500;
}

.resume-item .resume-header .resume-toggle[aria-expanded="true"] i:before {
  content: "\f067";
}

.resume-item .resume-item-body {
  padding: 30px;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-top: 1px solid #eee;
  border-radius: 4px;
}

.resume-item .resume-item-body h6 {
  margin-bottom: 20px;
  background: #ff5500;
  display: inline-block;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: normal;
  border-radius: 4px;
  color: #fff;
}

/* ---------------------------------------------------------------- */
/* 13.My Skills                               
/* ---------------------------------------------------------------- */
.skills-progress-wrap .skills-item {
  overflow: hidden;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  background: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.skills-progress-wrap .skills-item .skills-progress-bar {
  height: 7px;
  position: relative;
  background: #302d3b;
  margin-top: 10px;
  overflow: hidden;
}

.skills-progress-wrap .skills-item .skills-progress-bar .skills-progress-value {
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  background: #ff5500;
}

.skills-progress-wrap .skills-item .skills-item-text h6 .skill-percent {
  float: right;
}

/* ---------------------------------------------------------------- */
/* 14.Counters                       
/* ---------------------------------------------------------------- */
#counter {
  background: #faf7f3;
}

.counter-item {
  text-align: center;
  margin-bottom: 30px;
}

.counter-item .icon {
  padding: 30px;
  border-radius: 4px 4px 0 0;
  background: #ff5500;
}

.counter-item .icon span {
  font-size: 60px;
  color: #fff;
}

.counter-item .body {
  padding: 30px;
  border-radius: 0 0 4px 4px;
  background: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.counter-item .body h5 {
  margin-bottom: 5px;
  color: #ff5500;
  font-size: 18px;
}

.counter-item .body span {
  font-size: 40px;
  font-weight: 800;
  color: #302d3b;
}

/* ---------------------------------------------------------------- */
/* 15.My Services                   
/* ---------------------------------------------------------------- */
.tab-link-wrap .tab-link-item {
  cursor: pointer;
  text-align: center;
  margin-bottom: 30px;
}

.tab-link-wrap .tab-link-item .tab-link-inner {
  padding: 30px;
  border-radius: 4px;
  text-align: center;
  background: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.tab-link-wrap .tab-link-item span {
  display: block;
  margin-bottom: 20px;
}

.tab-link-wrap .tab-link-item span::before {
  font-size: 60px;
  color: #ff5500;
  margin-left: 0;
  line-height: 80px;
}

.tab-link-wrap .tab-link-item.active .tab-link-inner, .tab-link-wrap .tab-link-item:hover .tab-link-inner {
  background: #ff5500;
}

.tab-link-wrap .tab-link-item.active span::before, .tab-link-wrap .tab-link-item:hover span::before {
  color: #fff;
}

.tab-link-wrap .tab-link-item.active h5, .tab-link-wrap .tab-link-item:hover h5 {
  color: #fff;
}

.tab-content-item {
  display: none;
}

.tab-content-item.active {
  display: block;
  -webkit-animation: fadeInUp 0.25s ease;
          animation: fadeInUp 0.25s ease;
}

.tab-content-item img {
  border-radius: 4px;
}

.tab-content-inner h4 {
  margin-bottom: 20px;
}

.tab-content-inner p {
  margin-bottom: 20px;
}

.tab-content-inner ul {
  margin-bottom: 51px;
}

.tab-content-inner ul li {
  margin-top: 12px;
  color: #111;
  font-weight: 600;
}

.tab-content-inner ul li:first-child {
  margin-top: 0;
}

.tab-content-inner ul li::before {
  content: "\f00c";
  padding-right: 9px;
  color: #ff5500;
  vertical-align: middle;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query Less Than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
  .services-tab-image {
    margin-bottom: 30px;
  }
}

/* ---------------------------------------------------------------- */
/* 16.Portfolio (Gallery)                          
/* ---------------------------------------------------------------- */
.portfolio-filter {
  text-align: left;
  margin-bottom: 50px;
}

.portfolio-filter a {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 4px;
  background: transparent;
  color: #111;
  margin-right: 10px;
  font-weight: 600;
  border: 2px solid #eee;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.portfolio-filter a:last-child {
  margin-right: 0;
}

.portfolio-filter a:hover, .portfolio-filter a.current {
  background: #ff5500;
  color: #fff;
  border-color: #ff5500;
}

.portfolio-item {
  margin-bottom: 30px;
  border-radius: 4px;
}

.portfolio-item .portfolio-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.portfolio-item .portfolio-item-inner .portfolio-item-img {
  border-radius: 4px;
}

.portfolio-item .portfolio-item-inner .portfolio-item-img img {
  border-radius: 4px;
}

.portfolio-item .portfolio-item-inner .portfolio-item-img:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  position: absolute;
  background: #302d3b;
  pointer-events: none;
  border-radius: 4px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.portfolio-item .portfolio-item-inner .portfolio-details {
  left: 50%;
  z-index: 15;
  bottom: 20px;
  opacity: 0;
  text-align: center;
  border-radius: 4px;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.portfolio-item .portfolio-item-inner .portfolio-details h5 {
  display: block;
  margin-bottom: 5px;
  position: relative;
}

.portfolio-item .portfolio-item-inner .portfolio-details h5 a {
  color: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.portfolio-item .portfolio-item-inner .portfolio-details h5 a:hover {
  color: #ff5500 !important;
}

.portfolio-item .portfolio-item-inner .portfolio-details h5:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #ff5500;
  pointer-events: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: transform 0.5s cubic-bezier(1, 0.2, 0.5, 1), -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
}

.portfolio-item .portfolio-item-inner .portfolio-details span {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
}

.portfolio-item .portfolio-item-inner .portfolio-details span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #ff5500;
  pointer-events: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
  transition: transform 0.5s cubic-bezier(1, 0.2, 0.5, 1), -webkit-transform 0.5s cubic-bezier(1, 0.2, 0.5, 1);
}

.portfolio-item:hover .portfolio-item-inner .portfolio-item-img:after {
  opacity: 0.75;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.portfolio-item:hover .portfolio-item-inner .portfolio-details {
  opacity: 1;
  bottom: 30px;
}

.portfolio-item:hover .portfolio-item-inner .portfolio-details h5:after, .portfolio-item:hover .portfolio-item-inner .portfolio-details span:after {
  opacity: 1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query less than 450px
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 450.98px) {
  .portfolio-filter {
    text-align: center;
  }
  .portfolio-filter a {
    display: block;
    padding: 11px 22px;
    background: transparent;
    color: #111;
    margin-right: 0;
    font-weight: 600;
    border: 2px solid #eee;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    margin-bottom: 12px;
  }
  .portfolio-filter a:last-child {
    margin-bottom: 0;
  }
  .portfolio-filter a:hover, .portfolio-filter a.current {
    background: #ff5500;
    color: #fff;
    border-color: #ff5500;
  }
}

/* ---------------------------------------------------------------- */
/* 17.Clients                        
/* ---------------------------------------------------------------- */
.clients-item {
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  background: #fff;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.clients-item .clients-img {
  display: inline-block !important;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clients-item .clients-rating {
  margin-bottom: 20px;
}

.clients-item .clients-rating i {
  color: #ff5500;
}

.clients-item .clients-text {
  margin-bottom: 20px;
}

.clients-item .clients-text p {
  margin-bottom: 20px;
}

.clients-item .clients-text h5 {
  margin-bottom: 7px;
}

.clients-item .clients-text span {
  color: #ff5500;
}

.clients-item .quote i {
  color: #ff5500;
  font-size: 25px;
  font-weight: 600;
}

/* ---------------------------------------------------------------- */
/* 18.Team                        
/* ---------------------------------------------------------------- */
.team-item {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-item .team-img {
  position: relative;
  z-index: 12;
  border-radius: 4px;
}

.team-item .team-img img {
  border-radius: 4px;
}

.team-item .team-img:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  position: absolute;
  background: #302d3b;
  pointer-events: none;
  border-radius: 4px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.team-item .team-social {
  top: 50%;
  left: 50%;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 14;
  margin-top: -50px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.team-item .team-social a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: #ff5500;
}

.team-item .team-social a:hover {
  background: #fff;
  color: #ff5500;
}

.team-item .team-social a:last-child {
  margin-right: 0;
}

.team-item .team-details {
  padding: 30px;
  margin-bottom: 30px;
  background: #fff;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.team-item .team-details h5 {
  margin-bottom: 7px;
}

.team-item .team-details span {
  color: #ff5500;
  font-weight: 600;
}

.team-item:hover .team-social {
  margin-top: 0;
  opacity: 1;
}

.team-item:hover .team-img:after {
  opacity: 0.75;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ---------------------------------------------------------------- */
/* 19.Banner                        
/* ---------------------------------------------------------------- */
#banner {
  z-index: 8;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#banner:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -8;
  opacity: 0.75;
  position: absolute;
  background: #302d3b;
}

.banner-inner {
  text-align: center;
}

.banner-inner h4 {
  color: #fff;
  margin-bottom: 30px;
}

.banner-inner p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------------------------------------------------------------- */
/* 20.Blog                       
/* ---------------------------------------------------------------- */
.blog-item {
  margin-bottom: 30px;
  border-radius: 4px;
}

.blog-item .blog-img {
  overflow: hidden;
  border-radius: 4px;
}

.blog-item .blog-img img {
  border-radius: 4px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog-item .blog-img:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.blog-item .blog-body {
  padding: 30px;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.blog-item .blog-body .blog-meta {
  margin-bottom: 10px;
}

.blog-item .blog-body .blog-meta span i {
  margin-right: 10px;
  color: #ff5500;
}

.blog-item .blog-body .blog-meta span:first-child {
  margin-right: 15px;
}

.blog-item .blog-body .blog-text h5 {
  margin-bottom: 20px;
}

.blog-item .blog-body .blog-text h5 a {
  color: #111;
}

.blog-item .blog-body .blog-text h5 a:hover {
  color: #ff5500;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.blog-item .blog-body .blog-text p {
  margin-bottom: 20px;
}

.blog-item .blog-body .blog-text .blog-more-btn {
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 9px 20px;
  text-align: center;
  position: relative;
  border-radius: 4px;
  background: #ff5500;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.blog-item .blog-body .blog-text .blog-more-btn:hover {
  color: #fff;
  background: #302d3b;
}

#blog-grid .blog-item, #blog-sidebar .blog-item {
  margin-bottom: 30px;
}

/* ---------------------------------------------------------------- */
/* 21.Contact                      
/* ---------------------------------------------------------------- */
.contact-info .contact-info-text {
  margin-bottom: 50px;
}

.contact-info .contact-info-text h5 {
  font-size: 1.875rem;
  margin-bottom: 15px;
}

.contact-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
  margin-bottom: 20px;
}

.contact-info-box:last-child {
  margin-bottom: 0;
}

.contact-info-box span {
  width: 60px;
  height: 60px;
  font-size: 25px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  margin-right: 25px;
  background: #ff5500;
}

.contact-info-box .text h5 {
  margin-bottom: 10px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query Less Than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
  .contact-info {
    margin-bottom: 30px;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query Less Than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 576px) {
  .contact-info .contact-info-text h5 {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------- */
/* 22.Footer                             
/* ---------------------------------------------------------------- */
.footer {
  background: #302d3b;
}

.footer .footer-top {
  padding: 80px 0 50px 0;
}

.footer .footer-top .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-top .footer-widget .footer-desc {
  color: #fff;
  opacity: 0.75;
  margin-bottom: 20px;
}

.footer .footer-top .footer-widget .footer-title {
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
}

.footer .footer-top .footer-widget .footer-title:after {
  content: "";
  display: block;
  background: #fff;
  margin-top: 10px;
  width: 50px;
  height: 2px;
}

.footer .footer-top .footer-widget .footer-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #ff5500;
}

.footer .footer-top .footer-widget .footer-social-links a {
  width: 40px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin-right: 10px;
}

.footer .footer-top .footer-widget .footer-social-links a:hover {
  background: #ff5500;
  color: #fff;
}

.footer .footer-top .footer-widget .footer-contact-info-list li {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer .footer-top .footer-widget .footer-contact-info-list li:last-child {
  margin-bottom: 0;
}

.footer .footer-top .footer-widget .footer-contact-info-list li i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  margin-right: 15px;
  height: 40px;
  width: 40px;
  border-radius: 4px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  font-size: 14px;
}

.footer .footer-top .footer-widget .footer-contact-info-list li span {
  color: #fff;
  opacity: 0.75;
  vertical-align: middle;
}

.footer .footer-top .footer-widget .footer-links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.footer .footer-top .footer-widget .footer-links li:last-child {
  margin-bottom: 0;
}

.footer .footer-top .footer-widget .footer-links li span {
  color: #fff;
  opacity: 0.75;
}

.footer .footer-top .footer-widget .footer-links li a {
  color: #fff;
  opacity: 0.8;
}

.footer .footer-top .footer-widget .footer-links li a:hover {
  color: #fff;
  opacity: 1;
  text-decoration: underline;
}

.footer .footer-top .footer-widget .footer-links li:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-right: 15px;
  display: inline-block;
  color: #fff;
}

.footer .copyright {
  background: rgba(255, 255, 255, 0.01);
  padding: 30px 0;
}

.footer .copyright .copyright-text {
  color: #fff;
  opacity: 0.75;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (min-width: 991.98px) {
  .footer-desc {
    padding-right: 30px;
  }
}

/* ---------------------------------------------------------------- */
/* 23.Breadcrumb                            
/* ---------------------------------------------------------------- */
.breadcrumb-section {
  z-index: 42;
  overflow: hidden;
  padding: 170px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.breadcrumb-section:before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.75;
  z-index: -42;
  position: absolute;
  background: #302d3b;
}

.breadcrumb-section .breadcrumb-inner {
  position: relative;
  z-index: 18;
}

.breadcrumb-section .breadcrumb-inner h1 {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 15px;
}

.breadcrumb-section .breadcrumb-inner .breadcrumb-links li {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumb-section .breadcrumb-inner .breadcrumb-links li.active:before {
  content: "\f30b";
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: middle;
  color: #ff5500;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.breadcrumb-section .breadcrumb-inner .breadcrumb-links li a {
  color: #fff;
}

.breadcrumb-section .breadcrumb-inner .breadcrumb-links li a:hover {
  text-decoration: underline;
  color: #ff5500;
}

/* ---------------------------------------------------------------- */
/* 24.Sidebar                              
/* ---------------------------------------------------------------- */
.blog-sidebar .blog-widgets {
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 23px 49px 0 rgba(17, 17, 17, 0.1);
}

.blog-sidebar .blog-widgets .blog-search-btn {
  top: 0;
  right: 0;
  border: none;
  width: 60px;
  outline: none;
  height: 100%;
  position: absolute;
  background: #ff5500;
  border-radius: 0 4px 4px 0;
  color: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.blog-sidebar .blog-widgets .blog-search-btn:hover {
  background: #302d3b;
}

.blog-sidebar .blog-widgets .blog-search-bar {
  width: 100%;
}

.blog-sidebar .blog-widgets .blog-search-bar .search-form-control {
  width: 100%;
  display: block;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 15px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 6px 15px 0 rgba(17, 17, 17, 0.1);
  padding: 18px 75px 18px 60px;
  border: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.blog-sidebar .blog-widgets .blog-search-bar i {
  position: absolute;
  width: 60px;
  top: 22px;
  left: 20px;
  color: #ff5500;
}

.blog-sidebar .blog-widgets:last-child {
  margin-bottom: 0;
}

.blog-sidebar .blog-widgets.tag-widgets {
  padding-bottom: 20px;
}

.blog-sidebar .recent-post-item {
  margin-bottom: 20px;
}

.blog-sidebar .recent-post-item:last-child {
  margin-bottom: 0;
}

.blog-sidebar .recent-post-item .recent-post-img {
  float: left;
  margin-right: 1rem;
}

.blog-sidebar .recent-post-item .recent-post-img img {
  border-radius: 4px;
}

.blog-sidebar .recent-post-item .recent-post-body .recent-post-title {
  margin-bottom: 14px;
  line-height: 1.5;
  font-size: 1.1rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.blog-sidebar .recent-post-item .recent-post-body .recent-post-title:hover {
  color: #ff5500;
}

.blog-sidebar .recent-post-item .recent-post-body .recent-post-date {
  font-size: 14px;
}

.blog-sidebar .recent-post-item .recent-post-body .recent-post-date i {
  margin-right: 8px;
  color: #ff5500;
}

.blog-sidebar .blog-archive-list li, .blog-sidebar .blog-category-list li {
  display: block;
  padding: 10px 10px 10px 0;
}

.blog-sidebar .blog-archive-list li:last-child, .blog-sidebar .blog-category-list li:last-child {
  padding-bottom: 0;
}

.blog-sidebar .blog-archive-list li a, .blog-sidebar .blog-category-list li a {
  color: #111;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-weight: 600;
}

.blog-sidebar .blog-archive-list li a:before, .blog-sidebar .blog-category-list li a:before {
  content: "\f054";
  color: #ff5500;
  display: inline-block;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.blog-sidebar .blog-archive-list li a:hover, .blog-sidebar .blog-archive-list li a.active, .blog-sidebar .blog-category-list li a:hover, .blog-sidebar .blog-category-list li a.active {
  color: #ff5500;
}

.blog-sidebar .blog-category-list li a .category-count {
  float: right;
}

.blog-sidebar .blog-tags li {
  float: left;
}

.blog-sidebar .blog-tags li a {
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  border-radius: 4px;
  display: inline-block;
  color: #111;
  padding: 10px 15px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: rgba(255, 85, 0, 0.07);
}

.blog-sidebar .blog-tags li a:hover, .blog-sidebar .blog-tags li a.active {
  background: #ff5500;
  color: #fff;
}

.blog-sidebar .blog-share li {
  margin-right: 10px;
  float: left;
}

.blog-sidebar .blog-share li:last-child {
  margin-right: 0;
}

.blog-sidebar .blog-share li a {
  width: 40px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: #ff5500;
}

.blog-sidebar .blog-share li a:hover {
  color: #fff;
  background: #302d3b;
}

.blog-sidebar .tag-widgets {
  margin-bottom: 20px;
}

.inner-header-title {
  margin-bottom: 25px !important;
  position: relative;
  padding-bottom: 20px;
  display: block;
}

.inner-header-title:after, .inner-header-title:before {
  content: "";
  bottom: 0;
  left: 0;
  height: 2px;
  position: absolute;
}

.inner-header-title:after {
  width: 60px;
  background: rgba(17, 17, 17, 0.05);
}

.inner-header-title:before {
  width: 30px;
  z-index: 36;
  background: #ff5500;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
  .blog-sidebar {
    margin-top: 30px;
  }
  .recent-post-item .recent-post-body .recent-post-title {
    line-height: 1.5;
    font-size: 1rem;
  }
}

/* ---------------------------------------------------------------- */
/* 25.RTL Mode                             
/* ---------------------------------------------------------------- */
body.rtl-mode {
  text-align: right;
  direction: rtl;
}

body.rtl-mode .scroll-top-btn {
  right: initial;
  left: 10px;
}

body.rtl-mode .owl-carousel .owl-dots .owl-dot {
  margin-right: 0;
  margin-left: 8px;
}

body.rtl-mode .owl-carousel .owl-dots .owl-dot:last-child {
  margin-left: 0;
}

body.rtl-mode .breadcrumb-section .breadcrumb-inner .breadcrumb-links li.active:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body.rtl-mode .inner-header-title:after,
body.rtl-mode .inner-header-title:before {
  left: initial;
  right: 0;
}

body.rtl-mode .blog-single-inner .blog-meta i {
  margin-right: 0;
  margin-left: 15px;
}

body.rtl-mode .blog-single-inner .blog-meta span:first-child {
  margin-right: 0;
  margin-left: 15px;
}

body.rtl-mode .comment-block .comments-wrap .comments-item-wrap .comments-item .comment-header a i {
  margin-right: 0;
  margin-left: 10px;
}

body.rtl-mode .comment-block .comments-wrap .comments-item-wrap .comments-item img {
  margin-right: 0;
  margin-left: 15px;
}

body.rtl-mode .blog-sidebar .blog-share li {
  margin-right: 0;
  margin-left: 10px;
  float: right;
}

body.rtl-mode .blog-sidebar .blog-tags li {
  float: right;
}

body.rtl-mode .blog-sidebar .blog-tags li a {
  margin-right: 0;
  margin-left: 10px;
}

body.rtl-mode .blog-sidebar .blog-archive-list li,
body.rtl-mode .blog-sidebar .blog-category-list li {
  padding: 10px 0 10px 10px;
}

body.rtl-mode .blog-sidebar .blog-archive-list li a:before,
body.rtl-mode .blog-sidebar .blog-category-list li a:before {
  margin-right: 0;
  margin-left: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body.rtl-mode .blog-sidebar .blog-category-list li a .category-count {
  float: left;
}

body.rtl-mode .blog-sidebar .recent-post-item .recent-post-img {
  float: right;
  margin-right: 0;
  margin-left: 1rem;
}

body.rtl-mode .blog-sidebar .recent-post-item .recent-post-body .recent-post-date i {
  margin-right: 0;
  margin-left: 8px;
}

body.rtl-mode .blog-sidebar .blog-widgets .blog-search-btn {
  right: initial;
  left: 0;
  border-radius: 4px 0 0 4px;
}

body.rtl-mode .blog-sidebar .blog-widgets .blog-search-bar .search-form-control {
  padding: 18px 60px 18px 75px;
}

body.rtl-mode .blog-sidebar .blog-widgets .blog-search-bar i {
  left: initial;
  right: 20px;
}

body.rtl-mode .post-buttons img {
  margin-right: 0;
  margin-left: 15px;
}

body.rtl-mode .post-buttons .post-btn-prev .text .prev-post i {
  margin-right: 0;
  margin-left: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body.rtl-mode .post-buttons .post-btn-next .text .next-post i {
  margin-left: 0;
  margin-right: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body.rtl-mode .pagination-wrap .pagination-link {
  margin: 0 0 0 5px;
}

body.rtl-mode .pagination-wrap .pagination-link:first-child i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body.rtl-mode .pagination-wrap .pagination-link:last-child {
  margin-left: 0;
}

body.rtl-mode .pagination-wrap .pagination-link:last-child i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body.rtl-mode .header .navbar-toggler {
  padding: 0 0 0 10px;
}

body.rtl-mode .header .default-nav-btn {
  margin-left: 0;
  margin-right: 10px;
}

body.rtl-mode .header .nav-item .nav-link {
  text-align: right;
}

body.rtl-mode .header .nav-item .nav-link:after {
  left: initial;
  right: 0;
}

body.rtl-mode .header .nav-item .nav-link:not(.active):after {
  left: initial;
  right: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

body.rtl-mode .header .nav-item .nav-link:not(.active):hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right;
          transform-origin: right;
}

body.rtl-mode .header .nav-item.dropdown .dropdown-item {
  text-align: right;
}

body.rtl-mode .header .nav-item.dropdown .dropdown-toggle:before {
  left: 0;
  right: initial;
}

body.rtl-mode .default-video-btn {
  margin-left: 0;
  margin-right: 15px;
}

body.rtl-mode .default-video-btn i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

body.rtl-mode .hero-banner .hero-inner .hero-social-links a {
  margin-right: 0;
  margin-left: 10px;
}

body.rtl-mode .hero-banner .hero-image-wrap {
  text-align: left;
}

body.rtl-mode .hero-banner .hero-image-wrap .hero-image-inner {
  text-align: right;
  position: relative;
  display: inline-block;
}

body.rtl-mode .hero-banner .hero-image-wrap .hero-image-inner img {
  border-radius: 4px;
}

body.rtl-mode .about-image-wrap {
  text-align: right;
}

body.rtl-mode .about-details .about-details-item i {
  margin-right: 0;
  margin-left: 15px;
}

body.rtl-mode .resume-item .resume-header {
  padding: 30px 30px 30px 80px;
}

body.rtl-mode .resume-item .resume-header .resume-toggle {
  right: initial;
  left: 0;
}

body.rtl-mode .skills-progress-wrap .skills-item .skills-progress-bar .skills-progress-value {
  left: 0;
  right: 0;
}

body.rtl-mode .skills-progress-wrap .skills-item .skills-item-text h6 .skill-percent {
  float: left;
}

body.rtl-mode .tab-content-inner ul li:before {
  display: none;
}

body.rtl-mode .tab-content-inner ul li:after {
  content: "\f00c";
  padding-left: 9px;
  color: #ff5500;
  vertical-align: middle;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

body.rtl-mode .portfolio-filter {
  text-align: right;
}

body.rtl-mode .portfolio-filter a {
  margin-right: 0;
  margin-left: 10px;
}

body.rtl-mode .portfolio-filter a:last-child {
  margin-left: 0;
}

body.rtl-mode .portfolio-item .portfolio-item-inner .portfolio-details h5:after {
  left: initial;
  right: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

body.rtl-mode .portfolio-item .portfolio-item-inner .portfolio-details span:after {
  left: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

body.rtl-mode .portfolio-item:hover .portfolio-item-inner .portfolio-details h5:after, body.rtl-mode .portfolio-item:hover .portfolio-item-inner .portfolio-details span:after {
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

body.rtl-mode .team-item .team-social a {
  margin-right: 0;
  margin-left: 15px;
}

body.rtl-mode .team-item .team-social a:last-child {
  margin-left: 0;
}

body.rtl-mode .blog-item .blog-body .blog-meta span i {
  margin-right: 0;
  margin-left: 10px;
}

body.rtl-mode .blog-item .blog-body .blog-meta span:first-child {
  margin-right: 0;
}

body.rtl-mode .blog-item .blog-body .blog-meta span:first-child i {
  margin-right: 0;
}

body.rtl-mode .blog-item .blog-body .blog-meta span:last-child i {
  margin-right: 15px;
}

body.rtl-mode .contact-info-box span {
  margin-right: 0;
  margin-left: 25px;
}

body.rtl-mode .custom-modal .modal-content .modal-body .popup-form-group .popup-form-control {
  padding: 0 60px 0 20px;
}

body.rtl-mode .custom-modal .modal-content .modal-body .popup-form-group > span {
  left: initial;
  right: 0;
}

body.rtl-mode .custom-modal .modal-content .modal-body .popup-form-group textarea {
  padding: 17px 60px 17px 20px !important;
}

body.rtl-mode .custom-form-group .captcha-input {
  padding-left: 20px !important;
  padding-right: 90px !important;
}

body.rtl-mode .custom-form-group .custom-form-control {
  padding: 17px 60px 17px 20px;
}

body.rtl-mode .custom-form-group > span {
  left: initial;
  right: 0;
}

body.rtl-mode .custom-form-group #contactFormCaptchaSpan {
  right: 0;
  border-radius: 0 5px 5px 0;
}

body.rtl-mode .footer .footer-top .footer-widget .footer-social-links a {
  margin-right: 0;
  margin-left: 10px;
}

body.rtl-mode .footer .footer-top .footer-widget .footer-contact-info-list li i {
  margin-right: 0;
  margin-left: 15px;
}

body.rtl-mode .footer .footer-top .footer-widget .footer-links li:before {
  margin-right: 0;
  margin-left: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (min-width: 991.98px) {
  body.rtl-mode .footer-desc {
    padding-right: 0;
    padding-left: 30px;
  }
  body.rtl-mode .dropdown-menu {
    left: initial;
    right: 0;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
  body.rtl-mode .header .navbar-brand {
    padding: 10px 15px 10px 0;
  }
  body.rtl-mode .header .dropdown-toggle:before {
    left: 20px !important;
    right: initial !important;
  }
}

/* ---------------------------------------------------------------- */
/* 26.Blog Single                              
/* ---------------------------------------------------------------- */
.blog-single-inner img {
  margin-bottom: 30px;
  border-radius: 4px;
}

.blog-single-inner h4 {
  margin-bottom: 20px;
}

.blog-single-inner .blog-meta {
  margin-bottom: 20px;
}

.blog-single-inner .blog-meta span, .blog-single-inner .blog-meta i {
  display: inline-block;
}

.blog-single-inner .blog-meta i {
  color: #ff5500;
  margin-right: 15px;
}

.blog-single-inner .blog-meta span:first-child {
  margin-right: 15px;
}

.blog-single-inner p {
  margin-bottom: 35px;
}

.blog-small-img img {
  margin-bottom: 30px;
  border-radius: 4px;
}

.post-buttons {
  margin-bottom: 30px;
}

.post-buttons .post-btn-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-buttons .post-btn-prev img {
  margin-right: 15px;
  border-radius: 4px;
}

.post-buttons .post-btn-prev h6 {
  margin-bottom: 20px;
}

.post-buttons .post-btn-prev h6 a {
  color: #111;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.post-buttons .post-btn-prev h6 a:hover {
  color: #ff5500;
}

.post-buttons .post-btn-prev .text .prev-post {
  color: #111;
  font-weight: 600;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.post-buttons .post-btn-prev .text .prev-post:hover {
  color: #ff5500;
}

.post-buttons .post-btn-prev .text .prev-post i {
  color: #ff5500;
  margin-right: 10px;
}

.post-buttons .post-btn-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-buttons .post-btn-next img {
  margin-right: 15px;
  border-radius: 4px;
}

.post-buttons .post-btn-next h6 {
  margin-bottom: 20px;
}

.post-buttons .post-btn-next h6 a {
  color: #111;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.post-buttons .post-btn-next h6 a:hover {
  color: #ff5500;
}

.post-buttons .post-btn-next .text .next-post {
  color: #111;
  font-weight: 600;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.post-buttons .post-btn-next .text .next-post:hover {
  color: #ff5500;
}

.post-buttons .post-btn-next .text .next-post i {
  color: #ff5500;
  margin-left: 10px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query ( less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .post-buttons .post-btn-prev {
    margin-bottom: 30px;
  }
}

/* ---------------------------------------------------------------- */
/* 27.Intro Page                              
/* ---------------------------------------------------------------- */
.hero-section {
  z-index: 35;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #302d3b;
}

.hero-section .intro-hero-subtitle {
  color: #fff;
  opacity: 0.9;
  font-weight: 300;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero-section .intro-hero-title {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-section .intro-hero-title span {
  font-size: 36px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 10px 20px;
  text-transform: uppercase;
  margin: 0 auto 15px auto;
  border: 1px solid #fff;
}

.hero-section .default-primary-btn:hover {
  background: #fff;
  color: #ff5500;
}

/* Demo Item */
.demo-item {
  margin-bottom: 30px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.demo-item .demo-title {
  padding: 30px 0;
  display: block;
  text-align: center;
  color: #111;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
}

.demo-item .demo-img {
  overflow: hidden;
  position: relative;
}

.demo-item .demo-item-link {
  padding: 30px;
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  color: #111 !important;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: rgba(255, 85, 0, 0.07);
}

.demo-item:hover .demo-item-link {
  color: #fff !important;
  background: #ff5500;
}

.demo-features-item {
  padding: 30px;
  text-align: center;
  background: #fff;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0 15px 20px 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 15px 20px 0 rgba(17, 17, 17, 0.1);
}

.demo-features-item .features-icon {
  margin-bottom: 20px;
}

.demo-features-item .features-text h5 {
  font-size: 1.125rem;
}

/* ------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media screen and (max-width: 576px) {
  .hero-section .intro-hero-title {
    font-size: 1.6rem;
  }
  .hero-section .intro-hero-title span {
    font-size: 2.5rem;
  }
}

/* ------------------------------------------------------------- */
/* 28.Other Helper Css
/* ---------------------------------------------------------------- */
.image-size-100 {
  height: 100px;
  width: 100px;
  object-fit: cover;
}

.font-100 {
  font-size: 100px;
}
/*# sourceMappingURL=style.css.map */