/*!
Theme Name: veramina
Theme URI: http://underscores.me/
Author: Chempi_one
Author URI: http://bigwayup.com
Description: Created by Bigwayap
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: veramina
Tags: 
*/

/* Animated */
.animate__animated { 
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity:0;
		-webkit-transform:translate3d(0,2000px,0);
		transform:translate3d(0,2000px,0)
	}
	to {
		opacity:1;
		-webkit-transform:translateZ(0);
		transform:translateZ(0)
	}
}
@keyframes fadeInUpBig { 
	0% {
		opacity:0;
		-webkit-transform:translate3d(0,2000px,0);
		transform:translate3d(0,2000px,0)
	}
	to { opacity:1;
		-webkit-transform:translateZ(0);
		transform:translateZ(0)
	}
}

.animate__fadeInUpBig {
	-webkit-animation-name:fadeInUpBig;
	animation-name:fadeInUpBig
}

/* Typography
--------------------------------------------- */
body {
	margin: 0;
}

body,
button,
input,
select,
optgroup,
textarea {
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
	padding: 0;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
  
body {
    font-family: 'AvenirLTProLight', sans-serif;
    color: #333333;
}
  
h1, h2, h3, h4, h5, h6 {
    font-family: 'GaramondPremierProLightDisplay', sans-serif;
}

.header {
	padding: 5px 0px;
}

.header__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
}

.header__logo img {
	max-width: 100px;
	width: 100px;
	height: 100px;
}

.header__nav {
	display: flex;
	flex-grow: 1;
	justify-content: center;
}

.header__menu {
	display: flex;
}

.header__menu li a {
	font-size: 18px;
	font-weight: 400;
	color: #333333;
	text-decoration: none;
	padding: 13px 20px;
	transition: .4s;
}

.header__menu li a:hover {
	color:#cba25d;
}

.header__social {
	display: flex;
}

.header__social li {
	margin-left: 18px;
}

.header__social li:first-child {
	margin-left: 0;
}

.header__social svg {
	color: #333333;
	fill: #333333;
	width: 21px;
	transition: .4s;
}

.header__social svg:hover {
	fill: #cba25d;
}

.swiper {
	width: 100%;
	height: 600px;
}

.swiper-slide {
	position: relative;
}

.swiper-slide img {
	display: block;
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide::before {
	content: '';
	position: absolute;
	display: block;
	background-image: url("assets/images/logo-veramina.png");
	background-repeat: no-repeat;
	background-size: cover;
	width: 1062px;
	height: 192px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 100;
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 10px;
}

.n2-ss-slider .n2-ss-item-image-content {
    overflow: hidden;
    line-height: 0;
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (max-width: 1200px) {

}

@media (max-width: 992px) {
	.header__nav {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: left .3s ease-in-out 0s;
        -o-transition: left .3s ease-in-out 0s;
        transition: left .3s ease-in-out 0s;
        background: -o-radial-gradient(#00000096, #000);
        background: radial-gradient(#00000096, #000);
        overflow: auto;
		z-index: 101;
    }

	.header__nav.active {
        top: 0;
    }

	.header__menu {
        display: block;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 10px;
        background-size: cover !important;
    }

	.header__menu li a {
        display: block;
		color: #fff;
        font-size: 20px;
        font-weight: 600;
    }

	.header__menu li {
        padding: 0 0 25px 0;
    }

	.header__burger {
		display: block;
		position: relative;
		width: 30px;
		height: 20px;
		z-index: 103;
		cursor: pointer;
	}
	
	.header__burger span {
		position: absolute;
		/* background-color: #333333; */
		background: rgb(154,106,41);
		background: linear-gradient(90deg, rgba(154,106,41,1) 0%, rgba(253,227,173,1) 49%, rgba(194,142,24,1) 100%);
		width: 30px;
		height: 2px;
		top: 9px;
		right: 0;
		-webkit-transition: all .3s ease 0s;
		-o-transition: all .3s ease 0s;
		transition: all .3s ease 0s;
	}
	
	.header__burger:after, 
	.header__burger:before {
		content: '';
		/* background-color: #333333; */
		background: rgb(154,106,41);
		background: linear-gradient(90deg, rgba(154,106,41,1) 0%, rgba(253,227,173,1) 49%, rgba(194,142,24,1) 100%);
		position: absolute;
		width: 30px;
		height: 2px;
		right: 0;
		-webkit-transition: all .3s ease 0s;
		-o-transition: all .3s ease 0s;
		transition: all .3s ease 0s;
	}
	
	.header__burger:before {
		top: 0;
	}
	
	.header__burger:after {
		bottom: 0;
	}
	
	.header__burger.active span {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}
	
	.header__burger.active:before {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 9px;
	}
	
	.header__burger.active:after {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: 9px;
	}

	.swiper-slide::before {
		width: 768px;
		height: 138px;
	}
	.swiper {
		width: 100%;
		height: 500px;
	}
	section.slider {
		padding: 125px 20px 20px 20px;
		background: rgb(50,62,72);
		background: linear-gradient(0deg, rgba(50,62,72,1) 0%, rgba(81,86,91,1) 49%, rgba(28,36,43,1) 100%);
		margin-top: -125px;
	}
	.swiper {
		border-radius: 33px;
	}
	.container {
		margin: 0 20px;
	}
	.header {
		height: 100px;
		padding: 5px 0px 20px;
	}
	.header__wrap {

	}
	.header__burger, 
	.header__logo {
		flex-basis: 60px;
	}
	.header__logo {
		order: 1;
	}
	.header__burger {
		order: 3;
	}
	.header__social {
		order: 0;
	}
	.header__logo img {
		max-width: 90px;
	}
	.header__social svg {
		color: #cba25d;
		fill: #cba25d;
	}
}

@media (max-width: 768px) {
	.swiper-slide::before {
		width: 520px;
		height: 93px;
	}
	.swiper {
		width: 100%;
		height: 400px;
	}
}

@media (max-width: 580px) {
	.swiper-slide::before {
		width: 320px;
        height: 56px;
	}
	.swiper {
		width: 100%;
		height: 400px;
	}
}

@media (max-width: 400px) {
	.swiper-slide::before {
        width: 280px;
        height: 50px;
    }
}



