@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif !important;
	color:#868686 !important;
	font-size:17px !important;
	line-height: 28px !important;
}

input:hover,
input:focus {
    outline: none !important;
}
textarea:hover,
textarea:focus {
    outline: none !important;
}
button:hover,
button:focus {
    outline: none !important;
}
select:hover,
select:focus {
    outline: none !important;
}

a:hover,
a:focus {
    outline: none !important;
}
a{
    text-decoration: none !important;
}
a:hover{
    text-decoration: none !important;
}


/*Header start*/


/*Top header start*/

.top-header{
    width: 100%;
    height: 36px;
    padding-left: 15px;
    padding-right: 15px;
    background: #030d0c;
}
/*
.email-con{
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
*/
.emailbox{
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
/*    justify-content: flex-end;*/
}
.email-icon i{
    color: #f2d046;
    padding-right: 10px;
	font-size: 16px;
}
.email-id{
    color: #fff;
    font-size: 13px;
}
.email-id:hover{
    color: #fff;
}
.hr-line{
    height: 16px;
    border-right: 1px solid #f2d046;
    margin: 0px 18px;
}
.need-help-text{
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
}
.phonebox{
    width: 100%;
    height: 36px;
	color: #fff;
    font-size: 13px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.phone-icon i{
    color: #f2d046;
    padding-right: 5px;
	font-size: 16px;
}
.phone-no{
    color: #f2d046;
    font-size: 20px;
    font-weight: 600;
}
.phone-no:hover{
    color: #f2d046;
}
/*Top header end*/


/*Main header start*/

.main-header{
    width: 100%;
    height: auto;
    background: #fff;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
/*    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);*/
}
.toggle{
    display: none !important;
}

.navbar-brand{
    max-width: 350px;
    padding: 0 !important;
    margin-top: -36px;
}
.navbar-brand img {
    width: 100%;
    height: auto;
}
.sticky {
    background: rgba(255, 255, 255, 1);
    width: 100%;
    position: fixed;
    color: #030d0c !important;
    z-index: 11111 !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
}
.nav-link{
    margin: 0 !important;
    display: block;
    padding: 8px 12px !important;
    font-size: 16px;
    font-weight: 600;
    color: #030d0c !important;
}

.nav-item .nav-link{
    transition: 0.3s !important;
}
/*
.nav-item.active .nav-link,
.nav-item:hover .nav-link {
    color: #f2d046 !important;
    transition: 0.3s !important;
}
*/

.navbar{
    padding: 0 !important;
    height: auto;
    width: 100%;
    z-index: 11111 !important;
    align-items: flex-end !important;
}

.navbar-nav{
    padding: 0 !important;
}
.nav-item{
    margin: 0 2px;
}

.dropdown-menu{
    top: 96% !important;
    padding: 0 !important;
    background: #fff !important;
	transition: 0.5s !important;
    border-radius: 0px !important;
    border: 0 !important;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.dropdown-menu .dropdown-item{
    color: #030d0c !important;
    border-radius: 0px !important;
    line-height: 30px;
/*    padding: 5px 15px;*/
    transition: 0.3s !important;
}
.dropdown-menu .dropdown-toggle:after{
    position: absolute;
    right: 5px;
    top: 12px;
}
.dropdown-menu .dropdown-item:hover{
    color: #030d0c !important;
    border-radius: 0px !important;
    transition: 0.3s !important;
    background: #f2d046 !important;
}
.dropdown-menu .dropdown-item:focus{
    color: #030d0c !important;
    border-radius: 0px !important;
    background: #f2d046 !important;
}
.dropdown-menu .dropdown-item.active{
    color: #030d0c !important;
    border-radius: 0px !important;
    background: #f2d046 !important;
}

.dropdown-submenu i{
    margin-left: 5px;
}
.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    color: #030d0c;
    white-space: nowrap;
}

.toggle{
    position: relative;
    width: 50px;
    height: 50px;
    background: #fff;
    box-shadow: 0 0px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}
.toggle span{
    position: absolute;
    width: 30px;
    height: 4px;
    top: 25px;
    left: 10px;
    background: #1863ff;
    border-radius: 4px;
    transition: 0.5s;
}
.toggle span:nth-child(1){
    transform: translateY(-12px);
    width: 20px;
    left: 10px;
}
.toggle.active span:nth-child(1){
    transform: translateY(0px) rotate(45deg);
    width: 30px;
    transition-delay: 0.125s;
}
.toggle span:nth-child(2){
    transform: translateY(12px);
    width: 15px;
    left: 10px;
}
.toggle.active span:nth-child(2){
    transform: translateY(0px) rotate(315deg);
    width: 30px;
    transition-delay: 0.25s;
}
.toggle.active span:nth-child(3){
    transform: translateX(60px);
}




@media (min-width: 992px){

.dropdown-menu .dropdown-toggle:after{
    border-top: .3em solid transparent;
    border-right: 0;
	border-bottom: .3em solid transparent;
	border-left: .3em solid;
}
.dropdown-menu{
    margin-left:0;
    margin-right: 0;
}
.dropdown-menu li{
    border-radius: 5px !important;
	position: relative;
}
.nav-item .submenu{ 
	display: none;
	position: absolute;
	left:100%;
    top: -2px !important;
}
.nav-item .submenu-left{ 
	right:100%;
    left:auto;
}
    
.dropdown:hover>.dropdown-menu{
	display: block;
}    
.dropdown-menu > li:hover{
    background-color: #f1f1f1;
}
.dropdown-menu > li:hover > .submenu{
	display: block;
}
    
}


@media (max-width: 991.98px) {
.logo{
	width: 200px !important;
}
header {
    height: 100px !important;
}
/*.main-header {
    height: 100px !important;
}*/
.get-free-quote-button {
    top: 5px !important;
}
.btn1 {
    font-size: 12px !important;
    padding: 12px 16px !important;

}
.top-header {
    display:none !important;
}	
.toggle{
    display: block !important;
}    
       
.navbar-nav{
    position: fixed;
    top: 189px;
    left: -100%;
    background: #fff;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    z-index: 11111 !important;
}
.toggle.active ~ .navbar-nav{
    left: 0;
    z-index: 1111 !important;
}
    
.nav-item{
    margin:  0;
}    

.navbar .navbar-nav .nav-item .nav-link{
    width: 100%;
    margin-left: -100%;
    display: block;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}    

.dropdown-menu{
    text-align: center !important;
}
/*
.dropdown-menu > li:hover > .submenu{
	display: block;
}    
*/

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}    
    
    
    
}


.logo{
	width: 350px;
    position: absolute;
    top: 5px;
	left: 15px;
	z-index: 1;
}
.get-free-quote-button {
    position: absolute;
    top: 46px;
    right: 15px;
    z-index: 9;
}
.btn1{
    color: #030d0c;
    font-size: 15px;
	font-weight:500;
    padding: 14px 30px;
    background: #f2d046;
    transition: 0.3s;
    border: 0px solid #f2d046;
}

.btn1:hover{
    color: #030d0c !important;
    transition: 0.3s;
    background: #f2d0467a !important;
	border: 0px solid #030d0c;
}


/*Header end*/




.cate_title h1 {
    margin: 0px 0px 0px 0px;
    font-size: 32px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 32px;
}


/* Breadcrumb Start */
.breadcrumb {
    background-color: transparent !important;
	display: inline-flex !important;
	margin-bottom: 0px;
	padding: 0px;
}
.scp-breadcrumb {
	margin: 2px;
	font-size:13px !important;
	color:#FC5A0A;
	text-align:center !important;
 }
.breadcrumb li a {
    color: #FFF !important;
} 
.breadcrumb > .active {
    color: #FFF;
}
.breadcrumb > li + li::before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
	
}
.breadcrumb_mb {
    margin-top: 90px;
} 
/* Breadcrumb End */



/*Banner start*/

.banner-section{
    position: relative;
    width: 100%;
    height: 650px;
}
.banner-image1{
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../images/banner-1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.banner-image2{
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../images/banner-2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.banner-image3{
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../images/banner-3.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.banner-image4{
    width: 100%;
    height: 650px;
    position: relative;
    background-image: url(../images/banner-4.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.banner-contentbox{
    position: absolute;
    height: 650px;
    top: 0px;
    left: 15%;
    max-width: 565px;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-contentbox .banner-heading1{
    color: #fff;
    text-align: left;
    font-size: 50px;
    line-height: 58px;
    font-weight: bold;
}
.banner-contentbox .banner-heading2{
    color: #fff;
    text-align: left;
    font-size: 20px;
    margin-bottom: 0;
}

.banner-section .owl-theme .owl-dots .owl-dot {
    display: none !important;
}

.banner-section .owl-prev {
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
    transition: .8s;
    position: absolute;
    left: 0;
    top: 45%;
    bottom: 0px;
    background-color: #fcfcfc !important;
    border-radius: 0 !important;
    border: 0 !important;
    padding: 5px 10px;
    margin: 0 !important;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, .2);
}

.banner-section .owl-prev span {
    font-size: 27px;
    color: #111 !important;
}

.banner-section .owl-next {
    width: 45px !important;
    height: 45px !important;
    color: #fff !important;
    font-size: 18px !important;
    transition: .8s;
    position: absolute;
    right: 0;
    top: 45%;
    bottom: 0px;
    background-color: #fcfcfc !important;
    border-radius: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, .2);
}

.banner-section .owl-next span {
    font-size: 27px;
    color: #111 !important;
}

.banner-button{
    margin-top: 50px;
}
.banner-button .btn1{
    border-radius: 40px;
}

.banner-button .btn1:hover{
    color: #fff;
    transition: 0.3s;
    background: transparent;
}


.banner-button .btn2{
    margin-left: 30px;
}
.btn2{
    color: #fff;
    font-size: 16px;
    border-radius: 40px;
    padding: 10px 25px;
    background: transparent;
    transition: 0.3s;
    border: 2px solid #fff;
}

.btn2:hover{
    color: #030d0c;
    transition: 0.3s;
    background: #f2d046;
    border: 2px solid #f2d046;
}


.call-to-action {
    position: relative;
    padding: 45px 0px;
    background-color: #fbd848;
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.call-to-action h2 {
    position: relative;
    color: #000000;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.4em;
    /*float: left;*/
	text-align: center;
}
.call-to-action .more {
    position: relative;
    float: right;
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
    text-decoration: underline !important;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}



/*---      about    --------*/
.about {
	padding-top: 100px;
	padding-bottom: 100px;
}

.about .container {
  /*border-bottom: 0px solid #f7f7f7;
  padding-bottom: 80px;*/
}

.section-heading {
  margin-bottom: 10px;
}

.section-heading h6 {
	color: #030d0c;
	font-size: 17px;
	text-transform: uppercase;
	text-decoration: underline;
	font-weight: 600;
	margin-bottom:20px;
}
.section-heading h1 {
	color: #030d0c;
	font-size: 34px;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom:20px;
}
.section-heading h2 {
	color: #030d0c;
	font-size: 34px;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom:20px;
}
.iso {
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	color: #030d0c;
	font-weight: 500;
	letter-spacing: 0px;
	line-height: 28px !important;
	margin-top: 0;
margin-bottom: 1rem;
}
.about .service-item {
  margin-top: 30px;
}

.about .service-item img {
  float: left;
  margin-right: 15px;
  margin-bottom: 0;
  width: 46px;
  height: 46px;
}

.about .service-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #212529;
  text-transform: capitalize;
  letter-spacing: 0.25px;
  line-height: 20px;
  margin-bottom: 4px;
  margin-top: 0;
}
.about .service-item p {
  font-size: 14px;
line-height: 25px;
color: #777;
font-size: 14px;
line-height: 25px;
color: #777;
}
.about a.main-button-icon {
  display: inline-block;
  margin-top: 15px;
}

.about .right-text-content {
  margin-top: 10px;
}

/*.about .right-text-content p {
  font-size: 16px;
  line-height: 27px;
  color: #777;
}*/

a.main-button-icon {
	font-size: 13px;
	border-radius: 50px;
	padding: 15px 30px;
	background-color: #fbd848;
	text-transform: uppercase;
	color: #030d0c;
	font-weight: 600;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
a.main-button-icon:hover {
	background-color: #fbd848;
	color: #030d0c;
}

a.main-button-icon i {
	margin-left: 5px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

a.main-button-icon:hover i {
	padding-left: 5px;
}


/*---      about End   --------*/


/*---     Gallery Area Start    ------*/
.fix {
    overflow: hidden;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.gallery-area .single-gallery {
    position: relative;
}
.text-center {
    text-align: center !important;
}
.gallery-area .single-gallery::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgba(1, 10, 28, 0.4);
    opacity: 0;
    z-index: 1;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.gallery-area .single-gallery:hover::before {
  opacity: 1;
  visibility: visible;
}

.gallery-area .single-gallery .gallery-img {
    position: relative;
    height: 565px;
    background-size: cover;
    background-repeat: no-repeat;
}
.gallery-area .single-gallery .thumb-content-box {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    transition: .4s;
    z-index: 2;
}

.gallery-area .single-gallery .thumb-content-box .thumb-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.gallery-area .single-gallery .thumb-content-box .thumb-content h3 {
    font-size: 25px;
}
.gallery-area .single-gallery .thumb-content-box .thumb-content h3 {
    color: #ffffff;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 26px;
    text-transform: uppercase;
}
.gallery-area .single-gallery .thumb-content-box .thumb-content p {
    font-size: 16px;
    color: #ffff;
    padding: 0 82px;
    line-height: 1.6;
}
.gallery-area .single-gallery .thumb-content-box .thumb-content a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
}
.gallery-area .single-gallery .thumb-content-box {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    transition: .4s;
    z-index: 2;
}

.gallery-area .single-gallery .thumb-content-box .thumb-content h3 {
  color: #fbd848;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .gallery-area .single-gallery .thumb-content-box .thumb-content h3 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-area .single-gallery .thumb-content-box .thumb-content h3 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .gallery-area .single-gallery .thumb-content-box .thumb-content h3 {
    font-size: 32px;
  }
}

.gallery-area .single-gallery .thumb-content-box .thumb-content p {
  font-size: 16px;
  color: #ffff;
  padding: 0 41px;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .gallery-area .single-gallery .thumb-content-box .thumb-content p {
    padding: 0 18px;
  }
}

.gallery-area .single-gallery .thumb-content-box .thumb-content a {
  color: #fbd848;
  font-size: 18px;
  -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  font-weight: 400;
  text-decoration: underline;
}

.gallery-area .single-gallery .thumb-content-box .thumb-content a:hover {
  color: #fff;
  letter-spacing: 1px;
}

/*---     Gallery Area Start End    ------*/


/*---     Products Section    ------*/
.we-do-section {
    position: relative;
    padding: 90px 0px 50px;
}
.grey-bg {
    background-color: #f2f2f2;
}

.services-block {
    position: relative;
    margin-bottom: 48px;
}
.services-block .inner-box {
    position: relative;
}
.services-block .inner-box .image {
    border-color: #f2d046;
}

a:hover {
    color: #f2d046;
}
.services-block .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.services-block .inner-box .lower-content {
    position: relative;
    padding-top: 16px;
}
.services-block .inner-box .lower-content h2 {
    font-size: 20px;
    font-weight: 600;
	color:#030d0c;
    padding-bottom: 6px;
}
.services-block .inner-box .lower-content h2 a {
    font-size: 20px;
    font-weight: 600;
	color:#030d0c;
    padding-bottom: 14px;
}
.services-block .inner-box .lower-content h3 {
    font-size: 14px;
    font-weight: 400;
	color:#030d0c;
    padding-bottom: 14px;
}
.services-block .inner-box .lower-content h3 a {
    font-size: 14px;
    font-weight: 300;
	color:#030d0c;
    padding-bottom: 14px;
}
.services-block .inner-box .lower-content h3::after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 60px;
    height: 3px;
    background-color: #030d0c;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.services-block .inner-box:hover .image img {
    opacity: 0.7;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}
.services-block .inner-box .image {
	position: relative;
	background-color: #0b0b0b;
	overflow: hidden;
	border-bottom: 4px solid #f2d046;
	border-bottom-color: rgb(242, 208, 70);
	height: 240px;
}
/*---     Products Section End    ------*/


/* Products Categories CSS */
.pro-info {
    padding: 34px 0px;
}
.pro_name {
    color: #030d0c;
    font-size: 32px;
	line-height:32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.pro_price {
    color: #FF0000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.pro_qut {
    font-size: 18px;
    font-weight: 600;
	color:#030d0c;
    margin-bottom: 20px;
}
.detail {
    font-size: 22px;
    font-weight: 600;
    color: #030d0c;
    margin-bottom: 20px;
	border-bottom: 1px solid #dad8d8;
	padding-bottom: 10px;
}

.light_bg {
    background-color: #F0F8FE;
}
table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
}
/*th {
	background: #ccc;
	}*/
table, tr, td {
	border: 0px !important;
}  
th, td {
	width:50%;
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-bottom: 1px solid #dfdfdf !important;
}
td:first-child {
	font-style: bold;
	font-weight: 500;
}
tr:nth-child(odd) {
	background: #f4f4f4;;
}
tr:nth-child(even) {
	background: #FFFFFF;
}
th {
    font-weight: 500 !important;
}

.pro-info ul li {
  margin-left: 35px;
  list-style:disc;
}
.catego-info:nth-child(odd) {
  background: #FFFFFF;
}
.catego-info:nth-child(even) {
  background-color: #f4f4f4;
}
.img-wapper {
    width:100%;
	height:auto;
	/*min-height: 525px;*/
	padding:30px;
	border:4px solid #eeeeee;
	background-color:#FFFFFF;
	text-align:center;
}
.img-wapper img {
    margin:auto;
}
a.main-stroked-button {
  font-size: 13px;
  border-radius: 50px;
  padding: 13px 25px;
  background-color: #f2d046;
  border: 2px solid #f2d046;
  text-transform: uppercase;
  color: #030d0c;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  float: left;
	margin: 20px 0px 0px 5px;
}

a.main-stroked-button:hover {
  background-color: #fff;
  color: #030d0c;
}

a.main-filled-button {
  font-size: 13px;
  border-radius: 50px;
  padding: 13px 25px;
  background-color: #fff;
  border: 2px solid #f2d046;
  text-transform: uppercase;
  color: #030d0c;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
    float: left;
	margin: 20px 5px;	
}

a.main-filled-button:hover {
  color: #030d0c;
  background-color: #f2d046;
}

b, strong {
    font-weight: bolder;
    color: #030d0c;
}


/* Products Categories CSS End */



/*-------     Load More CSS   ------------- */
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.content {
  
  display: none;
}

.noContent {
  color: #000 !important;
  background-color: transparent !important;
  pointer-events: none;
}
/*-------     Load More CSS End   ------------- */

.yellow {
    color: #f2d046 !important;
	font-size:60px !important;
}

.white {
    color: #FFFFFF !important;
}
.project-section {
    position: relative;
    padding: 90px 0px 60px;
    background-color: #182431;
}
.project-section .sec-title .projects {
    position: relative;
    font-size: 15px;
	color: #FBD848;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    border-bottom: 1px solid #fbd848;
        border-bottom-color: rgb(251, 216, 72);
}
.project-section .sec-title .projects:hover {
    color: #ffffff;
}




.content_list ul li {
    margin-left: 6px;
    line-height: 36px;
    list-style: none;
    display: flex;
	color:#030d0c;
}
.content_list ul li::before {
    content: "\f00c";
    color: #3399FF;
    font-family: FontAwesome;
    display: inline-block;
    margin-left: 1.0em;
    margin-right: 1.0em;
    width: 1.0em;
}

/*---------------- Contact Us ------------------*/

.contact-section {
    position: relative;
    padding: 75px 0px 70px;
}
.contact-form .form-group {
    position: relative;
    margin-bottom: 30px;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="password"], .contact-form select, .contact-form textarea {
    display: block;
    width: 100%;
    line-height: 28px;
    height: 50px;
    font-size: 16px;
    padding: 10px 22px;
	margin-bottom: 30px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #dddddd;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.contact-form textarea {
    height: 208px;
    resize: none;
    font-size: 16px;
    background: #ffffff;
}
.contact-form .theme-btn {
    font-size: 18px;
    margin-top: 10px;
    padding: 11px 36px;
	background-color: #f2d046;
	border-radius: 50px;
	border:2px solid #f2d046;
}
.btn-style-one:hover {
    color: #fbd848;
    border-color: #fbd848;
    background: none;
}

.contact-section .info-column .inner-column {
    position: relative;
    padding-left: 100px;
}
.contact-section .info-column ul {
    position: relative;
}
.contact-section .info-column ul li {
	list-style:none;
    position: relative;
    color: #797979;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
}
.contact-section .info-column ul li span {
    color: #242424;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
    text-transform: capitalize;
}

/*---------------- Contact Us ------------------*/


/*----------------  Footer Start  ------------------*/

.main-footer {
    position: relative;
    background-color: #030d0c;
}
.main-footer .widgets-section {
    position: relative;
    padding: 80px 0px 30px;
}
.main-footer .logo-widget {
    position: relative;
}
.main-footer .footer-widget {
    position: relative;
    margin-bottom: 30px;
}
.main-footer .logo-widget .logo {
    position: relative;
    margin-bottom: 30px;
}
.main-footer .logo-widget .text {
    position: relative;
    color: #a8a8a8;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}
.main-footer .footer-widget h2 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2em;
    margin-bottom: 25px;
    text-transform: capitalize;
    display: inline-block;
}
.main-footer .list {
    position: relative;
}
.main-footer .list li {
    position: relative;
    margin-bottom: 8px;
	list-style: none;
}
.main-footer .list li a {
    position: relative;
    color: #a8a8a8;
    font-size: 14px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.main-footer .list li a:hover {
    color: #f2d046 !important;
}
.main-footer .info-widget {
    position: relative;
}
.main-footer .footer-widget {
    position: relative;
    margin-bottom: 30px;
}
.main-footer .info-widget .number {
    position: relative;
    color: #a8a8a8;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}
.main-footer .info-widget .text {
    position: relative;
    color: #a8a8a8;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.social-icon-one {
    position: relative;
}
.social-icon-one li {
    position: relative;
    margin-right: 10px;
    display: inline-block;
}
.social-icon-one li a {
    position: relative;
    width: 36px;
    height: 36px;
    font-size: 16px;
    text-align: center;
    border-radius: 50%;
    line-height: 34px;
    color: #ffffff;
    display: inline-block;
    border: 1px solid #ffffff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.social-icon-one li a:hover {
    color: #f2d046  !important;
    border: 1px solid #f2d046 !important;
}
.main-footer .footer-bottom {
    position: relative;
    padding: 22px 0px;
    border-top: 1px solid rgba(252,252,252,0.05);
}
.main-footer .footer-bottom .copyright, .main-footer .footer-bottom .created {
    position: relative;
    color: #767676;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}
	
	
	
	
	


/*----------------  Footer End  ------------------*/


/*  Whatsapp Icon */
.phone-call {
  width: 50px;
  height: 50px;
  right: 13px;
  bottom: 85px;
  background: #10b418;
  position: fixed;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 99;
  display: block;
  line-height: 65px;
}
.phone-call img {
    vertical-align: baseline !important;
}
.phone-call:before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: -15px;
  left: -15px;
  background-color: #10b418;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0.3);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.6;
  }
  75% {
    -webkit-transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0.3);
    opacity: 1;
  }
  50% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  75% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/*  Whatsapp Icon */

a.top1 {
	display: none;
	position: fixed;
	right: 0;
	right: 5px;
	bottom: 9.5em;
	/*background: #005aaa;
	border: 1px solid #005aaa;
  	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
	color: #fff;
	padding: 10px 10px 10px 20px;
	font-size: 20px;
	text-decoration: none*/
}
a.top {
	display: none;
	width: 90px;
	position: fixed;
	right: -27px;
	bottom: 1.0em;	
	z-index: 999;
	cursor: pointer
}





@media (max-width:560px) {

    
}    






@media (max-width:991px) {

.contact-section .info-column .inner-column {
    padding-left: 0px !important;
}
.main-footer .footer-bottom .copyright, .main-footer .footer-bottom .created {
    text-align: center !important;
}    
    
.call-to-action h2 {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
}
.call-to-action .more {
    width: 100%;
    text-align: center;
}
.call-to-action h2 {
    font-size: 22px;
}
}




@media (max-width:767px) {
.banner-contentbox {
    max-width: 72% !important;
}
.banner-contentbox .banner-heading1 {
    font-size: 24px !important;
    line-height: 32px !important;
}    
.yellow {
    font-size: 44px !important;
}
}

@media (min-width:768px) and (max-width:991px) {
    

    
}


@media (min-width:992px) and (max-width:1199px) {
.call-to-action h2 {
    font-size: 22px;
}
}


@media (min-width:1200px) {


}





