@charset "utf-8";

/*----------
* Theme: Solar Whole Seller
* Author: ANTS Creation
* URL : https://www.ants.lk/
---------------------------- */

/* main slider */
.tparrows:hover{
    background-color: var(--theme-5);
}

.tp-splitted .tp-charsplit{
    text-shadow: 0 0 1px #c9c9c9, 0 0 3px #ffffff;
    color: #0a2246;
    font-family: font-2;
}
/* End main slider */

/* welcome section */
.welcome-section {
    background-image: url(../images/home_page/about-bg.png);
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.welcome-section::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background-color: #fafafa83;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.welcome-para ul li {
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    display: flex;
    position: relative;
    padding-left: 20px;
}

.welcome-para ul li::before{
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    left: 0px;
    top: 0px;
    /* color: var(--theme-2); */
    color: var(--theme-5);
}

.r-btn{
    margin-top: 40px;
}

.single_image{
    position: relative;
    z-index: 9;
}

.single_image img {
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.1);
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    z-index: 9;
}
/* End welcome section */


/* Parallax section */
.parallax-section.parallax{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/home_page/parallax-bg.jpg);
    z-index: 1;
    position: relative;
}

.parallax-section.parallax::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0c0a30da;
}

.parallax-section .para-content{
    margin: auto;
    float: none;
}

.parallax-section .para-content h6{
    margin-bottom: 12px;
}

.parallax-section .para-content h2{
    color: #fff;
    line-height: 1.5;
}

.section-heading-line {
    content: '';
    display: block;
    width: 100px;
    border-radius: 10px;
    height: 5px;
    background: var(--theme-2);
    margin: auto;
    margin-top: 20px;
    margin-bottom: 10px;
}
/* End parallax section */

/* products section */

.hovereffect {
    overflow:hidden;
    position:relative;
}
    
.hovereffect .product-img img {
    display:block;
    position:relative;
    -webkit-transition:all .4s linear;
    transition:all .4s linear;
}
    
.hovereffect:hover .product-img img {
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}

.hovereffect .small-icon .product-icon{
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 12px;
    background: var(--theme-4);
    border-radius: 2px;
    -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.product-box:hover .product-icon{
    background: var(--theme-5);
}

.product-box:hover{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    --webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.product-img {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.product-box{
    background: #f5f5f5;
    z-index: 1;
    height: calc(100% - 25px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.product-content p{
    margin-top: 10px;
    margin-bottom: 0;
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
   -webkit-box-orient: vertical;
}

.product-content h3{
    color: var(--theme-4); 
}

.product-content.title-limit h3{
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--theme-4);
}

.product-content.title-limit p{
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 1; /* number of lines to show */
   -webkit-box-orient: vertical;
}

.product-content{
    padding: 15px;
}

#products .product-box{
    margin: 3px;
}

#products.owl-carousel{
    position: relative;
}

#products .owl-prev i, #products .owl-next i{
    font-size: 25px;
    border: 1px solid var(--theme-1);
    padding-left: 8px;
    padding-right: 8px;
    color: var(--theme-1);
    transition: 0.5s;
}

#products .owl-prev:hover i{
    color: var(--theme-3);
    /* background: var(--theme-1); */
    background: var(--theme-5);
}

#products .owl-next:hover i{
    color: var(--theme-3);
    /* background: var(--theme-1); */
    background: var(--theme-5);
}

#products.owl-carousel button[type="button"]{
    outline:none;
}

#products .owl-dots{
    text-align: center;
    margin-top: -20px;
}

#products .owl-dots .owl-dot{
    width: 20px;
    border-radius: 2px;
    height: 7px;
    background:var(--theme-1) !important;
    margin-right: 6px;
    border: 0px;
    opacity: 0.5;
    outline: none;
}

#products .owl-dots .owl-dot.active{
    opacity: 1;
    background:var(--theme-6) !important;
}

/* End products section */

/* contact section */
.contact-section.parallax{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/bg-slider2.jpg);
    z-index: 1;
    position: relative;
}

.contact-section.parallax::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0c0a30da;
}

.contact-section h2{
    color: #fff;
    margin-bottom: 30px;
}

.contact-item .item-icon.mar-right{
    margin-right: 35px;
} 

.contact-item .item-icon i{
    padding: 20px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    background-color: rgba(112,114,116,.25);
    font-size: 30px;
}

.contact-item .item-des h4{
    color: #fff;
    letter-spacing: 1px;
}

.contact-item .item-des span{
    color: rgb(173, 169, 169);
}

.form-title{
    margin-top: 26px;
}

.form-title p{
    color: rgb(173, 169, 169);
}

.contact-form{
    margin-top: 58px;
}

.send-btn .btn-style{
    border: none;
    width: 100%;
}

.contact-form .form-group{
    margin-bottom: 0.9rem;
}

.contact-form .form-control{
    background-color: rgba(112,114,116,.25);
    border-color: rgba(255,255,255,.25);
    /* padding: 25px; */
    padding: 20px;
    border-radius: 0;
    color: #fff;
}

.contact-form .form-control:focus{
    border-color: var(--theme-4);
    /* box-shadow: 0px 1px 1px rgba(31, 3, 109, 0.075) inset, 0px 0px 8px var(--theme-4); */
    box-shadow: 0px 1px 1px rgba(31, 3, 109, 0.075) inset, 0px 0px 8px var(--theme-5);
}

.contact-item .item-icon{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.contact-item:hover .item-icon{
    animation-name: bounce;
    -moz-animation-name: bounce;
}

/* End contact section */


/* brands section */

.brand-list-left-effect{
	width:100%;
	height:auto;
	position:relative;
	margin-bottom:20px;	
    overflow:hidden;
    height: calc(100% - 20px);
    padding: 15px;
}

.brand-list-left-effect img{
    transition-duration:0.4s;
}

.brand-list-left-effect .brand-logo-img{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.brand-list-left-effect .brand-overlay{
	width:90%;
	height:90%;
	position:absolute;
	padding:10px;
	background: #092a49f5;
	color:#fff;
	top:5%;
	left:-100%;
	transition-duration:0.4s;
}

.brand-overlay p{
    color: rgb(173, 169, 169);
    font-size: 11px;
}

.brand-list-left-effect{
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid rgb(194, 192, 192);
}

.brand-list-left-effect .brand-overlay h5{
    color: #fff;
    font-size: 16px;
    line-height: 4.5;
}

.brand-list-left-effect:hover .brand-overlay{
	left:5%;
}

.brand-list-left-effect:hover img{
    transform: scale(1.1);
}

/* --- about us page -- */

/* about section */

.about-section{
    background-image: linear-gradient(180deg,#ffffff 90%,rgb(248, 248, 248) 100%);
}

.about-section .about-descr ul li {
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    display: flex;
    position: relative;
    padding-left: 20px;
}

.about-section .about-descr ul li::before{
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    left: 0px;
    top: 0px;
    /* color: var(--theme-2); */
    color: var(--theme-5);
}

/* End about section */

/* vision mission section */
.vision-mission-section{
    position: relative;
    z-index: 1;
}

.vision-mission-section.parallax{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/about_page/bg-section-01.png);
}

.vision-mission-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: ; */
    z-index: -1;
}

.vision-mission-section .wrap-box{
    box-shadow: 1px 0px 12px -4px rgba(0,0,0,0.24);
    padding: 30px;
}

.vision-mission-section .wrap-box .para{
    border-left: 4px solid var(--theme-2);
    padding-left: 70px;
    text-align: justify;
}

.vision-mission-section .wrap-box .para p{
    color: #000;
    margin-bottom: 0;
}

.vision-mission-section .wrap-box .title{
    color: #000;
}

.vision-mission-section .wrap-box .title i{
    font-size: 30px;
    color: rgba(202, 202, 202, 0.637);
}

.vision-mission-section .wrap-box:hover .para{
    animation: colorchange1 2s;
}

.vision-mission-section .wrap-box:hover .title i{
    animation: colorchange2 2s;
}

@keyframes colorchange1
{
  0%   {border-left:4px solid var(--theme-5);}
}

@keyframes colorchange2
{
  0%   {color: var(--theme-5);}
}

/* End vision mission section */

/* charman message section */

.chairman-msg p{
    text-align: justify;
}

.chairman-sign p{
    margin-bottom: 0;
}

.chairman-sign p{
    font-family: font-sign;
    font-size: 30px;
}

.video-play-btn{
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
}

.video-main {
    position: relative;
    display: inline-block;
}

.chair-msg-video {
    height: 41px;
    width: 41px;
    line-height: 29px;
    text-align: center;
    border-radius: 100%;
    background: transparent;
    color: #fff;
    display: inline-block;
    background: var(--theme-4);
    z-index: 999;
}

.chair-msg-video .fa-play{
    font-size: 15px;
    line-height: 2.6;
    padding-left: 3px;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

.waves {
    position: absolute;
    width: 75px;
    height: 75px;
    background: rgba(11, 117, 76, 0.76);
    opacity: 0;
    border-radius: 100%;
    right: -17px;
    bottom: -17px;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}
        
.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
/* End chairman message section */

/* why choose us section */
.why-choose-us-section{
    background-image: linear-gradient(to right,  #092a4944, transparent);
}

.why-choose-us-section span{
    color: var(--theme-2);
}

.why-choose-box{
    border: 1px solid rgba(184, 179, 179, 0.788);
    padding: 30px;
    cursor: pointer;
}

.why-choose-box#one{
    background-color: var(--theme-2);
}
.why-choose-box#two{
    background-color: #fff;
}
.why-choose-box#three{
    background-color: #fff;
}

.why-choose-box h4{
    margin-bottom: 18px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline;
}

.why-choose-box i{
    font-size: 20px;
    color: #fff;
    margin-bottom: 18px;
}

.why-choose-box p{
    margin-bottom: 0px;
}

.why-choose-us-section .choose-image{
    display: grid;
}

.why-choose-us-section .choose-image .filter.two, .why-choose-us-section .choose-image .filter.three{
    display: none;
}
/* End why choose us section */

/* --- End about us page --- */

/* --- products page --- */

/* products section */
.products-section .topic-para p{
    margin-top: 30px;
}

.products-section .product-box.mb{
    margin-bottom: 60px;
}

.products-section.section-tb{
    padding-top: 70px;
    padding-bottom: 15px;
}
/* End products section */

/* --- End products page --- */

/* contact us page */
.contact-pg-section{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/contact_page/bg-image.png);
    z-index: 1;
    position: relative;
}

.contact-pg-section::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #d1d1d14f;
} 

.contact-pg-section h2{
    margin-bottom: 30px;
}

.contact-pg-section .contact-item h4{
    color: var(--theme-4);
    letter-spacing: 1px;
    font-weight: 900;
}

.contact-pg-section .item-des span{
    color: #000;
    font-weight: 600;
}

.contact-pg-section .item-icon i{
    color: var(--theme-4);
}

.contact-pg-section .contact-form .form-control{
    color: #000;
}

.contact-pg-section .contact-form .form-control:focus{
    border-color: var(--theme-4);
    box-shadow: 0px 1px 1px rgba(31, 3, 109, 0.075) inset, 0px 0px 8px var(--theme-5);
}

.contact-pg-section .form-title p{
    color: rgb(105, 103, 103);
}

.map-section{
    line-height: 0;
    margin-bottom: -70px;
}

/* End contact us page */

/* product details page */

#single-product.owl-carousel{
    position: relative;
    padding: 0 35px 0 35px;
}

#single-product .owl-prev {
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
}

#single-product .owl-next {
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
}

#single-product .owl-prev i, #single-product .owl-next i {
    font-size: 20px;
    border: 1px solid var(--theme-4);
    color: var(--theme-4);
    transition: 0.5s;
    padding: 6px 8px 6px 8px;
}

#single-product .owl-prev:hover i{
    color: var(--theme-3);
    background: var(--theme-5);
}

#single-product .owl-next:hover i{
    color: var(--theme-3);
    background: var(--theme-5);
}

#single-product.owl-carousel button[type="button"]{
    outline:none;
}

#single-product.owl-carousel .owl-stage-outer { 
    padding: 5% 0; 
}

#single-product .owl-item img {
    transition: 0.45s;
}

#single-product .owl-item.active.center img {
    box-shadow: 0 1px 10px 0 rgba(70, 75, 1, 0.377); 
}

#single-product .product-imgs{
    padding: 0 5px 0 5px;
}

.product-details-section .product-details p{
    line-height: 1.6;
    text-align: justify;
}

.product-details-section .product-details ol{
    padding-left: 15px;
}

.product-details-section .product-details ol li{
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1;
}

.product-details-section .product-details ul li{
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    position: relative;
    padding-left: 20px;
    line-height: 1;
}

.product-details-section .product-details ul li::before{
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    left: 0px;
    top: 0px;
    color: var(--theme-5);
}

.product-details-section .product-details .primary-list li{
    font-size: 15px;
    margin-top: 10px;
}

.product-details-section .product-images img{
    border-radius: 7px;
}

.product-details-section .product-details p img{
    max-width: 100%;
    height: auto;
}

.product-details-section .product-details tbody td img{
    max-width: 100%;
    height: auto;
}

.product-details-section .product-details .supplier-web{
    padding: 0 6px 6px;
    border: 1px dashed rgba(177, 176, 176, 0.774);
    display: inline-block;
}

.product-details-section .product-details .supplier-web .btn-style{
    padding: 2px 8px 2px 8px;
}

.products-links .product-link{
    border: 1px dashed rgb(177, 176, 176);
    background-color: rgba(202, 200, 200, 0.637);
    padding: 10px;
    transition: 0.6s;
    position: relative;
}

.products-links .product-link:hover{
    background-color: var(--theme-4);
    color: #fff;
}

.products-links .product-link:hover a{
    color: #fff;
}

.products-links a{
    color: black;
    letter-spacing: 0.5;
}

.products-links .product-link i{
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    position: absolute;
    right: 7px;
}

.product-details-section .contact-de{
    border: 1px dashed rgba(177, 176, 176, 0.774);
    padding: 10px;
}

.product-details-section .contact-form .form-title{
    margin-top: 0px;
}

.product-details-section .contact-form{
    margin-top: 0px;
    background-image: url(../images/contact_page/bg-image.png);
    border: 1px solid rgba(135, 148, 135, 0.247);
    border-radius: 2px;
    padding: 10px;
}

.product-details-section .contact-form .form-group{
    margin-bottom: 0.2rem;
}

.product-details-section .contact-form .form-control{
    color: #000;
}

.sidenav-h-item-meta{
    line-height: 1;
}
/* End product details page */

/* gallery page */
.mesonry-section a{
    cursor: zoom-in;
}

.gal {
	-webkit-column-count: 3; 
    -moz-column-count: 3; 
    column-count: 3;
}

@media (max-width: 767px) {	

    .gal {
	-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
	}	
}

@media (max-width: 456px) {	

    .gal {
	-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
	}	
}

.gal img{ 
    width: 100%;
}

.gallery-image{
    position: relative;
    z-index: 0;
}

.overlay{
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 1;
}

.hovereffect .gallery-image{
    width:100%;
    height:100%;
    overflow:hidden;
    margin-bottom: 10px;
}

.hovereffect .gallery-image.thumb{
    cursor: pointer;
}
    
.hovereffect .gallery-image img {
    -webkit-transition:all .4s linear;
    transition:all .4s linear;
}

.hovereffect .overlay h2 {
    color:#fff;
    text-align:center;
    position:relative;
    font-size:17px;
    background:rgba(31, 60, 116, 0.6);
    padding:10px;
}
    
.hovereffect:hover .gallery-image img {
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}

/* End gallery page */

/* brands page */
.brands-des-section .des-content p{
    text-align: justify;
}

.brands-des-section h2{
    margin-bottom: 0;
}
/* End brands page */

/* Hot water systems category one section */

.systems-cat-pg-title.section-pt{
    padding-top: 70px;
}

.category-descr-section.section-pt{
    padding-top: 90px;
}

.category-descr-section.section-pb{
    padding-bottom: 70px;
}

.category-descr-section .system-descr-area{
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06); 
    padding: 15px; 
    position: relative;
}

.system-descr-area .overlay-content-box.left-box{
    position: absolute;
    left: 15px;
    top: -50px;
    z-index: 5;
}

.system-descr-area .overlay-content-box .icon, .system-descr-area .overlay-content-box .title{
    display: table-cell;
    vertical-align: middle;
}

.system-descr-area .overlay-content-box .icon.left{
    width: 50px;
    height: 50px;
    background: var(--theme-4);
    text-align: center;
    border-top-left-radius: 5px;
}

.system-descr-area .overlay-content-box .title.left {
    background: #f3f7fa;
    padding-left: 20px;
    width: 230px;
    border-top-right-radius: 5px;
}

.system-descr-area .overlay-content-box .title h3{
    margin-bottom: 0px;
}

/* / Hot water systems category one section */


/* Hot water systems category two section */
.category-descr-section .system-descr-area{
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06); 
    padding: 15px; 
    position: relative;
}

.system-descr-area .overlay-content-box.right-box{
    position: absolute;
    right: 15px;
    top: -50px;
    z-index: 5;
}

.system-descr-area .overlay-content-box .icon.right{
    width: 50px;
    height: 50px;
    background: var(--theme-4);
    text-align: center;
    border-top-right-radius: 5px;
}

.system-descr-area .overlay-content-box .title.right {
    background: #f3f7fa;
    padding-left: 30px;
    width: 190px;
    border-top-left-radius: 5px;
}

.system-descr-area .data-sheet-box{
    padding: 5px;
    border: 1px dashed rgba(177, 176, 176, 0.774);
    display: inline-block;
}

.system-descr-area .data-sheet-box i{
    color: var(--theme-4);
    padding-right: 5px;
    font-size: 1.2rem;
    transition: 0.4s;
}

.system-descr-area .data-sheet-box:hover i{
    color: var(--theme-5);
}

.system-descr-area .data-sheet-box:hover{
    border: 1px dashed var(--theme-5);
}

.system-descr-area .data-sheet-box span{
    font-size: 15px;
    color: #000;
}
/* / Hot water systems category two section */
