/* initially hide all groups (even before JS is loaded), so the page will never render them while loading */
[data-class="wpcf7cf_group"], .wpcf7cf_remove, .wpcf7cf_add {
    display:none;
}

.wpcf7cf_repeater_sub {
    margin-bottom: 20px;
}

.wpcf7cf_repeater_controls, .wpcf7cf_step_controls {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.wpcf7cf_multistep .wpcf7cf_step {
    /* display:none; */
    width: 100%;
}

.wpcf7cf_multistep .wpcf7cf_step .step-title {
    display: none;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots .dot .step-index {
    display: inline-block;
    border-radius: 50%;
    background: #dfdfdf;
    color: #000000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots .dot {
    border-bottom: 5px solid #dfdfdf;
    text-align: center;
    flex: 1;
    padding: 15px;
    min-width: 120px;
}
.wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed {
    border-bottom: 5px solid #333;
}
.wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active {
    border-bottom: 5px solid #333;
    font-weight: bold;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed .step-index {
    background-color: #333;
    color: #ffffff;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active .step-index {
    background-color: #333;
    color: #ffffff;
}

.wpcf7cf_step_controls .disabled {
    pointer-events: none;
    cursor: default;
    opacity: .5;
}/*
 * Theme Name: Divi Child
 * Template: Divi
 * Version: 4.25.0
 * Description: Child theme for Divi.
 * Author URI: http://www.elegantthemes.com/gallery/divi/
 * Author: Quape VN
*/

#loading-icon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#loading-icon img {
	width: 50px;
}

/* PRODUCT CATALOGUE */
.section-catalogue-table table tr td {
	text-align: left;
	font-size: 16px !important;
	/*border-bottom: 1px solid #ccc;*/
}
.section-catalogue-table table tr th {
    background-color: #003a8d;
    color: #fff;
    text-align: left !important;
    border: none !important;
	font-size: 16px;
}
/*.section-catalogue-table table tr td strong {
    color: #cc4f1b;
}
.section-catalogue-table table tr td a {
	color: #003a8d;
	font-weight: bold;
}
.section-catalogue-table table tr td a:hover {
	color: #cc4f1b;
}*/
/* END */


/* CONTACT */
.section-contact-form .wpcf7-text {
	width: 100%;
    height: 50px;
    padding: 0 15px;
    background: #F4F4F4;
    border: none;
    margin-top: 10px;
}
.section-contact-form .wpcf7-textarea {
	width: 100%;
    padding: 15px;
    background: #F4F4F4;
    border: none;
    margin-top: 10px;
}
.section-contact-form .wpcf7-submit {
	width: 100%;
    height: 50px;
    border: 2px solid #ff4e00;
    box-shadow: none;
    outline: none;
    background: white;
    font-weight: 600;
    font-size: 16px;
	cursor: pointer;
}
.section-contact-form .wpcf7-not-valid-tip {
	margin-top: 5px;
}
.section-contact-form .wpcf7-submit:hover {
	background: #ff4e00;
	color: white;
}
div.et_pb_toggle.regional-items .et_pb_toggle_title::before {
	position: absolute;
    left: -5px;
	font-weight: 600 !important;
	display: inline-block;
    width: 100%;
}
/* END */

/* PROJECTS */
.section-all-projects .projects-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 30px;
	margin-top: 30px;
}
.section-all-projects ul.projects-category {
	display: flex;
    justify-content: flex-end;
}
.section-all-projects ul.projects-category li {
	list-style-type: none;
    background: white;
    border: 1px solid #ccc;
    padding: 10px 30px;
    display: inline-block;
    color: black;
    font-weight: 600;
    cursor: pointer;
	margin-left: 10px;
}
.section-all-projects ul.projects-category li:hover,
.section-all-projects ul.projects-category li.active {
	background: #ff4e00;
	color: white;
	border: 1px solid #ff4e00; 
}
.section-all-projects .projects-items .box-items {
    position: relative;
	box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 30%);
}
.section-all-projects .projects-items .contents::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: white; 
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    z-index: -1; 
}
.section-all-projects .projects-items:hover .contents::before {
   	transform: translateY(0);
}
.section-all-projects .projects-items:hover h1,
.section-all-projects .projects-items:hover .learn-more {
	color: black;
}
.section-all-projects .projects-items:hover .grayscale {
	filter: none;
}
.section-all-projects .projects-items .background {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	padding: 20px;
	padding-top: 170%;
}
.section-all-projects .projects-items .grayscale {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.section-all-projects .projects-items .contents {
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	padding: 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 40%, rgba(255, 255, 255, 0) 100%);
	background-color: transparent; 
    overflow: hidden;
    z-index: 1; 
}
.section-all-projects .projects-items h1 {
	color: white;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    height: 60px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.section-all-projects .projects-items h4 {
    color: #ff4e00;
    font-size: 17px;
    font-weight: 600;
}
.section-all-projects .projects-items .learn-more {
	padding-top: 30px;
    display: inline-block;
    color: white;
    font-weight: bold;
}
.section-home-projects .projects-items .read-more {
	margin-top: 50px;
    border: 2px solid #ff4e00;
    padding: 10px;
    color: black;
    font-weight: 600;
    display: flex;
    justify-content: center;
    width: 170px;
    align-items: center;
}
.section-home-projects .projects-items .read-more:hover {
	background: #ff4e00;
	color: white;
}
/* END */

/* HOME */
body {
	font-weight: unset;
}
.section-search {
	display: none;
}
.section-header .menu-search .content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
  	justify-items: center;
}
.section-header .menu-search .btn-download {
	border: 2px solid #ff4e00;
  	padding: 5px;
  	width: 140px;
  	line-height: 20px;
  	text-align: center;
  	font-weight: 600;
  	color: #222;
	cursor: pointer;
}
.section-header .menu-search .btn-download a {
  	color: #222;
}
.section-header .menu-search .dashicons-search {
	color: #222;
  	font-size: 25px;
	cursor: pointer;
}
.section-header .menu-search .btn-download:hover {
	background: #ff4e00;
	color: white;
}
.section-header .menu-search .btn-download:hover a {
  	color: white;
}
.show-logo-mobile .et_pb_column {
  	display: grid; 
  	grid-template-columns: 1fr 2fr;
  	justify-content: center;
  	align-items: center;
}
.section-home-products .products li .woocommerce-loop-product__title:hover { 
	background: #0f2765; 
	color: white;
}
.section-home-products .products li .woocommerce-loop-product__title:after {
	content: "\f344";
	font-family: 'dashicons';
	position: absolute;
  	right: 15px;
}
.section-home-projects .projects-items {
	display: grid;
  	grid-template-columns: 1fr 1fr;
	background: white;
	height: 450px;
}
.section-home-projects .projects-items .background {
	width: 100%;
  	height: 100%;
  	background-repeat: no-repeat;
	background-size: cover;
  	background-position: center;
}
.section-home-projects .projects-items .contents {
	padding: 80px 70px;
}
.section-home-projects .projects-items .contents h1 {
	font-weight: 600;
  	font-size: 28px;
  	padding: 15px 0;
}
.section-home-projects .projects-items .contents h4 {
	font-weight: 600;
  	color: #ff4e00;
  	letter-spacing: 1px;
  	text-transform: uppercase;
  	font-size: 18px;
}
.section-home-projects .projects-items .contents .excerpt {
  	display: -webkit-box;
  	overflow: hidden;
  	-webkit-line-clamp: 3;
  	-webkit-box-orient: vertical;
}
.section-home-projects .projects-items .contents .learn-more {
	float: right;
  	margin-top: 50px;
  	border-bottom: 2px solid;
  	text-transform: uppercase;
  	font-size: 14px;
	font-weight: 600;
}
.section-home-projects .projects-items .contents .learn-more:hover {
	color: black;
}
.section-home-projects .slick-slider .slick-dots {
	bottom: -45px;
  	padding: 0;
}
.section-home-projects .slick-slider .slick-dots li {
	margin: 0;
}
.section-home-projects .slick-slider .slick-dots li button:before {
	font-size: 9px;
}
.section-home-projects .slick-slider .slick-next,
.section-home-projects .slick-slider .slick-prev {
  	z-index: 9999;
  	width: 50px;
  	height: 50px;
}
.section-home-projects .slick-slider .slick-next:before,
.section-home-projects .slick-slider .slick-prev:before {
	color: white;
  	font-size: 20px;
  	font-family: 'dashicons';
  	font-weight: 100;
  	background: #ff4e00;
  	border-radius: 50%;
}
.section-home-projects .slick-slider .slick-next:before {
	content: "\f345";
	padding: 10px 8px 10px 12px;
}
.section-home-projects .slick-slider .slick-prev:before {
	content: "\f341";
	padding: 10px 12px 10px 8px;
}
.section-home-projects .slick-slider .slick-prev {
	left: 0;
}
.section-home-projects .slick-slider .slick-next {
	right: 50%;
}
.section-home-products .products li.product a {
	position: relative;
}
.section-home-products .products li .woocommerce-loop-product__title {
	background: white;
  	position: absolute;
  	bottom: 0;
  	font-weight: 600;
  	width: 100%;
  	padding: 20px 15px !important;
  	font-size: 18px !important;
}
.section-footer .module-contact .items {
	display: grid;
  	grid-template-columns: 20px 1fr;
  	grid-gap: 20px; 
}
.section-slider .slider-content h1 {
	color: white;
  	font-size: 55px;
  	line-height: 1.1em !important;
	font-weight: 600 !important;
}
.section-slider .slider-content .btn-learn-more {
	padding: 10px 30px !important;
	color: white;
	border: 2px solid #ff4e00;
  	font-size: 15px !important;
	line-height: 1.7em !important;
	display: inline-block;
}
.section-slider .slider-content .btn-learn-more:hover {
	background: #ff4e00;
	color: white;
}
/* END */

/* OUR PRODUCTS */
.section-our-products .module-accordion h5 {
	padding-left: 35px;
}
.section-our-products .module-accordion h5::after {
	position: absolute;
    left: 0;
	color: #ff4e00;
	font-family: ETmodules !important;
    font-weight: 400 !important;
    content: "\45" !important;
}
.section-our-products .module-accordion h5::before {
	display: none;
}
/* END */

@media (max-width: 768px) {
	.section-home-projects .projects-items {
		 grid-template-columns: 1fr;
	}
	.section-home-projects .projects-items {
		height: unset;
	}
	.section-home-projects .projects-items .background {
		height: 350px;
	}
	.section-home-projects .slick-slider .slick-next {
		right: 0;
	}
	.section-home-projects .slick-slider .slick-next,
	.section-home-projects .slick-slider .slick-prev {
		top: 25%;
	}
	.section-slider .slider-content h1 {
		font-size: 40px;
	}
	.section-slider .slider-content p {
		font-size: 17px !important;
		line-height: 25px !important;
	}
	.section-slider .slider-content .btn-learn-more {
		margin-top: 20px;
	}
	.section-header .menu-search .btn-download {
		width: 100%;
		padding: 5px 20px;
	}
}

@media (max-width: 768px) {
	.section-all-projects ul.projects-category {
		display: inline-block;
        width: 100%;
        padding: 0;
	}
	.section-all-projects ul.projects-category li {
		margin: 0 10px 15px 0;
	}
	.section-all-projects .projects-container {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.section-home-projects .projects-items .contents {
		padding: 50px 30px;
	}
	.woocommerce .section-home-products ul.products.columns-3 li.product {
		width: 100% !important;
	}
	.section-all-projects .projects-container {
		grid-template-columns: 1fr;
	}
	.section-catalogue-table {
		width: 100%;
    	overflow-x: auto; 
	}
}