
html,
body {
    font-family: arial;
    font-size:14px;
}
*{
 margin: 0;
 padding: 0;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #ffa100 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 12px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #ffa100;
    border-radius: 10px;
    border: 1px solid #ffffff;
  }

a {
    transition: all 0.35s ease 0s;
    -webkit-transition: all 0.35s ease 0s;
     -moz-transition: all 0.35s ease 0s;
}
.section{
	transition: transform 1s, opacity 1s;
}
.section-hidden{
opacity: 0;
transform: translateY(8rem);
}
.title {
    text-align: center;
	padding-bottom: 70px;
	position: relative;
}
.header {
   background: rgba(0, 0, 0, 0) url("../img/header.jpg") repeat fixed center 0 / cover  ;
    color: #fff;
    height: 100%;
    overflow: hidden;
    transition: all 0.35s ease 0s;
}
.header2 {
   background: rgba(0, 0, 0, 0) url("../img/header2.jpg") repeat fixed center bottom / cover  ;
    color: #fff;
    height: 100%;
    overflow: hidden;
    transition: all 0.35s ease 0s;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    z-index: 1020;
}
.logo{
    float: left;
    text-align: center;
    width: 100%;
}

.size
{
font-size:45px;
color:#fff;
}
.navbar-nav {
    float: left;
    font-size: 16px;
    margin: 0;   
}
.img-left {
    left: -390px;
    position:relative;
}
.navbar-nav > li > a {
    padding-bottom: 15px;
    padding-top: 15px;
}
.navbar-default {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    background-color: #ffa100;
    border-bottom: 10px solid #e49102;
    color: #fff;
}
.affix
{
 background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0 !important;
transition: all 0.35s ease 0s;
}
.navbar-default .navbar-nav > li > a {
    color: #fff;
    font-size: 20px;
    padding: 50px 26px 35px;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
     background-color: #ffa100;
    border-bottom: 10px solid #e49102;
    color: #fff;
}
.header-text {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    display: block;
    float: none;
    font-size: 18px;
    margin: 150px auto;
    padding: 42px !important;
    text-align: center;
    width: 700px;
}
.header-text h2 {
    font-size: 45px;
	margin-bottom:30px;
}
.header-text h3 {
    font-size: 30px;
	margin-bottom:30px;
}
.header-text p {
	margin-bottom:30px;
}
.header-text h2 span {
    color: orange;
}
.header-btn {
    border: 2px solid #fff;
    color: #fff;
    display: block;
    font-size: 22px;
    line-height: 42px;
    margin: 50px auto auto;
    text-align: center;
    width: 235px;
	transition: all 0.35s ease 0s;
}
.header-btn:hover {
    border: 2px solid #ff6000;
    color: #ff6000;
	text-decoration:none;
	transition: all 0.35s ease 0s;
}
.btn-ornge {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 2px solid;
    border-radius: 0;
    width: 250px;
	font-size:18px;
	transition: all 0.35s ease 0s;
}
.btn-ornge:hover {   
    border: 2px solid #ffae00;    
	color:#ffae00;
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	transition: all 0.35s ease 0s;
}

#about {
    overflow: hidden;
}
#about h2 {
    padding: 50px 0 25px;
    position: relative;
    text-align: center;
    width: 100%;
}
#about h2::before {
    background: #000 none repeat scroll 0 0;
    bottom: 9px;
    content: "";
    height: 2px;
    position: absolute;
    width: 100%;
	left:0;
}
#about h2::after {
    background: #ffa100 none repeat scroll 0 0;
    bottom: 9px;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    width: 50%;
    z-index: 999;
}
#about p {
    font-size: 16px;
    padding: 10px 0;
    text-align: left;
}

/*----------- NAVBAR ------------*/

		header{
	background-size: cover;
	position: relative;
 	overflow: hidden;
}


.menu-toggle{
	
	color: #5c5c5c;
	font-size: 3rem;
	cursor: pointer;
	z-index: 1000;
	display: none;
	padding: 15px;
	text-align: end;
}

nav{
	padding-top: 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	font-size: 1.6rem;
	transition: all 0.75s ease 0s;
}
.navRb{
	padding-top: 3rem;
}

.brand{
	width: 50%;
	transform: translateX(-100rem);
	animation: slideIn .5s forwards;
}

.brand span{
	color: crimson;
}

nav ul{
	display: flex;
}

nav ul li{
	list-style: none;
	transform: translateX(100rem);
	animation: slideIn .5s forwards;
}

nav ul li:nth-child(1){
	animation-delay: 0s;
}

nav ul li:nth-child(2){
	animation-delay: .5s;
}

nav ul li:nth-child(3){
	animation-delay: 1s;
}

nav ul li:nth-child(4){
	animation-delay: 1.5s;
}
nav ul li:nth-child(5){
	animation-delay: 1.5s;
}

nav ul li a{
	padding: 1rem;
	letter-spacing: 2px;
	white-space: pre;
	color: #33393e;
}
nav ul li a:hover{
	text-decoration: none;
}
nav ul li a::before,
nav ul li a::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #ffa100;
	left: 0;
	transform: scaleX(0);
	transition: all .5s;
}

nav ul li a::before{
	top: 0; 	 
	transform-origin: left;
}

nav ul li a::after{
	bottom: 0;
	transform-origin: right;
}

.overlay{
	transition: opacity 650ms;
	transform: scale(0);
	opacity: 0;
    display: none;
}
.wid{
	width: 50%;
}
nav ul li a:hover::before,
nav ul li a:hover::after{
	transform: scaleX(1);
}

@keyframes slideIn {
	from{

	}
	to{
		transform: translateX(0);
	}
}

@media screen and (max-width: 992px){
.wid{
	width: 100%;
}
	.menu-toggle{
		display: block;
	}
	.aside{
		display: none;
	}
	nav{
		padding-top: 0;
		display: none;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
/*		height: 80vh;*/
		text-align: center;
	}

	nav ul{
		flex-direction: column;
		margin-bottom: 4rem;
	}

	nav ul li{
		margin-top: 1rem;
	}

	nav ul li a{
		margin: 0;
	}

	.brand{
		width: 80%;
	}
  
  .overlay.menu-open,
  nav.menu-open{
	  display: flex;
	  transform: scale(1);
	  opacity: 1;
  }
  
}
.one-edge-shadow {
	-webkit-box-shadow: 0 8px 6px -6px black;
	-moz-box-shadow: 0 8px 6px -6px black;
	box-shadow: 0 8px 6px -6px black;
	margin-bottom: 12px;
	background: rgb(137,84,184);
	background: linear-gradient(180deg, rgba(137,84,184,1) 0%, rgba(206,204,210,1) 0%, rgba(209,209,209,1) 100%, rgba(85,0,255,1) 100%, rgba(255,255,255,1) 100%, rgba(233,62,62,1) 100%);
}

/*----------- team ------------*/

#team {
   background: url("../img/team-bg.jpg") no-repeat scroll center bottom / cover ;
    color: #fff;
    overflow: hidden;
	padding:100px 0 220px;
    transition: all 0.35s ease 0s;
}
.t-box {
    background: #fff none repeat scroll 0 0;
    color: #000;
    float: left;
    padding: 0 0 22px;
    text-align: center;
    width: 100%;
}
.timg > img {
    width: 100%;
}
.t-box .social-links {
padding:0px;
margin:20px 0 0 0px;  
}
.t-box .social-links > li {
    display: inline;
    font-size: 25px;
    padding: 8px;
}
.t-box .social-links a {
    color: #ffa100;
}
.t-box .social-links a:hover {
    color: #333;
}
.timg {
    position: relative;
	  transition: all 0.35s ease 0s;
}
.timg:hover::after {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
/*----------- services ------------*/

#Services {
    overflow: hidden;
}
#Services h2 {
    padding: 50px 0 25px;
    position: relative;
    text-align: center;
    width: 100%;
}
#Services h2::before {
    background: #000 none repeat scroll 0 0;
    bottom: 9px;
    content: "";
    height: 2px;
    position: absolute;
    width: 100%;
	left:0;
}
#Services h2::after {
    background: #ffa100 none repeat scroll 0 0;
    bottom: 9px;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    width: 50%;
    z-index: 999;
}
#Services p {
    font-size: 16px;
    padding: 10px 0;
    text-align: left;
}
/*----------- for box ------------*/
.for-box
{
 background: url("../img/services-bg.jpg") no-repeat scroll center bottom / cover ;
padding-top:200px;
background-attachment:fixed;
padding-bottom:100px;
	overflow:hidden;
}
.for-box-crecl {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    color: #000;
    font-size: 51px;
    height: 100px;
    left: 35%;
    line-height: 104px;
    margin: auto;
    position: absolute;
    text-align: center;
	top: -58px;
	z-index:999;
    width: 100px;
}

.for-box .clr1
{
background:#3ec441;
color:#fff;
padding: 50px 0 50px;
text-align:center;
overflow:hidden;
position:relative;
}
.for-box .clr1::before
{
position:absolute;
content:"";
width:100%;
height:40%;
background:#08ac0d;
left:0;
top: -20px;
transform: skewY(171.5deg);
}
.clr1-a {
    background: #3ec441 none repeat scroll 0 0;
    left: 0;
    padding: 10px;
    position: absolute;
    width: 100%;
}
.clr1-a::after {
    background: #08ac0d none repeat scroll 0 0;
    content: "";
    height: 137%;
    position: absolute;
    right: 0;
    top: 15px;
    transform: skewY(-5.5deg);
    width: 100%;
    z-index: -1;
}
.clr1-a {
    background: #fff none repeat scroll 0 0;
    color: #fff;
    float: left;
    font-size: 31px;
    left: 0;
    overflow: hidden;
    padding: 10px;
    position: absolute;
    width: 101%;
    z-index: 999;
}
.for-box .clr2
{
background:#ff8500;
color:#fff;
padding: 50px 0 50px;
text-align:center;
overflow:hidden;
position:relative;

}
.for-box .clr2::before
{
position:absolute;
content:"";
width:100%;
height:40%;
background:#da7104;
left:0;
top: -20px;
transform: skewY(171.5deg);
}
.clr2-a::after {
    background: #ff8500 none repeat scroll 0 0;
    content: "";
    height: 137%;
    position: absolute;
    right: 0;
    top: 15px;
    transform: skewY(-5.5deg);
    width: 100%;
    z-index: -1;
}
.clr2-a {
    background: #fff none repeat scroll 0 0;
    color: #fff;
    float: left;
    font-size: 31px;
    left: 0;
    overflow: hidden;
    padding: 10px;
    position: absolute;
    width: 101%;
    z-index: 999;
}
.for-box .clr3
{
background:#0195ff;
color:#fff;
text-align:center;
padding: 50px 0 50px;
overflow:hidden;
position:relative;

}
.for-box .clr3::before
{
position:absolute;
content:"";
width:100%;
height:40%;
background:#0482d9;
left:0;
top: -20px;
transform: skewY(171.5deg);
}
.clr3-a::after {
    background: #0195ff none repeat scroll 0 0;
    content: "";
    height: 137%;
    position: absolute;
    right: 0;
    top: 15px;
    transform: skewY(-5.5deg);
    width: 100%;
    z-index: -1;
}
.clr3-a {
    background: #fff none repeat scroll 0 0;
    color: #fff;
    float: left;
    font-size: 31px;
    left: 0;
    overflow: hidden;
    padding: 10px;
    position: absolute;
    width: 101%;
    z-index: 999;
}
.for-box .clr4
{
background:#ff6100;
color:#fff;
padding: 50px 0 50px;
text-align:center;
overflow:hidden;
position:relative;
}
.for-box .clr4::before
{
position:absolute;
content:"";
width:100%;
height:40%;
background:#cf5105;
left:0;
top: -20px;
transform: skewY(171.5deg);
}
.clr4-a::after {
    background: #ff6100 none repeat scroll 0 0;
    content: "";
    height: 137%;
    position: absolute;
    right: 0;
    top: 15px;
    transform: skewY(-5.5deg);
    width: 100%;
    z-index: -1;
}
.clr4-a {
    background: #fff none repeat scroll 0 0;
    color: #fff;
    float: left;
    font-size: 31px;
    left: 0;
    overflow: hidden;
    padding: 10px;
    position: absolute;
    width: 101%;
    z-index: 999;
}
.wbox {
    background: #fff none repeat scroll 0 0;
    margin-bottom: 100px;
    padding: 20px 20px 60px;
    position: relative;
	overflow: hidden;
    text-align: center;
}
.wbox  p
{
padding:10px;
}

/*----------- counter ------------*/
.counter {
    background: #222 none repeat scroll 0 0;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.counter .size {
    color: #f3ba08;
    font-size: 45px;
}
.counter span {
    color: #ff8400;
    font-size: 20px;
}

/*----------- blog single ------------*/

/*----------- blog ------------*/

#blog {
   background: #ffa100;
    color: #fff;
    overflow: hidden;
	padding:100px 0 220px;
    transition: all 0.35s ease 0s;
	position:relative;
}
#blog::before {
   background: #333 none repeat scroll 0 0;
    content: "";
    height: 40%;
    left: -90px;
    position: absolute;
    top: -178px;
    transform: skewX(110deg);
    width: 100%;
}
.blog-img > img {
    width: 100%;
	border-radius: 5px;
	position:absolute;
	transition: all 0.75s ease 0s;
	cursor: pointer;
}
.blog-img > img:hover {
	transform: scale(0.9);
}
.data {
    color: #383838;
    float: left;
    font-size: 50px;
    padding-right: 20px;
	position:relative;
}
.data::before {
    border-right: 1px solid;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: skewX(-20deg);
}
.month {
    color: #383838;
    float: left;
    font-size: 18px;
    padding-left: 20px;
    padding-top: 23px;
}
.blog-img {
    border: 1px solid;
    height: 208px;
    margin-bottom: 60px;
    padding: 9px;
	border-radius: 5px;
    position: relative;
}
#blog a {
    border: 5px solid #fff;
    color: #000;
    display: inline-table;
    font-size: 18px;
    margin-top: 25px;
    padding: 10px 23px;
	text-decoration:none;
	background:#fff;
}
#blog a:hover{
    border: 5px solid #ffc259;
    color: #fff;
    display: inline-table;
    font-size: 18px;
/*    margin-top: 15px;*/
    padding: 10px 23px;
	background-color: transparent;
}
#blog .row > h3 {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}
#blog .row > p {
    color: #444444;
    font-size: 14px;
}
/*----------- contact ------------*/
#contact
{
 background: url("../img/contact-bg.JPG") no-repeat scroll center center / cover  ;
    color: #fff;
    overflow: hidden;
	padding:100px 0;
    transition: all 0.35s ease 0s;
}
#contact input[type="text"]{
    background-color: #fff;
    background-image: none;
    border: 1px solid #666;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555;
    display: block;
    font-size: 14px;
    height: 57px;
    line-height: 1.42857;
    padding: 10px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}
#contact input[type="email"]{
    background-color: #fff;
    background-image: none;
    border: 1px solid #666;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555;
    display: block;
    font-size: 14px;
    height: 57px;
    line-height: 1.42857;
    padding: 10px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}
#contact .btn-block {
    background: #ffa100 none repeat scroll 0 0;
    border-radius: 0;
    color: #000;
    display: block;
    float: right;
    font-size: 16px;
    margin-bottom: 50px;
    margin-right: 15px;
    padding: 10px 0;
    transition: all 0.3s ease 0s;
    width: 165px;
}
#contact .btn-block:hover {
	background-color: transparent;
    border: 1px solid #ffa100;
    color: white;
}
#footer {
    background: rgba(0, 0, 0, 0) url("../img/footer-bg.jpg") no-repeat scroll -554px -275px;
    color: #fff;
    padding: 60px 0 120px;
    position: relative;
    text-align: center;
    width: 100%;
	overflow:hidden;
}
#footer .social-links {
    list-style: outside none none;
    margin: 0 0 20px;
    padding: 80px 0 10px;
	text-align: center;
}
#footer .social-links li {
    display: inline-block;
    margin: 5px;
}
#footer .social-links a {
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 1);
    display: block;
    font-size: 25px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    width: 50px;
}
#footer::before {
    background: orange none repeat scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
#footer ul{
	list-style: none;
    text-align: start;
}
#footer hr{
	margin-top: 10px;
}
#footer h6{
    text-align: start;
	font-size: 1.2rem;
}
#footer ul li > a{
	color: #FFFFFF;
}
#footer ul > li{
	margin-bottom: 6px;
}
#text-15 {
    padding-left: 100px;
    text-align: left;
}

#text-15 a{
    color: #000;
    text-decoration: none;
}
.social-icons a.facebook:hover {
	background-color: #3b5998;
}
.social-icons a.twitter:hover
	{
	  background-color:#00aced
	}
	.social-icons a.linkedin:hover
	{
	  background-color:#007bb6
	}
	.social-icons a.dribbble:hover
	{
	  background-color:#ea4c89
	}

@media (min-width:768px) and (max-width:1024px)
{
.navbar-default .navbar-nav > li > a {
    font-size: 18px;
    padding: 50px 15px 35px;
}
.img-left {
    left: -50px;
    position:relative;
}
.img-left img
{
width:100%;
}
.for-box .clr1::before {
    top: -26px;
}
.for-box .clr2::before {
    top: -26px;
}
.for-box .clr3::before {
    top: -26px;
}
.for-box .clr4::before {
    top: -26px;
}
.element-item {
width:50%;
}
#about img {
    left: -24px;
    position: relative;
}
    #blog::before {
    height: 30%;
    transform: rotate(175deg);
    width: 100%;
        left: 0px;
        top: -100px;
}
}
@media (max-width:800px)
{
#about img {
    left: -40px;
    position: relative;
}
.blog-img {
    height: 130px;
}
#blog .row {
    padding: 0 10px !important;
}
}
@media (max-width:980px)
{
#about img {
   left: 0;
    position: relative;
    width: 100%;
}
.img-left {
   left: 0;
    position: relative;
    width: 100%;
}
.blog-img {
    height: 130px;
}
#blog .row {
    padding: 0 10px !important;
}
}
@media (min-width:1024px) and (max-width:1170px)
{
.col-md-6 {
    width: 100%;
}
#about img {
    left: 0;
    position: relative;
}
.img-left {
    left: 0;
    position: relative;
}
#footer .col-md-6 {
    width: 50%;
}
}
@media (max-width:640px)
{
    .for-box-crecl {
    left: 43%;
}
.header-text {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    display: block;
    float: none;
    font-size: 12px;
    margin: 150px auto;
    padding: 42px !important;
    text-align: center;
    width: 100%;
}
.header-text h2 {
    font-size: 24px;
}
.navbar-default .navbar-nav > li > a {
    font-size: 18px;
    padding: 10px 15px 10px;
	width:100%;
}

.img-left img
{
width:100%;
}
.for-box .clr1::before {
    top: -26px;
}
.for-box .clr2::before {
    top: -26px;
}
.for-box .clr3::before {
    top: -26px;
}
.for-box .clr4::before {
    top: -26px;
}
.element-item {
width:100%;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #000;
}
.navbar-nav {
    background: #000 none repeat scroll 0 0;
    float: left;
    font-size: 16px;
    margin: 0;
    width: 100%;
}
.header-text h3 {
    font-size: 18px;
    margin-bottom: 30px;
}
.blog-img {
    height: 340px;
    margin-top: 30px;
}
    #blog::before {
    height: 60%;
    top: -545px;
    transform: rotate(83deg);
    width: 87%;
}

.navbar-brand img {
    margin-top: -25px;
    width: 65% !important;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: orange;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.header1 {
    margin-top: -144px;
}
}
@media (max-width:480px)
{
    .header {  
    height: 600px;    
}
.header-text {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    display: block;
    float: none;
    font-size: 12px;
    margin: 300px auto auto;
    padding: 42px !important;
    text-align: center;
    width: 100%;
}
.header-text h2 {
    font-size: 24px;
}
.navbar-default .navbar-nav > li > a {
    font-size: 18px;
    padding: 10px 15px 10px;
	width:100%;
}

.img-left img
{
width:100%;
}
.for-box .clr1::before {
    top: -26px;
}
.for-box .clr2::before {
    top: -26px;
}
.for-box .clr3::before {
    top: -26px;
}
.for-box .clr4::before {
    top: -26px;
}
.element-item {
width:100%;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #000;
}
.navbar-nav {
    background: #000 none repeat scroll 0 0;
    float: left;
    font-size: 16px;
    margin: 0;
    width: 100%;
}
.header-text h3 {
    font-size: 18px;
    margin-bottom: 30px;
}
.blog-img {
    height: 249px;
}
.navbar-brand img {
    margin-top: -25px;
    width: 65% !important;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: orange;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.header1 {
    margin-top: -144px;
}
    .for-box-crecl {
    left: 30%;
}
    #blog::before {
    height: 60%;
    top: -600px;
    transform: rotate(83deg);
    width: 60%;
}
}
@media (max-width:320px)
{
.header-text {
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    display: block;
    float: none;
    font-size: 12px;
    margin: 300px auto auto;
    padding: 0px !important;
    text-align: center;
    width: 100%;
}
.header-text h2 {
    font-size: 24px;
}
.navbar-default .navbar-nav > li > a {
    font-size: 18px;
    padding: 10px 15px 10px;
	width:100%;
}

.img-left img
{
width:100%;
}
.for-box .clr1::before {
    top: -26px;
}
.for-box .clr2::before {
    top: -26px;
}
.for-box .clr3::before {
    top: -26px;
}
.for-box .clr4::before {
    top: -26px;
}
.element-item {
width:100%;
    height: 215px;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #000;
}
.navbar-nav {
    background: #000 none repeat scroll 0 0;
    float: left;
    font-size: 16px;
    margin: 0;
    width: 100%;
}
.header-text h3 {
    font-size: 18px;
    margin-bottom: 30px;
}
.blog-img {
    height: 157px;
    margin-top: 30px;
}
.navbar-brand img {
    margin-top: -25px;
    width: 65% !important;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: orange;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.header1 {
    margin-top: -144px;
}
    .for-box-crecl {
    left: 37%;
}
#footer::before {   
    left: 0; 
    top: 46%;
}
    #blog::before {
    height: 60%;
    top: -545px;
    transform: rotate(83deg);
    width: 87%;
}

}

/*----------- lscroll top btn ------------*/
#btnUp {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FF9800;
    padding: 20px;
    color: white;
    font-size: 1.3rem;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 10px;
    right: 15px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 99999999;
}
#btnUp.show {
    opacity: 1;
    visibility: visible;
}
#btnUp:hover {
    cursor: pointer;
    background-color: #333;
}



