body {
  overflow-x: hidden;
  background-color: #fff;
  color: #181818;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

p {
  line-height: 1.6;
  color: #777;
  margin: 0;
}

span, a {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3,
h4 {
  font-family: 'Raleway', sans-serif;
  color: #151515;
}

[data-overlay]:before {
  content: '';
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

[data-overlay="0"]:before {
  opacity: 0;
}

[data-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay="9"]:before {
  opacity: 0.9;
}

[data-overlay="10"]:before {
  opacity: 1;
}

.cover-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-title {
  position: relative;
  margin-bottom: 70px;
  width: 100%;
}
.section-title p {
  position: relative;
  background-color: #1957f3;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 12px;
  letter-spacing: 1px;
}
.section-title p:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border: 11px solid #1957f3;
  z-index: 2;
  left: -12px;
  border-right-width: 11px;
  border-left-color: transparent !important;
}
.section-title p:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border: 11px solid #1957f3;
  z-index: 2;
  right: -12px;
  border-left-width: 11px;
  border-right-color: transparent !important;
}
.section-title h3 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.14;
  letter-spacing: 1.4px;
  padding-bottom: 13px;
  position: relative;
}
.section-title h3:after {
  position: absolute;
  content: '';
  display: block;
  height: 30px;
  width: 1px;
  bottom: -30px;
  left: 50%;
  background-color: #1957f3;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.subtitle {
  margin-bottom: 30px;
}
.subtitle h4 {
  font-size: 20px;
}

/* -------------------------------------------------------
                   02 - Navbar
-------------------------------------------------------- */
.navbar {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  min-height: 50px;
  line-height: 50px;
  background: transparent;
  z-index: 1030;
}
.navbar .active {
  color: #1957f3 !important;
}
.navbar .navbar-brand {
  width: 90px;
}
.navbar .nav-item {
  position: relative;
  margin: 0 5px;
  padding: 0;
}
.navbar .nav-item a {
  color: #f1f1f1;
  font-weight: 500;
}
.navbar .dropdown-menu {
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1);
          box-shadow: 0 0 34px 0 rgba(63, 66, 87, 0.1);
  background-color: #fff;
  min-width: 160px;
  padding: 0;
  list-style: none;
  top: 100%;
  left: 0;
}
.navbar .dropdown-menu .dropdown-item {
  position: relative;
  padding: 12px 15px;
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #505050;
  text-transform: uppercase;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar .dropdown-menu .dropdown-item a {
  color: inherit;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background: #f7f7f7;
  opacity: .7;
}
.navbar .dropdown-menu .dropdown-submenu {
  position: relative;
}
.navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 5px;
}
.navbar .dropdown-menu .dropdown-submenu .dropdown-item {
  background-color: #fff;
  color: #505050;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  z-index: 999;
}
.navbar .dropdown-menu .dropdown-submenu .dropdown-item a {
  color: inherit;
}
.navbar .dropdown-menu .dropdown-submenu .dropdown-item:hover {
  background: #f7f7f7;
}
.navbar .dropdown-menu .dropdown-submenu:before {
  position: absolute;
  right: 10px;
  content: "\f105";
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
}
.navbar .dropdown-menu .dropdown-submenu:hover {
  opacity: 1 !important;
}
.navbar .dropdown-menu .dropdown-submenu:hover a {
  opacity: 1 !important;
}
.navbar .dropdown-menu .dropdown-item:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.navbar .dropdown-menu .dropdown-item:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.navbar .dropdown-toggle::after {
  display: none;
  color: #fff !important;
}
.navbar .nav-link {
  position: relative;
  padding: 0;
}
.navbar .navbar-toggler {
  cursor: pointer;
}
.navbar .navbar-toggler span {
  color: #fff;
}

.navbar-toggler span:last-of-type {
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
}

.nav-scroll {
  background: #fff;
  -webkit-box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.nav-scroll .navbar-nav > li > a {
  color: #333;
}
.nav-scroll .navbar-brand img {
  width: 110px;
  -webkit-transform: scale(1.03) !important;
          transform: scale(1.03) !important;
}
.nav-scroll .navbar-toggler {
  cursor: pointer;
}
.nav-scroll .navbar-toggler span {
  color: #333;
}

/* -------------------------------------------------------
                   03 - Header
-------------------------------------------------------- */
.header {
  position: relative;
  background-attachment: fixed;
  height: 100vh;
  width: 100%;
  z-index: 888;
}
.header .caption {
  text-align: center;
}
.header .caption h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.header .caption h4 span {
  font-weight: 600;
}
.header .caption h2 {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 70px;
  color: #FFFFFF;
  letter-spacing: -1px;
}
.header .caption p {
  font-size: 17px;
  color: #fff;
  line-height: 32px;
  opacity: 0.7;
}
.header .caption .social-icon {
  position: relative;
}
.header .caption .social-icon a {
  display: inline-block;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.header .caption .social-icon a:hover {
  color: #0e76a8;
}

/* -------------------------------------------------------
                   06 - Services
-------------------------------------------------------- */
.services {
  position: relative;
}
.services .box {
  position: relative;
  padding: 50px;
  height: 100%;
  overflow: hidden;
}
.services .box:hover .box-title:before {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translate3d(100%, 0, 0) scale3d(2, 1, 1);
          transform: translate3d(100%, 0, 0) scale3d(2, 1, 1);
}
.services .box:hover .box-title:after {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
          transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
.services .box-title {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
}
.services .box-title:after, .services .box-title:before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  background-color: rgba(91, 52, 255, 0.2);
  -webkit-transition: -webkit-transform 0.65s cubic-bezier(0.7, 0, 0.2, 1);
  transition: -webkit-transform 0.65s cubic-bezier(0.7, 0, 0.2, 1);
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.2, 1);contacter
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.2, 1), -webkit-transform 0.65s cubic-bezier(0.7, 0, 0.2, 1);
}
.services .box-title:before {
  -webkit-transform: scale3d(0.13, 1, 1);
          transform: scale3d(0.13, 1, 1);
}
.services .box-title:after {
  -webkit-transform: translate3d(-10px, 0, 0) scale3d(0, 1, 1);
          transform: translate3d(-10px, 0, 0) scale3d(0, 1, 1);
}
.services .services-box {
  position: relative;
  border: 1px solid #fafafa;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.services .services-box .icon {
  position: relative;
}
.services .services-box .icon i {
  display: inline-block;
  color: #1957f3;
  font-size: 38px;
}
.services .services-box .text {
  position: relative;
}
.services .services-box .text h4 {
  margin-bottom: 15px;
}
.services .services-box:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-top: 50px solid transparent;
  border-bottom: 50px solid #f7f7f7;
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.services .services-box:hover {
  -webkit-box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

/* -------------------------------------------------------
                   07 - Hire Me
-------------------------------------------------------- */
.hire-me {
  position: relative;
  background-attachment: fixed;
}
.hire-me h2 {
  position: relative;
  color: #fff;
  font-size: 52px;
  font-weight: 800;
}
.hire-me button.btn, .hire-me a.btn {
  background-color: rgba(63, 71, 71, 0.38);
  border: 1px solid rgba(0, 0, 0, 0.28);
}

/* -------------------------------------------------------
                   08 - portfolio
-------------------------------------------------------- */
.portfolio {
  overflow: hidden;
}
.portfolio .filtering {
  border-radius: 28px;
  margin: 0 auto;
  border: 1px dotted #e1e1e1;
}
.portfolio .filtering button {
  position: relative;
  top: -1px;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 30px;
  letter-spacing: 2px;
  color: #777;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.portfolio .filtering .active {
  background-color: #1957f3;
  color: #fff;
  border-radius: 28px;
  -webkit-box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 30px -4px rgba(0, 0, 0, 0.2);
}
.portfolio .gallery .item-img {
  position: relative;
  overflow: hidden;
}
.portfolio .gallery .item-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.portfolio .gallery .item-img .part-img {
  position: relative;
}
.portfolio .gallery .item-img .part-img img {
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.portfolio .gallery .item-img .part-img .overlay-img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.portfolio .gallery .item-img .part-img .overlay-img:after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 150ms ease-in-out 200ms;
  transition: all 150ms ease-in-out 200ms;
}
.portfolio .gallery .item-img .part-img .overlay-img:before {
  content: '';
  position: absolute;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 150ms ease-in-out 200ms;
  transition: all 150ms ease-in-out 200ms;
}
.portfolio .gallery .item-img .part-img .overlay-img a {
  width: 100%;
  height: 100%;
}
.portfolio .gallery .item-img .part-img .overlay-img h4 {
  color: transparent;
  overflow: hidden;
  position: absolute;
  top: 54px;
  right: 25px;
  z-index: 2;
  font-size: 18px;
  -webkit-transition: color 150ms ease-in-out 200ms;
  transition: color 150ms ease-in-out 200ms;
  text-align: center;
  padding: 0 10px;
}
.portfolio .gallery .item-img .part-img .overlay-img h4:before {
  content: '';
  background: #fff;
  bottom: 0;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100%;
  -webkit-transition: right 600ms ease-in-out 0s;
  transition: right 600ms ease-in-out 0s;
}
.portfolio .gallery .item-img .part-img .overlay-img h6 {
  color: transparent;
  overflow: hidden;
  position: absolute;
  top: 30px;
  right: 25px;
  z-index: 2;
  font-size: 18px;
  -webkit-transition: color 150ms ease-in-out 200ms;
  transition: color 150ms ease-in-out 200ms;
  text-align: center;
  padding: 0 10px;
}
.portfolio .gallery .item-img .part-img .overlay-img h6::before {
  content: '';
  background: #fff;
  bottom: 0;
  right: auto;
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  -webkit-transition: left 600ms ease-in-out 0s;
  transition: left 600ms ease-in-out 0s;
}
.portfolio .gallery .item-img:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.portfolio .gallery .item-img:hover .overlay-img:after {
  left: 0;
  -webkit-transition: all .8s;
  transition: all .8s;
  opacity: 1;
}
.portfolio .gallery .item-img:hover .overlay-img:before {
  right: 0;
  width: 100%;
  height: 50%;
  -webkit-transition: all .8s;
  transition: all .8s;
  opacity: 1;
}
.portfolio .gallery .item-img:hover .overlay-img h4 {
  color: white;
}
.portfolio .gallery .item-img:hover .overlay-img h4:before {
  right: -100%;
}
.portfolio .gallery .item-img:hover .overlay-img h6 {
  color: white;
}
.portfolio .gallery .item-img:hover .overlay-img h6:before {
  left: -100%;
}

/* -------------------------------------------------------
                   11 - Contact
-------------------------------------------------------- */
.contact {
  position: relative;
  background-attachment: fixed;
}
.contact .section-title h3 {
  color: #fff;
}
.contact .part-info {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(200, 200, 200, 0.3)), to(transparent));
  background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.3), transparent);
  padding: 30px;
  margin-bottom: 50px;
}
.contact .part-info .col-md-4:last-child .info-block {
  border-right: 0;
}
.contact .part-info .info-block {
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.28);
}
.contact .part-info .info-block .icon i {
  display: inline-block;
  color: #fff;
  font-size: 38px;
}

.contact .part-info .info-block h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .part-info .info-block p, .contact .part-info .info-block a {
  color: #fff;
}

/* -------------------------------------------------------
                   12 - Footer
-------------------------------------------------------- */

.footer {
  position: relative;
  background-color: #212121;
  padding: 80px 0;
}


.footer .social-icon {
  position: relative;
  margin: auto;
}

.footer .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #252525;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.footer .social-icon a i {
  color: #fff;
  font-size: 14px;
}

.footer .social-icon a:hover {
  background-color: #ffffff;
}

.footer .social-icon a:hover i {
  color: #252525;
  -webkit-box-shadow: 1px 2px 20px 7px rgba(4, 6, 4, 0.09);
          box-shadow: 1px 2px 20px 7px rgba(4, 6, 4, 0.09);
}


.footer .cop {
  width: 100%;
  padding-top: 30px;
}

.footer .cop h6 {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
}