body {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	color: #000;
}

.wow {
	visibility: hidden;
}

.overh {
	overflow: hidden;
}

*:focus {
	outline: none !important;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 700;
	line-height: 1.2em;
}

h1 { font-size: 32px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {

	h1 { font-size: 42px; }
	h2 { font-size: 36px; }
	h3 { font-size: 24px; }
	h4 { font-size: 20px; }
	h5 { font-size: 18px; }
	h6 { font-size: 16px; }
}

/* Framework */

.main {
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
}

.container{
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 992px) {
	.container {
		max-width: 1440px;
		padding: 0 70px;
	}
}

/* */
.section{
	position: relative;
	padding: 30px 0 40px;
}

@media screen and (min-width: 992px){
	.section{
		padding: 30px 0 60px;
	}
}


/**/
.bg-primary{
	background-color: #FE8D01 !important;
}

/* Buttons */

.btn{
	position: relative;
	border-radius: 15px;
	font-weight: 700;
}

.btn:focus{
	box-shadow: none !important;
}

.btn.btn-block{
	display: block;
	width: 100%;
}

.btn-primary{
	background: #FE8D01;
	border-color: #FE8D01;
	color: #000;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not([disabled]):not(.disabled):active{
	color: #FE8D01;
	background: #fff;
	border-color: #fff;
	box-shadow: none;
}


/* Header */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 120px;
	background: transparent;
	transition: 0.5s all;
	z-index: 999;
}

.header .container{
	position: relative;
	display: block;
}
.header .logo{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 30px 0;
	max-width: 315.5px;
}
.header.fixed{
	position: fixed;
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 9998;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

@media screen and (min-width: 992px){
	.header .logo{
		margin: 50px 0;
	}
}



.presentation {	
	min-height: 100dvh;
	display: flex;
	align-items: center;
	background:  #111 no-repeat center;
	background-size: cover;
	padding: 80px 0 50px 0;
}

.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.presentation .title, .presentation .items{
	position: relative;
	z-index: 2;
}

.presentation .title {
	margin-bottom: 100px;
}
.presentation .title h1{
	font-size: 16px;
	max-width: 550px;
	margin: 0 auto;
	font-weight: 400;
}

.presentation .logo{
	display: block;
	max-width: 379px;
}

/* Components > Socialmedia */

.socialmedia {
	display: inline-flex;
	gap: 8px;
}
.socialmedia li a{
	width: 33px;
	height: 33px;
	border-radius: 50%;
	background: transparent;
	color: var(--bs-white);
	border: solid 1px var(--bs-white);
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 20px;
}
.socialmedia li a:hover{
	color: var(--bs-white);
	border-color: var(--bs-black);
	background-color: var(--bs-black);
}

/* Structure > Footer */

.footer .widgets a:hover{
	text-decoration: underline;
}

.footer .widgets{
	padding: 30px 0;
	text-align: center;
}
.footer .widgets .title h3 {
	text-transform: none;
	font-size: 44px;
}
.footer .follow {
	padding: 15px 0;
}
.footer .follow .items{
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;	
}
.footer .follow .items h4{
	font-size: 24px;
	font-weight: 900;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 40px 0;
		text-align: left;
	}
	
}

