/*-- ===============================
Author name:     ahsanthemes.com ;
Date created:    October 26, 2016 ;
================================= --*/

/*-- ==============================================

[Table of contents]

------------- How to find the css of a particular section ---------------

( Example: Type 'ctrl+f' and then '3.services' to jump to the "services" section. Click 'find' if needed.)

-> reset css / reset css
-> Header / 1.header css 
-> Banner / 2.banner css
-> Services / 3.services css
-> Features / 4.features css 
-> Projects / 5.projects css
-> Feedback / 6.feedback css
-> Blog / 7.blog css
-> Contact / 8.contact css
-> Footer / 9.footer css

fonts / installed fonts 
Section header /   #section_title css
css for all paragraph / paragraph css
css for all buttons / button css
lightbox / .my_lightbox css 

================================================ --*/

/*-- reset css
--------------------------------------------------*/
@font-face {
  font-family: "Luciole";
  src: url("../font/Luciole-Bold.eot");
  src: local("Luciole Bold"), local("../font/Luciole-Bold"),
    url("../font/Luciole-Bold.eot?#iefix") format("embedded-opentype"),
    url("../font/Luciole-Bold.woff2") format("woff2"),
    url("../font/Luciole-Bold.woff") format("woff"),
    url("../font/Luciole-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Luciole";
  src: url("../font/Luciole-Italic.eot");
  src: local("Luciole Italic"), local("../font/Luciole-Italic"),
    url("../font/Luciole-Italic.eot?#iefix") format("embedded-opentype"),
    url("../font/Luciole-Italic.woff2") format("woff2"),
    url("../font/Luciole-Italic.woff") format("woff"),
    url("../font/Luciole-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Luciole";
  src: url("../font/Luciole-BoldItalic.eot");
  src: local("Luciole Bold Italic"), local("../font/Luciole-BoldItalic"),
    url("../font/Luciole-BoldItalic.eot?#iefix") format("embedded-opentype"),
    url("../font/Luciole-BoldItalic.woff2") format("woff2"),
    url("../font/Luciole-BoldItalic.woff") format("woff"),
    url("../font/Luciole-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Luciole";
  src: url("../font/Luciole-Regular.eot");
  src: local("Luciole"), local("../font/Luciole-Regular"),
    url("../font/Luciole-Regular.eot?#iefix") format("embedded-opentype"),
    url("../font/Luciole-Regular.woff2") format("woff2"),
    url("../font/Luciole-Regular.woff") format("woff"),
    url("../font/Luciole-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: Luciole;
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 1.1em;
}

ol,
ul {
  list-style-type: none;
}

img {
  border: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

input:focus,
.btn:focus,
a:focus,
button:focus {
  outline: 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

@media (min-width: 1920px) {
  .container {
    width: 1600px !important;
  }
}
@media (min-width: 3600px) {
  .container {
    width: 2400px !important;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 90%;
    max-width: 90% !important;
  }
}

h2.section_title {
  font-family: Sora;
  font-size: 24px;
  line-height: 1.2;
  color: #454545;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

h2.section_title span {
  display: block;
  font-family: Sora;
  font-size: 20px;
  color: #878787;
  text-transform: none;
  letter-spacing: 1px;
  margin: 10px 0 50px;
}

p {
  font-size: 0.9em;
}

.btn {
  font-size: 1em;
  line-height: 40px;
  color: #ffffff;
  padding: 0 15px;
  font-family: Sora;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #ffffff;
  z-index: 2;
  position: relative;
  border-radius: 5px;
}

.btn .hover {
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  display: block;
  background-color: #eed10b;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.btn:hover,
.btn:focus {
  color: #ffffff !important;
}

.btn:hover .hover {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.my_lightbox {
  width: 100%;
  height: 100%;
  background-color: rgba(45, 45, 48, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  text-align: center;
  z-index: 99999;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.my_lightbox img {
  max-height: 100%;
  display: block !important;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid #cccccc;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.my_lightbox .fa {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.7;
}

.my_lightbox .fa:hover {
  opacity: 1;
}

.show {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.loader {
  width: 100%;
  height: 100%;
}

.loader-inner {
  width: 100%;
  height: 100%;
}

/*-- 1.header css 
-----------------------------------------------*/

header .navbar {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9999;
}

header .navbar-brand {
  padding: 0;
  height: auto;
  margin-top: 5px;
}

header .logo {
  height: 80px;
}

header .navbar .navbar-nav li {
  margin-left: 40px;
  font-variant: small-caps;
  vertical-align: middle;
}

header .navbar .navbar-nav li a {
  color: #f2f2f2 !important;
  font-family: Sora;
  font-size: 1.04em;
  font-weight: 400;
  vertical-align: middle;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0px;
  padding: 0 3px;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

header .navbar .navbar-nav li a:hover,
header .navbar .navbar-nav li a:focus {
  border-bottom: 2px solid #eed10b;
  color: #eed10b !important;
  background-color: transparent !important;
}

header .navbar .navbar-nav li.active a {
  border-bottom: 2px solid #eed10b;
  color: #52c2b7;
  background-color: transparent;
}

header .navbar .navbar-collapse {
  text-align: center;
  padding-bottom: 0.8em;
}

/*-- 2.banner css 
-----------------------------------------------*/

#banner {
  display: table;
  width: 100%;
  height: calc(100vh - 90px);
  overflow: hidden;
  z-index: -2;
}
#banner .myVideo {
  width: 100vw;
  height: calc(100vh);
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  -webkit-animation: zoomout 120s 1;
}

#banner .container_header {
  padding-left: 5em;
}

#banner .container_character {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-animation: zoomin 60s 1 forwards;
  max-height: calc(100vh - 130px);
  z-index: 8;
}

#banner_character {
  opacity: 1;
  transition: opacity 1s;
  -webkit-animation: zoomin 60s 1 start;
}
#banner_character.fade {
  transform: scale(1.3);
  opacity: 0;
  animation-name: none;
  -webkit-animation-name: none;
}

#banner .banner_wave {
  position: absolute;
  bottom: 0;
  height: 400px;
  width: 100%;
  z-index: 10;
  opacity: 0.33;
  background: url(../img/banner_wave_city.png) center center repeat-x;
}

@-webkit-keyframes zoomin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

@-webkit-keyframes zoomout {
  0% {
    background-size: 120% auto;
  }
  100% {
    background-size: 100% auto;
  }
}

#banner .content {
  width: 100%;
  height: 100%;
  display: table-cell;
  padding-top: 2em;
  background-color: rgba(56, 56, 62, 0.25);
  position: relative;
}

#banner .content h1 {
  font-family: Sora;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
}

#banner .content h4 {
  font-family: Sora;
  font-size: 1.3em;
  color: #eed10b;
}

#banner .content p {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  color: white;
  z-index: 2;
}

/*-- 3.services css 
-----------------------------------------------*/

#play {
  padding: 95px 0 25px;
  text-align: center;
}

#play h2 span {
  margin-bottom: 20px;
}

#play img {
  margin-bottom: 30px;
}

#play h3 {
  font-family: Sora;
  font-size: 14px;
  line-height: 1;
  color: #454545;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 30px 0 15px;
}

#play h3::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#play .btn {
  color: #000000;
  border: 1px solid black;
  bottom: 0;
  position: ;
}

#play .play-body {
  min-height: 275px;
}

/*-- 4.features css 
-----------------------------------------------*/

#features {
  padding: 95px 0;
  background-color: #2d2d30;
}

#features .row {
  margin: 0 -5px;
}

#features div[class^="col-"] {
  padding: 0 5px;
}

#features h2 {
  color: #dadada;
  margin-bottom: 20px;
}

#features h2 span {
  color: #a4a4a4;
  line-height: 28px;
  margin: 15px 0 25px;
}

#features p {
  color: #a4a4a4;
  margin-bottom: 20px;
}

#features .btn {
  color: #a4a4a4 !important;
  border-color: #a4a4a4 !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  margin: 20px 0 50px;
}

#features .btn .hover {
  background-color: #52c2b7;
}

#features .btn:hover {
  color: #ffffff !important;
}

#features .img_container {
  margin-bottom: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

#features .img_container img {
  width: 100%;
  -webkit-transition: transform 0.7s ease;
  -moz-transition: transform 0.7s ease;
  -ms-transition: transform 0.7s ease;
  transition: transform 0.7s ease;
}

#features .img_container:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#features .features_title {
  background: rgba(0, 0, 0, 0.44);
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  font-size: 1em;
  top: 50%;
  position: absolute;
  width: 100%;
}

#features .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(45, 45, 48, 0.95);
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  border: 1px solid #555555;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#features .img_container:hover .overlay {
  opacity: 1;
}

#features .overlay .fa {
  font-size: 24px;
  color: #555555;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: color 0.7s ease;
  -moz-transition: color 0.7s ease;
  -ms-transition: color 0.7s ease;
  transition: color 0.7s ease;
}

#features .overlay .fa:hover {
  color: #cccccc;
}

/*-- 5.projects css 
-----------------------------------------------*/
#projects {
  text-align: center;
  background-color: #f1f1f1;
  padding: 100px 0 65px;
}

#projects .section_title {
  margin-bottom: 10px;
}

#projects h2.section_title span {
  margin-bottom: 0;
}

#projects .kc-wrap {
  margin-bottom: 30px;
}

#projects .kc-item img {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  cursor: pointer;
}

#projects p {
  max-width: 760px;
  margin: 0 auto 35px;
}

#projects li {
  padding: 0;
  margin: 0 5px 20px;
}

#projects .btn {
  background-color: #82c6bf;
  border: none;
}

#projects ul li:nth-child(2) .btn {
  background-color: #47474d;
}

#projects ul li:nth-child(2) .hover {
  background-color: #82c6bf;
}

#projects .btn .hover {
  background-color: #47474d;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

#projects .btn:hover .hover {
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

/*-- 6.feedback css 
-----------------------------------------------*/

#feedback {
  padding: 100px 0 50px;
  background-color: #f1f1f1;
}

#feedback .row {
  position: relative;
  padding-top: 20px;
}

#feedback .pivot {
  width: 100px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  padding: 20px 0;
}

#feedback .pivot img {
  border-radius: 50%;
}

#feedback .pivot::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #e3e3e3;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -50;
}

#feedback .row:nth-of-type(3) .pivot::after {
  height: 130px;
}

#feedback .person,
#feedback .comment {
  margin-right: 50px;
  margin-bottom: 40px !important;
}

#feedback .comment {
  margin: 5px 0 40px 50px;
  background-color: #ffffff;
  padding: 23px 25px;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
}

#feedback .comment::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 10px solid #ffffff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  position: absolute;
  left: -10px;
  top: 30px;
}

#feedback .row:nth-of-type(2) .comment::after {
  position: absolute;
  top: 30;
  left: auto;
  right: -10px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

#feedback .row:nth-of-type(2) .person {
  margin-left: 50px;
}

#feedback .row:nth-of-type(2) .person h3 {
  text-align: left;
}

#feedback .row:nth-of-type(2) .comment {
  margin: 5px 50px 40px 0;
}

#feedback h2.section_title span {
  margin-bottom: 40px;
}

#feedback .comment p {
  font-family: Sora;
  font-size: 20px;
  line-height: 30px;
  color: #a4a3a3;
  margin: 0;
}

#feedback .person h3,
#blog h3 {
  font-family: Sora;
  font-size: 14px;
  line-height: 1.5;
  color: #454545;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 25px;
}

#feedback .person h3 span {
  display: block;
  font-family: Sora;
  font-size: 15px;
  color: #a4a3a3;
  text-transform: capitalize;
  margin-top: 10px;
  letter-spacing: 1px;
}

/*-- 7.blog css 
-----------------------------------------------*/

#blog {
  padding: 105px 0 60px;
  background-color: #f7f7f7;
}

#blog .row {
  margin: 0 -7.5px;
}

#blog .col-sm-3 {
  padding: 0 7.5px;
}

#blog .blog_content {
  background-color: #ffffff;
  display: block;
  border-bottom: 1px solid #e1e1e1;
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -ms-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  margin-bottom: 30px;
}

#blog .img_container {
  overflow: hidden;
}

#blog img {
  width: 100%;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

#blog .section_title span {
  margin: 15px 0 25px;
  font-size: 19px;
}

#blog .txt_content p {
  margin-bottom: 35px;
}

#blog .txt_content .btn {
  background-color: #52c2b7;
  border: none !important;
  margin-bottom: 40px;
}

#blog .txt_content .btn .hover {
  background-color: #47474d;
  border: none !important;
}

#blog .blog_content h3 {
  font-size: 13px;
  margin: 25px 25px 15px;
  text-align: left;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

#blog .blog_content p {
  margin: 0 25px 25px;
}

#blog .blog_content:hover {
  text-decoration: none;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

#blog .blog_content:hover h3 {
  color: #52c2b7;
}

#blog .blog_content:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/*-- 8.contact css 
-----------------------------------------------*/

#contact {
  padding: 105px 0 50px;
  background-color: #f1f1f1;
}

#contact form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#contact input,
#contact textarea {
  font-family: Sora;
  height: auto;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #cccccc;
  font-size: 16px;
  line-height: 20px;
  color: #555555;
  letter-spacing: 1px;
  padding: 15px;
  border-radius: 0;
  box-shadow: none;
  resize: none;
}

#contact input::-webkit-input-placeholder,
#contact textarea::-webkit-textarea-placeholder {
  color: #555555;
}

#contact input::-moz-placeholder,
#contact textarea::-moz-placeholder {
  color: #555555;
}

#contact input:-moz-placeholder,
#contact textarea:-moz-placeholder {
  color: #555555;
}

#contact input:-ms-input-placeholder,
#contact textarea:-ms-textarea-placeholder {
  color: #555555;
}

#contact .btn {
  background-color: #47474d;
  border: none;
}

/*-- 9.footer css 
-----------------------------------------------*/

/*-- footer_top css --*/

.footer_top {
  background-color: #2d2d30;
  padding: 80px 0 50px;
}

.footer_top .col-sm-3 {
  margin-bottom: 20px;
}

.footer_top ul {
  padding: 0;
}

.footer_top h3 {
  font-family: Sora;
  font-size: 16px;
  line-height: 1.5;
  color: #82c6bf;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer_top p {
  padding-right: 20px;
}

.footer_top li a {
  font-size: 14px;
  line-height: 30px;
  color: #a4a4a4;
  text-transform: capitalize;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  transition: color 0.3s;
}

.footer_top li a:hover {
  color: #82c6bf;
  text-decoration: none;
}

.footer_top li a .fa,
.fab {
  width: 20px;
  height: 21px;
  font-size: 12px;
  line-height: 21px;
  color: #ffffff;
  background-color: #82c6bf;
  text-align: center;
  margin-right: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

/*-- footer_bottom css --*/

.footer_bottom {
  background-color: #212122;
  text-align: center;
}

.footer_bottom span {
  font-size: 14px;
  line-height: 80px;
  color: #666666;
  text-transform: capitalize;
}

/*-- =============================================== 
                     End of css 
================================================ --*/
