/**
  * Template Name: Portfolio - SharminRumpa
  * Author: Sharmin Rumpa
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Sofia Pro", sans-serif;
  color: black;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sofia Pro", sans-serif;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2b2b2b;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  transition: all 0.4s;
  font-size: 18px;
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
}

.back-to-top i {
  font-size: 28px;
  color: white;
  line-height: 0;
}

.back-to-top:hover {
  background: #f3a200;
  color: white;
  transform: scale(1.1);
}

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

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: rgba(25, 28, 31, 0.8);
}

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

#header.header-scrolled {
  height: 60px;
  background: rgba(25, 28, 31, 0.8);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 0.8rem;
  font-family: "Sofia Pro", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #f3a200;
  transform: scale(1.3);
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(36, 41, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: white;
  overflow-y: auto;
  transition: 0.3s;
}

.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: #f3a200;
}

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

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("https://priyoshopbackup.blob.core.windows.net/priyoshop-dev/Images/main.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(119, 89, 89, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.texts {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  text-transform: uppercase;
  font-family: verdana;
  font-size: 12em;
  font-weight: 700;
  color: #f5f5f5;
  text-shadow: 1px 1px 1px #919191, 1px 2px 1px #919191, 1px 3px 1px #919191, 1px 4px 1px #919191, 1px 5px 1px #919191, 1px 6px 1px #919191, 1px 7px 1px #919191, 1px 8px 1px #919191, 1px 9px 1px #919191, 1px 10px 1px #919191, 1px 18px 6px rgba(16, 16, 16, 0.4), 1px 22px 10px rgba(16, 16, 16, 0.2), 1px 25px 35px rgba(16, 16, 16, 0.2), 1px 30px 60px rgba(16, 16, 16, 0.4);
}

#hero h1 {
  position: relative;
  margin: 0 0 10px 0;
  font-size: 6rem;
  font-weight: 600;
  font-family: "Satisfy", serif;
  color: white;
  -webkit-animation-name: change-color, grow-shrink, expand;
          animation-name: change-color, grow-shrink, expand;
  -webkit-animation-duration: 15s, 15s, 15s;
          animation-duration: 15s, 15s, 15s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes change-color {
  25% {
    color: white;
  }
  50% {
    color: #f3a200;
  }
  75% {
    color: #f3a200;
  }
  100% {
    color: white;
  }
}

@keyframes change-color {
  25% {
    color: white;
  }
  50% {
    color: #f3a200;
  }
  75% {
    color: #f3a200;
  }
  100% {
    color: white;
  }
}
@-webkit-keyframes grow-shrink {
  50% {
    transform: scale(1.1);
  }
}
@keyframes grow-shrink {
  50% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes expand {
  50% {
    word-spacing: 2rem;
  }
}
@keyframes expand {
  50% {
    word-spacing: 2rem;
  }
}
#hero p {
  position: relative;
  color: #74828f;
  margin: 15px 0 0 0;
  font-size: 35px;
}

#hero p span {
  color: #f3a200;
  letter-spacing: 1px;
  font-family: "Aldrich";
}

#hero .social-links {
  position: relative;
  margin-top: 30px;
}

#hero .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.2588235294);
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  background: #f3a200;
  color: white;
  text-decoration: none;
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

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

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

@-webkit-keyframes up-down {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 4rem;
  }

  #hero p {
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 24px;
  }

  #hero .btn-scroll {
    justify-content: center;
  }
}
@media (max-width: 478px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 3rem;
  }

  #hero p {
    font-size: 1.3rem;
  }
}
@media (max-width: 330px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 1rem;
  }

  #hero .social-links a {
    width: 25px;
    height: 30px;
  }
}
/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  padding: 30px 0;
}

.section-bg {
  background-color: rgba(243, 247, 253, 0.2705882353);
}

.section-title {
  text-align: center;
  padding: 10px 0;
  position: relative;
  font-family: "Sofia Pro", sans-serif;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 80px);
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-bottom: 0;
  color: black;
  position: relative;
  z-index: 2;
  font-family: "Sofia Pro", sans-serif;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: calc(50% - 40px);
}

.section-title p {
  margin-bottom: 1rem;
  font-family: "Sofia Pro", sans-serif;
  letter-spacing: 0.2rem;
  font-size: 1rem;
  color: #149ddd;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}
@media (max-width: 330px) {
  .section-title h2 {
    font-size: 1.6rem;
  }

  .section-title p {
    font-size: 0.8rem;
  }
}
/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f4f5f6;
  min-height: 40px;
  margin-top: 78px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 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: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
  # About Me
  --------------------------------------------------------------*/
.about .image {
  background: url("https://priyoshopbackup.blob.core.windows.net/priyoshop-dev/Images/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .about-list {
  border-bottom: 1px dashed #149ddd;
  margin-bottom: 10px;
}

.about .about-list h1 {
  font-family: "Sofia Pro", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
}

.about .about-list h6 {
  font-size: 1rem;
  color: black;
}

.about .about-list p {
  font-size: 1rem;
  font-family: "Sofia Pro", sans-serif;
  color: #464d53;
  margin-bottom: 0.3rem;
}

.about .about-list a {
  font-size: 1rem;
  font-family: "Sofia Pro", sans-serif;
  color: #464d53;
  margin-bottom: 0.3rem;
}

.about .about-list a:hover {
  color: #149ddd;
}

/*--------------------------------------------------------------
  # My Resume
  --------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #464d53;
  text-shadow: 3px 4px 7px rgba(203, 200, 192, 0.6588235294);
}

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

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #149ddd;
  margin-bottom: 10px;
  transition: 0.3s;
}

.resume .resume-item h4:hover {
  color: #f3a200;
  transform: scale(0.95, 1.1);
}

.resume .resume-item p {
  font-size: 1rem;
  font-family: "Sofia Pro", sans-serif;
  color: #464d53;
  margin-bottom: 0.1rem;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: rgba(234, 237, 240, 0.3215686275);
  padding: 5px 15px 5px 0px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
  color: #464d53;
}

.resume .resume-item ul li:hover {
  color: black;
}

.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: #f3a200;
  border: 2px solid #f3a200;
}

.resume .resume-item a {
  font-family: "Sofia Pro", sans-serif;
  color: #1a1ea6;
}

.resume a:hover {
  color: #ffc85a;
}

.resume .img-fluid {
  height: 50px;
  width: 50px;
  margin-right: 1rem;
  transition: 0.2s;
}

.resume .img-fluid:hover {
  transform: scale(1.3);
}

/*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
.skills {
  background: url("https://priyoshopbackup.blob.core.windows.net/priyoshop-dev/Images/features.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

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

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
  position: relative;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  color: #ffffff;
  position: relative;
}

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

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 0.8rem;
}

.skills .progress-bar {
  width: 1px;
  height: 0.8rem;
  transition: 0.9s;
  background-color: #149ddd;
}

.skills .progress-bar:hover {
  background-color: #f3a200;
}

/*--------------------------------------------------------------
  # Achievements
  --------------------------------------------------------------*/
.achievements {
  background-color: #f6f9fe;
}

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

.achievements .achievements-item {
  box-sizing: content-box;
  padding: 20px 20px 0 20px;
  margin: 20px 15px;
  text-align: center;
  min-height: 280px;
}

.achievements .achievements-item .achievements-img {
  border-radius: 0%;
  border: 1px solid #ced4da;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.achievements .achievements-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.achievements .achievements-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.achievements .achievements-item .quote-icon-left,
.achievements .achievements-item .quote-icon-right {
  color: white;
  font-size: 26px;
}

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

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

.achievements .achievements-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

.achievements .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1caca;
  opacity: 1;
  border: 1px solid rgba(248, 244, 244, 0.4);
}

.achievements .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb727;
}

.achievements .achievements-links {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: flex-end;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: -webkit-box;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 2rem;
  padding: 3rem;
}

.achievements .achievements-links a {
  color: #f3a200;
  padding: 0.3rem;
  margin-left: 1rem;
  border-radius: 50%;
}

.achievements .achievements-links a:hover {
  color: #149ddd;
}

.achievements .achievements-item:hover .achievements-links {
  opacity: 1;
}

/*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
.testimonials {
  background: url("https://priyoshopbackup.blob.core.windows.net/priyoshop-dev/Images/testimonials.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 rgba(255, 255, 255, 0.15);
  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: rgba(255, 255, 255, 0.4);
  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;
}

.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: #ffb727;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
.testimonials .service-ico {
  margin-bottom: 1rem;
  color: #ffffff;
}

.testimonials .ico-circle {
  transition: all 500ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonials .ico-circle i {
  line-height: 0;
  font-size: 100px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #2487ce;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(24, 23, 23, 0.4588235294);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

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

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.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 #2487ce;
}

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
}

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

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

.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;
}

/*--------------------------------------------------------------
  # Contact Me
  --------------------------------------------------------------*/
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 27px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

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

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #ffb727;
}

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

.contact .php-email-form textarea {
  padding: 12px 15px;
}

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

.contact .php-email-form button[type=submit]:hover {
  background: #ffc85a;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-dark {
  color: white;
  background-color: #2b2b2b;
  border-color: #2b2b2b;
  border-radius: 0%;
  font-family: "Sofia Pro", sans-serif;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: url("https://priyoshopbackup.blob.core.windows.net/priyoshop-dev/Images/footer.jpg") top center no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 50px 0;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

#footer .container {
  position: relative;
}

#footer h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

#footer p {
  font-size: 1rem;
  padding: 0;
  margin: 0 0 20px 0;
}

#footer h3 {
  font-size: 30px;
  font-weight: 600;
  color: white;
  position: relative;
  padding: 0;
  margin: 10px 0 15px 0;
  letter-spacing: 0.1rem;
}

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

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

.bi-share::before {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

#footer .credits {
  font-size: 13px;
}

@media only screen and (max-width: 450px) {
  #footer h1 {
    font-size: 2rem;
    font-weight: 600;
  }
}
@media only screen and (max-width: 330px) {
  #footer h1 {
    font-size: 1.8rem;
  }

  #footer .social-links a {
    width: 25px;
    height: 30px;
  }

  #footer h3 {
    font-size: 25px;
    font-weight: 600;
  }
}
@media (max-width: 330px) {
  #footer .copyright {
    font-size: 0.7rem;
  }
}/*# sourceMappingURL=style.css.map */