/* 
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 */
/* Global spacing */
:root {
	--spacing: 75px;
}
.section-padding-top {
	padding-top: var(--spacing);
}
.section-padding-bottom {
	padding-bottom: var(--spacing);
}

.section-padding-top__sm {
	padding-top: calc(var(--spacing) * 0.5);
}
.section-padding-bottom__sm {
	padding-bottom:  calc(var(--spacing) * 0.5);
}

@media only screen and (max-width: 1000px) {
	:root {
		--spacing: 30px;
	}
}

/* Global elements */

@media only screen and (min-width: 1000px) {
	.desktop-full-width-btn .elementor-button {
		width: 100%;
		min-width: 500px;
	}		
}
@media only screen and (max-width: 1000px) {
	.desktop-full-width-btn .elementor-button {
		width: 100%;
	}		
}

/* Gallery */
.custom-gallery .gallery {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px 60px;
    margin: 0 !important;
}

.custom-gallery .gallery .gallery-item, .custom-gallery .gallery .gallery-item img {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    aspect-ratio: 4 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    object-fit: contain;
}

.custom-gallery .gallery .gallery-item img {
/* 	  filter: grayscale(100%) contrast(200%); */
}

@media only screen and (max-width: 1024px) {
	.custom-gallery .gallery {
		grid-template-columns: repeat(6, 1fr);
	}		
}

@media only screen and (max-width: 768px) {
	.custom-gallery .gallery {
		grid-template-columns: repeat(4, 1fr);
	}		
}

/* Tabs */
.elementor-widget-n-tabs .e-n-tab-title {
	justify-content: space-between;
}

ul.elementor-icon-list-items {
    column-count: 2;
    column-gap: 20px;
    list-style-position: inside;
}


/* decoration heading */
.deco-heading * {
	z-index:10;
	position: relative;
}
.deco-heading::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border: 5px solid transparent;
  background: linear-gradient(to right, #380000, rgba(135, 0, 0, 1)) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
	
  z-index: 1;

  /* Default: top-left */
  top: -45px;
  left: -45px;
}

/* Position modifier classes */
.deco-heading.deco-top-left::before {
  top: -30px;  left: -30px;
}

.deco-heading.deco-top-right::before {
  top: -30px;  right: -30px; left: auto;
}

.deco-heading.deco-bottom-left::before {
  bottom: -30px; left: -30px; top: auto;
}

.deco-heading.deco-bottom-right::before {
  bottom: -30px; right: -30px; top: auto; left: auto;
}

/* custom divider */
.nlg-divider .elementor-divider-separator {
    border: none;
    height: 4px;
    width: 80px !important;
    background: linear-gradient(to left, transparent, #c0392b);
    border-block-start: none !important;
}
@media only screen and (max-width: 768px) {
	.mobile-full-width-btn .elementor-button {
		width: 100%;
	}	
}
