/**
* Template Name: MyResume - v4.8.1
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #626ea2; 
}

body.index{
  background: url("../img/bg.png") no-repeat;
  background-size:100% 100%;
}

body.client_work { 
  background: url("../img/bg-in.png") no-repeat right top; 	
}

a {
  color: #626ea2;
  text-decoration: 2px underline;
  text-underline-offset: 3px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
}

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 992px) {
  #header {
    width: 300px;
    background: rgba(255,255,255,0.4);
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 100px;
  }
}

#main.project { margin-left: 0 !important; }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #36416f;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #454545;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: #36416f;
}
 
.nav-menu a.contact-link {
	margin-top: 10px;
}
 
.nav-menu a.contact-link:hover {
  background: rgb(212,160,63);
  background: linear-gradient(
	  336deg, rgba(212,160,63,1) 1%, 
	  rgba(200,140,78,1) 50%, 
	  rgba(236,187,97,0.6867880941439075) 95%); 
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #454545;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #36416f;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top right no-repeat;
  background-size: cover;
  position: relative;
  padding: 10px 0 60px ; 
} 

@media (min-width: 992px) { 
  .mobile-nav-toggle {display: none;}
}
@media (max-width: 1402px) {
  #hero { background-position: 65%; } 
}

#hero:before {
  content: ""; 
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #454545;
}

#hero p {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #0563bb;
  letter-spacing: 1px;
}

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

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #454545;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: #0563bb;
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

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

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 62px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #c6973e;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #36416f;
  margin: 40px 0 30px;
}

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

.about .content ul i {
  font-size: 14px;
  margin-right: 8px;
  color: #36416f;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 36px;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #0563bb;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Akills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #454545;
}

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

.skills .progress-bar-wrap {
  background: #f2f3f5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #454545;
}

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

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f7f7;
  padding: 5px 15px;
  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 #0563bb;
}

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

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

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

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #d3873a;
  outline: 1px solid;}

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

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1; 
    border-radius: 17px; 
	padding: 21px 0 0;
    background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 100px rgba(182,189,218,0.55) inset, 0 0 10px rgba(49, 64, 130, 0.5);
	text-align: center;
	backdrop-filter: blur(4px);} 

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 200px #a3add7 inset;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.2s;
  z-index: 2;
  opacity: 0;}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  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 #36416f;
  border-left: 3px solid #36416f;
  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 #36416f;
  border-right: 3px solid #36416f;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 17px;
  color: #36416f;
  font-weight: 600;
  margin-top: 8px; 
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #36416f;
  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: #454545;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

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

.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 {
  max-width: 90%;
}

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

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

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

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
	  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,2px);
}


.portfolio-details .portfolio-info h3 {
  font-size: 33px;
  font-weight: 700; 
  padding-bottom: 10px;
  color: #36416f; 
}
.portfolio-details .portfolio-info h3 span {
	display: block; 
	font-size: 14px; 
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 1px;
	font-weight: normal;
	padding: 8px 0 0;
}
.role {
  border-top: 2px solid #e8e9f1;	
  border-bottom: 2px solid #e8e9f1;
	padding: 10px 0;
}
.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: 15px;
}

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

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #454545;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

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

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

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

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

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

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

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

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

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

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

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

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 63px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: 13px;
  color: #36416f;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #a1a8c7;
  font-size: 40px;
  opacity: 0.3;
}

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

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -4px;
  position: relative;
  top: 14px;
  line-height: 0;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #36416f;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 60%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #0563bb;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #454545;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #333333;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0563bb;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

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

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

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

@-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 {
  background: #36416f;
  color: #a1a8c7;
  font-size: 12px;
	text-align: left;
	text-transform: uppercase;
  padding: 28px 16px 27px;
}

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

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

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

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

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

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

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

.hide {display: none; }

 
.portfolio-details-lightbox {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; 
  flex-direction: column; 
  text-decoration: none;
}
#hero .container { 
	max-width: 100%;
	padding-left:18px;
}
.gslide-media {border-radius: 15px;}
 
.glightbox-clean .gnext { right: 0 !important; }
.glightbox-clean .gprev { left: 0 !important; }

@media (min-width: 1100px) {
	.glightbox-clean .gnext { right: 13px !important; }
	.glightbox-clean .gprev { left: 13px !important; } 
}


.intro { 
	line-height: 41px;
	font-size: 22px;
	margin-bottom: 10px !important;}

.swiper-slide {
	text-align: center;
	cursor: grab;
}

.client_work .swiper-slide {
	background: #555; 
}

.paper_products img,
.paper_products video{
	border-radius: 15px;
	padding: 5px; 
}
 
.h4, h4 {
  font-size: 1.2rem;
  font-weight: bold; 
  color: #36416f;
  margin-bottom: 0.4rem;
}

@media (max-width: 992px) { 
	.img-about { 
		display: flex;
		margin: 0 auto;
		position: relative;
		left: -55px;
		top: -11px;	}
	
	h3 {text-align: center;} 
	
	.portfolio-details .portfolio-details-slider img { max-width: 100%;}
}

@media (max-height: 700px) {   
	.paper_products img,
	.paper_products video{ 
		max-height: 550px; 
	}
}

.content .bi::before, 
.content [class^="bi-"]::before, 
.content [class*=" bi-"]::before{
	margin-right: 8px;
}

.portfolio-info strong {
	text-transform: uppercase;
	font-size: 13px; 
}

.project-status a{ 
	color:#d9a341; 
	text-decoration: none; 
	padding: 0 0 0 3px; }
.project-status a:hover{ 
	color:#626ea2; 
	text-decoration: underline;}

.project-status{
    border: 9px double #e8e9f1;
    padding: 8px 20px 9px !important;
	text-align: center;
	margin: 30px auto;
	border-radius: 50px;
	width: fit-content;}

.llt .project-status {margin-bottom: 0;}

h5 span {
	color: #36416f;
	font-weight: bold;
  	text-transform: uppercase;
  	font-size: 94%;
  	padding-right: 5px;}

#testimonials h3{
	font-weight: bold;
	color: #36416f;}



.about-section{  
	margin-bottom: -60px;  }

.img-about {mix-blend-mode: multiply;}

.swiper-backface-hidden .swiper-slide {
	display: flex;
	justify-content: center;
}
 

.client_work section#portfolio { padding-bottom: 0;}

.clarity img{ max-height: 421px;}

.project h5{
	font-size: 1rem;
}
.project h5 {
	padding: 20px 0;
	text-align: center;
	font-size: 1.45rem;
	border-bottom: 2px solid #e8e9f1;
}
.project h6 { font-size: 1.2rem;}

.project ol {margin: 0 2rem 0.5rem;}

.project-details h4{
	font-size: 1rem; 
	color: #626ea2;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 0;
}

.planner_progress { text-align: center;} 
@media (max-width: 700px) {
	.planner_progress img {width: 100%;}
}

.compositing video { 
	border-radius: 8px;
	box-shadow: 0 0 10px #b9c0d3;
}

@media (min-width: 992px) {
  .compositing #main {
    margin-left: 100px;
  }
}

.compositing #main { margin-left: 0; }


.compositing .col-lg-6 { 
  display: flex;
  justify-content: center;
}

.project_intro {text-align: center;}
year-created {opacity: 0.35}
m-d {width: 6px; height:6px; border-radius: 50%; background: #dfba75; display: inline-block; margin: 2px 7px;}
.portfolio-wrap h3 { font-size: 16px; letter-spacing: 0.4px; font-weight: bold; color: #36416f; margin-bottom: 3px; }
.project .portfolio-details .portfolio-info  h3 {color: #000; margin-bottom: 17px;}
.portfolio-wrap p { font-size: 12.5px;  margin: 0 0 17px; letter-spacing: 0.5px;}
.portfolio-wrap year-created { 
	display: block; 
	margin-bottom: 9px; 
	font-size: 14px; 
	opacity: 0.8; 
	letter-spacing: -0.3px;}

project-logo {
	width: 100px; 
	height: 90px; 
	display: block;
	background: url("../img/logos.png") no-repeat;	
	margin: 0 auto;}


.ld project-logo {background-position: 30px 4px;}
.pc project-logo {background-position: -283px 7px;}
.llt project-logo {background-position: -610px 0; margin-bottom: 20px;}
.lp project-logo {background-position: -435px 0;}

.dwj {position: relative;}
.dwj project-logo {background-position: -130px 5px;}

back-link {
	display: block;
	margin-bottom: 20px;
	position: absolute;
	top: 20px;
	left: 20px;}

back-link a{ color:#d9a341; text-decoration: none; position: relative; top: 1px;}
back-link a:hover{ color:#626ea2; text-decoration: underline;} {}

.project .col-lg-6 img,
.fw img { width: 100%; height: auto;}
.lp-images img {width: 100%; border-radius: 10px; border: 5px solid white; }

llt-website {display: block; padding: 0 0 50px;}
llt-website img { max-width: 90%; margin: 0 auto; box-shadow: 0 0 25px #ccc; display: block;}

.llt llt-website {padding-top: 20px;}

.portfolio-details p.overview { 
	font-size: 23px;
	/*color: #36416f;*/
	width: 60%;
	margin:0 auto 30px;}
@media (max-width: 1000px) {
	.portfolio-details p.overview { width: 90%; }
}

.lp-2 { margin-bottom: 10px;}

fw-detail { 
	display: block; 
	padding: 30px 0; 
	margin-top: 30px;
	text-align: center; 
	position: relative;}

fw-detail:before {	
	content: "";
  	background: url("../img/blob-5.svg") no-repeat;
	background-size: cover;
  	width: 162px;
  	height: 160px;
  	position: absolute;
  	top: -31px;
  	left: calc(50% - 28px);
  	z-index: -2;
}

.content_sections img { margin: 0 auto 20px; display: block;}
.content_sections p {
	padding: 20px;
    border: 5px solid #eaebf2;
    border-radius: 25px;}
 

.screenshot {
	margin: 15px 0 25px;
    box-shadow: 1px 1px 7px #777;}

image-gallery {padding: 10px 0 20px; display: block;}

.swiper-button-next, 
.swiper-button-prev{ color: #36416f;   top: 21px;  }

.swiper-button-next{left: calc(50% + 75px);} 
.swiper-button-prev{left: calc(50% - 103px);}
 
.swiper-button-next::after,
.swiper-button-prev::after{ font-size: 18px;}

theme-variations {
	display: block;
	margin-top: 15px !important; }
theme-variations img { 
	width: 100%; margin-bottom: 20px;}
theme-variations p{ 
	text-align: center;
	font-weight: bold;
	text-transform: uppercase; 
	font-size: 15px;
	position: relative;
	margin-bottom: 9px;} 

high-lights { 
	display: block;
	width: 100%;  
	background-size: contain;
	background-repeat: no-repeat;
	cursor: crosshair;
	padding-top: calc(100% / (672 / 410));
	margin-bottom: 15px;}

high-lights.bookmark {
	background: url("../img/portfolio/ld_features-bookmark-1.jpg") no-repeat;
	background-size: contain;}
high-lights.bookmark:hover {
	background: url("../img/portfolio/ld_features-bookmark-2.jpg") no-repeat;
	background-size: contain;}

high-lights.prompt {
	background: url("../img/portfolio/ld_features-prompt-1.jpg") no-repeat;
	background-size: contain;}
high-lights.prompt:hover {
	background: url("../img/portfolio/ld_features-prompt-2.jpg") no-repeat;
	background-size: contain;}

high-lights.share {
	background: url("../img/portfolio/ld_features-share-1.jpg") no-repeat;
	background-size: contain;}
high-lights.share:hover {
	background: url("../img/portfolio/ld_features-share-2.jpg") no-repeat;
	background-size: contain;}



high-lights.journal {
	background: url("../img/portfolio/pc_features-journal.jpg") no-repeat;
	background-size: contain;} 

high-lights.lifemap {
	background: url("../img/portfolio/pc_features-lifemap.jpg") no-repeat;
	background-size: contain;} 

high-lights.labels {
	background: url("../img/portfolio/pc_features-labels.jpg") no-repeat;
	background-size: contain;} 

 

.project-details strong { color: #36416f;}

.video_button {position: relative;}  
.video_button img {
	position: relative;
  	top: -2px;
  	margin-right: 2px;
  	margin-left: 2px;
	width: 20px!important;}


dwj-t img { width: 800px; }
@media (max-width: 1000px) { dwj-t img { width: 100%;} }
dwj-t  { display: block; text-align: center; padding: 20px 0;}
.dwj .lp-images img {margin: 15px 0 10px; border: 0; border-radius: 7px;}
.dwj h6 {text-align: center;}
.dwj .lp-images strong {color: #36416f;}

.lp-images p {padding: 5px;}

icon-idea {
	position:relative;
	top: 15px;
	display: block; 
	height: 100px;
	background: url("../img/icons-idea.svg") no-repeat;
	background-position: center bottom;}


icon-context {
	position:relative;
	top: 15px;
	display: block; 
	height: 100px;
	background: url("../img/icons-context.svg") no-repeat;
	background-position: center bottom;}

users-gallery {display: block; }
users-gallery img {
	border-radius: 50%;
	width: 100%;} 

users-images {
	text-align: center;
	display: block;
	overflow: visible;   
	position: relative;}

users-images img {
	position: relative;
	width: 200px !important;
	margin: 0 auto;
	z-index: 1;}

users-images:after{ 
content: "";
  background: url("../img/blob-5.svg") no-repeat;
    background-size: auto;
  background-size: cover;
  width: 700px;
  height: 700px;
  position: absolute;
  top: -204px;
  left: calc(50% - 268px);
  z-index: -2;
}
 

.books section.portfolio-details {padding-top: 0;}


