/*
Theme Name: Maker Cosméticos
Theme URI: maker.com.br
Author: Marcos Reis
Author URI: maker.com.br
Description: Um tema WordPress personalizado.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: MAKER_COSMETICOS
*/
@import url(css/fonts.css);

@import url(css/header.css);
@import url(css/home.css);
@import url(css/footer.css);

@import url(css/blog.css);
@import url(css/swiper.css);

/* Paginas Internas */
@import url(css/internas/sobre.css);
@import url(css/internas/solucoes.css);
@import url(css/internas/estrutura-industrial.css);
@import url(css/internas/diferenciais.css);
@import url(css/internas/portfolio.css);
@import url(css/internas/trabalhe-conosco.css);



h1,h2,h3,h4,h5,h6,p{
	margin: 0;
}

:root {
  --orange: #ce6b03;
  --red: #d22e57;
}

*{
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;	
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
  line-height: 1.25;
}

.text-shadow{
  text-shadow: 0px 0px 6px rgba(0,0,0,0.65);
}

.btn:focus, button:focus, .navbar-toggler:focus, .navbar-toggler:hover, input:focus, textarea, select, video{
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    outline: none;
    text-decoration: none;
}

a{
	text-decoration: none;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #2e1a47; 
}
::-webkit-scrollbar-thumb:hover {
  background: darkgray; 
}

html{
	scroll-behavior: smooth !important;
}

body, footer, section{
	position: relative !important;
	overflow-x: hidden !important;	
}


.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff9b4e;
  z-index: 9999999999999;
}

.content-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content-loader img {
  width: 240px;
  animation: resize 1.5s ease-in-out infinite;
}

@keyframes resize {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
	
