/*==================================================
  Google fonts
 ==================================================*/
 @import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");

 *:not(i) {
   font-family: "Raleway", sans-serif;
   font-weight: 400;
 }
 /*==================================================
   Global Style
  ==================================================*/
 
 /*==================================================
  Define custom styles
  ==================================================*/
 :root {
   --bg-black-900: #241f1f;
   --bg-black-100: #200202;
   --bg-black-50: #eff0f4;
   --bg-opacity: rgba(255, 255, 255, 0.5);
   --text-black-900: #232323;
   --text-black-700: #555555;
   --text-black-600: #666666;
   --text-black-300: #bbbbbb;
   --outer-shadow: 3px 3px 3px #d0d0d0, -3px -3px 3px #f8f8f8;
   --outer-shadow-0: 0 0 0 #d0d0d0, 0 0 0 #f8f8f8;
   --inner-shadow: inset 3px 3px 3px #d0d0d0, inset -3px -3px 3px #f8f8f8;
   --inner-shadow-0: inset 0 0 0 #d0d0d0, inset 0 0 0 #f8f8f8;
 }
 /* Override custome css variables for dark theme */
 body.dark {
   --bg-black-900: #f90a0a;
   --bg-black-100: #1b0303;
   --bg-black-50: #2b2c2f;
   --bg-opacity: rgba(43, 44, 47, 0.5);
   --text-black-900: #14ec79;
   --text-black-700: #e6e616;
   --text-black-600: #eb1313;
   --outer-shadow: 3px 3px 3px #73788a, -3px -3px 3px #0f0d0d;
   --outer-shadow-0: 0 0 0 #222327, 0 0 0 #363636;
   --inner-shadow: inset 3px 3px 3px #060606, inset -3px -3px 3px #363636;
   --inner-shadow-0: inset 0 0 0 #1f2024, inset 0 0 0 #363636;
 }
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   outline: none;
 }
 
 body {
   font-size: 16px;
   line-height: 1.5;
   overflow-x: hidden;
   background-color: var(--bg-black-50);
 }
 body.hide-scrolling {
   overflow-y: hidden;
 }
 
 :before,
 :after {
   box-sizing: border-box;
 }
 
 a {
   text-decoration: none;
 }
 ul {
   list-style: none;
   margin: 0px;
   padding: 0px;
 }
 img {
   vertical-align: middle;
   max-width: 100%;
 }
 .container {
   max-width: 1140px;
   margin: auto;
 }
 .row {
   display: flex;
   flex-wrap: wrap;
 }
 .justify-content-between {
   justify-content: space-between;
 }
 .outer-shadow {
   box-shadow: var(--outer-shadow);
 }
 .inner-shadow {
   box-shadow: var(--inner-shadow);
 }
 .hover-in-shadow {
   position: relative;
   z-index: 1;
 }
 .hover-in-shadow:hover {
   box-shadow: var(--outer-shadow-0);
 }
 .hover-in-shadow:after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transition: all 0.3s ease;
   z-index: -1;
 }
 .hover-in-shadow:hover:after {
   box-shadow: var(--inner-shadow);
 }
 .aling-itmes-center {
   align-items: center;
 }
 .btn-1 {
   padding: 10px 20px;
   font-size: 15px;
   font-weight: 500;
   color: var(--skin-color);
   background-color: transparent;
   line-height: 1.5;
   cursor: pointer;
   border-radius: 30px;
   transition: all 0.3s ease;
   display: inline-block;
   border: none;
 }
 .btn-1:after {
   border-radius: 30px;
 }
 .effect-wrap .effect {
   position: absolute;
   z-index: -1;
 }
 .effect-1 {
   width: 30px;
   height: 30px;
   border: 4px solid #8a49ff;
   right: 10%;
   bottom: 10%;
   animation: spin 10s linear infinite;
 }
 
 .effect-2 {
   left: 3%;
   bottom: 20%;
   width: 40px;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   animation: topBounce 3s ease-in-out infinite;
 }
 
 .effect-2 div {
   height: 3px;
   width: 3px;
   background-color: #ff9c07;
   margin: 0 3px 8px;
 }
 .effect-3 {
   height: 180px;
   width: 180px;
   border: 25px solid var(--skin-color);
   border-radius: 50%;
   left: 50%;
   top: -120px;
   animation: leftBounce 3s ease-in-out infinite;
 }
 .effect-4 {
   border-top: 30px solid transparent;
   border-left: 30px solid #06d79c;
   left: 30%;
   top: 20%;
   animation: spin 15s linear infinite;
 }
 .effect-4:before {
   content: "";
   border-top: 30px solid transparent;
   border-left: 30px solid #06d79c;
   position: absolute;
   left: -35px;
   top: -25px;
   opacity: 0.5;
 }
 .effect-5 {
   height: 50px;
   width: 50px;
   right: 10%;
   top: 30%;
   display: flex;
   justify-content: space-between;
 }
 .effect-5 div {
   width: 2px;
   background-color: #4dd0e1;
 }
 
 .effect-5 .wave {
   transform: scaleY(0.4);
   background-color: #4dd0e1;
   animation-duration: 1.2s;
   animation-timing-function: ease-in-out;
   animation-iteration-count: infinite;
   border-radius: 50%;
 }
 
 .effect-5 .wave1 {
   animation-name: quiet;
 }
 
 .effect-5 .wave2 {
   animation-name: normal;
 }
 
 .effect-5 .wave3 {
   animation-name: quiet;
 }
 
 .effect-5 .wave4 {
   animation-name: loud;
 }
 
 .effect-5 .wave5 {
   animation-name: normal;
 }
 .effect-5 .wave6 {
   animation-name: quiet;
 }
 .effect-5 .wave7 {
   animation-name: loud;
 }
 
 .effect-5 .wave8 {
   animation-name: quiet;
 }
 
 .effect-5 .wave9 {
   animation-name: normal;
 }
 .effect-5 .wave10 {
   animation-name: quiet;
 }
 
 .fade-out-effect {
   position: fixed;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   background-color: var(--bg-black-50);
   visibility: hidden;
 }
 .fade-out-effect.active {
   visibility: visible;
   z-index: 1000;
   animation: fadeOut 0.3s ease-in;
 }
 
 @keyframes spin {
   0% {
     transform: rotate(0deg);
   }
   100% {
     transform: rotate(360deg);
   }
 }
 @keyframes topBounce {
   0%,
   100% {
     transform: translateY(0);
   }
   50% {
     transform: translateY(25px);
   }
 }
 @keyframes leftBounce {
   0%,
   100% {
     transform: translateX(0);
   }
   50% {
     transform: translateX(25px);
   }
 }
 @keyframes quiet {
   25% {
     transform: scaleY(0.6);
   }
   50% {
     transform: scaleY(0.4);
   }
   75% {
     transform: scaleY(0.8);
   }
 }
 @keyframes normal {
   25% {
     transform: scaleY(1);
   }
   50% {
     transform: scaleY(0.4);
   }
   75% {
     transform: scaleY(0.6);
   }
 }
 @keyframes loud {
   25% {
     transform: scaleY(1);
   }
   50% {
     transform: scaleY(0.4);
   }
   75% {
     transform: scaleY(1.2);
   }
 }
 @keyframes fadeInTop {
   0% {
     opacity: 0;
     transform: translateY(-25px);
   }
   100% {
     opacity: 1;
     transform: translateY(0px);
   }
 }
 @keyframes fadeOut {
   0% {
     opacity: 1;
   }
   100% {
     opacity: 0;
   }
 }
 
 /*Preloder */
 .preloader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #e4e4e4;
   z-index: 15000;
 }
 .preloader.hide {
   display: none;
 }
 .loader {
   display: block;
   position: relative;
   left: 50%;
   top: 50%;
   width: 100px;
   height: 100px;
   margin: -75px 0 0 -75px;
   border: 3px solid transparent;
   border-radius: 50%;
   border-top-color: #8a49ff;
   -webkit-animation: spin 2s linear infinite;
   animation: spin 2s linear infinite;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
 }
 .loader:before {
   content: "";
   position: absolute;
   top: 5px;
   left: 5px;
   right: 5px;
   bottom: 5px;
   border: 3px solid transparent;
   border-top-color: var(--skin-color);
   -webkit-animation: spin 3s linear infinite;
   animation: spin 3s linear infinite;
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
 }
 .loader:after {
   content: "";
   position: absolute;
   top: 15px;
   left: 15px;
   right: 15px;
   bottom: 15px;
   border: 3px solid transparent;
   border-top-color: #8a49ff;
   animation: spin 1.5s linear infinite;
   -webkit-animation: spin 1.5s linear infinite;
   border-radius: 50%;
   -webkit-border-radius: 50%;
   -moz-border-radius: 50%;
   -ms-border-radius: 50%;
   -o-border-radius: 50%;
 }
 @-webkit-keyframes spin {
   0% {
     -webkit-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
     transform: rotate(0deg);
   }
   100% {
     -webkit-transform: rotate(360deg);
     -ms-transform: rotate(360deg);
     transform: rotate(360deg);
   }
 }
 @keyframes spin {
   0% {
     -webkit-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
     transform: rotate(0deg);
   }
   100% {
     -webkit-transform: rotate(360deg);
     -ms-transform: rotate(360deg);
     transform: rotate(360deg);
   }
 }
 /*End Preloder */
 
 .section.hide {
   display: none;
 }
 .section-title {
   padding: 0 15px;
   flex: 0 0 100%;
   min-width: 100%;
   text-align: center;
   margin-bottom: 60px;
 }
 .section-title h2 {
   display: inline-block;
   font-size: 30px;
   font-weight: 700;
   color: var(--text-black-700);
   text-transform: uppercase;
   margin: 0;
 }
 .section-title h2:before {
   content: attr(data-heading);
   display: block;
   font-size: 15px;
   font-weight: 600;
   color: var(--skin-color);
 }
 /* Top progress line */
 .scroll-line {
   background-color: var(--skin-color);
   top: 0;
   left: 0;
   height: 3px;
   position: fixed;
   transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
   z-index: 1060;
   -webkit-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
   -moz-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
   -ms-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
   -o-transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
 }
 /* End Top progress line */
 
 /* Custome Cursor style */
 .cursor-dot,
 .cursor-dot-outline {
   pointer-events: none;
   position: absolute;
   top: 50%;
   left: 50%;
   border-radius: 50%;
   opacity: 0;
   transform: translate(-50%, -50%);
   transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
   z-index: 1060;
 }
 .cursor-dot {
   width: 8px;
   height: 8px;
   background-color: var(--skin-color);
 }
 .cursor-dot-outline {
   width: 30px;
   height: 30px;
   border: 2px solid var(--skin-color);
 }
 .cursor-dot:before,
 .cursor-dot:after {
   position: absolute;
   content: "";
   background-color: var(--text-black-600);
   transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
 }
 .cursor-dot:before {
   top: 0;
   left: 50%;
   width: 1px;
   height: 20px;
   transform: translateY(-25%);
 }
 .cursor-dot:after {
   top: 50%;
   left: 0;
   width: 20px;
   height: 1px;
   transform: translateX(-25%);
 }
 
 /* Type border style */
 .typewriter-text {
   padding-right: 10px;
   color: var(--text-black-600);
   border-right: 3px solid var(--skin-color);
   text-transform: uppercase;
   animation: cursor 0.6s ease-in-out infinite;
   -webkit-animation: cursor 0.6s ease-in-out infinite;
 }
 @keyframes cursor {
   from {
     border-color: solid var(--skin-color);
   }
   to {
     border-color: transparent;
   }
 }
 
 /* Type border style end */
 
 /*End Custome Cursor style */
 
 /*==================================================
   End Global Style
  ==================================================*/
 
 /*==================================================
  Header style
  ==================================================*/
 .header {
   padding: 20px 15px;
   position: absolute;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 99;
 }
 
 .header .logo a {
   height: 40px;
   width: 40px;
   text-align: center;
   line-height: 36px;
   font-size: 24px;
   display: inline-block;
   border: 2px solid var(--skin-color);
   color: var(--skin-color);
   border-radius: 50%;
   font-weight: 600;
   text-transform: uppercase;
 }
 .header .hamburger-btn {
   height: 40px;
   width: 40px;
   display: flex;
   cursor: pointer;
   border-radius: 50%;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
 }
 .header .hamburger-btn:after {
   border-radius: 50%;
 }
 .header .hamburger-btn span {
   display: block;
   height: 2px;
   width: 16px;
   background-color: var(--bg-black-900);
   position: relative;
 }
 .header .hamburger-btn span:before,
 .header .hamburger-btn span:after {
   content: "";
   position: absolute;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: var(--bg-black-900);
 }
 .header .hamburger-btn span:before {
   top: -6px;
 }
 .header .hamburger-btn span:after {
   top: 6px;
 }
 /*==================================================
  End Header style
  ==================================================*/
 
 /*==================================================
  Navigation menu style
  ==================================================*/
 .nav-menu {
   background-color:var(--bg-black-50);
   padding: 0 15px;
   position: fixed;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   opacity: 0;
   visibility: hidden;
   overflow-y: auto;
 }
 
 .nav-menu.open {
   visibility: visible;
   opacity: 1;
   z-index: 999;
   transition: all 0.3s ease-in;
 }
 .nav-menu .close-nav-menu {
   height: 40px;
   width: 40px;
   display: block;
   font-size: 35px;
   line-height: 35px;
   text-align: center;
   border-radius: 50%;
   position: absolute;
   right: 15px;
   top: 15px;
   cursor: pointer;
   color: var(--text-black-600);
   transition: all 0.3s ease;
 }
 .nav-menu .close-nav-menu:after {
   border-radius: 50%;
 }
 .nav-menu-inner {
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 .nav-menu ul {
   padding: 15px;
 }
 .nav-menu ul li {
   display: block;
   margin-bottom: 20px;
   text-align: center;
 }
 .nav-menu ul li:last-child {
   margin-bottom: 0;
 }
 .nav-menu ul li a {
   display: inline-block;
   font-size: 28px;
   font-weight: 600;
   color: var(--text-black-600);
   padding: 5px 30px;
   text-transform: capitalize;
   border-radius: 30px;
   transition: all 0.3s ease;
 }
 .nav-menu ul li a.active {
   color: var(--skin-color);
 }
 .nav-menu ul li a:after {
   border-radius: 30px;
 }
 .nav-menu .copyright-text {
   position: absolute;
   left: 0px;
   top: 50%;
   font-size: 15px;
   color: var(--text-black-600);
   transform: translateY(-50%) rotate(-90deg);
 }
 /* ==================================================
 End Navigation menu style
  ================================================== */
 
 /* ==================================================
 Hero section style
  ================================================== */
 .hero-section {
   position: relative;
 }
 .hero-section .full-screen {
   padding: 50px 0;
   min-height: 100vh;
 }
 .hero-section .hero-text,
 .hero-section .hero-img {
   flex: 0 0 50%;
   max-width: 50%;
   padding: 15px;
 }
 .hero-section .hero-text p {
   color: var(--text-black-300);
   font-size: 18px;
   text-transform: capitalize;
   margin: 0;
 }
 .hero-section .hero-text h1 {
   font-size: 20px;
   font-weight: 500;
   color: var(--text-black-600);
   margin: 0;
   text-transform: capitalize;
 }
 .hero-section .hero-text h2 {
   color: var(--text-black-900);
   font-weight: 700;
   font-size: 55px;
   text-transform: capitalize;
   margin: 0;
 }
 .hero-section .hero-text .btn-1 {
   margin-top: 10px;
 }
 .hero-section .hero-img .img-box {
   max-width: 450px;
   display: block;
   margin: auto;
   border-radius: 50%;
   padding: 15px;
 }
 .hero-section .hero-img .img-box img {
   width: 100%;
   border-radius: 50%;
   border: 10px solid transparent;
 }
 /* ==================================================
 End home section
  ================================================== */
 
 /*==================================================
   About secton Style
  ==================================================*/
 .about-section {
   padding: 80px 0 0;
   min-height: 100vh;
 }
 .about-section .about-img {
   flex: 0 0 40%;
   min-width: 40%;
   padding: 0 15px;
 }
 .about-section .about-img .img-box {
   padding: 15px;
   border-radius: 5px;
 }
 .about-section .about-img .img-box img {
   width: 100%;
   border: 10px solid transparent;
   border-radius: 5px;
 }
 .about-section .about-info {
   flex: 0 0 60%;
   min-width: 60%;
   padding: 0 15px;
 }
 .about-section .about-img .social-links {
   margin-top: 20px;
   text-align: center;
 }
 .about-section .about-img .social-links a {
   display: inline-block;
   height: 40px;
   width: 40px;
   font-size: 16px;
   text-align: center;
   color: var(--text-black-600);
   border-radius: 50%;
   margin: 0 4px;
   transition: all 0.3s ease;
 }
 .about-section .about-img .social-links a:after {
   border-radius: 50%;
 }
 .about-section .about-img .social-links a i {
   line-height: 40px;
 }
 .about-section .about-img .social-links a:hover {
   color: var(--skin-color);
 }
 .about-section .about-info p {
   font-size: 16px;
   line-height: 26px;
   margin-bottom: 15px;
   color: var(--text-black-600);
 }
 .about-section .about-info span {
   font-weight: 600;
 }
 .about-section .about-info .btn-1 {
   margin: 30px 20px;
 }
 .about-section .about-tabs {
   padding: 60px 15px 50px;
   flex: 0 0 100%;
   min-width: 100%;
   text-align: center;
 }
 .about-section .about-tabs .tab-item {
   display: inline-block;
   margin: 0 5px 10px;
   padding: 5px 10px;
   border-radius: 30px;
   cursor: pointer;
   transition: all 0.3s ease;
   font-size: 15px;
   font-weight: 500;
   color: var(--text-black-600);
   text-transform: capitalize;
 }
 .about-section .about-tabs .tab-item:hover:not(.active) {
   opacity: 0.6;
 }
 .about-section .about-tabs .tab-item.active {
   color: var(--skin-color);
 }
 .about-section .tab-content {
   flex: 0 0 100%;
   min-width: 100%;
   display: none;
 }
 .about-section .tab-content.active {
   display: block;
   animation: fadeInTop 0.5s ease;
 }
 .about-section .skills {
   padding: 0 0 40px;
 }
 .about-section .skills .skill-item {
   flex: 0 0 50%;
   min-width: 50%;
   padding: 0 15px;
   margin-bottom: 40px;
 }
 .about-section .skills .skill-item p {
   font-size: 16px;
   color: var(--text-black-600);
   text-transform: capitalize;
   margin: 0 0 15px;
 }
 .about-section .skills .skill-item .progress {
   height: 20px;
   border-radius: 10px;
   position: relative;
 }
 .about-section .skills .skill-item .progress .progress-bar {
   background-color: var(--skin-color);
   height: 6px;
   left: 6px;
   top: 7px;
   position: absolute;
   border-radius: 10px;
 }
 .about-section .skills .skill-item .progress .progress-bar span {
   position: absolute;
   right: 0;
   top: 0;
   font-size: 16px;
   font-weight: 500px;
   color: var(--text-black-600);
   margin-top: -40px;
 }
 .about-section .experience,
 .about-section .education {
   padding-bottom: 80px;
 }
 .about-section .timeline {
   flex: 0 0 100%;
   min-width: 100%;
   position: relative;
 }
 .about-section .timeline:before {
   content: "";
   width: 1px;
   height: 100%;
   left: 50%;
   top: 0;
   background-color: var(--bg-black-100);
   position: absolute;
 }
 .about-section .timeline .timeline-item {
   flex: 0 0 100%;
   min-width: 100%;
 }
 .about-section .timeline .timeline-item:nth-child(odd) {
   padding-right: calc(50% + 50px);
   text-align: right;
 }
 .about-section .timeline-item:nth-child(even) {
   padding-left: calc(50% + 50px);
 }
 .about-section .timeline .timeline-item-inner {
   padding: 30px;
   border-radius: 5px;
   position: relative;
 }
 .about-section .timeline .timeline-item-inner:before {
   content: "";
   position: absolute;
   width: 30px;
   height: 1px;
   background-color: var(--bg-black-100);
   top: 37px;
   z-index: -1;
 }
 .about-section
   .timeline
   .timeline-item:nth-child(odd)
   .timeline-item-inner:before {
   right: -30px;
 }
 .about-section
   .timeline
   .timeline-item:nth-child(even)
   .timeline-item-inner:before {
   left: -30px;
 }
 .about-section .timeline .timeline-item .icon {
   height: 40px;
   width: 40px;
   background-color: var(--bg-black-50);
   border: 1px solid var(--bg-black-100);
   border-radius: 50%;
   font-size: 16px;
   color: var(--skin-color);
   text-align: center;
   line-height: 40px;
   position: absolute;
   top: 18px;
 }
 .about-section .timeline .timeline-item:nth-child(odd) .icon {
   right: -70px;
 }
 .about-section .timeline .timeline-item:nth-child(even) .icon {
   left: -70px;
 }
 .about-section .timeline .timeline-item-inner span {
   font-weight: 500;
   color: var(--skin-color);
   display: block;
   margin: 0 0 10px;
   text-transform: capitalize;
 }
 .about-section .timeline .timeline-item-inner h3 {
   font-size: 20px;
   font-weight: 500;
   color: var(--text-black-700);
   margin: 0 0 5px;
   text-transform: capitalize;
 }
 .about-section .timeline .timeline-item-inner h4 {
   font-size: 16px;
   font-style: italic;
   color: var(--text-black-600);
   margin: 0;
   text-transform: capitalize;
 }
 .about-section .timeline .timeline-item-inner p {
   font-size: 16px;
   color: var(--text-black-600);
   line-height: 26px;
   margin: 15px 0 0;
 }
 /*==================================================
   End About secton Style
  ==================================================*/
 
 /*==================================================
   Service secton Style
  ==================================================*/
 .service-section {
   padding: 80px 0 80px;
   min-height: 100vh;
 }
 .service-section .service-item {
   flex: 0 0 33.33%;
   max-width: 33.33%;
   padding: 15px;
   display: flex;
   flex-wrap: wrap;
 }
 .service-section .service-item-inner {
   padding: 50px 15px;
   border-radius: 5px;
   text-align: center;
   width: 100%;
 }
 .service-section .service-item-inner .icon {
   height: 60px;
   width: 60px;
   text-align: center;
   border-radius: 50%;
   display: block;
   margin: 0 auto 30px;
   position: relative;
   color: var(--text-black-600);
   transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
   -moz-transition: all 0.3s ease;
   -ms-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
 }
 .service-section .service-item-inner .icon i {
   font-size: 25px;
   line-height: 60px;
   transition: all 0.3s ease;
 }
 .service-section .service-item-inner .icon:after {
   content: " ";
   position: absolute;
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
   border-radius: 50%;
   transition: all 0.3s ease;
 }
 .service-section .service-item-inner:hover .icon {
   box-shadow: var(--inner-shadow-0);
 }
 .service-section .service-item-inner:hover .icon:after {
   box-shadow: var(--outer-shadow);
 }
 .service-section .service-item-inner:hover .icon i {
   color: var(--skin-color);
 }
 .service-section .service-item-inner h3 {
   font-size: 20px;
   font-weight: 600px;
   color: var(--text-black-700);
   margin: 0 0 10px;
   text-transform: capitalize;
 }
 .service-section .service-item-inner p {
   font-size: 16px;
   font-weight: 600px;
   color: var(--text-black-600);
   margin: 0;
   line-height: 25px;
 }
 /*==================================================
   End Service secton Style
  ==================================================*/
 
 /*==================================================
   Portfolio section Style
  ==================================================*/
 .portfolio-section {
   padding: 80px 0 80px;
   min-height: 100vh;
 }
 .portfolio-section .section-title {
   margin-bottom: 40px;
 }
 .portfolio-section .portfolio-filter {
   padding: 0 15px;
   flex: 0 0 100%;
   min-width: 100%;
   text-align: center;
   margin-bottom: 20px;
 }
 .portfolio-section .filter-item {
   display: inline-block;
   margin: 0 5px 10px;
   padding: 5px 10px;
   border-radius: 30px;
   cursor: pointer;
   font-weight: 500;
   color: var(--text-black-600);
   text-transform: capitalize;
   font-size: 16px;
   transition: all 0.3s ease;
 }
 .portfolio-section .filter-item:hover:not(.active) {
   opacity: 0.6;
 }
 .portfolio-section .filter-item.active {
   color: var(--skin-color);
 }
 .portfolio-section .portfolio-item {
   flex: 0 0 33.33%;
   width: 33.33%;
   padding: 15px;
   display: flex;
   flex-wrap: wrap;
 }
 .portfolio-section .portfolio-item.hide {
   display: none;
 }
 .portfolio-section .portfolio-item.show {
   display: block;
   animation: fadeInTop 0.5s ease;
 }
 .portfolio-section .portfolio-item-img {
   position: relative;
   transition: all 0.3s ease;
 }
 .portfolio-section .portfolio-item-img img {
   border-radius: 5px;
   width: 100%;
   transition: all 0.3s ease;
 }
 .portfolio-section .portfolio-item-inner {
   padding: 15px;
   border-radius: 5px;
   cursor: pointer;
   width: 100%;
 }
 
 .portfolio-section .portfolio-item-inner:hover .portfolio-item-img img {
   transform: translateY(-25px);
 }
 
 .portfolio-section .portfolio-item-img .view-project {
   text-transform: capitalize;
   font-size: 16px;
   font-weight: 500;
   color: var(--skin-color);
   transition: all 0.3s ease;
   position: absolute;
   left: 0;
   bottom: -4px;
   transform: translateY(-5px);
   z-index: -1;
   opacity: 0;
 }
 .portfolio-section .portfolio-item-inner:hover .view-project {
   transform: translateY(0px);
   opacity: 1;
 }
 .portfolio-section .portfolio-item-details {
   display: none;
 }
 .portfolio-section .portfolio-item-inner p {
   font-size: 16px;
   margin: 10px 0 0;
   color: var(--text-black-600);
   text-transform: capitalize;
 }
 /* Portfolio popup section */
 .portfolio-popup {
   background: var(--bg-black-50);
   position: fixed;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   z-index: 1000;
   overflow-y: scroll;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
 }
 .portfolio-popup.open {
   visibility: visible;
   opacity: 1;
 }
 .portfolio-popup .pp-loader {
   position: fixed;
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
   z-index: 1005;
   background-color: var(--bg-opacity);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   visibility: hidden;
 }
 .portfolio-popup .pp-loader.active {
   opacity: 1;
   visibility: visible;
 }
 .portfolio-popup .pp-loader div {
   height: 40px;
   width: 40px;
   border: 3px solid var(--skin-color);
   border-radius: 50%;
   border-right: 3px solid transparent;
   animation: spin 2s linear infinite;
 }
 .portfolio-popup .pp-details {
   max-width: 1350px;
   width: calc(85% + 30px);
   margin: auto;
   max-height: 0;
   overflow: hidden;
   opacity: 0;
   transition: all 0.3s ease;
 }
 .portfolio-popup .pp-details.active {
   opacity: 1;
 }
 .portfolio-popup .pp-details-inner {
   padding: 30px 0;
 }
 .portfolio-popup .pp-title {
   padding: 0 15px;
 }
 .portfolio-popup .pp-title h2 {
   font-size: 28px;
   color: var(--text-black-900);
   text-transform: capitalize;
   font-weight: 600;
   margin: 0 0 5px;
 }
 .portfolio-popup .pp-title p {
   font-size: 14px;
   color: var(--text-black-600);
   font-weight: 600;
   margin: 0 0 5px;
   border-bottom: 1px solid var(--bg-black-100);
   padding-bottom: 10px;
 }
 .portfolio-popup .pp-title p span {
   font-weight: 400;
   text-transform: capitalize;
 }
 .portfolio-popup .pp-project-details h3 {
   font-size: 20px;
   font-weight: 600;
   color: var(--text-black-700);
   margin: 0 0 5px;
   text-transform: capitalize;
 }
 
 .portfolio-popup .description {
   flex: 0 0 65%;
   max-width: 65%;
   padding: 0 15px;
 }
 .portfolio-popup .description p {
   font-size: 16px;
   color: var(--text-black-600);
   line-height: 26px;
   margin: 0;
 }
 .portfolio-popup .info {
   flex: 0 0 35%;
   max-width: 35%;
   padding: 0 15px;
 }
 .portfolio-popup .info ul li {
   display: block;
   margin-bottom: 10px;
   font-weight: 600;
   color: var(--text-black-600);
   font-size: 16px;
 }
 .portfolio-popup .info ul li span {
   font-weight: 400;
 }
 .portfolio-popup .info ul li a {
   color: var(--skin-color);
 }
 .portfolio-popup .info ul li:last-child {
   margin-bottom: 0;
 }
 .portfolio-popup .pp-img {
   max-width: 100%;
   width: auto;
   height: auto;
   padding: 10px;
   border-radius: 5px;
 }
 .portfolio-popup .separator {
   height: 1px;
   width: 100%;
   display: block;
   background-color: var(--bg-black-100);
 }
 .portfolio-popup .pp-main {
   min-height: 100vh;
   max-width: 1350px;
   width: 85%;
   margin: auto;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 .portfolio-popup .pp-main-inner {
   padding: 70px 0 50px;
   position: relative;
 }
 .portfolio-popup .pp-project-details-btn {
   position: absolute;
   left: 0;
   top: 15px;
   height: 40px;
   line-height: 40px;
   font-size: 16px;
   font-weight: 500;
   border-radius: 30px;
   padding: 0 15px;
   cursor: pointer;
   color: var(--skin-color);
   transition: all 0.3s ease;
 }
 .portfolio-popup .pp-project-details-btn:after {
   border-radius: 30px;
 }
 .portfolio-popup .pp-project-details-btn i {
   margin-left: 4px;
 }
 .portfolio-popup .pp-close {
   position: absolute;
   right: 0;
   top: 15px;
   height: 40px;
   width: 40px;
   line-height: 35px;
   font-size: 35px;
   text-align: center;
   border-radius: 50%;
   cursor: pointer;
   color: var(--text-black-600);
   transition: all 0.3s ease;
   cursor: pointer;
 }
 .portfolio-popup .pp-close:after {
   border-radius: 50%;
 }
 .portfolio-popup .pp-counter {
   position: absolute;
   right: 0;
   height: 40px;
 
   bottom: 5px;
   font-size: 16px;
   color: var(--text-black-600);
 }
 .portfolio-popup .pp-prev,
 .portfolio-popup .pp-next {
   position: fixed;
   top: 50%;
   height: 40px;
   width: 40px;
   text-align: center;
   font-size: 20px;
   z-index: 1010;
   color: var(--text-black-900);
   transition: all 0.3s ease;
   opacity: 0.5;
 }
 .portfolio-popup .pp-prev {
   left: 15px;
 }
 .portfolio-popup .pp-next {
   right: 15px;
 }
 .portfolio-popup .pp-prev:hover,
 .portfolio-popup .pp-next:hover {
   opacity: 1;
 }
 .portfolio-popup .pp-prev i,
 .portfolio-popup .pp-next i {
   cursor: pointer;
   line-height: 40px;
 }
 .portfolio-popup .pp-prev i {
   transform: rotate(180deg);
 }
 /*End Portfolio popup section */
 
 /*==================================================
   End Portfolio secton Style
  ==================================================*/
 
 /*==================================================
  Testimonial section Style
  ==================================================*/
 .testimonial-section {
   padding: 80px 0 80px;
   min-height: 100vh;
 }
 .testimonial-section .testimonial-box {
   width: 100%;
   max-width: 600px;
   margin: auto;
   padding: 0 25px;
 }
 .testimonial-section .testimonial-slider {
   border-radius: 5px;
   overflow: hidden;
 }
 .testimonial-section .testimonial-slider-container {
   display: flex;
   transition: margin 0.5s ease;
   align-items: center;
 }
 .testimonial-section .testimonial-item {
   padding: 30px;
   text-align: center;
   position: relative;
 }
 .testimonial-section .testimonial-item i {
   font-size: 30px;
   position: absolute;
   color: var(--text-black-600);
   opacity: 0.1;
 }
 .testimonial-section .testimonial-item i.left {
   left: 5px;
   top: 5px;
 }
 .testimonial-section .testimonial-item i.right {
   right: 5px;
   bottom: 5px;
 }
 .testimonial-section .testimonial-item p {
   font-size: 16px;
   line-height: 26px;
   color: var(--text-black-600);
   margin: 0 0 30px;
 }
 .testimonial-section .testimonial-item img {
   max-width: 70px;
   display: inline-block;
   width: 100%;
 }
 .testimonial-section .testimonial-item span {
   display: block;
   margin: 10px 0 0;
   font-weight: 600;
   font-size: 16px;
   color: var(--text-black-700);
   text-transform: capitalize;
 }
 .testimonial-section .testimonial-item small {
   display: block;
   margin: 0;
   font-weight: 400;
   color: var(--text-black-400);
   font-style: italic;
   opacity: 0.5;
   text-transform: capitalize;
 }
 .testimonial-section .testimonial-slider-nav {
   margin-top: 30px;
   text-align: center;
   justify-content: center;
 }
 .testimonial-section .testimonial-slider-nav span {
   height: 40px;
   width: 40px;
   color: var(--skin-color);
   display: inline-block;
   font-size: 20px;
   cursor: pointer;
   transition: all 0.3s ease;
   border-radius: 50%;
   margin: 0 4px;
 }
 .testimonial-section .testimonial-slider-nav span:after {
   border-radius: 50%;
 }
 .testimonial-section .testimonial-slider-nav span i {
   line-height: 40px;
 }
 /*==================================================
  End Testimonial section Style
  ==================================================*/
 
 /*==================================================
 Contact section Style
  ==================================================*/
 .contact-section {
   padding: 80px 0 80px;
 }
 .contact-section .contact-item {
   flex: 0 0 33.33%;
   max-width: 33.33%;
   padding: 15px;
   display: flex;
 }
 .contact-section .contact-inner {
   padding: 30px 15px;
   text-align: center;
   border-radius: 5px;
   width: 100%;
 }
 .contact-section .contact-inner i {
   font-size: 25px;
   color: var(--skin-color);
 }
 .contact-section .contact-inner span {
   display: block;
   font-size: 16px;
   color: var(--skin-color);
   font-weight: 600;
   color: var(--text-black-700);
   margin: 15px 0 10px;
   text-transform: capitalize;
 }
 .contact-section .contact-inner p {
   font-size: 16px;
   color: var(--text-black-600);
   line-height: 26px;
   margin: 0;
   word-break: break-word;
 }
 .contact-section .contact-form {
   flex: 0 0 100%;
   max-width: 100%;
   margin-top: 50px;
 }
 .contact-section .w-50 {
   flex: 0 0 50%;
   max-width: 50%;
   padding: 0 15px;
 }
 .contact-section .input-group {
   margin: 0 0 25px;
   transition: all 0.3s ease;
   border-radius: 30px;
 }
 .contact-section .input-group:after {
   border-radius: 30px;
 }
 .contact-section .input-group .input-control {
   height: 45px;
   display: block;
   width: 100%;
   border-radius: 30px;
   border: none;
   background-color: transparent;
   font-size: 16px;
   padding: 0 15px;
   color: var(--text-black-700);
 }
 .contact-section .input-group textarea.input-control {
   height: 180px;
   padding-top: 15px;
   resize: none;
 }
 .contact-section .submit-btn {
   flex: 0 0 100%;
   max-width: 100%;
   text-align: right;
   padding: 0 15px;
 }
 /*==================================================
  End contact section Style
  ==================================================*/