/*-----------------------------------------------------------------
Template Name  : Dolunay - Creative Portfolio Multi-Purpose & Personal HTML Template 
Author         : HasnaaDesign
Version        : 1.0
Primary Use    : Personal, Porfolio, Multipurpose
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
Table Of Contents
--------------------------------
 1. Global Styles
 2. Loading
 3. Navbar
 4. Home
 5. Follow Us
 6. Header
 7. About
 8. About Me
 9. Services
 10. Facts
 11. Teams
 12. Testimonials
 13. Clients
 14. Contact Section
 15. Gallery
 16. Portfolio
 17. Blog
 18. Contact
 19. Personal
 20. Skills
 21. Footer
 22. Scroll To Top
 23. Media Queries
-----------------------------------------------------------------*/
/* --------------------------------------
   1. Global Styles
-----------------------------------------*/

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -mz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  overflow: hidden;
  background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:focus,
a:active {
  color: #fff;
  text-decoration: none;
}

/*=========== Typography ============*/
h1 {
  font-size: 60px;
  font-weight: 800;
}

h2 {
  font-size: 50px;
  font-weight: 600;
}

h3 {
  font-size: 30px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 400;
}

h5 {
  font-size: 16px;
  font-weight: 400;
}

h6 {
  font-size: 15px;
  font-weight: 400;
}

/*=========== My Classes ============*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #363535;
}

.background-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-size: cover;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: none; 
  box-shadow: none;
}

.parallax-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dl-container {
  padding-right: 50px;
  padding-left: 50px;
}

@media (min-width: 992px) {
  .container {
    max-width: 100%;
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 991px) {
  .container, .dl-container {
    max-width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .container, .dl-container {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media only screen and (max-width: 575px) {
  .container, .dl-container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.sub-heading {
  position: relative;
  font-size: 16px;
  letter-spacing: 2.5px;
  color: #bbb;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 60px;
  margin-bottom: 15px;
}

.sub-heading:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 45px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.heading {
  color: #fff;
  text-transform: capitalize;
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 1.4;
  font-weight: 600;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-30 {
  margin-bottom: 30px;
}

.over-hidden {
  overflow: hidden;
}

#cursor {
	position: absolute;
	display: none;
	width: 10px;
	height: 10px;
	pointer-events: none;
	z-index: 99999;
	opacity: 0;
}

body.cursor-effect #cursor {
	display: block;
}

#circle {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	pointer-events: none;
	border-style: solid;
	border-color: #fff;
	border-radius: 50%;
  font-size: 18px;
}

/* --------------------------------------
   2. Loading
-----------------------------------------*/

.preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	min-height: 100vh;
  background-color: rgb(15, 15, 15);
	display: grid;
	place-items: center;
  z-index: 9999999;
}

canvas {
	width: 100%;
	height: 100vh;
}

/* --------------------------------------
   3. Navbar
-----------------------------------------*/

.site-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 9999;
}

.site-navbar.active-navbar {
  background-color: #000;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-navbar .logo-content .logo {
  width: 95px;
  pointer-events: all;
  color: #fff;
}

.site-navbar .logo-content .logo img {
  height: auto;
  max-width: 100%;
}

.site-navbar .menu-icon {
  position: relative;
  align-items: center;
  pointer-events: initial;
  cursor: pointer;
  z-index: 9;
}

.site-navbar .menu-icon .menu-txt-btn {
  font-family: 'Poppins', sans-serif;
  position: relative;
    top: 2px;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.site-navbar .menu-icon .menu-txt-btn .menu-txt {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

.site-navbar .menu-icon:hover .menu-txt-btn .menu-txt {
  transform: translateY(-100%);
}

.site-navbar .menu-icon .menu-txt-btn .menu-txt::before {
  position: absolute;
  top: 100%;
  right: 0;
  content: attr(data-hover);
}

.menu-open .site-navbar .menu-icon .menu-txt-btn .menu-txt::before {
  content: none;
}

.site-navbar .menu-icon .menu-txt-btn .close-txt {
  display: none;
}

.site-navbar .menu-icon .icon {
  position: relative;
  width: 50px;
  height: 50px;
}

.site-navbar .menu-icon .icon .bar-content {
  position: absolute;
  display: block;
  top: 51%;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
}

.site-navbar .menu-icon .icon span.top-bar,
.site-navbar .menu-icon .icon span.bottom-bar {
  position: absolute;
  display: block;
  height: 2px;
  background-color: #fff;
}

.site-navbar .menu-icon .icon span.top-bar {
  top: -4px;
  width: 23px;
}

.site-navbar .menu-icon .icon span.bottom-bar {
  bottom: -4px;
  width: 16px;
}

.site-navbar .main-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: #000;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  padding-left: 50px;
  padding-right: 50px;
}

.site-navbar .main-nav .menu-bg-title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -10px;
  color: #b9b9b9;
  font-size: 18vw;
  font-weight: 600;
  line-height: 1.15;
  opacity: 0.05;
  z-index: -1;
}

.site-navbar .main-nav .menu-content {
  max-width: 100%;
}

.site-navbar .main-nav .menu-content li {
  font-family: 'Poppins', sans-serif;
  position: relative;
  font-size: 43px;
  font-weight: 400;
  color: #fff;
  line-height: 1.67;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 27px;
  transition: color .3s ease-in-out;
}

.site-navbar .main-nav .menu-content li.active,
.site-navbar .main-nav .menu-content li:hover {
  color: #16c1b7;
}

.site-navbar .main-nav .menu-content li a {
  color: inherit;
  line-height: 1.67;
}

.site-navbar .main-nav .menu-content li a .menu-title {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
}

.site-navbar .main-nav .menu-content li a .menu-number {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0;
  visibility: hidden;
  color: #a3a1a1;
  transition: color .3s ease-in-out;
}

.site-navbar .main-nav .menu-content li .submenu-up a .menu-number {
  left: -27px;
}

.site-navbar .main-nav .menu-content li.active a .menu-number,
.site-navbar .main-nav .menu-content li:hover a .menu-number {
  color: #fff;
}

.site-navbar .main-nav .menu-content li .submenu-caret {
    position: absolute;
    top: 20px;
    right: -38px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
}

.site-navbar .main-nav .menu-content li .submenu-caret .arrow {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
}

.site-navbar .main-nav .menu-content li .arrow i {
  display: inline-block;
  font-size: 16px;
  line-height: 60px;
  -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}

.site-navbar .main-nav .menu-content li.active .arrow i,
.site-navbar .main-nav .menu-content li:hover .arrow i {
  color: #16c1b7;
}

.site-navbar .main-nav .menu-content li .arrow i.top {
  transform: rotate(-90deg);
}

.site-navbar .main-nav .menu-content li .submenu-up {
  position: relative;
  display: inline-block;
}

.site-navbar .main-nav .menu-content li .submenu {
  display: none;
}

.site-navbar .main-nav .menu-content li .submenu li {
  font-size: 30px;
  padding-left: 0;
}

.site-navbar .menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  background-color: rgba(10, 10, 10, .75);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

/* --------------------------------------
   4. Home
-----------------------------------------*/

.slideshow {
  position: relative;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  height: 100vh;
  min-height: 400px; 
}

.slideshow__slide {
  visibility: hidden;
  transition: visibility 0s 1.7s; 
}

.slideshow__slide.is-current {
  visibility: visible;
  transition-delay: 0s; 
}

@media (max-width: 699px) {
  .slideshow .slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; 
  } 
}

@media (min-width: 700px) {
  .slideshow .slideshow__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; 
  } 
}

.slideshow__slide-background-load-wrap {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, 100%, 0);
  overflow: hidden; 
}

.is-loaded .slideshow__slide-background-load-wrap {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s; 
}

.slideshow__slide.is-prev .slideshow__slide-background-parallax,
.slideshow__slide.is-next .slideshow__slide-background-parallax {
  transform: none !important; 
}

.slideshow__slide.is-prev-section .slideshow__slide-background-parallax,
.slideshow__slide.is-next-section .slideshow__slide-background-parallax {
  transform: none !important; 
}

.slideshow__slide-background-load {
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate3d(0, -50%, 0); 
}

.is-loaded .slideshow__slide-background-load {
  transform: translate3d(0, 0, 0); 
}

.slideshow__slide-background-wrap {
  transition: -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); 
}

.slideshow__slide.is-prev .slideshow__slide-background-wrap {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); 
}

.slideshow__slide.is-next .slideshow__slide-background-wrap {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); 
}

.slideshow__slide.is-prev-section .slideshow__slide-background-wrap {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  transition: none; 
}

.slideshow__slide.is-next-section .slideshow__slide-background-wrap {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition: none; 
}

.slideshow__slide-background {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transform: scale(1);
  overflow: hidden; 
}

.slideshow__slide.is-prev .slideshow__slide-background,
.slideshow__slide.is-next .slideshow__slide-background {
  transform: scale(0.5);
  transition-delay: 0s; 
}

.slideshow__slide.is-prev-section .slideshow__slide-background,
.slideshow__slide.is-next-section .slideshow__slide-background {
  transform: scale(0.5);
  transition-delay: 0s;
  transition: none; 
}

.slideshow__slide-image-wrap {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transform: translate3d(0, 0, 0); 
}

.slideshow__slide.is-prev .slideshow__slide-image-wrap {
  transform: translate3d(0, 50%, 0); 
}

.slideshow__slide-image {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transform: scale(1); 
}

.slideshow__slide-image:before {
    content: '';
    position: absolute;
    background: #000;
    opacity: .5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.slideshow__slide.is-prev .slideshow__slide-image,
.slideshow__slide.is-next .slideshow__slide-image {
  transform: scale(1.25);
  transition-delay: 0s; 
}

.slideshow__slide.is-prev-section .slideshow__slide-image,
.slideshow__slide.is-next-section .slideshow__slide-image {
  transform: scale(1.25);
  transition-delay: 0s;
  transition: none; 
}

.slideshow__slide.is-prev .slideshow_container,
.slideshow__slide.is-next .slideshow_container {
  transform: none !important; 
}

.slideshow__slide.is-prev-section .slideshow_container,
.slideshow__slide.is-next-section .slideshow_container {
  transform: none !important; 
}

.slideshow__slide-caption-text {
  position: relative;
  height: 100%;
  padding-top: 33vh;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: translate3d(0, 0, 0); 
}

.slideshow__slide.is-prev .slideshow__slide-caption-text {
  transform: translate3d(0, -100%, 0); 
}

.slideshow__slide.is-next .slideshow__slide-caption-text {
  transform: translate3d(0, 100%, 0); 
}

.slideshow__slide.is-prev-section .slideshow__slide-caption-text {
  transform: translate3d(0, -100%, 0);
  transition: none; }

.slideshow__slide.is-next-section .slideshow__slide-caption-text {
  transform: translate3d(0, 100%, 0);
  transition: none; 
}

.slideshow__slide-caption {
  position: relative;
  height: 100%;
  transform: translate3d(0, 100%, 0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s; 
}

.is-loaded .slideshow__slide-caption {
  transform: translate3d(0, 0, 0); 
}

.slideshow__slide-caption-text .cat {
  position: relative;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.8;
  padding-left: 60px;
  margin-bottom: 30px;
}

.slideshow__slide-caption-text .cat:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  width: 40px;
  height: 2px;
  background: rgba(163, 163, 163, 0.24);
}

.slideshow__slide-caption-title {
  color: #fff;
  line-height: 1;
  font-size: 75px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 30px; 
  text-transform: uppercase;
}

.slideshow__slide-caption-text .slideshow__slide-btn {
  display: inline-block;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 3px;
  outline: none;
  cursor: pointer;
  width: 12rem;
  height: auto;
  position: relative;
}

.slideshow__slide-caption-text .slideshow__slide-btn .btn-circle {
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #868f90;
  border-radius: 1.625rem;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.slideshow__slide-caption-text .slideshow__slide-btn:hover .btn-circle {
  width: 12rem;
}

.slideshow__slide-caption-text .slideshow__slide-btn .btn-small-circle {
  position: absolute;
  top: 7px;
  left: 14px;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.slideshow__slide-caption-text .slideshow__slide-btn:hover .btn-small-circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.slideshow__slide-caption-text .slideshow__slide-btn .btn-small-circle svg {
  width: 19px;
  height: 19px;
  margin: auto!important;
}

.slideshow__slide-caption-text .slideshow__slide-btn .btn-small-circle svg path {
  stroke: #000;
}

.slideshow__slide-caption-text .slideshow__slide-btn .btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.92rem 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-21px);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.slideshow__slide-caption-text .slideshow__slide-btn:hover .btn-txt {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}

.slider-home-prev {
  position: absolute;
  right: 466px;
  bottom: 20px;
} 

.slider-home-next {
  position: absolute;
  right: 26px;
  bottom: 20px;
} 

.slider-home-prev .slider-home-prev-container .arrow,
.slider-home-next .slider-home-next-container .arrow {
  position: relative;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: all 0.6s cubic-bezier(0.77,0,0.175,1);
}

.slider-home-prev .slider-home-prev-container:hover .arrow,
.slider-home-next .slider-home-next-container:hover .arrow {
  margin: 0;
}

.slider-home-prev .slider-home-prev-container .arrow {
  border-right: 6px solid #fff;
  margin-left: 20px;
}

.slider-home-next .slider-home-next-container .arrow {
  border-left: 6px solid #fff;
  margin-right: 20px;
}

.slider-home-prev .slider-home-prev-container,
.slider-home-next .slider-home-next-container {
  position: relative;
  height: 46px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.slider-home-prev .slider-home-prev-container:after,
.slider-home-next .slider-home-next-container:before {
  position: relative;
  width: 54px;
  height: 1px;
  background-color: #fff;
  opacity: .08;
  transition: all 0.6s cubic-bezier(0.77,0,0.175,1);
}

.slider-home-prev .slider-home-prev-container:hover:after,
.slider-home-next .slider-home-next-container:hover:before {
  width: 74px;
}

.slider-home-prev .slider-home-prev-container:after {
  content: "";
  margin-left: 6px;
}

.slider-home-next .slider-home-next-container:before {
  content: "";
  margin-right: 6px;
}

.pagination {
  position: absolute;
    bottom: 25px;
    right: 134px;
    display: flex;
    align-items: center;
}

.pagination .pagination-current-number,
.pagination .pagination-total-number {
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.pagination .pagination-total-number {
  opacity: .7;
}

.pagination .pagination-progress {
  position: relative;
  background: rgba(255, 255, 255, 0.35);
  width: 240px;
  height: 2px;
}

.pagination .pagination-progress .pagination-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  height: 100%;
}

/* --------------------------------------
   5. Follow Us
-----------------------------------------*/

.fullheader {
  position: relative;
  z-index: 3; 
}

.header-follow {
  top: 50%;
  left: 30px;
  width: 20px;
  height: 200px;
  position: fixed;
  margin-top: -100px;
  z-index: 99; 
}

@media (max-width: 767px) {
  .header-follow {
    display: none; 
  } 
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-follow {
    display: none; 
  } 
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-follow {
    display: none; 
  } 
}

.header-follow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-follow ul li {
  display: block;
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
  transition: all 300ms;
}

.header-follow ul li .fa {
  color: #fff; 
}

.header-follow ul li:hover {
  transform: scale(1.5, 1.5); 
}

.header-follow p {
  top: 70px;
  left: -24px;
  width: 68px;
  height: 20px;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  transform: rotate(-90deg);
  margin: 0;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px; 
}

.header-follow p:after {
  top: 9px;
  right: -51px;
  width: 40px;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1); 
}

/* --------------------------------------
   6. Header
-----------------------------------------*/

.header {
  position: relative;
  background: #101010;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-top: 160px;
  padding-bottom: 160px;
}

.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/patrn.svg) no-repeat fixed;
  background-size: cover;
  opacity: .4;
}

.header .header-content .subtitle {
  position: relative;
  color: #bbb;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  text-transform: uppercase;
  margin: 0;
  background: #121212;
  padding: 0 10px;
}

.header .header-content .subtitle:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: -60px;
  width: 45px;
  height: 1px;
  background: #121212;
  vertical-align: middle;
}

.header .header-content .title {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-top: 30px;
}

.header-image {
  background:  url('https://via.placeholder.com/1200x800') center center no-repeat;
  background-size: cover;
  height: calc(100vh - 60px);
  position: relative;
}

.header-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
}

/* --------------------------------------
   7. About
-----------------------------------------*/

.about-page .header {
  background: transparent;
  border-bottom: none;
}

.about {
  margin-top: 120px;
  margin-bottom: 120px;
}

.about .left-area p,
.about .right-area p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about .left-area p:last-of-type,
.about .right-area p:last-of-type {
  margin-bottom: 0;
}

/* --------------------------------------
   8. About Me
-----------------------------------------*/

.about-me {
  margin-top: 120px;
  margin-bottom: 120px;
}

.about-me .left-area h4 {
  color: #16c1b7;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-me .left-area p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-me .left-area p:first-of-type {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.about-me .left-area p:last-of-type {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.about-me .left-area p:last-of-type {
  margin-bottom: 0;
}

.about-me .left-area .main-btn {
  display: inline-block;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 3px;
  outline: none;
  cursor: pointer;
  width: 12rem;
  height: auto;
  position: relative;
  margin-top: 30px;
}

.about-me .left-area .main-btn .btn-circle {
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #868f90;
  border-radius: 1.625rem;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.about-me .left-area .main-btn:hover .btn-circle {
  width: 12rem;
}

.about-me .left-area .main-btn .btn-small-circle {
  position: absolute;
  top: 7px;
  left: 14px;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.about-me .left-area .main-btn:hover .btn-small-circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.about-me .left-area .main-btn .btn-small-circle svg {
  width: 19px;
  height: 19px;
  margin: auto!important;
}
.about-me .left-area .main-btn .btn-small-circle svg path {
  stroke: #000;
}

.about-me .left-area .main-btn .btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.92rem 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-21px);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.about-me .left-area .main-btn:hover .btn-txt {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}

.about-me .right-area {
  margin-top: 40px;
}

.about-me .right-area .skills-inner-box {
  display: flex;
  justify-content: space-between;
  height: 322px;
}

.about-me .right-area .skills-inner-box .skills-item {
  position: relative;
  width: 50px;
  height: 100%;
}

.about-me .right-area .skills-inner-box .skills-item h4 {
  position: absolute;
  bottom: 55px;
  left: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  z-index: 1;
  white-space: nowrap;
  -webkit-transform: translateX(-50%) rotate(-90deg);
  -ms-transform: translateX(-50%) rotate(-90deg);
  transform: translateX(-50%) rotate(-90deg);
}

.about-me .right-area .skills-inner-box .skills-item .bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.about-me .right-area .skills-inner-box .skills-item .bar .item-progress {
  position: absolute;
  bottom: 0;
  width: 100%;
  outline: 1px solid #080808;
  outline-offset: 4px;
  height: 0;
  -webkit-transition: all 1.1s ease-in-out;
  -moz-transition: all 1.1s ease-in-out;
  -o-transition: all 1.1s ease-in-out;
  -ms-transition: all 1.1s ease-in-out;
  transition: all 1.1s ease-in-out;
}

/* --------------------------------------
   9. Services
-----------------------------------------*/

.services {
  margin-top: 120px;
  margin-bottom: 120px;
  color: #fff;
}

.services .service-item {
  padding: 40px 25px;
  border: 1px solid #181818;
}

.services .item:nth-of-type(n+4) .service-item {
  margin-top: 30px;
}

.services .service-item .service-content .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  line-height: 1;
}

.services .service-item .service-content .service-details h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, .07);
  margin-bottom: 15px;
}

.services .service-item .service-content .service-details p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.services-page .header .header-content .subtitle {
  background: #1c1c1c;
}

.services-page .header .header-content .subtitle:after {
  background: #1c1c1c;
}

.about-services-page, .about-project {
  margin-top: 120px;
  margin-bottom: 120px;
}

.about-services-page .left-area,
.about-project .left-area {
  height: 100%;
}

.about-services-page .left-area .image-wrap,
.about-project .left-area .image-wrap {
  width: 100%;
  height: 100%;
}

.about-services-page .left-area .image-wrap img,
.about-project .left-area .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  vertical-align: middle;
}

.about-services-page .right-area .description,
.about-project .right-area .description {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.about-services-page .right-area .description p,
.about-project .right-area .description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #bbb;
  margin-bottom: 10px;
}

.about-services-page .right-area .description p:last-of-type,
.about-project .right-area .description p:last-of-type {
  margin-bottom: 0;
}

.about-services-page .right-area .main-btn,
.about-project .right-area .main-btn {
  display: inline-block;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 3px;
  outline: none;
  cursor: pointer;
  width: 12rem;
  height: auto;
  position: relative;
  margin-top: 30px;
}

.about-services-page .main-btn .btn-circle,
.about-project .main-btn .btn-circle {
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #868f90;
  border-radius: 1.625rem;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.about-services-page .main-btn:hover .btn-circle,
.about-project .main-btn:hover .btn-circle {
  width: 12rem;
}

.about-services-page .main-btn .btn-small-circle,
.about-project .main-btn .btn-small-circle {
  position: absolute;
  top: 7px;
  left: 14px;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.about-services-page .main-btn:hover .btn-small-circle,
.about-project .main-btn:hover .btn-small-circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.about-services-page .main-btn .btn-small-circle svg,
.about-project .main-btn .btn-small-circle svg {
  width: 19px;
  height: 19px;
  margin: auto!important;
}

.about-services-page .main-btn .btn-small-circle svg path,
.about-project .main-btn .btn-small-circle svg path {
  stroke: #000;
}

.about-services-page .main-btn .btn-txt,
.about-project .main-btn .btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.92rem 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-21px);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.about-services-page .main-btn:hover .btn-txt,
.about-project .main-btn:hover .btn-txt {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}

/* --------------------------------------
   10. Facts
-----------------------------------------*/

.facts {
  margin-top: 120px;
  margin-bottom: 120px;
}

.facts .left-area .accordion-content .accordion-item {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 30px;
}

.facts .left-area .accordion-content .accordion-item .accordion-head {
  position: relative;
  padding-right: 15px;
  cursor: pointer;
}

.facts .left-area .accordion-item .accordion-head .fact-number {
  position: relative;
  width: 35px;
  line-height: 30px;
  border-radius: 50%;
  color: #fff;
  margin-right: 25px;
  font-size: 33px;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-block;
  font-family: "poppins", sans-serif;
}

.facts .left-area .accordion-item .accordion-head .fact-number:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: #16c1b7;
  left: 3px;
  bottom: 1px;
  z-index: -1;
}

.facts .left-area .accordion-item .accordion-head .fact-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 0;
}

.facts .left-area .accordion-item .accordion-head .accordion-caret-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.facts .left-area .accordion-item .accordion-head .accordion-caret {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .3;
  transition: opacity 0.3s ease;
}

.facts .left-area .accordion-item .accordion-head.current .accordion-caret,
.facts .left-area .accordion-item .accordion-head .accordion-caret:hover {
  opacity: 1;
}

.facts .left-area .accordion-item .accordion-head .accordion-caret:before,
.facts .left-area .accordion-item .accordion-head .accordion-caret:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #fff;
}

.facts .left-area .accordion-item .accordion-head .accordion-caret:before {
  width: 3px;
  height: 100%;
  transition: height 0.3s ease;
}

.facts .left-area .accordion-item .accordion-head .accordion-caret:after {
  width: 100%;
  height: 3px;
}

.facts .left-area .accordion-item .accordion-head.current .accordion-caret:before {
  height: 0;
}

.facts .left-area .accordion-item .accordion-body {
  display: none;
  max-width: 410px;
  padding-top: 15px;
  padding-left: 60px;
}

.facts .left-area .accordion-item .accordion-body.active {
  display: block;
}

.facts .left-area .accordion-item .accordion-body p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.facts .right-area {
  height: 100%;
}

.facts .right-area .image-wrap {
  width: 100%;
  height: 100%;
}

.facts .right-area .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  vertical-align: middle;
}

/* --------------------------------------
    11. Teams
-----------------------------------------*/

.teams {
  margin-top: 120px;
  margin-bottom: 120px;
}

.teams .team-item-wrap {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .07);
}

.teams .team-item-wrap .team-item {
  position: relative;
  overflow: hidden;
}

.teams .team-item-wrap .team-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .85);
  opacity: 0;
  transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
}

.teams .team-item-wrap:hover .team-item:before {
  opacity: 1;
}

.teams .team-item-wrap .team-item .team-img .img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.teams .team-item-wrap .team-item .team-details {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
}

.teams .team-item-wrap:hover .team-item .team-details {
  transform: translateY(0px);
  opacity: 1;
}

.teams .team-item-wrap .team-item .team-details h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.teams .team-item-wrap .team-item .team-details h5 {
  color: #16c1b7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.4;
}

.teams .team-item-wrap .team-item .team-social-icons {
  position: absolute;
  bottom: -50px;
  right: 20px;
  opacity: 0;
  transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
}

.teams .team-item-wrap:hover .team-item .team-social-icons {
  bottom: 20px;
  opacity: 1;
}

.teams .team-item-wrap .team-item .team-social-icons span {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  cursor: pointer;
}

.teams .team-item-wrap .team-item .team-social-icons span a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
}

.teams .team-item-wrap .team-item .team-social-icons span a:hover {
  color: #16c1b7;
}

/* --------------------------------------
   12. Testimonials
-----------------------------------------*/

.testimonials {
  margin-top: 120px;
  margin-bottom: 120px;
}

.testimonials .testimonial-item .testimonial-image {
  position: relative;
}

.testimonials .testimonial-item .testimonial-image .img-pattern {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 15px;
  top: 19px;
}

.testimonials .testimonial-item .testimonial-image img {
  display: block;
  width: 100%;
}

.testimonials .testimonial-item .testimonial-image .image-box {
  width: 168px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 86%, 46% 86%, 15% 100%, 23% 85%, 0 84%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 86%, 46% 86%, 15% 100%, 23% 85%, 0 84%);
}

.testimonials .testimonial-item .testimonial-quote {
  padding: 0 65px;
}

.testimonials .testimonial-item .testimonial-details {
  margin-bottom: 35px;
}

.testimonials .testimonial-item .testimonial-details .testimonial-author h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.testimonials .testimonial-item .testimonial-details .testimonial-author h5 {
  font-size: 14px;
  font-weight: 600;
  color: #16c1b7;
  letter-spacing: 2px;
  line-height: 1.4;
}

.testimonials .testimonial-item .testimonial-details .testimonial-text {
  font-size: 16px;
  font-weight: 400;
  color: #bbb;
  line-height: 1.6;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #161616;
  margin-bottom: 0;
}

.testimonials .testimonials-items .owl-nav {
  position: relative;
}

.testimonials .testimonials-items .owl-prev {
  position: absolute;
  right: 58px;
  bottom: -30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.testimonials .testimonials-items .owl-next {
  position: absolute;
  right: 0;
  bottom: -30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.testimonials .testimonials-items .owl-nav i {
  display: inline-block;
  font-size: 12px;
  background: #16c1b7;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

/* --------------------------------------
   13. Clients
-----------------------------------------*/

.clients {
  margin-top: 120px;
  margin-bottom: 120px;
}

.clients .clients-wrap {
  margin-left: 2px;
  overflow: hidden;
}

.clients .clients-wrap li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 20%;
  margin-left: -2px;
  margin-bottom: -2px;
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: #212121;
  min-height: 217px;
}

.clients .clients-wrap li a img {
  display: flex;
}

.clients .clients-wrap li img {
  opacity: 0.5;
  transition: opacity .4s;
  max-width: 121px;
}

.clients .clients-wrap li:hover img {
  opacity: 1;
}

/* --------------------------------------
   14. Contact Section
-----------------------------------------*/

.contact-section {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #101010;
}

.contact-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/patrn.svg) no-repeat fixed;
  background-size: cover;
  opacity: .4;
}

.contact-section .heading {
  max-width: 750px;
}

.contact-section .contact-btn {
  display: inline-block;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 3px;
  outline: none;
  cursor: pointer;
  width: 12rem;
  height: auto;
  position: relative;
}

.contact-section .contact-btn .btn-circle {
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #868f90;
  border-radius: 1.625rem;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.contact-section .contact-btn:hover .btn-circle {
  width: 12rem;
}

.contact-section .contact-btn .btn-small-circle {
  position: absolute;
  top: 7px;
  left: 14px;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.contact-section .contact-btn:hover .btn-small-circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.contact-section .contact-btn .btn-small-circle svg {
  width: 19px;
  height: 19px;
  margin: auto!important;
}

.contact-section .contact-btn .btn-small-circle svg path {
  stroke: #000;
}

.contact-section .contact-btn .btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.92rem 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-21px);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.contact-section .contact-btn:hover .btn-txt {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}

/* --------------------------------------
   15. Gallery
-----------------------------------------*/

.gallery .gallery-item a {
  display: inline-block;
  width: 100%;
  height: 50vh;
}

.gallery .gallery-item a .cover-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* --------------------------------------
   16. Portfolio
-----------------------------------------*/

.portfolio-page .header .header-content .subtitle {
  background: #1c1c1c;
}

.portfolio-page .header .header-content .subtitle:after {
  background: #1c1c1c;
}

.portfolio {
  margin-top: 120px;
  margin-bottom: 120px;
  overflow: hidden;
}

.portfolio .portfolio-filter {
  margin-bottom: 20px;
}

.portfolio .portfolio-filter .filter-wrap .filter button {
  font-family: "Poppins", sans-serif;
  position: relative;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  padding: 7px 14px 7px 36px;
  margin-right: 6px;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filter .filter-wrap .filter button:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, .07);
  z-index: 2;
}

.portfolio .portfolio-filter .filter-wrap .filter button.active:before {
  background-color: #16c1b7;
}

.portfolio .portfolio-filter .filter-wrap .filter button.active:after {
  font-family: "FontAwesome";
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 1px;
  font-size: 8px;
  font-weight: 900;
  z-index: 2;
}

.portfolio .grid__item {
  height: 450px;
  border-radius: 2px;
  margin-top: 30px;
}

.portfolio .grid__item > a {
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio .grid__item > a:before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .5;
  z-index: 0;
  transition: background-color 0.6s cubic-bezier(0.08, 0.03, 0.22, 0.87);
}

.work-style2 .portfolio .grid__item:hover > a:before {
  opacity: .8;
}

.portfolio .grid__item a img {
  width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 2px;
}

.portfolio .item-title {
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  font-size: 22px;
  padding: 5px 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #fff;
  border-radius: 5px 5px 5px 0;
  position: fixed;
  z-index: 2;
  opacity: 0;
  text-transform: capitalize;
  visibility: hidden;
  background-color: #16c1b7;
}

.portfolio .item-title .item-category {
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 100%;
  border-radius: 0 5px 5px 5px;
  left: 0;
  margin-top: -10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  padding: 5px 15px;
  background-color: #16c1b7;
}

.portfolio .item-title.visible {
  opacity: 1;
  visibility: visible;
}

.portfolio .grid__item .item-info {
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: 100%;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87);
    -o-transition: all 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87);
    transition: all 0.5s cubic-bezier(0.08, 0.03, 0.22, 0.87);
}

.portfolio .grid__item:hover .item-info {
  -webkit-transform: translate(0, -50px);
  -ms-transform: translate(0, -50px);
  transform: translate(0, -50px);
  opacity: 1;
}

.portfolio .grid__item .item-info a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.portfolio .grid__item .item-info h5 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.portfolio .grid__item .item-info h4 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: capitalize;
  color: #fff;
}

.project-header {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.project-header .project-content {
   position: absolute;
   overflow: hidden;
   z-index: 1;
}

.project-header .project-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: .6;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.project-header .project-content .cover-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  vertical-align: middle;
}

.project-header .project-info {
  position: relative;
  z-index: 2;
  padding-top: 33vh;
  height: 100%;
}

.project-header .project-info .project-cat {
  position: relative;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.8;
  padding-left: 60px;
  margin-bottom: 30px;
}

.project-header .project-info .project-cat:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  width: 40px;
  height: 2px;
  background: rgba(163, 163, 163, 0.24);
}

.project-header .project-info .project-title {
  line-height: 1;
  font-size: 75px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
}

.project-header .project-next span {
  position: relative;
  z-index: 2;
}

.project-header .project-next span {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.project-header .project-next span:before {
  content: "";
  position: absolute;
  left: -53px;
  top: 50%;
  margin-top: -1px;
  width: 40px;
  height: 2px;
  background: rgba(163, 163, 163, 0.24);
}

.project-intro {
  margin-top: 120px;
  margin-bottom: 120px;
}

.project-intro h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.project-intro .project-intro-left p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-intro .project-intro-left p:last-of-type {
  margin-bottom: 0;
}

.project-intro .project-intro-right .project-details li {
  color: #bbb;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.project-intro .project-intro-right .project-details li:last-of-type {
  margin-bottom: 0;
}

.project-intro .project-intro-right .project-details li strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.project-full-image {
  position: relative;
  margin-top: 120px;
  margin-bottom: 120px;
  height: 100vh;
}

.project-full-image .cover-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  vertical-align: middle;
}

.project-gallery {
  margin-top: 120px;
  margin-bottom: 120px;
}

/* --------------------------------------
   17. Blog
-----------------------------------------*/

.blog {
  margin-top: 120px;
  margin-bottom: 120px;
}

.blog .blog-item {
  border: 2px solid rgba(255, 255, 255, .07);
  margin-bottom: 30px;
}

.personal-page .blog .blog-item {
  margin-bottom: 0;
}

.blog .blog-item .blog-img .cover-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.blog .blog-item .blog-content {
  padding: 30px 20px;
}

.blog .blog-item .blog-content .cat {
  margin-bottom: 10px;
}

.blog .blog-item .blog-content .cat span {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #bbb;
  letter-spacing: 2px;
  line-height: 1.4;
}

.blog .blog-item .blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 400px;
}

.blog .main-btn {
  display: inline-block;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 3px;
  outline: none;
  cursor: pointer;
  width: 12rem;
  height: auto;
  position: relative;
}

.blog .main-btn  .btn-circle {
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #868f90;
  border-radius: 1.625rem;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.blog .main-btn:hover .btn-circle {
  width: 12rem;
}

.blog .main-btn .btn-small-circle {
  position: absolute;
  top: 7px;
  left: 14px;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.blog .main-btn:hover .btn-small-circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.blog .main-btn .btn-small-circle svg {
  width: 19px;
  height: 19px;
  margin: auto!important;
}

.blog .main-btn .btn-small-circle svg path {
  stroke: #000;
}

.blog .main-btn .btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.92rem 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-21px);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.blog .main-btn:hover .btn-txt {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}

.blog .blog-pagination {
  margin-top: 60px;
}

.blog .blog-pagination .page-numbers {
  position: relative;
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: transparent;
  margin-right: 15px;
  border: 1px solid rgba(255, 255, 255, .07);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog .blog-pagination .page-numbers.current,
.blog .blog-pagination .page-numbers:hover {
  color: #fff;
  background: #16c1b7;
}

.blog .blog-pagination .page-numbers.next {
  font-size: 15px;
}

.post-header {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-top: 160px;
  padding-bottom: 160px;
}

.post-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/patrn.svg) no-repeat fixed;
  background-size: cover;
  opacity: .4;
  z-index: -1;
}

.post-header .cat span {
  display: inline-block;
  color: #bbb;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.post-header .title {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 760px;
}

.post-header .meta span a {
  position: relative;
  color: #bbb;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}

.post-header .meta .author a:after {
  content: "-";
  padding: 0 10px;
}

.single-post .post-img {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
}

.single-post .post-img .post-img-content {
  height: 80vh;
}

.single-post .post-img .post-img-content .cover-bg {
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-post .post-content {
  margin-top: 120px;
}

.single-post .post-content > * {
  margin-bottom: 30px;
}

.single-post .post-content p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.single-post .post-content .blockquote {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  text-align: center;
}

.single-post .post-content .blockquote p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0;
  letter-spacing: -0.5px;
  line-height: 2;
  margin-top: 10px;
  font-family: serif;
}

.single-post .post-content .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 50px;
}

.single-post .post-content .tags a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-right: 25px;
}

.single-post .post-content .tags a:before {
  content: "#";
  margin-right: 5px;
  font-size: 14px;
}

.single-post .post-content .post-pagination {
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-top: 80px;
}

.single-post .post-content .post-pagination .pagination-item.prev {
  width: 50%;
  padding-right: 5%;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.single-post .post-content .post-pagination .pagination-item.next {
  width: 50%;
  padding-left: 5%;
  text-align: right;
}

.single-post .post-content .post-pagination .pagination-item a {
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

.single-post .post-content .post-pagination .pagination-item.prev a i {
  margin-right: 10px;
}

.single-post .post-content .post-pagination .pagination-item.next a i {
  margin-left: 10px;
}

.single-post .post-content .post-comments {
  margin-top: 120px;
  margin-bottom: 120px;
}

.single-post .post-content .post-comments .comments-title {
  margin-bottom: 70px;
}

.single-post .post-content .post-comments .comments-title h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
}

.single-post .post-content .post-comments .comments-title h4:before {
  content: '';
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 4vw;
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin-right: 15px;
}

.single-post .post-content .post-comments .comment-list .comment {
  margin-top: 20px;
}

.single-post .post-content .post-comments .comment-list > .comment:first-of-type {
  margin-top: 0;
}

.single-post .post-content .post-comments .comment-list .comment .children {
  margin-left: 93px;
}

.single-post .post-content .post-comments .comment-list .comment .comment-body {
  position: relative;
  padding-top: 30px;
}

.single-post .post-comments .comment-list > .comment:first-of-type > .comment-body {
  padding-top: 0;
}

.single-post .post-comments .comment .comment-body .comment-author {
  position: relative;
  top: 10px;
  display: block;
  width: 67px;
  height: 67px;
  float: left;
}

.single-post .post-comments .comment .comment-body .comment-author img {
  display: block;
  border-radius: 50%;
}

.single-post .post-comments .comment .comment-body .comment-details {
  padding-left: 93px;
}

.single-post .post-comments .comment .comment-body .comment-details .comment-name h6 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  display: inline-block;
  color: #fff;
}

.single-post .post-comments .comment .comment-body .comment-details .comment-date {
  color: #bbb;
  font-size: 13px;
  font-weight: 400;
  margin-top: 5px;
}

.single-post .post-comments .comment .comment-body .comment-details .comment-text p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 7px;
  margin-bottom: 0;
}

.single-post .post-comments .comment .comment-body .comment-details .comment-reply-link {
  position: absolute;
  right: 0;
  top: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.single-post .post-comments .comment .comment-body .comment-details .comment-reply-link i {
  margin-right: 3px;
}

.single-post .post-comments .comments-form {
  margin-top: 120px;
}

.single-post .post-comments .comments-form .form-group {
  margin-bottom: 30px;
}

.single-post .post-comments .comments-form .form-control {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .07);
  padding: 15px;
  font-size: 16px;
  outline: none;
}

.single-post .post-comments .comments-form .form-control::placeholder {
  color: #fff;
}

.single-post .post-comments .comments-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.single-post .post-comments .comments-form .main-btn {
  display: inline-block;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 3px;
  outline: none;
  cursor: pointer;
  width: 12rem;
  height: auto;
  position: relative;
}

.single-post .post-comments .comments-form .main-btn:focus {
  background: transparent;
  border: none;
  outline: none;
}

.single-post .post-comments .comments-form .main-btn .btn-circle {
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #868f90;
  border-radius: 1.625rem;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.single-post .post-comments .comments-form .main-btn:hover .btn-circle {
  width: 12rem;
}

.single-post .post-comments .comments-form .main-btn .btn-small-circle {
  position: absolute;
  top: 7px;
  left: 14px;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.single-post .post-comments .comments-form .main-btn:hover .btn-small-circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.single-post .post-comments .comments-form .main-btn .btn-small-circle svg {
  width: 19px;
  height: 19px;
  margin: auto!important;
}

.single-post .post-comments .comments-form .main-btn .btn-small-circle svg path {
  stroke: #000;
}

.single-post .post-comments .comments-form .main-btn .btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.92rem 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-5px);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.single-post .post-comments .comments-form .main-btn:hover .btn-txt {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}

/* --------------------------------------
   18. Contact
-----------------------------------------*/

iframe {
  width: 100%;
  height: 80vh;
  filter: brightness(73%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.contact {
  margin-top: 120px;
  margin-bottom: 120px;
}

.contact .contact-form {
  position: relative;
}

.contact .contact-form .form-group {
  margin-bottom: 30px;
}

.contact .contact-form .form-group .form-control {
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 15px;
  font-size: 16px;
  outline: none;
}

.contact .contact-form .form-group .form-control::placeholder {
  color: #fff;
}

.contact .contact-form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}

.contact .contact-form .main-btn {
  display: inline-block;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 3px;
  outline: none;
  cursor: pointer;
  width: 12rem;
  height: auto;
  position: relative;
}

.contact .contact-form .main-btn:focus {
  background: transparent;
  border: none;
  outline: none;
}

.contact .contact-form .main-btn .btn-circle {
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #868f90;
  border-radius: 1.625rem;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.contact .contact-form .main-btn:hover .btn-circle {
  width: 12rem;
}

.contact .contact-form .main-btn .btn-small-circle {
  position: absolute;
  top: 7px;
  left: 14px;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.contact .contact-form .main-btn:hover .btn-small-circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.contact .contact-form .main-btn .btn-small-circle svg {
  width: 19px;
  height: 19px;
  margin: auto!important;
}

.contact .contact-form .main-btn .btn-small-circle svg path {
  stroke: #000;
}

.contact .contact-form .main-btn .btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.92rem 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-5px);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.contact .contact-form .main-btn:hover .btn-txt {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}

.contact .contact-form .form-message {
  position: absolute;
  left: 0;
  bottom: -55px;
  width: 100%;
  color: #fff;
  border-radius: 5px;
  font-size: 15px;
  padding: 12px;
  text-transform: uppercase;
}
.contact .contact-form .form-message.success {
  background-color: #37983b;
}
.contact .contact-form .form-message.error {
  background-color: #f54033;
}

.contact .contact-boxes {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.07);
}

.contact .contact-boxes .contact-box:not(:first-of-type) {
  margin-top: 30px;
}

.contact .contact-boxes .contact-box h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.contact .contact-boxes .contact-box p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------
   19. Personal
-----------------------------------------*/

.personal {
  background-color: #101010;
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.personal .personal-intro h5 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 20px;
}

.personal .personal-intro h1 {
  display: inline-block;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #16c1b7;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.personal .personal-intro p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #bbb;
  margin-bottom: 0;
}

.personal .personal-intro .main-btn {
  display: inline-block;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 3px;
  outline: none;
  cursor: pointer;
  width: 12rem;
  height: auto;
  position: relative;
  margin-top: 30px;
}

.personal .personal-intro .main-btn .btn-circle {
  position: relative;
  display: block;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #868f90;
  border-radius: 1.625rem;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.personal .personal-intro .main-btn:hover .btn-circle {
  width: 12rem;
}

.personal .personal-intro .main-btn .btn-small-circle {
  position: absolute;
  top: 7px;
  left: 14px;
  -webkit-transform: scale(0);
  transform: scale(0);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.personal .personal-intro .main-btn:hover .btn-small-circle {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.personal .personal-intro .main-btn .btn-small-circle svg {
  width: 19px;
  height: 19px;
  margin: auto!important;
}
.personal .personal-intro .main-btn .btn-small-circle svg path {
  stroke: #000;
}

.personal .personal-intro .main-btn .btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.92rem 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-21px);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.personal .personal-intro .main-btn:hover .btn-txt {
  -webkit-transform: translateX(22px);
  transform: translateX(22px);
}

.personal .personal-img {
  position: relative;
}

.personal .personal-img img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  z-index: 2;
}

.personal .personal-img:before,
.personal .personal-img:after {
  content: '';
  position: absolute;
  border-radius: 15px;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.personal .personal-img:before {
  background: #f2f5f5;
  top: -13px;
  left: -13px;
  right: -13px;
  bottom: -13px;
  opacity: .08;
}

.personal .personal-img:after {
  background: #16c1b7;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}

/* --------------------------------------
   20. Skills
-----------------------------------------*/

.bar .item-progress::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: url("../images/dots.png") repeat;
  top: 0;
  left: 0;
  opacity: .3;
}

.bar .item-progress::after {
  content: "";
  position: absolute;
  top: -33px;
  left: 50%;
  width: 1px;
  height: 32px;
  background-color: #222;
}

.bar .item-progress .progress-value {
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: -60px;
  left: 50%;
  color: #16c1b7;
  font-size: 16px;
  font-weight: 400;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* --------------------------------------
   21. Footer
-----------------------------------------*/

.footer {
  background: #101010;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer .footer-content {
  padding: 25px 0;
}

.footer .left-area .footer-social-media ul {
  margin: 0;
}

.footer .left-area .footer-social-media ul li {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-right: 4px;
}

.footer .left-area .footer-social-media ul li a {
  display: block;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.footer .right-area p {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.4;
  font-family: "poppins", sans-serif;
  margin-bottom: 0;
  line-height: 50px;
}

.footer .right-area p .fa-heart {
  color: #16c1b7;
}

/* --------------------------------------
   22. Scroll To Top
-----------------------------------------*/

.progress-parent {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-parent.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.progress-parent::after {
  content: "\f077";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  font-weight: 200;
  text-align: center;
  color: #16c1b7;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-parent svg.progress-circle path {
  stroke: #16c1b7;
  stroke-width: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-parent svg path {
  fill: none;
}

/* --------------------------------------
   23. Media Queries
-----------------------------------------*/

@media (min-width: 768px) and (max-width: 991.98px) {  

  .site-navbar .main-nav {
    overflow-y: auto;
  }

  .personal .personal-intro {
    margin-bottom: 45px;
  }

  .testimonials .testimonial-item .testimonial-quote {
    padding: 0 50px;
  }

  .personal-page .blog .blog-item {
    margin-bottom: 30px;
  }

  .personal-page .blog .item:last-of-type .blog-item {
    margin-bottom: 0;
  }

  .contact-section .contact-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .contact-section .btn-box {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .contact-section .contact-btn {
    margin-top: 30px;
  }

  .teams .item:not(:last-of-type) .team-item-wrap {
    margin-bottom: 30px;
  }

  .clients .clients-wrap li img {
    max-width: 100px;
  }

  .about-services-page .right-area {
    margin-top: 50px;
  }

  .facts .right-area {
    margin-top: 30px;
  }

  .contact .contact-boxes {
    margin-top: 40px;
  }

  .project-intro .project-intro-left {
    margin-bottom: 40px;
  }

  .contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .single-post .post-content {
    margin-top: 80px;
  }

  .facts .right-area {
    height: auto;
  }

  .services .item:nth-of-type(n+3) .service-item {
    margin-top: 30px;
  }

}

@media (max-width: 767.98px) {

  .heading {
    font-size: 30px;
    letter-spacing: inherit;
  }

  .header .header-content .subtitle,
  .header .header-content .title,
  .heading,
  .sub-heading,
  .post-header .cat,
  .post-header .title {
    max-width: 570px;
  }

  .header .header-content .title {
    font-size: 47px;
  }

  .post-header .title {
    font-size: 47px;
  }

  .menu-open .site-navbar {
    background: #000;
  }

  .site-navbar .main-nav {
    overflow-y: auto;
    margin-top: 94px;
    height: calc(100vh - 94px);
  }

  .site-navbar .main-nav .menu-content {
    align-items: center;
    justify-content: normal !important;
  }

  .site-navbar .main-nav .menu-bg-title {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

  .site-navbar .main-nav .menu-content li {
    font-size: 38px;
  }

  .site-navbar .main-nav .menu-content li .submenu li {
    font-size: 25px;
  }

  .site-navbar .main-nav .menu-content li .submenu-caret {
    top: 17px;
  }

  .site-navbar .main-nav {
    width: 100%;
  }

  .site-navbar .menu-overlay {
    width: 0;
  }

  .slideshow__slide-caption-title {  
    font-size: 60px;
  } 

  .pagination .pagination-progress {
    width: 200px;
  }

  .slider-home-prev {
    right: 426px;
  }

  .personal .personal-intro {
    margin-bottom: 45px;
  }

  .personal .personal-intro h1 {
    font-size: 50px;
  }

  .about-me .left-area {
    margin-bottom: 30px;
  }

  .testimonials .testimonial-item {
    flex-direction: column;
    align-items: center;
  }

  .testimonials .testimonial-item .testimonial-image {
    margin-bottom: 40px;
  }

  .testimonials .testimonial-item .testimonial-quote {
    padding: 0;
    margin-bottom: 20px;
  }

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

  .personal-page .blog .blog-item {
    margin-bottom: 30px;
  }

  .personal-page .blog .item:last-of-type .blog-item {
    margin-bottom: 0;
  }

  .contact-section .contact-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .contact-section .btn-box {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .contact-section .contact-btn {
    margin-top: 30px;
  }

  .footer .footer-content > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .teams .item:not(:last-of-type) .team-item-wrap {
    margin-bottom: 30px;
  }

  .clients .clients-wrap li {
    width: 50%;
  }

  .header-image {
    height: 80vh;
  }

  .gallery .item:not(:last-of-type) .gallery-item {
    margin-bottom: 30px;
  }

  .about-services-page .right-area {
    margin-top: 50px;
  }

  .facts .right-area {
    margin-top: 30px;
  }

  .contact .contact-boxes {
    margin-top: 40px;
  }

  .project-intro .project-intro-left {
    margin-bottom: 40px;
  }

  .about-project .right-area {
    margin-top: 40px;
  }

  .project-full-image {
    height: 80vh;
  }

  .about,
  .about-me,
  .services,
  .facts,
  .teams,
  .testimonials,
  .clients,
  .about-services-page,
  .portfolio,
  .blog,
  .contact,
  .single-post .post-content .post-comments,
  .project-intro,
  .project-full-image,
  .project-gallery,
  .about-project {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .single-post .post-content {
    margin-top: 80px;
  }

  .single-post .post-comments .comments-form {
    margin-top: 80px;
  }

  .contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .mb-70 {
    margin-bottom: 50px;
  }

  .facts .right-area {
    height: auto;
  }

  .services .item:nth-of-type(n+2) .service-item {
    margin-top: 30px;
  }

}

@media (max-width: 575.98px) {  
  .header .header-content .title {
    font-size: 38px;
  }

  .post-header .title {
    font-size: 38px;
  }

  .slideshow__slide-caption-title {  
    font-size: 45px;
  } 

  .pagination .pagination-progress {
    display: none;
  }

  .pagination .pagination-current-number {
    position: relative;
    margin-right: 15px;
  }

  .pagination .pagination-current-number:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    height: 30px;
    border-right: 1px solid #e9e8e8;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  .pagination .pagination-total-number {
    margin-left: 15px;
    font-size: 20px;
  }

  .slider-home-prev {
    right: 256px;
  }

  .personal .personal-intro h1 {
    font-size: 42px;
  }

  .portfolio .grid__item .item-info h5 {
    font-size: 12px;
  }

  .portfolio .grid__item .item-info h4 {
    font-size: 20px;
  }

  .header-image {
    height: 50vh;
  }

  .single-post .post-img .post-img-content {
    height: 50vh;
  }

  .single-post .post-comments .comment .comment-body .comment-author {
    width: 32px;
    height: 32px;
  }

  .single-post .post-comments .comment .comment-body .comment-details {
    padding-left: 43px;
  }

  .single-post .post-content .post-comments .comment-list .comment .children {
    margin-left: 43px;
  }

  .project-header .project-info .project-title {
    font-size: 54px;
  }

  .project-full-image {
    height: 50vh;
  }

  .teams .team-item-wrap {
    padding: 30px;
  }

}

@media (max-width: 399.98px) {
  .site-navbar .main-nav {
    padding-left: 15px;
    padding-right: 15px;
  }

  .site-navbar .main-nav .menu-content li {
    font-size: 32px;
  }

  .site-navbar .main-nav .menu-content li .submenu-caret {
    top: 11px;
  }

  .site-navbar .main-nav .menu-content li .submenu li {
    font-size: 20px;
  }

  .site-navbar .main-nav .menu-bg-title {
    font-size: 30vw;
  }

  .header .header-content .title {
    font-size: 35px;
  }

  .post-header .title {
    font-size: 35px;
  } 

  .slideshow__slide-caption-title {  
    font-size: 40px;
  } 

  .personal .personal-intro h1 {
    font-size: 30px;
  }

  .personal .personal-intro h5 {
    font-size: 15px;
  }

  .footer .right-area p {
    line-height: 1.6;
  }

  .footer .right-area {
    text-align: center;
  }

  .clients .clients-wrap li {
    width: 100%;
  }

  .single-post .post-comments .comment .comment-body .comment-details .comment-reply-link {
    top: auto;
    right: auto;
    bottom: -30px;
  }

  .single-post .post-content .post-pagination .pagination-item a {
    font-size: 14px;
    letter-spacing: 0;
  }

  .project-header .project-info .project-title {
    font-size: 44px;
  }

  .teams .team-item-wrap {
    padding: 15px;
  }

}

@media (max-width: 349.98px) {
  .slider-home-prev {
    left: 26px;
    right: auto;
  }

  .slider-home-next {
    right: 26px;
  }

  .pagination {
    display: none;
  }

  .single-post .post-content .post-pagination .pagination-item a {
    font-size: 12px;
    letter-spacing: 0;
  }

  .project-header .project-info .project-title {
    font-size: 36px;
  }

}