/* ----------------------------------------------------------------
	00. Global Properties
    01. Preloader
	02. Sections
	03. Buttons
    04. Scrollbar
    05. Selection
    06. Header
    07. Slider
	08. Services
    09. About
    10. Process
    11. Works - Portfolio
    12. Team
	13. Testimonials
	14. Blog
    15. Contact
	16. Footer
    17. Overlay Effect Bg image
	18. Media Query
-----------------------------------------------------------------*/


/* ======= 00. Global Properties  ======= */
/* Typography */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
body {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 300;
    color: #888;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
}
p {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 300;
    color: #888;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
img {
    width: 100%;
    height: auto;
}
span,
a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
h1 {
  font-size: 55px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 35px;
}
h4 {
  font-size: 30px;
}
h5 {
  font-size: 25px;
}
h6 {
  font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #101010;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
/* margin top */
.mt-100 {
  margin-top: 100px !important;
}
.mt-120 {
  margin-top: 120px !important;
}
/* margin bottom */
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.mb-120 {
  margin-bottom: 120px !important;
}
/* margin top */
.mt-30 {
  margin-top: 30px !important;
}

/* padding-bottom */
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-120 {
  padding-bottom: 120px !important;
}


/* ======= 01. Preloader  ======= */
.loading{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #101010;
  z-index: 9999999999999;
}
.loading .middle{
  position: absolute;
  top: 50%;
  width: 100%;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}


/* ======= 02. Sections  ======= */
/* section head turquoise */
.section-padding {
    padding: 100px 0;
}
.section-head-orange {
    margin-bottom: 70px;
    text-align: center;
}
.section-head-orange h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}
.section-head-orange h4::before,
.section-head-orange h4::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    background-color: #ff9a5a;
}
.section-head-orange h4::before {
    bottom: 0px;
    right: calc(50% - 15px);
}
.section-head-orange h4::after {
    bottom: 0;
    left: calc(50% - 15px);
}
.section-head-orange.left {
    text-align: left;
}
.section-head-orange.left h4::before {
    right: auto;
    left: 0;
}
.section-head-orange.left h4::after {
    left: 0;
    width: 70px;
}
/* section head white */
.section-head-white {
    margin-bottom: 70px;
    text-align: center;
}
.section-head-white h4 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}
.section-head-white h4::before,
.section-head-white h4::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    background-color: #FFF;
}
.section-head-white h4::before {
    bottom: 0px;
    right: calc(50% - 15px);
}
.section-head-white h4::after {
    bottom: 0;
    left: calc(50% - 15px);
}
.section-head-white.left {
    text-align: left;
}
.section-head-white.left h4::before {
    right: auto;
    left: 0;
}
.section-head-white.left h4::after {
    left: 0;
    width: 70px;
}
[data-overlay-color] .section-head-orange p {
    color: #888;
}
[data-overlay-color] .section-head-white p {
    color: #888;
}
[data-overlay-color].process .icon {
    color: #fff !important;
}
.bg-gray {
    background: #f9f9f9;
}
.o-hidden {
    overflow: hidden;
}
.pos-re {
    position: relative;
}
.full-width {
    width: 100% !important;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
/* owl theme */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 15px;
    line-height: .7;
}
.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 7px;
    border-radius: 50%;
    background: #ddd;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #ff9a5a;
}

/* ======= 03. Buttons  ======= */
.nd-button {
    padding: 12px 35px;
    border-radius: 30px;
    position: relative;
    z-index: 3;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    outline: none !important;
    overflow: hidden;
    background: #ff9a5a;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background-size: 200% 100%;
    color: #fff;
    border: none;
}
.nd-button:hover {
    background-position: 100% 0;
    background: #ff9a5a;
}
.nd-button-light {
    background: #fff;
    color: #ff9a5a;
}


/* ======= 04. Scrollbar  ======= */
::-webkit-scrollbar {
    width: 0px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #101010;
}
::-webkit-scrollbar-thumb:hover {
    background: #101010;
}


/* ======= 05. Selection  ======= */
::-webkit-selection {
    color: #888;
    background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
    color: #888;
    background: rgba(0, 0, 0, 0.1);
}
::selection {
    color: #888;
    background: rgba(0, 0, 0, 0.1);
}


/* ======= 06. Header  ======= */
.header {
    min-height: 100vh;
    position: relative;
}
.header.video {
    overflow: hidden;
}
.header .caption .o-hidden {
    display: inline-block;
}
.header .caption h4 {
    font-size: 45px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}
.header .caption h1 {
    margin: 10px 0;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    word-spacing: 2px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.header .caption p {
    font-size: 20px;
    font-weight: 300;
    color: #eee;
    word-spacing: 2px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.header .caption p span {
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 5px;
    padding-right: 14px;
    position: relative;
}
.header .caption p span:last-child {
    padding: 0;
}
.header .caption p span:last-child:after {
    display: none;
}
.header .caption p span:after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff9a5a;
    position: absolute;
    top: 10px;
    right: 0;
    opacity: .5;
}
.header .caption .nd-button {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}


/* ======= 07. Slider  ======= */
.slider .owl-item,
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}
.slider .item,
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
}
.slider .item .caption,
.slider-fade .item .caption {
    z-index: 9;
}
.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 5vh;
    width: 100%;
}
/* particles */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* ======= 08. Services  ======= */
.services .extra-title {
    margin-bottom: 15px;
}
.services .extra-title span {
    color: #ff9a5a;
}
.services .feat-item .feat-inner {
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.services .feat-item.active .feat-inner {
    margin-top: -25px;
    padding-top: 75px;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 3;
}
.services .feat-item .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 50px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    z-index: 3;
    text-align: center;
    float: left;
    color: #ff9a5a;
}
.services .feat-item .feat-info {
    overflow: hidden;
}
.services .feat-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.services .feat-item h6 {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}


/* ======= 09. About ======= */
.about .tab-content .left .box-white {
    padding: 50px 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 5px 5px 5px;
}
.title {
    margin-bottom: 15px;
}
.sub-title {
    color: #ff9a5a;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.feat li {
    margin: 0;
    text-align: center;
    padding: 30px 5px;
    background-color: #f7f7f7;
}
.feat li:nth-child(odd) {
    background-color: #f3f3f3;
}
.feat li:hover {
    color: #fff;
    background-color: #ff9a5a;
}
.feat li:hover .icon {
    color: #eee;
}
.feat {
    margin: 0;
}
.feat .icon {
    font-size: 30px;
    color: #ff9a5a;
    margin-bottom: 15px;
}
.feat h6 {
    font-size: 14px;
    font-weight: 300;
}
.about .tab-content .image {
    padding: 0;
    position: relative;
    margin-left: -20px;
    margin-top: -40px;
    max-width: calc(50% + 20px);
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.image .img {
    position: relative;
}
.image .img .vid {
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 1.5;
    font-size: 70px;
    color: #ff9a5a;
    z-index: 3;
}
.image .img .vid:hover:after {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
}
.image .img .vid:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .7;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.image .img img {
    border-radius: 5px;
}
.about .tab-content .image .owl-dots {
    margin-top: -30px;
    position: relative;
    z-index: 7;
}
/* about-us */
.about-us .img {
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.about-us .item .icon {
    width: 85px;
    height: 85px;
    text-align: center;
    line-height: 95px;
    font-size: 35px;
    border-radius: 50%;
    border: 1px solid transparent;
    color: #ff9a5a;
    float: left;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.about-us .item .icon:before {
    position: relative;
    z-index: 3;
}
.about-us .item .cont {
    margin-left: 100px;
}
.about-us .item .cont h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-us .item .cont p {
    font-size: 14px;
}


/* ======= 10. Process  ======= */
.process .item {
    position: relative;
    z-index: 4;
}
.process .item img {
    position: absolute;
    width: 70%;
    right: -40%;
    top: 15px;
    opacity: .5;
}
.process .item img.tobotm {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.process .item.odd {
    margin-top: 50px;
}
.process .item .cont {
    padding: 15px;
    background-color: transparent;
    position: relative;
    z-index: 3;
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
}
.process .item .icon {
    color: #ff9a5a;
    font-size: 30px;
    width: 80px;
    height: 80px;
    line-height: 85px;
    border-radius: 50%;
    border: 1px solid #ff9a5a;
    margin-bottom: 15px;
}
.process .item h3 {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    opacity: .2;
    z-index: -1;
}
.process .item h6 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}
.process .item p {
    font-size: 14px;
    color: #BBB;
}


/* ======= 11. Works  ======= */
.works .filtering .filter {
    display: inline-block;
}
.works .filtering span {
    margin: 0 5px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
}
.works .filtering .active {
    background: #ff9a5a;
    -webkit-box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 30px -5px rgba(0, 0, 0, 0.2);
    color: #fff;
}
.works .isotope-sizer {
    width: 33.3333333%;
}
.works .isotope-sizer-clients {
    width: 16.66666666%;
}
.works .item-img {
    position: relative;
    margin-top: 30px;
}

.works .item-img:hover .item-img-overlay {
    visibility: visible;
    opacity: 1;
}
.works .item-img-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.works .item-img-overlay .icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #ff9a5a;
    text-align: center;
    font-size: 20px;
    color: #ff9a5a;
}
.works .item-img-overlay p {
    color: #ff9a5a;
    font-weight: 300;
    font-size: 13px;
}
.works .item-img-overlay h6 {
    font-weight: 700;
    font-size: 18px;
    margin-top: 5px;
}


/* ======= 12. Team  ======= */
.team .item:hover .team-img:after {
	opacity: .8;
}
.team .item:hover .social {
	bottom: 30%;
}
.team .item .team-img {
	position: relative;
	overflow: hidden;
}
.team .item .team-img:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ff9a5a;
	opacity: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.team .item .social {
	position: absolute;
	bottom: -30%;
	left: 0;
	width: 100%;
	padding: 30px 15px;
	text-align: center;
	-webkit-transition: all .5s;
	transition: all .5s;
	z-index: 3;
}
.team .item .social a {
	margin: 0px;
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: transparent;
	border-radius: 50%;
	text-align: center;
    color: #fff;
    font-size: 18px;
}
.team .item .social a:hover {
	color: #101010;
}
.team .item .info {
	text-align: center;
	padding: 20px 15px;
	margin-bottom: 20px;
	background-color: #fff;
}
.team .item .info h6 {
	font-size: 16px;
	margin-bottom: 5px;
	color: #101010;
}
.team .item .info span {
	color: #888;
	font-size: 13px;
	font-weight: 400;
}


/* ======= 13. Testimonials  ======= */
.rating {
    float: right;
    white-space: nowrap;
    line-height: 100%;
    display: inline-block;
    font-size: 0;
    position: relative;
    overflow: hidden;
    width: 85px;
    letter-spacing: 4px;
    margin-top: 15px;
}
.rating::before,
.rating span::before {
    font-family: 'FontAwesome', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
}
.rating::before {
    content: "\f005\f005\f005\f005\f005";
    color: #bbb;
}
.rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    line-height: 100%;
}
.rating span::before {
    content: "\f005\f005\f005\f005\f005";
    color: #ff9a5a;
}
.rating.rating-5 span {
    width: 100%;
}
.testimonials .item-box {
    margin-bottom: 20px;
}
.testimonials .item-inner {
    padding: 25px;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
}
.testimonials .item-box .quote span {
    color: #ff9a5a;
    font-size: 60px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    border: none;
    margin-bottom: 15px;
}
.testimonials .item-box p {
    font-size: 14px;
    color: #888;
    font-weight: 300;
    text-align: left;
}
.testimonials .item-box .info {
    text-align: left;
    margin: 30px 0 15px;
}
.testimonials .item-box .info .author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
}
.testimonials .item-box .info .cont {
    margin-left: 60px;
}
.testimonials .item-box .info h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}
.testimonials .item-box .info span {
    font-size: 14px;
    font-weight: 300;
    color: #bbb;
}

/* ======= 14. Blog  ======= */
.blog .item {
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.blog .item .post-img {
    overflow: hidden;
    position: relative;
}
.blog .item .post-img:hover .img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.blog .item .post-img .img {
    -webkit-transition: all .4s;
    transition: all .4s;
}
.blog .item .cont {
    padding: 25px 20px 25px;
}
.blog .item .cont h6 {
    font-size: 18px;
    margin-bottom: 10px;
}
.blog .item .info {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.blog .item .info a {
    margin-right: 10px;
}
.blog .item .info a:last-child {
    margin-right: 0;
}
.blog .item .info b {
    color: #101010;
    font-weight: 400;
}
.blog .item .more {
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    text-transform: uppercase;
    color: #ff9a5a;
}
.blog .item .more:hover i {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.blog .item .more i {
    font-size: 10px;
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
    opacity: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}


/* ======= 15. Contact  ======= */
.contact .contact-info h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.contact .contact-info .item {
    text-align: center;
}
.contact .contact-info .item .icon {
    font-size: 40px;
    color: #ff9a5a;
}
.contact .contact-info .item .cont {
    margin-top: 10px
}
.contact .contact-info .item .cont h6 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #888;
    font-weight: 300;
}
.contact .contact-info .item .cont p {
    color: #101010;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 14px;
}
footer .contact .contact-info .item .cont h6 {
    color: #bfbfbf;
}
footer .contact .contact-info .item .cont p {
    color: #fff;
}
.contact .form input,
.contact .form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 0;
    background-color: #f9f9f9;
    font-weight: 300;
}
.contact .form textarea {
    height: 160px;
    max-height: 160px;
    max-width: 100%;
}
.contact .nd-button {
    margin: 0;
}


/* ======= 16. Footer  ======= */
footer {
    padding: 80px 0;
    background-color: #101010;
}
footer .social a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: transparent;
    border-radius: 50%;
    color: #ff9a5a;
    font-size: 18px;
    margin: 0px;
    display: inline-block;
    overflow: hidden;
    position: relative;
}
footer .social a:hover {
    color: #fff;
}
footer .social a::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-color: #ff9a5a;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
    border-radius: 50%;
    transition: 0.4s;
}
footer .social a:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
footer .social a i {
    position: relative;
}
footer p {
    color: #888;
    font-weight: 400;
    font-size: 11px;
    font-weight: 400;
}
footer p a {
    color: #ff9a5a;
}

/* ======= 17. Overlay Effect Bg image  ======= */
[data-overlay-dark],
[data-overlay-color],
[data-overlay-light] {
  position: relative;
}
[data-overlay-dark] .container,
[data-overlay-color] .container,
[data-overlay-light] .container {
  position: relative;
  color: #fff;
  z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-color]:before,
[data-overlay-light]:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-overlay-dark]:before {
  background: #000;
}
[data-overlay-color]:before {
  background-color: #000;

}
[data-overlay-light]:before {
  background: #fff;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: #fff;
}
[data-overlay-dark] p {
  color: #BBB;
}
[data-overlay-dark="0"]:before,
[data-overlay-color="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-color="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}
[data-overlay-dark="2"]:before,
[data-overlay-color="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}
[data-overlay-dark="3"]:before,
[data-overlay-color="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}
[data-overlay-dark="4"]:before,
[data-overlay-color="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}
[data-overlay-dark="5"]:before,
[data-overlay-color="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}
[data-overlay-dark="6"]:before,
[data-overlay-color="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}
[data-overlay-dark="7"]:before,
[data-overlay-color="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}
[data-overlay-dark="8"]:before,
[data-overlay-color="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}
[data-overlay-dark="9"]:before,
[data-overlay-color="9"]:before,
[data-overlay-light="9"]:before {
  opacity: 0.9;
}
[data-overlay-dark="10"]:before,
[data-overlay-color="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}

/* ======= 18. Media Query  ======= */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media screen and (max-width: 1199px) {
    .mobile-navigation {
        display: inline-block;
    }
    #primary-navigation {
        display: none;
    }
    .works .isotope-sizer {
        width: 50%;
    }
	.works .isotope-sizer-clients {
        width: 16.6666666%;
    }
    .services .feat-item .feat-inner {
        padding: 40px 20px;
    }
    .section-padding {
        padding: 100px 0;
    }
}
@media screen and (max-width: 991px) {
    .about-us .content {
        margin-top: 50px
    }
    .mb-md50 {
        margin-bottom: 50px;
    }
    .mb-md30 {
        margin-bottom: 30px;
    }
    .mb-md0 {
        margin-bottom: 0;
    }
    .bgimg-height {
        height: 400px;
    }
    .bg-fixed {
        background-attachment: scroll !important;
    }
    .header {
        background-attachment: scroll !important;
        background-position: 50% 0 !important;
    }
    .header .caption h4 {
        font-size: 30px;
    }
    .header .caption h1 {
        font-size: 45px;
        line-height: 1.4;
    }
    .services .feat-item.active .text-center {
        padding-top: 50px;
        margin-top: 0;
    }
    .about .tab-content .image {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        margin: 50px 0 0;
    }
    .process .item img {
        display: none;
    }
    .process .item.odd {
        margin-top: 0;
    }
}
@media screen and (max-width: 767px) {
    .section-head-orange {
        margin-bottom: 50px;
    }
    .section-head-white {
        margin-bottom: 50px;
    }
    .services .feat-item.active .feat-inner {
        margin-top: 0;
    }
    .works .isotope-sizer {
        width: 100%;
    }
	.works .isotope-sizer-clients {
        width: 33.333333%;
    }
    .mb-sm50 {
        margin-bottom: 50px;
    }
    .mb-sm30 {
        margin-bottom: 30px;
    }
    .services .extra-title {
        font-size: 22px;
    }
    .works .filtering .filter {
        padding: 0;
    }
    .works .filtering span {
        margin: 0;
    }

    .section-padding {
        padding: 70px 0;
    }
    
    .nd-side-content > .logo img {
        max-width: inherit;
        max-height: 30px;
        width: auto;
    }
}
@media screen and (max-width: 480px) {
    .header .caption h4 {
        font-size: 16px;
    }
    .header .caption h1 {
        font-size: 24px;
        line-height: 1.4;
    }
    .works .filtering span {
        padding: 5px 12px;
    }
    
    .nd-side-content > .logo img {
        max-width: inherit;
        max-height: 30px;
        width: auto;
    }
    
    .header .caption p {
        font-size: 16px;
        font-weight: 300;
        color: #eee;
        word-spacing: 2px;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }
	
	.works .isotope-sizer-clients {
        width: 50%;
    }
}


/*custom*/

@media screen and (max-width: 1199.98px) {
	.nd-side-content {
		margin-top: 47px;
	}
}

.gallery-clients .item-img {
    border: solid 3px #888;
}

.gallery-clients .item-img img {
    filter: grayscale(1);
}
.about-list li{
	list-style: disc;
}