/**
* Template Name: Laura - v4.8.1
* Template URL: https://bootstrapmade.com/laura-free-creative-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Releway", sans-serif;
  color: #444444;
}

a {
  color: #39b36a;
  text-decoration: none;
}

a:hover {
  color: #ffc85a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
p {
    font-family: Consolas, sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: rgba(0, 60, 105, 1);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc550;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 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(5, 26, 31, 1);
    }

    #header.blue-header {
        z-index: 997;
        transition: all 0.5s;
        height: 80px;
        background: rgba(0, 60, 105, 1);
    }

        #header.blue-header.header-scrolled {
            height: 60px;
            background: rgba(0, 60, 105, 1);
        }

    #header.project-header {
        z-index: 997;
        transition: all 0.5s;
        height: 80px;
        /*background: rgba(143, 227, 207,1);*/
        background: rgba(7, 13, 89, 1);
    }

        #header.project-header.header-scrolled {
            height: 60px;
            /*background: rgba(143, 227, 207,1);*/
            background: rgba(7, 13, 89, 1);
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

@media (max-width: 950px) {
    .navHidden {
        visibility: visible;
        text-align: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (min-width: 950px) {
    .navHidden {
        visibility: hidden;
    }
}


.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: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 12px;
  font-family: "Raleway", 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: #39b36a;
}
.blue a:hover,
.blue .active,
.blue .active:focus,
.blue li:hover > a {
    color: #46c6e3;
}

.project a:hover,
.project .active,
.project .active:focus,
.project li:hover > a {
    color: #5893D4;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown.project ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  color: #3b434a;
  letter-spacing: 1px;
}

.navbar .dropdown.project ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    color: #3b434a;
    letter-spacing: 1px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

    .navbar .dropdown ul .green a:hover,
    .navbar .dropdown ul .green .active:hover,
    .navbar .dropdown ul .green li:hover > a {
        color: #39b36a;
    }

.navbar .dropdown ul .blue a:hover,
.navbar .dropdown ul .blue .active:hover,
.navbar .dropdown ul .blue li:hover > a {
    color: #5893D4;
}

    .navbar .dropdown ul .project a:hover,
    .navbar .dropdown ul .project .active:hover,
    .navbar .dropdown ul .project li:hover > a {
        color: #1D3E53;
    }

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.green {
    color: #39b36a;
}

.blue {
    color: #46c6e3;
}

.yellow {
    color: #ffed00;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  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: #fff;
  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: #39b36a;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #39b36a;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/bg_green.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
}

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 64px;
        font-family: "Raleway", sans-serif;
        color: #fff;
    }

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#hero .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.6);
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
  margin-top:160px;
}

#hero .btn-scroll i {
  font-size: 48px;
}

#hero .btn-scroll:hover {
  color: #39b36a;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 40px;
  }

  #hero h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

@-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: 20px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #3b434a;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #eef0f2;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 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: 500;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 10px 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 .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;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #39b36a;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .count-box {
  width: 100%;
}

.about .content .count-box i {
  display: block;
  font-size: 36px;
  color: #39b36a;
  float: left;
  line-height: 0;
}

.about .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #3b434a;
  margin-left: 50px;
}

.about .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #5d6a75;
}

.about .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #5d6a75;
  font-size: 15px;
  font-family: "Satisfy", serif;
  transition: ease-in-out 0.3s;
}

.about .content .count-box a:hover {
  color: #82909c;
}

.about .image {
    background: url("../img/pp.png") center center no-repeat;
    background-size: cover;
    max-width: 440px;
    min-height: 300px;
    text-align:center;
}

.about .skills-content {
  margin-top: 30px;
}

.about .skills-content .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.about .skills-content .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: #3b434a;
}

.about .skills-content .progress .skill .val {
  float: right;
  font-style: normal;
}

.about .skills-content .progress-bar-wrap {
  background: #e6e8eb;
}

.about .skills-content .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #39b36a;
}

.about .social-logo {
    width: 45px;
    height: 45px;
    margin-left:12px;
    
}



/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/

.text-border1 {
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, -1px 0px 0 #000, 1px 0px 0 #000, 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000, 2px 0px 0 #000, 1px 2px 0 #000, -1px 2px 0 #000, 1px -2px 0 #000, -1px -2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000, -2px -1px 0 #000;
    font-family:Consolas;
}

.text-border2 {
    text-shadow: 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000, 2px 0px 0 #000, 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000, 0px 3px 0 #000, 0px -3px 0 #000, -3px 0px 0 #000, 3px 0px 0 #000, 2px 3px 0 #000, -2px 3px 0 #000, 2px -3px 0 #000, -2px -3px 0 #000, 3px 2px 0 #000, -3px 2px 0 #000, 3px -2px 0 #000, -3px -2px 0 #000;
    font-family: Consolas;
}

.color-brackets {
    color: #dcdcdc;
}
.color-public {
    color: #569cd6;
}
.color-view {
    color: #dcdcaa;
}
.color-return {
    color: #d8a0df;
}
.color-path {
    color: #d69d85;
}
.color-actionresult {
    color: #b8d7a3;
}
.img-fluid {
    transform: scale(1.1);
}

    .img-fluid.cv {
        margin-bottom: 20px;
        max-height: 50px;
    }
/*--------------------------------------------------------------
# My Resume
--------------------------------------------------------------*/
.resume .resume-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #3b434a;
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #2394b6;
    position: relative;
    font-family: "Releway", sans-serif;
}

    .resume .resume-item h4 {
        line-height: 18px;
        font-size: 16px;
        font-weight: bolder;
        text-transform: uppercase;
        color: #2394b6;
        margin-bottom: 10px;
    }

    .resume .resume-item em {
        font-size: 18px;
        font-weight: bolder;
        color: rgba(0, 60, 105, 1);
        /*white-space:nowrap;*/
        /*margin-left: 4px;*/
        /*max-width:100%;*/
        padding: 5px 0 5px 0;
        font-family: "Releway", sans-serif;
    }

    .resume .resume-item h5 {
        font-size: 16px;
        background: #eef0f2;
        padding: 5px 15px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 10px;
        width: 145px;
        /*white-space: nowrap;*/
        text-align: center;
        margin-top: 5px;
    }

    .resume .resume-item .long-h5 {
        font-size: 16px;
        background: #eef0f2;
        padding: 5px 15px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 10px;
        width: 157px;
        margin-right: 4px;
        /*white-space:nowrap;*/
        text-align: center;
    }

    .resume .resume-item .long2-h5 {
        font-size: 16px;
        background: #eef0f2;
        padding: 5px 15px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 10px;
        width: 220px;
        /*white-space: nowrap;*/
        text-align: center;
    }

    .resume .resume-item i {
        font-size: 20px;
        color: rgba(0, 60, 105, 1);
    }
    .resume .resume-item img {
        max-height: 50px;
        max-width: 100%
    }
    .resume .resume-item .img60 {
        max-height: 60px;
        max-width:100%
    }
    .resume .resume-item .external {
        max-height: 20px;
        max-width: 20%
    }

.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: 3px solid #2394b6;
    }

.resume .resume-item-current {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #2394b6;
    position: relative;
}

    .resume .resume-item-current h4 {
        line-height: 18px;
        font-size: 16px;
        font-weight: bolder;
        text-transform: uppercase;
        color: #2394b6;
        margin-bottom: 10px;
    }

    .resume .resume-item-current em {
        font-size: 18px;
        font-weight: bolder;
        color: rgba(0, 60, 105, 1);
    }

    .resume .resume-item-current h5 {
        font-size: 16px;
        background: #eef0f2;
        padding: 5px 15px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 10px;
        width: 138px;
        text-align: center;
    }

    .resume .resume-item-current .long-h5 {
        font-size: 16px;
        background: #eef0f2;
        padding: 5px 15px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 10px;
        width: 170px;
        text-align: center;
    }
    .resume .resume-item-current .long2-h5 {
        font-size: 16px;
        background: #eef0f2;
        padding: 5px 15px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 10px;
        width: 200px;
        text-align: center;
    }

    .resume .resume-item-current i {
        font-size: 20px;
        color: rgba(0, 60, 105, 1);
    }

    .resume .resume-item-current img {
        height: 50px;
    }

    .resume .resume-item-current .img60 {
        height: 60px;
    }

    .resume .resume-item-current .external {
        height: 20px;
    }

    .resume .resume-item-current ul {
        padding-left: 20px;
    }

        .resume .resume-item-current ul li {
            padding-bottom: 10px;
        }

    .resume .resume-item-current:last-child {
        padding-bottom: 0;
    }

    .resume .resume-item-current::before {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50px;
        left: -9px;
        top: 0;
        background: #fff;
        border: 8px solid #2394b6;
    }

/*--------------------------------------------------------------
# My Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  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: #fff4df;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #39b36a;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
  transition: 0.3s;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #39b36a;
}

.services .icon-box:hover .title a {
  color: #39b36a;
}

/*--------------------------------------------------------------
# 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 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: #39b36a;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# My Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 10px 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
  border: 2px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #f3a200;
  border-color: #39b36a;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  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: #ffc041;
}

.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;
}

.project-button {
    text-align: center;
}

    .project-button a {
        display: inline-block;
        margin-right: 0.1875rem;
        margin-bottom: 0.5rem;
        margin-left: 0.1875rem;
        padding: 0.3125rem 1.375rem 0.25rem 1.375rem;
        border-radius: 0.25rem;
        background-color: #f1f4f7;
        color: #7b7e85;
        font: 700 0.75rem/1.25rem "Raleway", sans-serif;
        font-weight:bolder;
        text-transform:uppercase;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .project-button a:hover {
            background-color: #39b36a;
            color: #fff;
        }

        .project-button a.active {
            background-color: #39b36a;
            color: #fff;
        }


/*--------------------------------------------------------------
# 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 #5893D4;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #5893D4;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination.project .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #1D3E53;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination.project .swiper-pagination-bullet-active {
        background-color: #1D3E53;
    }

.portfolio-details .portfolio-info {
  padding: 25px;
  box-shadow: 0px 0 30px rgba(59, 67, 74, 0.3);
  border-radius:10px;
}

.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;
}

.project-img-title {
    font-weight: bolder;
    font-family: "Releway", sans-serif;
    font-size:1.15rem;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #39b36a;
  font-weight: 600;
  font-family: "Open Sans", 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: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #39b36a;
  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: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #39b36a;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #ffc85a;
}

.pricing .featured h3 {
  color: #fff;
  background: #39b36a;
}

.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: #39b36a;
  color: #fff;
}

/*--------------------------------------------------------------
# Contact Me
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #39b36a;
  border-radius: 50%;
  padding: 15px;
  background: #fff6e4;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.contact .social-links a {
  display: inline-block;
  line-height: 1;
  margin: 0 8px;
  transition: 0.3s;
  padding: 14px;
}

.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: #39b36a;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #39b36a;
  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);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url("../img/map-world.jpg") center center no-repeat;
/*  background-color:#051a1f;*/
  background-size: cover;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

    #footer::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(5, 26, 31, 0.4);
    }

    #footer .container {
        position: relative;
    }

    #footer .logo {
        max-width:100%;
        
        max-height: 50px;
    }

    #footer .design{
        height: 15px;
    }

    #footer .social-logo {
        width: 40px;
        height: 40px;
    }


    #footer h3 {
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        position: relative;
        font-family: "Raleway", serif;
        padding: 0;
        margin: 0 0 15px 0;
    }
    #footer span {
        /*font-family: "Raleway", sans-serif;*/
        font-size: 16px;
        font-style: italic;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #footer p {
        /*font-family: "Raleway", sans-serif;*/
        font-size: 16px;
        font-style: italic;
        padding: 10px;
    }
    #footer p .right{
        margin: 30px 0 30px 0;
    }
    #footer p .left{
        margin: 15px 0 15px 0;
    }

    #footer .social-links {
        min-height: 40px;
        max-height:150px;
        margin: 40px 0 60px 0;
    }
    #footer .soc {
        justify-content: center;
        display: flex;
    }

    #footer .social-links a {

    }


#footer .copyright {
  margin: 0 0 0 0;
}

#footer .credits {
  font-size: 13px;
}

#container {
    position: absolute;
    margin: auto;
    width: 100vw;
    height: 80pt;
    top: 0;
    bottom: 0;
    filter: url(#threshold) blur(0.6px);
}

#text1,
#text2 {
    position: absolute;
    width: 100%;
    display: inline-block;
    font-family: "Raleway", sans-serif;
    font-size: 60px;
    text-align: center;
    user-select: none;
}

.mt-10{
    margin-top:20px;
}

.soc-github {
    float: left;
    width: 42px;
    height: 42px;
    background: transparent url("../img/social/github.png") center top no-repeat;
    background-size: 100%;
    margin-left: 15px;
}

    .soc-github:hover {
        background-image: url("../img/social/github.gif");
    }

.soc-linkedin {
    float: left;
    width: 42px;
    height: 42px;
    background: transparent url("../img/social/linkedin.png") center top no-repeat;
    background-size: 100%;
    margin-left: 10px;
}

    .soc-linkedin:hover {
        background-image: url("../img/social/linkedin.gif");
    }

.soc-insta {
    float: left;
    width: 42px;
    height: 42px;
    background: transparent url("../img/social/instagram.png") center top no-repeat;
    background-size: 100%;
    margin-left: 10px;
}

    .soc-insta:hover {
        background-image: url("../img/social/instagram.gif");
    }

.soc-twitter {
    float: left;
    width: 42px;
    height: 42px;
    background: transparent url("../img/social/twitter.png") center top no-repeat;
    background-size: 100%;
    margin-left: 10px;
}

    .soc-twitter:hover {
        background-image: url("../img/social/twitter.gif");
    }

.soc-t {
    position: relative;
    margin: auto;
    width: 42px;
    height: 42px;
    background: transparent url("../img/social/twitter.png");
    background-size: 100%;
    margin-left: 10px;
    background-repeat: no-repeat;
    
    background-position: center;
    margin: auto;
}

    .soc-t:hover {
        width: 42px;
        height: 42px;
        background-image: url("../img/social/twitter.gif");
    }
#image {
    background-image: url('https://image.freepik.com/free-photo/image-human-brain_99433-298.jpg');
    height: 400px;
    max-width: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    #image:hover {
        background-image: url('https://media.emailonacid.com/wp-content/uploads/2019/03/2019-GifsInEmail.gif');
    }



a {
    color: #777;
    text-decoration: none;
}

    a:hover {
        color: #000;
    }

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: "Raleway", sans-serif;
}

.section {
    padding: 1rem 0;
}

.filters a {
    text-decoration: none;
    color: #000;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

    .filters a:hover,
    .filters a:focus,
    .filters a:active {
        text-decoration: none;
    }

        .filters a:hover:before {
            content: "";
            position: absolute;
            left: 10px;
            right: 10px;
            bottom: 0;
            height: 1px;
            background-color: #000;
        }

    .filters a.active {
        color: #000;
    }

        .filters a.active:before {
            content: "";
            position: absolute;
            left: 10px;
            right: 10px;
            bottom: 0;
            height: 1px;
            background-color: #000;
        }

.item {
    border: none;
    margin-bottom: 30px;
}

    .item .item-wrap {
        display: block;
        position: relative;
        overflow: hidden;
    }

        .item .item-wrap:after {
            z-index: 2;
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            visibility: hidden;
            opacity: 0;
            transition: 0.3s all ease-in-out;
        }

        .item .item-wrap img {
            transition: 0.3s transform ease;
            transform: scale(1);
        }

        .item .item-wrap > .work-info {
            position: absolute;
            top: 50%;
            width: 100%;
            text-align: center;
            z-index: 3;
            transform: translateY(-50%);
            color: #fff;
            opacity: 0;
            visibility: hidden;
            margin-top: 20px;
            transition: 0.3s all ease;
        }

            .item .item-wrap > .work-info h3 {
                font-size: 20px;
                margin-bottom: 0;
            }

            .item .item-wrap > .work-info span {
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 0.2rem;
            }

        .item .item-wrap:hover {
            text-decoration: none;
        }

            .item .item-wrap:hover img {
                transform: scale(1.05);
            }

            .item .item-wrap:hover:after {
                opacity: 1;
                visibility: visible;
            }

            .item .item-wrap:hover .work-info {
                margin-top: 0px;
                opacity: 1;
                visibility: visible;
            }

.testimonial-wrap {
    padding: 50px 50px 80px 50px;
    background: #eceff2;
}

    .testimonial-wrap .testimonial {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

        .testimonial-wrap .testimonial img {
            border-radius: 50%;
            width: 120px;
            margin: 0 auto 30px auto;
        }

        .testimonial-wrap .testimonial blockquote p {
            font-size: 20px;
        }

.h3 {
    font-size: 20px;
}

.h4 {
    font-size: 16px;
}

.heading {
    font-size: 26px;
}

.readmore {
    display: inline-block;
    border: 1px solid #000;
    padding: 10px 15px;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    transition: 0.2s all ease;
    font-weight: 700;
}

    .readmore:active,
    .readmore:focus,
    .readmore:hover {
        outline: none;
    }

    .readmore:hover {
        color: #fff;
        text-decoration: none;
        background: #000;
    }

.testimonials-slider .swiper-pagination {
    margin-top: -60px;
    position: relative;
}

    .testimonials-slider .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(13, 30, 45, 0.3);
        opacity: 1;
    }

    .testimonials-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: rgba(13, 30, 45, 0.6);
    }

.sticky-content {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    /* required */
}

.list-line li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

    .list-line li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.7rem;
        width: 10px;
        height: 2px;
        background: #000;
    }

.form-control {
    border-radius: 0;
    background: #f8f9fa;
    border: 1px solid transparent;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

    .form-control:active,
    .form-control:focus {
        background: #eff1f4;
        outline: none;
        box-shadow: none;
        border: 1px solid transparent;
    }

.custom-progress {
    height: 7px;
    border-radius: 0;
}

    .custom-progress .progress-bar {
        background: #000;
    }

/* Services */
.services i {
    font-size: 40px;
}

.services h4 {
    padding-top: 10px;
}

/* Contact Form */
.php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

    .php-email-form .error-message br + br {
        margin-top: 25px;
    }

.php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

    .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;
    }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* Custom Navmenu */
.custom-navmenu {
    background: #0d1e2d;
}

    .custom-navmenu .custom-menu,
    .custom-navmenu .custom-menu li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .custom-navmenu .custom-menu li {
            margin-bottom: 0;
            font-size: 20px;
        }

            .custom-navmenu .custom-menu li a {
                color: #fff;
                padding: 10px 0 !important;
            }

                .custom-navmenu .custom-menu li a:hover {
                    text-decoration: none;
                }

            .custom-navmenu .custom-menu li.active a {
                text-decoration: underline;
            }

    .custom-navmenu h3 {
        font-size: 20px;
        color: #fff;
    }

    .custom-navmenu p {
        color: rgba(255, 255, 255, 0.6);
    }

    .custom-navmenu a {
        color: rgba(255, 255, 255, 0.7);
    }

        .custom-navmenu a:hover {
            color: #fff;
        }

/* Custom Navbar */
.custom-navbar {
    padding-top: 50px;
    width: 100%;
}

@media (max-width: 780px) {
    .custom-navbar > .container {
        padding-right: 0;
        padding-left: 0;
    }
}

.custom-navbar .navbar-brand {
    font-size: 1.7rem;
}

/* Burger */
.burger {
    width: 28px;
    height: 32px;
    cursor: pointer;
    position: relative;
}

    .burger:before,
    .burger span,
    .burger:after {
        width: 100%;
        height: 2px;
        display: block;
        background: #000;
        border-radius: 2px;
        position: absolute;
        opacity: 1;
    }

    .burger:before,
    .burger:after {
        transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
        -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
        content: "";
    }

    .burger:before {
        top: 4px;
    }

    .burger span {
        top: 15px;
    }

    .burger:after {
        top: 26px;
    }

    /* Hover */
    .burger:hover:before {
        top: 7px;
    }

    .burger:hover:after {
        top: 23px;
    }

    /* Click */
    .burger.active span {
        opacity: 0;
    }

    .burger.active:before,
    .burger.active:after {
        top: 40%;
    }

    .burger.active:before {
        transform: rotate(45deg);
    }

    .burger.active:after {
        transform: rotate(-45deg);
    }

    .burger:focus {
        outline: none;
    }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 0 0 4rem 0;
}

    .footer a {
        color: #000;
    }

.social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    position: relative;
    text-align: center;
    color: #0d1e2d;
}

    .social a span {
        display: inline-block;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .social a:hover {
        color: #000;
    }