/*
Theme Name: Te Lo Monto
Theme URI: 
Author: PR3SET
Author URI: https://pr3set.com
Description: 
Requires at least: 6.0
Tested up to: 6.4.3
Requires PHP: 5.7
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: telomonto
Tags: blog, news, portfolio, one-column, wide-blocks, accessibility-ready, block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, sticky-post, style-variations, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

a.pr3set-link, .pr3set-link a {
	font-family: "Bruno Ace" !important;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.d-none {
	display: none;
}

.d-flex {
    display: flex!important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999999;
}

/* body.admin-bar .fixed-top {
	top: 32px !important;
} */

body:has(.fixed-top) {
	margin-top: 67px;
}
  
.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.align-items-center {
    align-items: center!important;
}

.justify-content-center {
    justify-content: center!important;
}

@media (max-width: 575px) {
    .d-xs-none {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .d-sm-none {
        display: none !important;
    }

	.align-items-sm-center {
		align-items: center!important;
	}
	
    .justify-content-sm-center {
        justify-content: center !important;
    }
	
	.text-align-sm-center {
		text-align: center !important;
	}
}

@media (max-width: 991px) {
    .d-md-none {
        display: none !important;
    }
}

@media (max-width: 1999px) {

}

@media (max-width: 1399px) {

}

@media (min-width: 1400px) {

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--wp--preset--color--accent-2);
	width: 56px;
	height: 56px;
	border-radius: 6px;
	transition: all 0.4s;
	text-decoration: none;
}

.back-to-top i {
	font-size: 18px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	filter: brightness(115%);
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}
  
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	top: 0;
	z-index: 999999;
	transition: all 0.5s;
}

#header.header-transparent {
	background: transparent;
}

#header.header-scrolled {
	top: 0;
}

#header .logo h1 {
	font-size: 28px;
	margin: 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
}

#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 40px;
}

#header.header-scrolled .d-none {
	display: block !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  width: inherit !important;
}

.navbar li {
  position: relative;
  padding-right: 0 !important;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
/*   justify-content: space-between; */
  padding: 10px 0 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: none !important;
  line-height: 0 !important;
  transition: 0.5s;
  margin-block-start: 0;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 30px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0 !important;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile li {
	display: list-item !important;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39 !important;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffb03b !important;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	margin-top: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
/* .gallery {
    padding-bottom: 0;
} */

/* .gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
} */

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Mautic Form
--------------------------------------------------------------*/
.mauticform-selectbox, .mauticform-input, .mauticform-textarea {
	padding: .375rem .75rem;
	font-family: "Lato" !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	border: 1px solid #dee2e6;
	border-radius: .375rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.mauticform-textarea {
	height: 10em;
}

.mauticform-selectbox:focus, .mauticform-input:focus, .mauticform-textarea:focus {
    border-color: #8cdece;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(24,188,156,.25);
}

.mauticform-button-wrapper .mauticform-button {
	background-color: var(--wp--preset--color--accent-2);
	color: #fff;
	padding: 1rem 1.75rem !important;
	font-family: "Lato" !important;
	font-size: 1.25rem !important;
	font-weight: 400 !important;
}

.mauticform-button-wrapper .mauticform-button:hover {
	color: #000;
}

