
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

:root {
  --dark: #000000;
  --darkgray: #343a40;
  --light: #ffffff;
  --lightgray: #b3b3b3;
}

html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  background-color: var(--dark);
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: var(--light);
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: var(--light);
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  background: var(--light);
  font-family: 'Roboto', sans-serif;
}

::selection {
  background: var(--lightgray);
  color: var(--light);
}

::-moz-selection {
  background: var(--lightgray);
  color: var(--light);
}

.border-button a {
  font-size: 14px;
  color: var(--light);
  background-color: transparent;
  border: 1px solid var(--light);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.border-button a:hover {
  background-color: var(--light);
  color: var(--dark);
}

.main-button a {
  font-size: 14px;
  color: var(--dark);
  background-color: var(--light);
  border: 1px solid var(--dark);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button a:hover {
  background-color: var(--dark);
  color: var(--light);
  border: 1px solid var(--light);
}

section {
  margin-top: 120px;
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  margin-bottom: 80px;
  text-align: center;
}

.section-heading .line-dec {
  width: 100px;
  height: 2px;
  background-color: var(--light);
  margin: 0 auto 30px auto;
}

.section-heading h2 {
  margin-top: 10px;
  line-height: 36px;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: -var(--light);
}

.section-heading h2 em {
  color: -var(--light);
  font-style: normal;
}


/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: var(--lightgray);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: var(--darkgray);
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
  background-color: var(--light) !important;
  height: 70px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px var(--dark) !important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  background-color: transparent;
  position: absolute;
  height: 70px;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 70px;
  background: transparent;
  display: flex;
  background-color: var(--light);
  padding: 15px 30px;
  border-radius: 50px;
}

.background-header .main-nav {
  padding: 0px;
  background-color: transparent;
}

.header-area .main-nav .logo {
  flex-basis: 30%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo img {
  padding-top: 15px;
  width: 200px;
}

.background-header .main-nav .logo img {
  width: 200px;
}

.header-area .main-nav .nav {
  display: inline-flex;
  flex-basis: 70%;
  justify-content: flex-end;
  vertical-align: middle;
  text-align: right;
  margin-top: 15px;
  margin-right: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--dark);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: transparent;
  padding: 8px 15px;
  border-radius: 18px;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover,
.background-header .main-nav .nav li.has-sub ul.sub-menu li:last-child a:hover {
  padding-left: 25px !important;
}

.header-area .main-nav .nav li:hover a{
  color: var(--light);
  background-color: var(--dark);
}

.background-header .main-nav .nav li:hover a{
  color: var(--light);
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 17px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--dark);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: var(--dark);
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--dark);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: var(--dark);
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: var(--dark);
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: var(--dark);
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: var(--dark);
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: var(--darkgray);
}

.header-area.header-sticky {
  min-height: 70px;
}

.header-area.header-sticky .nav li a.active {
  color: var(--light);
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-area {
    top: 0;
  }
  .header-area .main-nav {
    background-color: transparent;
    border-radius: 0px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 20px;
    top: 20px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover {
    color: var(--dark)!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: var(--light);
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area.header-sticky .nav {
    margin-top: 85px !important;
    text-align: center;
  }
  .background-header.header-sticky .nav {
    margin-top: 70px !important;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid var(--light);
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: var(--light);
    border-bottom: 1px solid var(--light);
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: var(--light) !important;
    color: #1e1e1e !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: var(--light) !important;
    color: var(--lightgray) important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: var(--darkgray);
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

/* 
---------------------------------------------
Main Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 290px;
  padding-bottom: 240px;
  background-color: var(--dark);
}

.main-banner h6 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-banner h2 {
  color: var(--light);
  font-size: 50px;
  font-weight: 700;
  line-height: 66px;
  text-transform: uppercase;
}

.main-banner p {
  margin-top: 20px;
}

.main-banner .buttons {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.main-banner .border-button {
  margin-right: 15px;
}

.main-banner .owl-banner {
  margin-top: -40px;
}

.main-banner .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom: -76px;
  text-align: center;
}

.main-banner .owl-nav .owl-prev {
  margin-right: 7.5px;
}

.main-banner .owl-nav .owl-next {
  margin-left: 7.5px;
}

.main-banner .owl-nav .owl-prev span,
.main-banner .owl-nav .owl-next span  {
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 24px;
  display: inline-block;
  color: var(--dark);
  background-color: var(--light);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev span:hover,
.main-banner .owl-nav .owl-next span:hover {
  opacity: 0.8;
}

@media (max-width: 992px) {
  .main-banner {
    padding-top: 200px;
    padding-bottom: 150px;
  }

  .main-banner h2 {
    font-size: 30px;
    line-height: 46px;
  }
}

/* 
---------------------------------------------
About Section Style
--------------------------------------------- 
*/

.about-section {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px 120px 0px;
  position: relative;
}

.about-section .left-image {
  margin-right: 30px;
}

.about-section h4 {
  font-size: 20px;
  margin-bottom: 25px;
}

.about-section span.author {
  display: flex;
  margin-bottom: 30px;
}

.about-section span.author img {
  margin-right: 15px;
}

.about-section span.author h6 {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.about-section span.author a {
  color: var(--lightgray);
  font-weight: 700;
  margin-top: 5px;
}

.about-section p {
  margin-bottom: 30px;
}

.about-section span {
  color: var(--light);
  display: inline-block;
  font-size: 15px;
}

.about-section p {
  position: relative;
  z-index: 2;
}

.about-section span.bid {
  line-height: 20px;
  position: relative;
  z-index: 2;
}


@media (max-width: 992px) {
  .about-section .left-image {
    margin-bottom: 30px;
    margin-right: 0px;
  }
  .about-section h4 {
    text-align: left;
    font-size: 24px;
  }
  .about-section .right-content {
    text-align: center;
  }
  .about-section .right-content .main-button {
    text-align: center;
  }
  .about-section span.bid {
    margin-bottom: 15px;
  }
  .about-section span.bid h1 {
    font-size: 40px;
  }
}


/* 
---------------------------------------------
Services Section Style
--------------------------------------------- 
*/

.services-section {
  background-image: url(../images/main-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px;
  position: relative;
}

.services-section .section-heading .line-dec {
  margin-left: 0%;
  background-color: var(--light);
}

.services-section .section-heading {
  text-align: left;
  margin-bottom: 50px;
}

.services-section .main-button {
  text-align: right;
}

.services-section .item {
  margin-top: 30px;
  position: relative;
}

.services-section .first-item:after {
  position: absolute;
  width: 1px;
  height: 95%;
  background-color: var(--light);
  opacity: 0.8;
  content: '';
  right: 5px;
  top: 5%;
}

.services-section .second-item:after {
  position: absolute;
  width: 1px;
  height: 95%;
  background-color: var(--light);
  opacity: 0.8;
  content: '';
  right: 5px;
  top: 5%;
}

.services-section .third-item:after {
  position: absolute;
  width: 1px;
  height: 95%;
  background-color: var(--light);
  opacity: 0.8;
  content: '';
  right: 5px;
  top: 5%;
}

.item .icon {
  width: 62px;
  height: 62px;
  display: inline-block;
  text-align: center;
  line-height: 62px;
  background-color: var(--light);
  border-radius: 50%;
}

.services-section .item .icon img {
  max-width: 31px;
}

.services-section h4 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.services-section p {
  margin-right: 30px;
}


@media (max-width: 992px) {
  .services-section .section-heading .line-dec {
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .services-section .section-heading {
    text-align: center;
  }
  .services-section .main-button {
    text-align: center;
  }
  .services-section .item {
    text-align: center;
  }
  .services-section .item p {
    margin-right: 0px;
  }
  .services-section .first-item:after,
  .services-section .second-item:after {
    display: none;
  }
  .services-section h4 {
    text-align: center;
    font-size: 24px;
  }
  .services-section .right-content {
    text-align: center;
  }
  .services-section .right-content .main-button {
    text-align: center;
  }
}

/* 
---------------------------------------------
Portfolio Section Style
--------------------------------------------- 
*/

.portfolio-section {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px;
  position: relative;
}

.portfolio-section .section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-section .section-heading h2 {
  color: var(--light);
}

.portfolio-section .section-heading p {
  color: var(--lightgray);
  margin-bottom: 0px;
}

.portfolio-section .section-heading .line-dec {
  text-align: center;
}


.portfolio-section .filters {
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-section .filters ul li {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  color: var(--light);
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s;
}

.portfolio-section .filters ul li:first-child {
  margin-left: 0px;
}


.portfolio-section .filters ul li.active,
.portfolio-section .filters ul li:hover {
  background-color: var(--darkgray);
}

.portfolio-section .item span.logo-client {
  display: inline-flex;
  width: 100%;
}

.portfolio-section .item span.logo-client img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.portfolio-section .item img {
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.portfolio-section .item h4 {
  font-size: 25px;
  margin-top: 30px;
}

.portfolio-section .item .line-dec {
  width: 100%;
  height: 1px;
  background-color: var(--lightgray);
  opacity: 0.2;
  margin: 30px 0px;
}

.portfolio-section .item {
  background-color: var(--darkgray);
  border: 1px solid var(--lightgray);
  padding: 30px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 52px;
}

.portfolio-section .item p {
  display: inline-block;
  padding: 0px 10px;
  position: relative;
  top: -12px;
}

.portfolio-section .item span {
  color: var(--light);
  display: inline-block;
  font-size: 15px;
}

.portfolio-section .item span strong {
  font-size: 20px;
}

.portfolio-section .item .main-button {
  margin-top: 20px;
  margin-bottom: -60px;
  text-align: center;
}

.portfolio-section .view-all-projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-section .view-all-projects a {
  background-color: var(--darkgray);
  color: var(--light);
  font-size: 15px;
  font-weight: 500; 
  display: inline-block;
  margin: 0 auto;
  border-radius: 30px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--lightgray);
  cursor: pointer;
  transition: all .3s;
}

.portfolio-section .view-all-projects a:hover {
  background-color: var(--light);
  color: var(--dark);
  border-bottom: 1px solid var(--darkgray);
}

@media (max-width: 768px) {
  .portfolio-section .section-heading .line-dec {
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .portfolio-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
  }
  .portfolio-section .filters {
    text-align: center;
    margin-bottom: 30px;
  }
  .portfolio-section .item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .portfolio-section .item .main-button {
    text-align: center;
  }
  .portfolio-section .item h4 {
    font-size: 24px;
  }
  .portfolio-section .item p {
    margin-top: 15px;
  }
}

/* 
---------------------------------------------
Contact Me Style
--------------------------------------------- 
*/

.contact-me {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0px 120px 0px;
  position: relative;
}

.contact-me .box {
  background-color: var(--darkgray);
  border: 1px solid var(--lightgray);
  padding: 30px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.contact-me .box .section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.contact-me .box .sections-heading h2 {
  color: var(--light);
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-me .box .section-heading p {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact-me .box .section-heading a {
  background-color: var(--light);
  color: var(--dark);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 30px;
  transition: all .3s;
}

.contact-me .box .section-heading a:hover {
  background-color: var(--light);
  color: var(--dark);
  opacity: 0.75;
}

.contact-me .box .section-heading h4 {
  padding-top: 30px;
  text-align: center;
  font-size: 15px;
}

.contact-me .section-heading .social-list {
  display: flex;
  justify-content: center;
  align-items: center;  
  padding-top: 15px;
  gap: 5px;  
  flex-wrap: wrap; 
}

.contact-me .section-heading .social-list li {
  display: inline-block;
}

.contact-me .section-heading .back-to-top {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: -15px;
  font-size: 14px;
  color: var(--light);
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
}

.contact-me .section-heading .back-to-top:hover {
  color: var(--light);
  opacity: 0.75;
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  background: var(--darkgray);
  text-align: center;
  padding: 15px 0px;
}

footer p {
  color: var(--light);
}

footer p a {
  color: var(--light);
  font-weight: 500;
  transition: all .3s;
}

footer p a:hover {
  color: var(--light);
  opacity: 0.75;
}

/* 
---------------------------------------------
Heading Portfolio Page Style
--------------------------------------------- 
*/

.page-heading-portfolio {
  background-image: url(../images/heading-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 300px;
  padding-bottom: 30px;
  text-align: center;
  background-color: var(--dark);
}

.page-heading-portfolio h6 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.page-heading-portfolio h2 {
  color: var(--light);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}

.page-heading-portfolio p {
  margin-top: 10px;
  margin-bottom: 0px;
}

.page-heading-portfolio span {
  color: var(--light);
  font-size: 15px;
}

.page-heading-portfolio span a {
  color: var(--light);
}

.page-heading-portfolio span a:hover {
  color: var(--light);
  opacity: 0.75;
}

@media (max-width: 768px) {
  .page-heading-portfolio {
    padding-top: 200px;
    padding-bottom: 20px;
  }

  .page-heading-portfolio h2 {
    font-size: 30px;
    line-height: 36px;
  }
}

/* 
---------------------------------------------
Portfolio Page Style
--------------------------------------------- 
*/

.portfolio-page {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0px 120px 0px;
  position: relative;
}

.portfolio-page .section-heading {
  text-align: left;
}

.portfolio-page .section-heading .line-dec {
  margin-left: 0;
}

.portfolio-page #search-form {
  margin-top: 15px;
}

.portfolio-page #search-form input,
.portfolio-page #search-form select {
  width: 100%;
  height: 46px;
  outline: none;
  border: 1px solid var(--lightgray);
  border-radius: 23px;
  background-color: transparent;
  padding: 0px 15px;
  font-size: 14px;
  color: var(--light);
}

.portfolio-page #search-form select {
  cursor: pointer;
}

.portfolio-page #search-form select option {
  background-color: var(--dark);
}

.portfolio-page #search-form input::placeholder,
.portfolio-page #search-form select::placeholder {
  color: -var(--light);
}

.portfolio-page #search-form button {
  font-size: 14px;
  color: var(--light);
  background-color: var(--darkgray);
  height: 46px;
  text-align: center;
  width: 100%;
  display: inline-block;
  border-radius: 25px;
  border: 1px solid var(--lightgray);
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.portfolio-page #search-form button:after {
  width: 78%;
  background-color: var(--light);
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.portfolio-page #search-form button:hover {
  background-color: var(--light);
  color: var(--dark);
}

.portfolio-page .item {
  margin-top: 30px;
  position: relative;
}


.portfolio-page .item span.logo-client {
  display: inline-flex;
  width: 100%;
}

.portfolio-page .item span.logo-client img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.portfolio-page .item img {
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

.portfolio-page .item h4 {
  font-size: 25px;
  margin-top: 30px;
}

.portfolio-page .item .line-dec {
  width: 100%;
  height: 1px;
  background-color: var(--lightgray);
  opacity: 0.2;
  margin: 30px 0px;
}

.portfolio-page .item {
  background-color: var(--darkgray);
  border: 1px solid var(--lightgray);
  padding: 30px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 52px;
}

.portfolio-page .item p {
  display: inline-block;
  padding: 0px 10px;
  position: relative;
  top: -12px;
}

.portfolio-page .item span {
  color: var(--light);
  display: inline-block;
  font-size: 15px;
}

.portfolio-page .item span strong {
  font-size: 20px;
}

.portfolio-page .item .main-button {
  margin-top: 20px;
  margin-bottom: -60px;
  text-align: center;
}

.portfolio-page .more-projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-page .more-projects a {
  background-color: var(--darkgray);
  color: var(--light);
  font-size: 15px;
  font-weight: 500; 
  display: inline-block;
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid var(--lightgray);
  padding: 15px 20px;
  cursor: pointer;
  transition: all .3s;
}

.portfolio-page .more-projects a:hover {
  background-color: var(--light);
  color: var(--dark);
}

.portfolio-page .filters {
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-page .filters ul li {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  color: var(--light);
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .3s;
}

@media (max-width: 768px) {
  .portfolio-page .section-heading .line-dec {
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .portfolio-page .section-heading {
    text-align: center;
    margin-bottom: 50px;
  }
  .portfolio-page #search-form {
    margin-bottom: 30px;
  }
  .portfolio-page #search-form button {
    margin-top: 15px;
  }
  .portfolio-page #search-form button:after {
    width: 90%;
  }
  .portfolio-page .filters {
    text-align: center;
    margin-bottom: 30px;
  }
  .portfolio-page .item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .portfolio-page .item .main-button {
    text-align: center;
  }
  .portfolio-page .item h4 {
    font-size: 24px;
  }
  .portfolio-page .item p {
    margin-top: 15px;
  }
}


/* 
---------------------------------------------
Page Heading Detail Portfolio Style
--------------------------------------------- 
*/

.page-heading-details-portfolio {
  background-image: url(../images/heading-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 300px;
  padding-bottom: 30px;
  text-align: center;
  background-color: var(--dark);
}

.page-heading-details-portfolio h6 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.page-heading-details-portfolio h2 {
  color: var(--light);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}

.page-heading-details-portfolio p {
  margin-top: 10px;
  margin-bottom: 0px;
}

.page-heading-details-portfolio span {
  color: var(--light);
  font-size: 15px;
}

.page-heading-details-portfolio span a {
  color: var(--light);
}

.page-heading-details-portfolio span a:hover {
  color: var(--light);
  opacity: 0.75;
}

@media (max-width: 768px) {
  .page-heading-details-portfolio {
    padding-top: 200px;
    padding-bottom: 20px;
  }

  .page-heading-details-portfolio h2 {
    font-size: 30px;
    line-height: 36px;
  }
}


/* 
---------------------------------------------
Details Page Style
--------------------------------------------- 
*/

.details-portfolio {
  background-image: url(../images/dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0px 120px 0px;
  position: relative;
}

.details-portfolio:after {
  background-image: url(/assets/images/category-collection-dec.png);
  width: 300px;
  height: 282px;
  position: absolute;
  bottom: 0;
}

.details-portfolio .center-image {
  padding-bottom: 50px;
}

.details-portfolio .descripsions h3 {
  font-size: 30px;
  margin-bottom: 25px;
}

.details-portfolio .descripsions p {
  margin-bottom: 15px;
}
.details-portfolio .developer .line-dec {
  display: none;
  width: 100%;
  height: 1px;
  background-color: var(--lightgray);
  opacity: 0.2;
  margin: 30px 0px;
}
.details-portfolio .developer h3 {
  font-size: 25px;
  margin-bottom: 25px;
}

.details-portfolio .developer h5 {
  font-size: 15px;
  margin-bottom: 10px;
}

.details-portfolio .developer span.author {
  display: flex;
  margin-bottom: 30px;
}

.details-portfolio .developer span.author img {
  margin-right: 15px;
}

.details-portfolio .developer span.author h6 {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.details-portfolio .developer span.author a {
  color: var(--lightgray);
  font-weight: 700;
  margin-top: 5px;
}

.details-portfolio .developer p {
  margin-bottom: 30px;
}

.details-portfolio .developer span {
  color: var(--light);
  display: inline-block;
  font-size: 13px;
}

.details-portfolio .developer span strong {
  font-size: 15px;
  color: var(--lightgray);
}


.details-portfolio span.project-date,
.details-portfolio span.company,
.details-portfolio span.platform  {
  line-height: 30px;
  position: relative;
  z-index: 2;
}

.details-portfolio span.project-date em,
.details-portfolio span.company em,
.details-portfolio span.platform em {
  font-style: normal;
  color: var(--lightgray);
}

.details-portfolio .demo-button {
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  background-color: var(--light);
  color: var(--dark);
  padding: 10px 15px;
  border-radius: 50px;
  transition: all .3s;
}

.details-portfolio .demo-button:hover {
  background-color: var(--darkgray);
  color: var(--light);
  border: 1px solid var(--lightgray);
}

.details-portfolio .github-button {
  margin-left: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  background-color: var(--light);
  color: var(--dark);
  padding: 10px 15px;
  border-radius: 50px;
  transition: all .3s;
}

.details-portfolio .github-button:hover {
  background-color: var(--darkgray);
  color: var(--light);
  border: 1px solid var(--lightgray);
}

.details-portfolio .behance-button {
  margin-left: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
  background-color: var(--light);
  color: var(--dark);
  padding: 10px 15px;
  border-radius: 50px;
  transition: all .3s;
}

.details-portfolio .behance-button:hover {
  background-color: var(--darkgray);
  color: var(--light);
  border: 1px solid var(--lightgray);
}


@media (max-width: 992px) {
  .details-portfolio .center-image {
    margin-bottom: 20px;
  }
  .details-portfolio h2 {
    text-align: center;
    font-size: 24px;
  }
  .details-portfolio .descripsions h3 {
    text-align: left;
  }
  .details-portfolio .descripsions p {
    text-align: left;
  }
  .details-portfolio .developer .line-dec {
    display: block;
  }
  .details-portfolio .developer h3{
    text-align: left;
  }
  .details-portfolio .developer h5 {
    text-align: left;
    font-size: 20px;
  }
  .details-portfolio .developer p {
    text-align: left;
    font-size: 15px;
  }
  .details-portfolio .developer .author {
    text-align: center;
  }
  .details-portfolio .developer span.author img {
    text-align: center;
  }
  .details-portfolio .developer .main-button {
    text-align: center;
  }
  .details-portfolio span.project-date,
  .details-portfolio span.company,
  .details-portfolio span.platform {
    margin-bottom: 15px;
  }
}


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
}

@media (max-width: 992px) {
  .main-banner .owl-banner {
    margin-top: 80px;
  }
}

@media (max-width: 1200px) {
  
}