/*--------------------------------------------------------------
# Portal
--------------------------------------------------------------*/
.portal-tiles {
    border: 0px solid #f00;
}

.portal-tiles div {
	padding: 5px;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
    border-radius: 20px;
	width: 48%;
	height: 200px !important;
    float: left;
	text-align: center; 
}

.ptiles:after {
   content: "";
   display: table;
   clear: both;
}

@media all and (max-width: 400px) {
    div.portal-tiles div {
        width: 100%;
        float: none;
    }
}
.contact .portal-box {
    text-align: center;
    box-shadow: 0 0 25px rgb(0 0 0 / 85%);
    padding: 0px 0 30px 0; 
    border-radius: 10px;
}
.contact .portal-box h3 {
    text-align: center;
    width: 100%;
	background-color:#ff651c;
	border-bottom; rgb(0 0 0 / 85%);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding: 4px;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Lato', sans-serif;
  color: #c4c4c4;
  background-color: #111;
  scroll-behavior: smooth;
}

a {
  color: #ff651c;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato', sans-serif;
  color: #fff;
}

.container {
  background-color: #212121;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/*********************  Scrollbar-Section *******************/
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  -webkit-border-radius: 20px;
  margin-right: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  margin-left: 10px;

}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 20px;
  border-radius: 20px;
  height: 50px;
  margin-top: 30px;
  margin-bottom: 30px;
  background: #6d6d6d;
  position: relative;
}

img {
  max-width: 100%;
}

/*********************  Scrollbar-Section close  *******************/

/* preloader - start
================================================== */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: flex;
}

#preloader:before,
#preloader:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .loader_line {
  margin: auto;
  width: 1px;
  height: 250px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.loader_line:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #000;
  -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
  -o-animation: lineheight 1000ms ease-in-out 0s forwards;
  animation: lineheight 1000ms ease-in-out 0s forwards;
}

.loader_line:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #bbb;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-animation: lineround 1200ms linear 0s infinite;
  -o-animation: lineround 1200ms linear 0s infinite;
  animation: lineround 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

@keyframes lineheight {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes lineround {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }
}

/*hiding all*/
.preloaded .loader_line:after {
  opacity: 0;
}

.preloaded .loader_line {
  opacity: 0;
  height: 100% !important;
}

.preloaded:before,
.preloaded:after {
  -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
  0% {
    width: 50%;
  }

  100% {
    width: 0%;
  }
}

/* preloader - end
================================================== */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff651c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 20px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fff;
}

.back-to-top:hover i {
  color: #ff651c;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 999;
  transition: all 0.5s;
  background: #212121;
  position: fixed;
  width: 260px;
  height: 100%;
}

#header.header-transparent {
  background: #212121;
}

#header.header-scrolled {
  background: #212121;
}

#header .social-links {
  position: absolute;
  bottom: 0;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  right: 0;
  left: 0;
  display: flex;
  transition: 0.3s;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}

#header .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ff651c;
  color: #fff;
  line-height: 1;
  padding: 9px 0;
  border-radius: 50%;
  text-align: center;
  margin: 0 8px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#header .social-links a:hover {
  background: #fff;
  color: #ff651c;
  text-decoration: none;
}

#header .profile img {
  margin: 20px auto 20px auto;
  display: block;
  max-width: 190px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 85%);
}

#header .profile h1 {
  font-size: 40px;
  padding: 10px 0;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  border-bottom: 1px solid #ff651c;
  border-top: 1px solid #ff651c;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  padding-top: 15px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.navbar li {
  margin: 0 0 5px 0;
  padding: 0;
  display: flex;
  background: #111;
  padding: 5px 10px;
  border-radius: 10px;
  align-items: center;
  font-weight: 700;
}

.navbar li a,
.navbar li a:focus {
  text-decoration: none;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar ul li a:after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 7px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar ul li a:hover:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  display: flex;
  -ms-transform: scaleX(1);
  left: 36px;
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.navbar a i,
.navbar a:focus i {
  font-size: 20px;
  line-height: 0;
  margin-right: 15px;
}

.navbar a:hover,
.navbar .active,
.navbar .active i,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff651c;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ff651c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  height: 100%;
  bottom: 0;
  transition: 0.5s;
  z-index: 999;
}

.navbar-mobile ul {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  background: #111;
  padding: 10px 0;
  border-radius: 20px;
  overflow-y: auto;
  transition: 0.6s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 14px;
  color: #3b434a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff651c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#main {
  width: calc(100% - 310px);
  margin-left: 285px;
}

#hero .container {
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
#hero .row{
  z-index: 1;
}

.background{
  position: absolute;
  height: 1001px;
  width: 400px;
  background: #ff651c;
  z-index: 0;
  left: -170px;
  top: -410px;
  transform: rotate(45deg);
}

.hero-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-img {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  background: center;
  min-height: 600px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 25px rgb(0 0 0 / 85%);
}
.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  background: center;
  min-height: 600px;
  overflow: hidden;
}
.glitch-img-warp {
  position: relative;
  box-shadow: 0 0 25px rgb(0 0 0 / 85%);
  margin: 40px auto;
  max-width: 1000px;
  min-height: 600px;
  overflow: hidden;
  border-radius: 10px;
}

.glitch-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero-bg1.jpg");
  top: 0;
  left: 0;
  background-position: center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
.water-js{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  background-image: url("../img/hero-bg4.jpg");
}
.particles-js{position: relative;}
.particles-js canvas{
  position:absolute;
  top: 0;
  z-index: 1;
}

.hero-img img {
  object-fit: cover;
  display: block;
  min-height: 600px;
}

.hero-box h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: #fff;
}

.hero-box h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-box span {
  color: #ff651c;
}

.hero-box .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.6);
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

.hero-box .btn-scroll i {
  font-size: 48px;
}

.hero-box .btn-scroll:hover {
  color: #ff651c;
}




@-webkit-keyframes up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 15px 0px;
  overflow: hidden;
  position: relative;
}

.pt-15 {
  padding-top: 30px;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #ff651c;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 25px;
  color: #8888 !important;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 60px;
  text-transform: capitalize;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0 0 0;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}


/*--------------------------------------------------------------
# About Me
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #3b434a;
  text-transform: uppercase;
}

.about .content ul {
  list-style: none;
  padding: 0;
}



.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
  color: #fff;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #ff651c;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .count-box {
  width: 100%;
  margin-top: 20px;
}

.about .content .count-box i {
  display: block;
  font-size: 36px;
  float: left;
}

.about .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #fff;
  margin-left: 50px;
}

.about .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}

.about .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #5d6a75;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  transition: ease-in-out 0.3s;
}

.about .content .count-box a:hover {
  color: #82909c;
}

.about-img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 25px rgb(0 0 0 / 85%);
}

.about .about-img:hover .image {
  transform: scale(1);
  transition: ease-in-out 0.3s;
}

.about .image {
  background: url("../img/me.jpg") center center no-repeat;
  background-size: cover;
  height: 100%;
  transform: scale(1.1);
  border-radius: 20px;
  transition: ease-in-out 0.3s;
}

.about .skills-content {
  margin-top: 30px;
  display: flex;
  width: 100%;
}

.about .skills-content .progress {
  height: 60px;
  display: block;
  background: none;
  width: 100%;
  padding: 0px 15px;
  border-radius: 0;
}

.about .skills-content .progress .skill {
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  color: #888;
}

.about .skills-content .progress .skill .val {
  float: right;
  font-style: normal;
}

.about .skills-content .progress-bar-wrap {
  background: #e6e8eb;
  border-radius: 20px;
}

.about .skills-content .progress-bar {
  width: 1px;
  height: 10px;
  border-radius: 20px;
  transition: 3.9s;
  background-color: #ff651c;
}

/*--------------------------------------------------------------
# My Resume
--------------------------------------------------------------*/
.resume .section-title {
  margin-top: 30px;
}

.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #888;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff651c;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #fff;
  padding: 5px 15px;
  border-radius: 10px;
  color: #111;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #888;
}

/*--------------------------------------------------------------
# My Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
  box-shadow: 0 0 25px rgb(0 0 0 / 85%);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  background: #212121;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #ff651c;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #fff;
  transition: 0.3s;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #ff651c;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

.services .icon-box:hover .title a {
  color: #ff651c;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(14, 16, 17, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgb(255 255 255 / 36%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ff651c;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
  width: 70%;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff651c;
}


/*--------------------------------------------------------------
# My Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 10px 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  background: #ff651c;
  padding: 7px 10px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease-in-out;
  border: 2px solid #ff651c;
  border-radius: 10px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #212121;
}

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

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 85%);
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  bottom: 0;
  z-index: 3;
  right: 12px;
  border-radius: 0px 0px 20px 20px;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ff651c;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  border-radius: 20px;
}


.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff651c;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff651c;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0 0 25px rgb(0 0 0 / 85%);
  border-radius: 20px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ff651c;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  margin: 0;
}

.portfolio-details .portfolio-info ul li strong {
  color: #fff;
  padding-right: 5px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.glightbox-clean .gdesc-inner {
  padding: 10px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  color: #000;
  margin: 0;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  transform: scale(0.9);
  background: #111;
  text-align: center;
  box-shadow: 0 0 25px rgb(0 0 0 / 85%);
  border-radius: 5px;
  position: relative;
  transition: ease-in 0.4s;
  overflow: hidden;
}

.pricing .box:hover {
  transform: scale(1);
  transition: ease-in 0.4s;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #c4c4c4;
  background: #111;
}

.pricing h4 {
  font-size: 36px;
  color: #ff651c;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -12px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #c4c4c4;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ff651c;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #111;
  text-align: center;
}

.pricing .btn-buy {
  background: #ff651c;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  border: 1px solid #ff651c;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #111;
  color: #fff;
  border: 1px solid #ff651c;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ff651c;
  color: #fff;
}

/*--------------------------------------------------------------
# Contact Me
--------------------------------------------------------------*/
.contact .info-box {
  text-align: center;
  box-shadow: 0 0 25px rgb(0 0 0 / 85%);
  padding: 20px 0 30px 0;
  border-radius: 10px;
  margin-top: 20px;
}

.contact .info-box i.fas {
  font-size: 24px;
  color: #ff651c;
  border-radius: 50%;
  padding: 15px;
  background: #111;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #888;
  line-height: 1;
  background: #111;
  margin: 0 8px;
  transition: 0.3s;
  padding: 14px;
  border-radius: 50px;
}

.contact .social-links a:hover {
  color: #fff;
  background: #ff651c;
}

.email-form {
  box-shadow: 0 0 25px rgb(0 0 0 / 85%);
  padding: 27px;
  border-radius: 5px;
}


.email-form .error-message br+br {
  margin-top: 25px;
}

.email-form input,
.email-form textarea {
  border-radius: 0;
  font-size: 14px;
  background: #212121;
  border: 0;
}


.email-form .form-control {
  background-color: #212121;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 85%);
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:active,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 85%);
  -webkit-text-fill-color: #777 !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}


.email-form input,
.email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  color: #fff;
}

.email-form input {
  padding: 10px 15px;
}

.email-form textarea {
  padding: 20px 20px;
}

.email-form button[type=submit] {
  background: #ff651c;
  border: 0;
  padding: 10px 24px;
  border: 1px solid #ff651c;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.email-form button[type=submit]:hover {
  background: #212121;
  color: #fff;
}

.map {
  border-radius: 20px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  min-height: 500px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 20px;
  padding: 0 0 15px 0;
  position: relative;
}

#footer .container {
  position: relative;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: 'Lato', sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 20px 0;
}

#footer .social-links {
  margin: 0 0 20px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ff651c;
  color: #fff;
  line-height: 1;
  padding: 9px 0;
  margin: 0px 5px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #fff;
  color: #ff651c;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

/********************* Blog Page *******************/

.blog .blog-post {
  border-radius: 10px;
  margin-bottom: 24px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px rgb(0 0 0 / 85%);
}

.blog-thumb {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 0 10px rgb(0 0 0 / 85%);
}

.blog-thumb img {
  transform: scale(1.2);
  transition: 0.3s;
}

.blog-thumb img:hover {
  transform: scale(1);
}

.down-content {
  padding: 10px 0 0 0;
}

.down-content h4:hover {
  color: #ff651c;
}

.down-content h4:hover a {
  color: #fff;
}

.down-content ul {
  margin-bottom: 0;
  padding: 0px 0px 0px 15px;
}

.down-content p {
  margin-bottom: 0;
}

ul.page-numbers {
  list-style: none;
  text-align: center;
}

ul.page-numbers li {
  display: inline-block;
  margin: 0px 5px;
}

ul.page-numbers li a {
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  color: #888;
  border: 1px solid #ff651c;
  font-weight: 500;
  transition: all 0.3s;
  border-radius: 5px;
}

ul.page-numbers li a:hover {
  color: #fff;
}

ul.page-numbers li.active a {
  background-color: #ff651c;
  border-color: #ff651c;
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Action Buttons
--------------------------------------------------------------*/

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border: 2px solid #ff651c;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.hero-btn-primary {
    color: #111;
    background-color: #ff651c;
}

.hero-btn-primary:hover {
    color: #111;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-btn-secondary {
    color: #ffffff;
    background-color: transparent;
}

.hero-btn-secondary:hover {
    color: #111;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-help-link {
    display: inline-block;
    margin-top: 14px;
    color: #c4c4c4;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero-help-link:hover {
    color: #ff651c;
}

/*--------------------------------------------------------------
# Why Choose CRNetworkingSolutions
--------------------------------------------------------------*/

.why-choose {
    padding: 60px 0;
}

.why-choose .section-title {
    margin-bottom: 35px;
    text-align: center;
}

.why-choose .section-title h2 {
    margin-bottom: 12px;
    color: #ff651c;
}

.why-choose .section-title p {
    max-width: 760px;
    margin: 0 auto;
    color: #c4c4c4;
    font-size: 17px;
    line-height: 1.7;
}

/* Featured alternating rows */

.trust-feature {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    align-items: center;
    gap: 45px;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #171717;
    border: 1px solid #353535;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgb(0 0 0 / 35%);
}

.trust-feature-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
}

.trust-feature-reverse .trust-feature-badge {
    grid-column: 2;
    grid-row: 1;
}

.trust-feature-reverse .trust-feature-content {
    grid-column: 1;
    grid-row: 1;
}

.trust-feature-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-feature-badge img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgb(255 101 28 / 30%),
        0 12px 28px rgb(0 0 0 / 55%);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.trust-feature:hover .trust-feature-badge img {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 2px rgb(255 101 28 / 55%),
        0 16px 35px rgb(0 0 0 / 65%);
}

.trust-feature-content h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 27px;
}

.trust-feature-content p {
    margin-bottom: 12px;
    color: #c4c4c4;
    font-size: 16px;
    line-height: 1.75;
}

.trust-feature-content p:last-child {
    margin-bottom: 0;
}

/* Smaller information cards */

.trust-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.trust-detail-card {
    padding: 28px 24px;
    background-color: #171717;
    border: 1px solid #353535;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgb(0 0 0 / 30%);
}

.trust-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    color: #ff651c;
    background-color: #242424;
    border: 1px solid #ff651c;
    border-radius: 50%;
    font-size: 24px;
}

.trust-detail-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 20px;
}

.trust-detail-card p {
    margin: 0;
    color: #c4c4c4;
    font-size: 15px;
    line-height: 1.7;
}

.trust-closing {
    margin: 35px 0 0;
    color: #ff651c;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}