/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  color: #000000;
}

a {
  color: #007bff;
}

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

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'Josefin Sans', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  right: 15px;
  bottom: 85px;
  background: #000000;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #000000;
  transition: background 0.2s ease-in-out;
}

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

@media (min-width: 1450px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 1380px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  /* background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}
#header .container {
  position: relative;
}

#header.header-bg {
  background: rgb(0 0 0 / 90%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #7a6960;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
}
#header.header-bg .logo img {
  width: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.nav-menu a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 10px 27px;
  transition: 0.3s;
  font-size: 15px;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ffffff;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #3c1300;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #eb5d1e;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #000000;
  transition: 0.4s;
}

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: absolute;
  right: 10px;
  top: 22px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle img {
  width: 40px;
}

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

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  display: none;
}

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding: 0;
}
.hero-banner {
  position: relative;
}
.hero-banner img {
  width: 100%;
  border-radius: 0 0 200px 0;
}

.inner-page .hero-banner img {
  width: 100%;
  border-radius: 0;
}
.inner-page .banner-title {
  position: absolute;
  bottom: 50px;
  text-align: center;
  width: 100%;
}
.inner-page .banner-title img {
  width: 120px;
}
.inner-page .banner-title h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 34px;
  color: #ffffff;
}
.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.08) 100%);
}

.banner-text {
  /* background-color: #0f0f0f; */
  color: #ffffff;
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  width: 360px;
  background-image: url(../img/camra-grid.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.banner-text h4 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 25px;
  color: #ffffff;
}
.banner-text h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 64px;
  color: #ffffff;
}
.rec-text p {
  margin-bottom: 0;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rec-text p span {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #DB0202;
  display: block;
  margin-right: 5px;
  animation: blink 1s step-start 0s infinite;
  -webkit-animation: blink 1s step-start 0s infinite;
}

@keyframes blink {
  50% { opacity: 0.0; }
}
@-webkit-keyframes blink {
  50% { opacity: 0.0; }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  position: relative;
}

.section-bg {
  background-color: #f8f8f8;
}

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

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 15px;
  color: #c2b7b1;
}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #4e4039;
}

.section-title p::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #eb5d1e;
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  text-align: center;
  position: relative;
}
.main-title {
  position: absolute;
  left: 0;
  top: 60px;
}
.main-title.right {
  right: 0;
  left: inherit;
}
.main-title img {
  width: 60px;
}

.main-title h2 {
  color: #fff;
  text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
  font-size: 47px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.section-title h3 {
  font-weight: 300;
  font-size: 34px;
  color: #000000;
  margin: 20px 0 0;
}

.section-title h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #000000;
}

.about i {
  font-size: 48px;
  margin-top: 15px;
  color: #f39e7a;
}

.about p {
  font-size: 15px;
  color: #000000;
  font-weight: 400;
  padding: 0 100px;
}

@media (max-width: 991px) {
  .about .about-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  position: relative;
  padding-top: 0;
}
.service-banner {
  text-align: center;
}
.service-banner img {
  max-width: 100%;
  height: auto;
}

.complete1, .complete2, .complete3{
  display:none;
}
#more1, #more2, #more3 {
  display: none;
}
.serv-icon {
  flex: 1;
}
.serv-icon img {
  width: 70px;
}
.serv-desc {
  flex: 2;
}
.serv-desc h4 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
}
.serv-desc p {
  font-size: 14px;
  font-weight: 400;
  
}
.serv-desc p.more {
  font-weight: 700;
  cursor: pointer;
}

.spot-banner {
  background-image: url(../img/spotlight.jpg);
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding: 230px 0 35px;
  background-size: 100%;
  margin-top: 50px;
}
.spot-banner h3 {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-size: 150px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  line-height: 0;
}
.spot-banner h4 {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 65px;
}
.spot-banner p {
  color: #ffffff;
  padding: 0 210px;
}
.spot-banner a {
  display: block;
  background-color: #fff;
  color: #000000;
  font-size: 15px;
  padding: 10px;
  width: 200px;
  margin: auto;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  position: relative;
  padding-top: 0;
}
p.project-list-para {
  text-align: center;
  padding: 0 180px;
  margin-bottom: 50px;
}
a.watch-btn {
  border: 1px solid #000;
  color: #000;
  padding: 10px;
  display: block;
  text-align: center;
  width: 310px;
  transition: 1s all;
  text-transform: capitalize;
}
a.watch-btn:hover {
  background-color: #000;
  color: #fff;
  transition: 1s all;
}
.project-wrapper {
  margin-bottom: 50px;
}
.last-pro-wrapper img {
  margin-bottom: 40px;
}
.last-pro-wrapper a {
  margin: auto;
}
.last-link {
  text-align: center;
  margin-top: 40px;
}
.last-link a {
  color: #000;
  font-weight: 600;
}
.prod-img {
  text-align: center;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.client-list ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
  position: relative;
}
.client-list ul li {
  text-align: center;
  cursor: pointer;
  width: 25%;
}
.client-list ul li img {
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: 1s all;
  width: 150px;
}

.client-list ul li:hover img {
  filter: inherit;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transition: 1s all;
}
.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.owl-nav span {
  font-size: 75px;
}
.owl-carousel .owl-nav button.owl-next:focus, .owl-carousel .owl-nav button.owl-prev:focus {
  outline: none;
}


/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

.contact-details {
  justify-content: space-evenly;
  text-align: center;
  margin: 30px 0;
}
.contact-details p{
  font-weight: 600;
  color: #000000;
}
.contact-details p a {
  font-weight: 400;
  color: #000000;
}
h3.form-head {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

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

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.form-control {
  border: 1px solid #000;
}
.form-control::-webkit-input-placeholder {
  color: #000000;
}

.form-control:-ms-input-placeholder {
  color: #000000;
}

.form-control::placeholder {
  color: #000000;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #000000;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #000000;
  text-align: center;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

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

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

.contact .php-email-form button[type="submit"] {
  background: #fff;
  border: 0;
  border: 1px solid #000;
  padding: 10px 75px;
  color: #000;
  transition: 0.4s;
  border-radius: 0;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #000000;
  color: #fff;
}

.contact .php-email-form button:focus {
  outline: none;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 15px 0;
}
.design-by p {
  margin: 0;
  font-size: 12px;
}
.copy-right p {
  font-size: 12px;
  margin: 0;
}
.social-links a i {
  color: #ffffff;
  font-size: 36px;
  margin-left: 15px;
}

.mobile-title {
  display: none;
}

/*--------------------------------------------------------------
# Inner pages
--------------------------------------------------------------*/
.text-details {
  margin-bottom: 30px;
}
.text-details h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.show-ep {
  position: relative;
  cursor: pointer;
}
.show-ep img {
  width: 100%;
}
.play-btn span {
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.play-btn img {
  width: initial;
}
.play-btn svg {
  fill: #fff;
  width: 25px;
}
.play-btn {
  width: 60px;
  height: 60px;
  background-color: rgb(0 0 0 / 45%);
  text-align: center;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.special-css {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}


@media (min-width: 1400px) {
  .spot-banner {
    padding: 360px 0 35px;
  }
}
@media (max-width: 1199px) {
  .main-title {
    top: 20px;
  }
  .hero-banner img {
    height: initial;
  }
  .serv-icon {
    width: 25%;
    flex: unset;
  }
  .serv-desc {
    width: 70%;
    flex: unset;
  }
  .pad-just {
    justify-content: space-between;
  }
  .spot-banner {
    padding: 140px 0 35px;
  }
}

@media (max-width: 991px) {
  .pad-just {
    margin-bottom: 20px;
  }
  .pad-just:last-child {
    margin-bottom: 0;
  }
  .serv-desc {
    width: 80%;
  }
  .spot-banner p {
    padding: 0;
  }
  .spot-banner h3 {
    font-size: 90px;
  }
  .spot-banner h4 {
    font-size: 35px;
  }
  p.project-list-para {
    padding: 0;
  }
  .client-list ul li img {
    width: fit-content;
  }
  .mobile-title {
    display: block;
  }
  .desktop-title {
    display: none;
  }
  .main-title {
    position: static;
    text-align: center;
  }
  .main-title img {
    width: 220px;
    margin: 0 auto 30px;
  }
  .about p {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .pad-just {
    flex-direction: column;;
  }
  .serv-icon {
    width: 100%;
    margin-bottom: 20px;
  }
  .serv-desc {
    width: 100%;
  }
  .section-title h3 {
    font-size: 25px;
  }
  .spot-banner {
    padding: 80px 0 35px;
    background-size: cover;
  }
  .spot-banner h3 {
    font-size: 70px;
  }
  .spot-banner h4 {
    font-size: 30px;
  }
  .fo-2 {
    order:2;
  }
  .project-wrapper img {
    margin-bottom: 30px;
  }
  a.watch-btn {
    width: 100%;
  }
  .client-list ul {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .client-list ul li {
    width: 100%;
  }
  .client-list ul li img {
    width: initial !important;
    margin: auto;
  }
  .footer .d-flex {
    flex-direction: column;
  }
  .design-by, .copy-right {
    margin-bottom: 20px;
  }
  .special-css {
    font-size: 15px;
  }
  .special-css br {
    display: none;
  }
  .client-list ul li img {
    filter: inherit;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
}

@media (max-width: 575px) {
  #header .logo img {
    width: 70px;
  }
  
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
  .contact-details {
    flex-direction: column;
  }
  .hero-banner img {
    border-radius: 0;
  }
  .banner-text {
    position: static;
    width: 100%;
  }
  .banner-text h4 {
    font-size: 20px;
  }
  .banner-text h2 {
    font-size: 40px;
  }
  .inner-page .banner-title {
    bottom: 20px;
  }
  .inner-page .banner-title h2 {
    font-size: 15px;
  }
  .inner-page .banner-title img {
    width: 70px;
  }
  .inner-page .hero-banner {
    background: #0f0f0f;
    padding: 0;
  }
  .hero-banner {
    background: #0f0f0f;
    padding: 0 0 20px;
  }
  .text-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
  }
  .text-details p {
    font-size: 14px;
  }
}