@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

@font-face {
    font-family: 'actay_condensedthin';
    src: url('../fonts/actaycondensed-thin-webfont.woff2') format('woff2'),
         url('../fonts/actaycondensed-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'actayregular';
    src: url('../fonts/actay-regular-webfont.woff2') format('woff2'),
         url('../fonts/actay-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'actay_widebold';
    src: url('../fonts/actaywide-bold-webfont.woff2') format('woff2'),
         url('../fonts/actaywide-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body{
    font-family: 'actayregular';
}
h1,h2{
    font-size: 2.2rem;
    font-family: 'actay_widebold';
}
h3{
    font-size: 2rem;
    font-family: 'actay_widebold';  
}
h4{
    font-size: 1.5rem;
    font-family: 'actay_widebold';  
}
.fw-bold{
   font-family: 'actay_widebold';  
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #53c141;
    border-radius: 5px;
}
::-webkit-scrollbar-track {
    background: #dedede;
}
a{
	text-decoration: none;
	color: #000;
	transition: 0.3s;
}
a:hover {
    text-decoration: none;
}

.navbar-brand img{
	width: 200px;
}

.menu{
	position: relative;
}
.top-contact-links{
	position: absolute;
    left: 0;
    right: 21px;
    top: 13px;
    z-index: 10;
    font-size: .9rem;
}
.top-contact-links a{
	margin-left: 10px;
}
.top-contact-links a:hover{
	color: #53c141;
}

/*Manu Border Bottom Line Animation CSS*/
.navbar-light .navbar-nav .nav-link {
    color: #000;
    position: relative;
}
.navbar-light .nav-item{
	margin-left: 5px;
}
.navbar-light .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgb(255 98 102) 0%, rgb(253 96 100) 35%, rgb(235 35 41) 100%);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}
.navbar-light .navbar-nav .nav-link:hover::before {
  transform: scaleX(1);
}
.navbar-expand-lg .navbar-nav {
    margin-top: 25px;
}

/*Products CSS*/

.products{
	background: url(../images/product-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	padding: 60px 0;
}
.product-box:hover {
  transform: scale(1.1);
  opacity: 1;
}
.product-box.active {
  transform: scale(1.1);
  opacity: 1;
}
.product-box {
  transition: transform 0.5s;
  transform: scale(0.7);
  opacity: 0.7;
}
.common-btn {
    background: url(../images/green-btn-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
    display: inline-block;
    border: none;
    padding: 4px 30px 4px 10px;
    transition: 0.3s;
    font-size: .8rem;
    text-transform: uppercase;
}
.common-btn:hover {
    background: url(../images/black-btn-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}
.green-btn {
    background: url(../images/green-btn-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
    display: inline-block;
    border: none;
    padding: 4px 30px 4px 10px;
    transition: 0.3s;
    font-size: .8rem;
    text-transform: uppercase;
}
.green-btn:hover {
    background: url(../images/black-btn-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}
.black-btn {
    background: url(../images/black-btn-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
    display: inline-block;
    border: none;
    padding: 4px 30px 4px 10px;
    transition: 0.3s;
    font-size: .8rem;
    text-transform: uppercase;
}
.black-btn:hover {
    background: url(../images/banner-btn-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}
.product-box{
	background: url(../images/in-product-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0 60px 90px 60px;
    cursor: pointer;
}
.product-box img{
	margin-bottom: 15px;
}
.theme-color{
	color: #53c141;
}
.green-text{
	color: #5ebb58;
}


/*Lighting Images*/

/*Accordion Mouse Hover*/
.accordion {
    height: 100vh;
    overflow: hidden;
    margin: 0px auto;
    background: #fff;
    padding: 0 0px;
    text-align: left;
}

.accordion ul li,
.accordion ul li div a {
    height: 100%;
    vertical-align: bottom;
    position: relative
}

.accordion ul {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    height: 100%
}

.accordion ul li {
    display: table-cell;
    width: 33.33%;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    background-size: cover;
    cursor: pointer;
}

.accordion ul li div {
    display: block;
    overflow: hidden;
    width: 100%
}

.accordion ul li div a {
    display: block;
    width: 100%;
    height: 50px;
    z-index: 3;
    padding: 15px 20px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    -moz-transition: height .6s;
    -webkit-transition: height .6s;
    -ms-transition: height .6s;
    -o-transition: height .6s;
    transition: height .6s;
}

.accordion ul li div a * {
    opacity: 1;
    margin: 0;
    width: 100%;
    text-overflow: ellipsis;
    position: relative;
    z-index: 5;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all .4s;
    transition: all .4s
}

.accordion ul li div a h2 {
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 400;
}

.accordion ul li div a p {
    font-size: 15px;
    top: 160px;
    opacity: 0;
    visibility: hidden;
}

.accordion ul li:nth-child(1) {
    background-image: url(../images/lighting-1.jpg);
}

.accordion ul li:nth-child(2) {
    background-image: url(../images/lighting-2.jpg);
}

.accordion ul li:nth-child(3) {
    background-image: url(../images/lighting-3.jpg);
}

.accordion ul:hover li {
    width: 10%
}

.accordion ul:hover li:hover {
    width: 20%
}

.accordion ul:hover li:hover a * {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.accordion ul:hover li:hover a {
    height: 82px
}

.accordion ul:hover li:hover h2 {
    font-size: 18px;
    line-height: 18px;
}

.accordion ul li h2 i {
    visibility: hidden
}

.accordion ul:hover li:hover h2 i {
    background: url(../images/sprite.png) no-repeat 0px -127px;
    width: 7px;
    height: 12px;
    display: inline-block;
    visibility: visible;
    margin-left: 10px;
}

.accordion ul:hover li:hover p {
    top: 0;
    opacity: 1;
    visibility: visible;
}

/*Number Talk*/
.number-talk{
	padding: 60px 0;
	background: #53c141;
}
.number-talk-box{
	border-right: 1px solid #fff;
}

.number-talk-box.no-border{
	border-right: 0px solid transparent;
}

/*World Map*/
.world-map{
	background: #f4f4f4;
}


/*Happy Customers (Testimonials)*/
.happy-customer{
	padding: 60px 0;
}
.user-img{
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto;
}
.happy-customer .carousel-caption{
	color: #000;
	position: relative;
	left: 0;
	right: 0;
	margin-top: 30px;
}
.happy-customer .carousel-caption h5{
	color: #53c141;
}
.happy-customer .carousel-item{
	text-align: center;
}
.happy-customer .carousel-indicators [data-bs-target]{
	background-color: #53c141;
}

/*Map*/

.get-in-touch{
	padding: 60px 80px;
	height: 100%;
	background: #f2f2f2;
}
.map{
	display: flex;
	flex-wrap: wrap;
}
.text-big{
	font-size: 1.5rem;
}

/*Footer*/
footer{
	padding:40px 0;
	background: #53c141;
}
.footer-logo{
	width: 150px;
}
footer ul{
	padding: 0;
	margin: 0;
}
footer ul li{
	margin-bottom: 7px;
	list-style: none;
}
footer ul li a{
	color: #fff;
}
footer ul li a:hover{
	color: #000;
}

/*About Page CSS*/
.inner-banner{
    position: relative;
}
.breadcrum-text{
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
}
.red-line{
    width: 80px;
    height: 3px !important;
    opacity: 1;
    background: #53c141;
    margin-top: 3px;
}
.about-us{
    padding: 60px 0;
}
.bdr-radius{
    border-radius: 20px;
}

/*Award*/
.award{
    background: url(../images/award-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.award-heading{
    margin-top: 10px;
    margin-bottom: 0px;
}
.icon-box i{
    font-size: 2rem;
}
.our-mission{
    padding: 60px 0;
}

/*Contact Page CSS*/
.contact-area{
    padding: 60px 0;
}

/*Drobdown Menu*/
.navbar-light .nav-item .dropdown-item{
    font-size: 0.8rem;
    color: #000;
    padding: .7rem 1rem;
}
.navbar-light .nav-item .dropdown-menu{
    background: #fff;
    padding: 0;
    border-radius: 0;
}
.navbar-light .nav-item .dropdown-menu li{
    border-bottom: 1px dashed #ffbdbd;
}
.navbar-light .nav-item .dropdown-menu li:last-child{
    border-bottom: 1px dashed transparent;
}
.navbar-light .nav-item .dropdown-item:focus, .navbar-light .nav-item .dropdown-item:hover{
    color: #fff;
    background: #53c141;
}

/*Common List*/
.common-list{
    margin: 0;
    padding: 0;
}
.common-list li{
    list-style: none;
    padding-left: 24px;
    margin-bottom: 8px;
    margin-top: 8px;
    position: relative;
}
.common-list li:before{
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    position: absolute;
    font-size: 1rem;
    border-radius: 50%;
    color: #53c141;
    left: 0;
    top: 0px;
}
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 170px;
}
.whatsapp a {
    color: #ffb102;
    font-size: 2.1rem;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border: 1px solid #ffb102;
}
/*Table CSS*/
table th, table td{
    font-size: 0.9rem;
}

.media-box {
    border-radius: 20px;
    border-bottom: 4px solid #57c54c;
}
.media-text {
    padding: 20px;
    text-align: center;
}
.contact-info{
    border: 1px solid #53c141;
}
.info-box {
    text-align: center;
    border: 2px dashed #53c141;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}
.info-box i{
    display: block;
    font-size: 3rem;
    margin-bottom: 10px;
}

.certificates{
    padding: 60px 0;
}
.certificate-frame{
    border: 10px solid #ccc;
}
.certificate-frame img{
    transition: transform .2s;
}
.certificate-frame:hover img {
  transform: scale(1.05);
}
.chart{
    background: #f2f2f2;
    padding: 40px 0;
}
.why-us{
    padding: 60px 0;
}
.why-us strong{
    font-family: 'actay_widebold';
}

.core-values{
    padding: 60px 0;
    background: #f2f2f2;
}
.core-value-box{
    background: #fff;
    padding: 15px;
    text-align: center;
}
.core-value-box h4{
    font-size: 1rem;
}
.core-value-box p{
    font-size: 0.8rem;
}
.core-value-box img{
    width: 70px;
    margin-bottom: 10px;
}
.moretext-1,.moretext-2,.moretext-3,.moretext-4,.moretext-5,.moretext-6,.moretext-7,.moretext-8{
    display: none;
}
#google_translate_element{
    font-size: 0.8rem;
}
.goog-te-gadget .goog-te-combo {
    width: 150px;
}

/*Start Media Query*/
@media screen and (max-width: 1400px) {

}


@media screen and (min-width: 1600px) {
  
}
@media screen and (max-width: 1260px) {
    
}

@media all and (max-width: 991px) {

}

/*For Tablet and iPad Screens*/
@media only screen and (max-width: 1024px) and (min-width: 768px) {

}


/*For Mobile Screens*/
@media only screen and (max-width: 767px) {
    .core-value-box h4{
        font-size: 0.8rem;
    }
    .core-value-box {
        padding: 8px;
    }
    .about-us .bdr-radius{
        margin-bottom: 30px;
    }
    .contact-area .bdr-radius{
        margin-bottom: 30px;
        height: auto !important;
    }
    .icon-box{
        margin-top: 30px;
    }
    .inner-banner {
        position: relative;
        height: 225px;
        overflow: hidden;
    }
    .inner-banner img{
        object-fit: cover;
        height: 225px;
    }
	.product-box {
	    padding: 0 50px 80px 50px;
    }
	footer h4{
		margin-top: 20px;
	}
	.map {
	    display: block;
	}
	.get-in-touch {
	    padding: 60px 20px;
	}
	.top-contact-links{
		display: none;
	}
	.number-talk .col-6{
		margin-bottom: 30px;
	}
	.number-talk-box{
		border-right: 0px solid transparent;
	}

}