/*
Theme Name: Hello Elementor Child
Author: 
Description: Your description goes here
Version: 1.0
Template: hello-elementor

This is the child theme for Hello Elementor theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/



/* product page css */
/* GRID WRAPPER */
.product-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0px 0;
}

/* CARD */
.product-card {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 22px;
    padding: 28px;
    transition: 0.3s ease;
    position: relative;
}

/* hover effect */
.product-card:hover {
    box-shadow: 0px 12px 30px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}

/* link full clickable */
.product-card a {
    display: flex;
    text-decoration: none;
    color: #000;
    flex-direction: column;
    height: 100%;
}

/* title */
.product-card h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #000;
    line-height: 35px;
    text-transform: uppercase;
	flex-grow: 1;
}

/* model no */
.product-card p {
    font-size: 16px;
    font-weight: 400;
    color: #3b3b3b;
    font-family: "Poppins", Sans-serif;
    margin: 0 0 22px;
}

/* image box */
.product-card .item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

/* image */
.product-card .item img {
    object-fit: contain;
    transition: 0.4s ease;
	border-radius: 20px;
}

/* image zoom hover */
.product-card:hover .item img {
    transform: scale(1.05);
}

/* icon circle button */
.product-card .button-icon-box {
    position: absolute;
    right: 30px;
    bottom: 50px;
    width: 52px;
    height: 52px;
    background: #008a3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}
/* hover icon button */
.product-card:hover .button-icon-box {
    background: #000;
    transform: scale(1.08);
}

/* arrow icon */
.product-card .button-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* responsive */
@media(max-width: 1024px) {
    .product-wrapper-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .product-wrapper-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-card {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 20px;
        line-height: 28px;
    }

   .product-card .item img {
    width: 100%;
    object-fit: cover;
}
	.product-card .button-icon-box{
		width: 40px;
		height: 40px;
	}
}


a.icon-po1{
	color: #616161 !important;
	display: contents !important;
}
a.icon-po2{
	color: #616161 !important;
	display: contents !important;
}
a.icon-po1:hover{
	color: #009846 !important;
}
a.icon-po2:hover{
	color: #009846 !important;
}

a.icon-1 {
    color: #CFCFCF !important;
	display: contents !important;
}
a.icon-2 {
    color: #CFCFCF !important;
	display: contents !important;
}
a.icon-1:hover {
    color: #FE1A0D !important;
}
a.icon-2:hover {
    color: #FE1A0D !important;
}


/* Global Styles */
.elementor-widget-text-editor a{
	color: inherit;
}
.green-heading {
    color: #009846;
}
.elementor-widget-text-editor p:last-child, .elementor-widget-accordion p:last-child{
    margin-bottom: 0;
}
.ul-reset ul{
	padding-left: 20px;
}
form .custom-form input[type="submit"] {
    all: unset !important;
}
/* Button  */
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 20px;
    padding: 0px 0px 0px 0px;
    overflow: hidden;
	text-align: center;
}
.button-text {
    background: #009846;
    color: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
	text-transform: uppercase;
	font-family: poppins;
}
.button-icon-box {
    width: 46px;
    height: 46px;
    background: #009846;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    z-index: 2;
    transition: all 0.3s ease;
}
.button-icon {
    width: 22px;
    filter: invert(1);
    transition: 0.3s ease;
}
.button-bg-color {
    position: absolute;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: #009846;
    border-radius: 20px;
    transition: width 0.4s ease;
    z-index: 1;
}
.button:hover .button-bg-color {
    width: 100%;
}
.button:hover .button-icon-box {
    transform: translateX(5px);
    background: #000;
    width: 44px;
    height: 44px;
}
.white-btn .button-text {
    background: #fff;
    color: #000;
}
.white-btn .button-icon-box, .white-btn .button-bg-color {
    background: #fff;
}
.white-btn .button-icon{
	filter: invert(0);
}
.white-btn .button:hover .button-icon-box .button-icon {
    filter: invert(1);
}
.red-btn .button-text, .red-btn .button-bg-color, .red-btn .button-icon-box {
    background: #FE1A0D;
}
/* Marquee Text*/
#infinite-ticker-box {
    overflow: hidden !important;
    display: flex !important;
    width: 100%
}

.ticker-track {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    animation: marquee-scroll 70s linear infinite
}

.ticker-track ul {
    display: flex;
    margin: 0 !important;
    padding: 0 !important
}

.ticker-track li {
    margin: 0 40px;
    white-space: nowrap;
    align-items: center
}

#infinite-ticker-box:hover .ticker-track {
    animation-play-state: running !important
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

#infinite-ticker-box:hover .ticker-track {
    animation-play-state: paused
}

/* WCU Accordion */
.wcu-accordion .elementor-tab-content {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.wcu-accordion .elementor-accordion div.elementor-tab-title.elementor-active {
    background: #00a0e3;
    border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding-bottom: 10px;
}
.wcu-accordion .elementor-tab-title:not(.elementor-active) {
    border: 1px solid #cecece;
    border-radius: 20px;
}
.wcu-accordion .elementor-accordion-item:not(:last-child){
    margin-bottom: 24px;
}
.wcu-accordion .elementor-accordion .elementor-tab-title .elementor-accordion-icon svg {
    width: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.wcu-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon svg {
    color: #000;
}

.wcu-accordion .elementor-accordion-icon.elementor-accordion-icon-right {
    background: #00A0E3;
    padding: 15px;
    position: relative;
    border-radius: 100px;
    position: relative;
}
.wcu-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon.elementor-accordion-icon-right {
    background: #fff !important;
} 
body .comments-area a, body .page-content a {
    text-decoration: none;
}
/* Custom Form */
#custom-form {
     font-family: 'Poppins';
}
#custom-form input::placeholder, #custom-form select,  #custom-form textarea::placeholder  {
    color: #3B3B3B;
}

#custom-form .row {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

#custom-form .half {
  width: 50%;
}

#custom-form .full {
  width: 100%;
}

#custom-form input,
#custom-form textarea,
#custom-form select{
  width: 100%;
  padding: 12px 20px ;
  border-radius: 20px;
border: 1px solid transparent;
  background: #ECECEC;
  font-size: 16px;
}
#custom-form input:focus-visible, #custom-form textarea:focus-visible,#custom-form select:focus-visible {
    outline: none;
    border-color: #B3B3B3;
}
#custom-form textarea {
  height: 115px;
  border-radius: 20px;
  resize: none;
}

.submit-row {
  display: flex;
  align-items: center;
}

#custom-form input[type="submit"] {
  background: #ff2d2d;
  color: #fff;
  padding: 12px 25px;
  border-radius: 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

#custom-form input[type="submit"]:hover {
  background: #e60000;
}
#custom-form span.wpcf7-spinner {
    position: absolute;
}
#custom-form .button-block.red-btn {
    margin-top: 46px;
}
.pum form .custom-form .button-block.red-btn {
    margin-top: 20px;
}
.pum h2.elementor-heading-title  {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 30px;
}
@media (max-width: 767px) {
.button-text {
    font-weight: 600 !important;
	font-size: 13px;
	padding: 12px 10px;
}
	
	.custom-form .half {
    width: 100% !important;
    margin-top: 20px;
}
	.custom-form .row {
    display: block !important;
    gap: 40px;
    margin-bottom: 20px;
}
	.white-btn .button-text {
    background: #fff;
    color: #000;
	font-weight: 400 !important;
}
	#custom-form .button-block.red-btn {
    margin-top: 30px;
}
}
@media (min-width: 1200px) and (max-width: 1439px){
  .owl-item h3{
    font-size: 22px !important;
	  line-height: 30px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px){
  .owl-item h3{
    font-size: 17px !important;
	  line-height: 25px;
  }
	.button-text {
        font-size: 15px;
        padding: 12px 9px;
        font-weight: 500 !important;
    }   
}
@media (max-width: 1024px){
  .owl-item h3{
    font-size: 17px !important;
	  line-height: 25px;
  }
}

@media (max-width: 768px){
  .owl-item{
    padding: 18px;
  }
  .owl-item h3{
    font-size: 20px;
  }
  .owl-item p{
    font-size: 14px;
    margin-bottom: 20px;
  }
  .owl-item .button-icon-box{
    bottom: 30px;
    right: 18px;
    padding: 10px;
  }
	.custom-form .half {
    width: 100% !important;
    margin-top: 20px;
}
	.custom-form .row {
    display: block !important;
    gap: 40px;
    margin-bottom: 20px;
}
	.white-btn .button-text {
    background: #fff;
    color: #000;
	font-size: 16px;
	padding: 12px 25px;
	font-weight: 600 !important;
}
     .button-text {
       font-size: 16px;
	padding: 12px 25px;
	font-weight: 600 !important;
    }       
	#popmake-1431.pum-theme-1424 .pum-container, .pum-theme-enterprise-blue .pum-container{
		padding: 30px 20px;
	}
	.elementor-42 .elementor-element.elementor-element-c827a79 {
        font-size: 22px !important;
		line-height: 22px !important;
    }
}

@media (max-width: 480px){
  .owl-item{
    padding: 14px;
  }
  .owl-item h3{
    font-size: 16px;
    margin-bottom: 12px;
  }
  .owl-item p{
    font-size: 13px;
    margin-bottom: 15px;
  }
  .owl-item .button-icon-box{
    bottom: 20px;
    right: 14px;
    padding: 8px;
  }
	.custom-form .half {
    width: 100% !important;
    margin-top: 20px;
}
	.custom-form .row {
    display: block !important;
    gap: 40px;
    margin-bottom: 20px;
}
	    .white-btn .button-text {
        background: #fff;
        color: #000;
        font-weight: 600 !important;
        font-size: 13px;
    }
	.button-icon-box {
    width: 40px;
    height: 40px;
	}
	.button-text {
        font-weight: 600 !important;
        font-size: 13px;
    }
	.button:hover .button-icon-box {
    width: 36px;
    height: 36px;
}
}

