/*
 Theme Name:   LUOVA DIGITAL Starter Theme
 Theme URI:    https://generatepress.com
 Description:  LUOVA DIGITAL theme (A GeneratePress child theme)
 Author:       Kim Takala
 Author URI:   https://luovadigital.com/
 Template:     generatepress
 Version:      0.1
*/

/* Set the main content area to a minimum of 65vh */
#main {
	min-height: 65vh;
}

/* removes hamburger icon background */
.mobile-menu-control-wrapper .menu-toggle, .mobile-menu-control-wrapper .menu-toggle:hover, .mobile-menu-control-wrapper .menu-toggle:focus, .has-inline-mobile-toggle #site-navigation.toggled {
    background-color: transparent;
}
/* hamburger icon size */
.inside-header > #mobile-menu-control-wrapper svg {
  width: 26px;
  height: 26px;
}

.wp-block-file a.wp-block-file__button {
  font-size: 1em;
  font-weight: 500;
}

.wp-block-file:not(.wp-element-button) {
  font-size: 1em;
  font-weight: 500;
}
	
body > #masthead {
  box-shadow: 2px 10px 18px 0px rgba(0, 0, 0, 0.03);
}

#generate-slideout-menu svg {
  width: 26px;
  height: 26px;
}


/* styling close button */
#generate-slideout-menu > div > button {
  	width: 100%;
  	max-width: 60px;
	margin-right:20px;
	margin-top:20px;
}

/* align close button to right */

body > #generate-slideout-menu > .inside-navigation {
  align-items: flex-start;
  justify-content: flex-end;
}


#menu-item-183 > a {
  margin-top: 120px;
}

.inside-navigation .slideout-menu > .menu-item > a {
  text-align: center;
}

/* off canvas 100% width */
#generate-slideout-menu {
   --gp-slideout-width: 100%;
}
@media (max-width: 768px) {
  #secondary-navigation > div {
  display: none;
  }

}

#content > #primary > #main .page-title {
  display: none;
}

.gb-query-loop-wrapper > .gb-query-loop-item .read-more {
  border-radius: 16px 16px 16px 16px;
}





body {
	background-color: var(--outside-container);
}

/* Site Wrapper to set overall site max width */
.site-wrapper {
	width: 100%;
	max-width: 1920px;
	background-color: var(--body);
} 

body {
	background-color: var(--outside-container);
}


@media (max-width: 1200px) and (min-width: 595px)   {
  .gb-grid-wrapper.kt-custom-columns-2 > .gb-grid-column {
    width: 50%; 

 }

}


/* HELPER CLASSES */

/* Standard Shadow(s) */

.shadow-standard {
	box-shadow: 0px 5px 16px -5px rgba(33, 33, 33, 0.2);
	transition: all .2s ease-in;
}

.shadow-standard:hover {
	box-shadow: 0px 8px 32px 0px rgba(33, 33, 33, 0.1);
}

/* Max Width(s) */

.max-width-1024 {
	max-width: 1024px;
}


.max-width-768 {
	max-width: 768px;
}

.max-width-640 {
	max-width: 640px;
}

.max-width-480 {
	max-width: 480px;
}

/* Margin Auto */

.margin-auto{
	margin-left: auto;
	margin-right: auto;
}

/* Position Properties */

.relative{
	position: relative;
}

.absolute{
	position:absolute;
	top: 0px;
	left: 0px;
}

.sticky{
	position: sticky;
	top: 24px;
}

/* Image Aspect Ratios */

.aspect-1-1 img{
    aspect-ratio: 1/1;
	object-fit: cover;
}

.aspect-3-2 img{
    aspect-ratio: 3/2;
	object-fit: cover;
}

.aspect-2-3 img{
    aspect-ratio: 2/3;
	object-fit: cover;
}

.aspect-4-3 img{
    aspect-ratio: 4/3;
	object-fit: cover;
}

.aspect-3-4 img{
    aspect-ratio: 3/4;
	object-fit: cover;
}

.aspect-16-9 img{
    aspect-ratio: 16/9;
	object-fit: cover;
}

.aspect-9-16 img{
    aspect-ratio: 9/16;
	object-fit: cover;
}


/* FLUENT FORMS STYLING To target individual forms replace .fluentform with your form id .fluent_form_# */

/* label style */
.fluentform .frm-fluent-form .ff-el-input--label {
	font-size: 15px;
	font-weight: 600;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.1em;
  }
  
  /* fluent forms field style */
  .fluentform .frm-fluent-form .ff-el-form-control {
	background-color: #fff;
	color: #000;
	border: 2px solid #000;
	border-radius: 0px;
	font-size: 17px;
	line-height: 1.7em;
	padding: 14px 24px;
  }
  
  /* fluent forms focus field style */
  .fluentform .frm-fluent-form .ff-el-form-control:focus {
	border: 2px solid #999;
	outline: none;
  }
  
  /* control space below fields */
  .fluentform .frm-fluent-form .ff-el-group {
	margin-bottom: 15px;
  }
  
  /* fluent forms placeholder text style */
  .fluentform .frm-fluent-form .ff-el-form-control::placeholder {
	color: #999;
	font-size: 17px;
  }
  
  /* placeholder focus text style */
  .fluentform .frm-fluent-form .ff-el-form-control:focus::placeholder {
	color: #000;
  }
  
  /* fluent forms button style */
  .fluentform .frm-fluent-form .ff-btn-submit {
	background-color: #000;
	color: #fff;
	opacity: 100%;
	border: 2px solid #000;
	border-radius: 0px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.7em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 14px 24px;
	transition: all 0.5s ease 0s;
  }
  
  /* fluent forms button hover style */
  .fluentform .frm-fluent-form .ff-btn-submit:hover {
	background-color: #fff;
	color: #000;
  }
  
  /* mobile full width button */
  @media (max-width: 768px) {
	.fluentform .frm-fluent-form .ff-btn-submit {
	  width: 100%;
	}
  }
  
  /* form error text style */
  .fluentform .ff-el-is-error .text-danger {
	font-size: 14px !important;
	color: #999;
  }
  
  /* success message style */
  .fluentform .ff-message-success {
	position: relative;
	border: none;
	box-shadow: none;
	font-size: 15px;
	font-weight: 600;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0px;
	margin-top: 20px;
  }
  

