/*---------------------------

Layout.css

Dantas e Pereira
Author: Natan Miranda (natanmiranda@yahoo.com.br)
HTML, CSS, Bootstrap4, jQuery, Popper


Custom map index:
1. Reset css;
2. Default classess and custom styles;
3. Site structure;
4. Section pages

------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');
@import url('../plugins/slick/slick.css');
@import url('../plugins/slick/slick-theme.css');


@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');


/* ***** 1. reset css ***** */
body, html {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Roboto', sans-serif;
	font-size: .9rem;
}
h1, h2, h3, h4 {
	font-weight: bold;
	font-family: 'Cinzel', serif !important;
}
h4 {
	font-size: 1.2rem;
}
h5 {
	font-size: 1rem;
}
figure {
	margin-bottom: 0;
}
img {
	max-width: 100%;
	margin: 0 auto;
}
a {
	-webkit-transition: .1s;
    transition: .1s;
}
a:hover {
	text-decoration: none;
}
div {
	-webkit-transition: .3s;
    transition: .3s;
}



/* ***** 2. default classess and custom styles ***** */

	/* fonts and sizes */
	.font-signika {
		font-family: 'Signika', sans-serif !important;
	}
	.font-cinzel {
		font-family: 'Cinzel', serif !important;
	}

	.caps {
		text-transform: uppercase;
	}

	/* buttons */
	.btn-primary {
		background-color: #910a09;
		border: none;
		border-radius: 20px;
		padding: 0.475rem .85rem;
    	font-size: 1.1rem;
    	font-weight: bold;
	}
	.btn-primary:hover,
	.btn-primary:active {
		background-color: #ec9f4a;
	}
	.btn-primary .fa,
	.btn-primary .fab {
		font-weight: normal;
	}
	

	/* colors */
	.dantas-red {
		color: #910a09;
	}
	.bg-dantas-red {
		background-color: #910a09;
		color: #fff;
	}
	.dantas-light {
		color: #ec9f4a;
	}
	.bg-dantas-light {
		background-color: #ec9f4a;
		color: #fff;
	}
	.bg-white {
		color: #111;
	}
	.bg-black {
		background-color: #111;
		color: #fff;
	}
	.bg-black a,
	.bg-dantas-red a {
		color: #fff;
	}

	/* arrows */
	.slick-slider .slick-next:before,
	.slick-slider .slick-prev:before {
		color: #ec9f4a;
		font-size: 4rem;
	}
	.slick-slider .slick-next {
		right: 80px;
	}
	.slick-slider .slick-prev {
		left: 40px;
		z-index: 9;
	}


	/* gradient mask */
	.gradient-mask {
		position: relative;
	}
	.gradient-mask:before {
		display: block;
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: rgb(0,0,0);
		background: linear-gradient(0deg, rgba(0,0,0,.75) 35%, rgba(0,212,255,0) 100%);
	}
	.gradient-mask:hover:before {
		background: linear-gradient(0deg, rgba(0,0,0,.85) 35%, rgba(0,212,255,.15) 100%);
	}
	.gradient-mask figcaption {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 1rem;
		color: #fff;
	}
	.gradient-mask figcaption p,
	.gradient-mask .item figure {
		margin-bottom: 0;
	}

	/* box shadow */
	.box-shadow:before {
		display: block;
		content: '';
		position: absolute;
		left: 15px; right: 15px; top: 15px; bottom: 0;
		-webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.74);
		-moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.74);
		box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.55);
	}

	/* grid box */
	.flex-box-wrap {
		display: flex;
		flex-wrap: wrap;
	}
	.flex-box-wrap .box {
		flex-grow: 1;
		flex: 1 1 33%;
	}

	.box-icon {
		display: flex;
		align-items: center;
	}
	.box-icon .description {
		padding-left: 2rem;
	}
	.box-icon .icon-103 img {
		max-width: 103px;
	}

	/* zoom effect */
	.zoom {
		/*overflow: hidden;*/
		position: relative;
	}
	.zoom-flow {
		overflow: hidden;
	}
	.zoom img {
	  max-width: 100%;	  
	  -moz-transition: all 0.2s ease-in-out 0.2s;
	  -webkit-transition: all 0.2s ease-in-out 0.2s;
	  transition: all 0.2s ease-in-out 0.2s;
	}
	.zoom:hover img {
		-moz-transform: scale(1.1);
  		-webkit-transform: scale(1.1);
  		transform: scale(1.1);
	}
	.zoom p,
	.zoom h4 {
		transform: scale(1);
  		transition: all 0.3s ease-in-out 0.2s;
	}
	.zoom:hover p,
	.zoom:hover h4 {
		transform: scale(1.1);
 		transition: all 0.3s ease-in-out 0.1s;
	}

	/* Preloader */
	#preloader {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background-color: #fff;
	  z-index: 9999999;
	}

	.loader {
	  top: 50%;
	  width: 50px;
	  height: 50px;
	  border-radius: 100%;
	  position: relative;
	  margin: 0 auto;
	}

	#loader-1:before, #loader-1:after {
	  content: "";
	  position: absolute;
	  top: -10px;
	  left: -10px;
	  width: 100%;
	  height: 100%;
	  border-radius: 100%;
	  border: 7px solid transparent;
	  border-top-color: #910a09;
	}

	#loader-1:before {
	  z-index: 100;
	  animation: spin 2s infinite;
	}

	#loader-1:after {
	  border: 7px solid #fafafa;
	}
	#loader, #loader1 {
	  display: none;
	}

	@keyframes spin {
	  0% {
	    -webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	    -o-transform: rotate(0deg);
	    transform: rotate(0deg);
	  }
	  100% {
	    -webkit-transform: rotate(360deg);
	    -ms-transform: rotate(360deg);
	    -o-transform: rotate(360deg);
	    transform: rotate(360deg);
	  }
	}


/* ***** 3. site structure ***** */
	
	/* navbar */
	.navbar {
		padding: 0 !important;
	}
	.navbar .nav-link {
		font-size: 1.1rem;
		font-weight: 600;
		color: #fff;
		letter-spacing: -1px;
		text-transform: uppercase;
		text-align: center;
		display: table;
		height: 100%;
		/*border-bottom: 3px solid #fff;*/
		position: relative;
	}
	.navbar .nav-link:hover,
	.navbar .social-icons a:hover {
		color: #ec9f4a;
	}
	.navbar .nav-link.active {
		/*border-bottom: 3px solid #ec9f4a;*/
	}
	.navbar .nav-item.active .nav-link:before {
		display: block;
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: -1px;
		height: 5px;
		background-color: #ec9f4a;
	}
	.navbar .nav-link span {
		display: table-cell;
		vertical-align: middle;
	}
	.navbar .nav-link i {
		display: block;
	}

	.navbar, .navbar-nav {
		width: 100%;
		height: 100%;
	}
	.navbar-nav {
		justify-content: space-between;
		align-items: stretch;
	}
	.navbar .social-icons {
		display: flex;
		margin-left: 1rem;
	}
	.navbar .social-icons a {
		display: inline-block;
		padding: .5rem;
		font-size: 1.5rem;
	}

	.main-menu .navbar-brand {
		/* animation magic */
	   -webkit-transition: all 0.4s ease-in-out;
	   -moz-transition: all 0.4s ease-in-out ;
	   -ms-transition: all 0.4s ease-in-out ;
	   -o-transition: all 0.4s ease-in-out ;
	   transition: all 0.4s ease-in-out ;
	}
	.main-menu .navbar-brand.shrink img { 
		max-width: 200px; 
		-moz-transition: all .3s ease-in-out; 
		-o-transition: all .3s ease-in-out; 
		-webkit-transition: all .3s ease-in-out; 
		transition: all .3s ease-in-out; 
	}
	.main-menu.alpha {
		background-color: #910a09e0;
	}

	/* site-slider */
	.slider-topbar {
		height: 142px;
	}
	.site-slider {
		width: 100%;
		/*height: 640px;
		background-image: url(../images/bg-home.jpg);
		background-repeat: no-repeat;*/
		background-size: cover;
		background-position: bottom center;
		display: flex;
		align-items: center;
		position: relative;
	}
	.site-slider .container-fluid {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.site-slider .item img {
		display: block;
		width: 100%;
	}
	.site-slider .slider-layer {
		position: absolute;
		top: 0;
		left: 0;
		right: 50%;
		bottom: 0;
		background-image: url(../images/slider-layer.png);
		background-repeat: no-repeat;
		background-size: contain;
	}
	.site-slider .slider-body h2 {
		color: #fff;
	}


	/* site-content */
	.site-content {
		position: relative;
	}

	



/* ***** 4. sections ***** */

	.section {
		position: relative;
	}
	/*.section-offset {
		padding-top: 142px;
	}*/
	/* section about */
	.section-about {
		background-image: url(../images/bg-about.jpg);
		background-repeat: no-repeat;
		background-position: 70px 0;
		background-size: cover;
	}
	.section-about .section-layer {
		position: absolute;
		top: 0;
		left: 50%;
		right: 0;
		bottom: 0;
		background-image: url(../images/statue.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: top right;
	}	

	/* section values */
	.section-values {
		background-image: url(../images/bg-values.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: bottom center;
		background-attachment: fixed; 
		padding: 7rem 0;
	}
	.section-values p {
		color: #fff;
	}
	.section-values .lines:before {
		display: block;
		content: '';
		width: 1px;
		height: 100%;
		position: absolute;
		left: 0;
		background-color: #fff;
	}	

	/* section services */
	.section-services {
		background-image: url(../images/bg-services.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: top center;
	}
	.section-services p {
		color: #fff;
	}
	
	/* section areas */
	.section-areas {
		background-image: url(../images/bg-address.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: top center;
		background-attachment: fixed;
		padding: 7rem 0;
	}
	.section-areas ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.section-areas p {
		color: #fff;
	}
	.section-areas .lines:before {
		display: block;
		content: '';
		width: 1px;
		height: 100%;
		position: absolute;
		left: 0;
		background-color: #fff;
	}	

	/* section courses */
	.section-courses {
		background-image: url(../images/bg-courses.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;		
	}
	.section-courses .padding-box {
		padding: 7rem 0;
	}
	.section-courses h2 {
		color: #fff;
	}
	.section-courses .form-newsletter {
		background-color: #910a09e0;
	}

	/* section contact */
	.section-contact {
		background-image: url(../images/bg-address.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		color: #fff;	
	}
	.section-mapframe iframe {
		width: 100%;
		margin-bottom: 0;
	}
	


