/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items per row */
  gap: 15px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

 .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: all .3s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.wpcf7-form textarea {
	min-height:130px !Important;
	height:130px !Important;
}
.wpcf7-form p {
	margin-bottom:0;
}

#homeslider .button {
	padding:10px 20px;
	color:#fff !important;
	background:#3AA2E5 ;
	border-radius:30px;
	display:inline-block;
}
#homeslider .button:hover {
	background:#000;
}
#homeslider .button.black {
	background:#000;
}
#homeslider .button.black:hover {
	background:#3AA2E5 ;
}

/*tablet landscape*/
@media screen and (min-width:821px) and (max-width:1024px) {
	
}

/*tablet portrait*/
@media screen and (min-width:768px) and (max-width:820px) {
	
}

/*all mobile*/
@media screen and (max-width:767px) {
	
	.image-gallery {
		  grid-template-columns: repeat(2, 1fr); /* 4 items per row */
	}
}

/*mobile portrait*/
@media screen and (max-width:479px) {

}