/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400;1,700&display=swap");


html,
body {
	min-height: 100%;
	font-family: "Arimo", sans-serif;
	-webkit-font-smoothing: antialiased;
	/*background: #fff url(../img/blog-single/texture.jpg) repeat;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #222222;
	font-family: "Arimo", sans-serif;
	font-weight: 700;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
	line-height: 1.4;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	color: #7E858B;
	/*color: #433a3b;*/
	line-height: 1.8;
	background-color: rgba(255, 255, 255, 0.5);
	/*font-family: ff-tisa-web-pro,Georgia,Times,"Times New Roman",serif;*/
	font-size: 18px;
	text-align: justify;
}

img {
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

.book {
	font-family: Helvetica,Arial,sans-serif;
	background: #eeeddf url(../img/blog-single/texture.jpg) repeat;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
   Helper CSS
 -----------------------*/

.section-title {
	text-align: center;
	margin-bottom: 55px;
}

.section-title img {
	margin-bottom: 15px;
}

.section-title h2 {
	font-weight: 400;
	font-size: 38px;
	text-transform: uppercase;
}

.section-title p {
	padding-top: 15px;
	margin-bottom: 0;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

.site-btn {
	display: inline-block;
	font-size: 16px;
	padding: 16px 15px;
	min-width: 180px;
	color: #fff;
	background: #8DB952;
	line-height: 1;
	text-align: center;
	font-weight: 700;
	border: none;
	border-radius: 2px;
}

.site-btn i {
	font-size: 24px;
	position: relative;
	top: 5px;
	margin-left: 4px;
}

.site-btn:hover {
	color: #fff;
}

.section__title {
	text-align: center;
	padding-bottom: 40px;
	margin-bottom: 45px;
	position: relative;
}

.section__title:after {
	position: absolute;
	content: "";
	width: 60px;
	height: 4px;
	left: calc(50% - 30px);
	bottom: 0;
	background: #8DB952;
}

.section__title h2 {
	margin-bottom: 0;
	text-transform: uppercase;
}

@media (max-width: 576px) {
	.section__title h2 {
		font-size: 24px;
	}
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ffffff;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 34px;
	border: none;
	border-bottom: 2px solid #ededed;
	background: 0 0;
	color: #999;
}

@media (max-width: 576px) {
	.search-model-form input {
		width: 100%;
		font-size: 24px;
	}
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 39px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.pt83 {
	padding-top: 83px;
}

/*---------------------
   Header section
 -----------------------*/

.header {
	padding: 0 45px 3px;
	margin-bottom: 63px;
	position: relative; 
	z-index: 30;
}

@media (max-width: 576px) {
	.header {
		padding: 40px 0 0;
	}
}

@media (max-width: 576px) {
	.header__social {
		display: none;
	}
}

.header__social a,
.header__switches a {
	display: inline-block;
	color: #222222;
	padding-top: 5px;
	margin-right: 15px;
	font-size: 16px;
}

.header__social a:last-child,
.header__switches a:last-child {
	margin-right: 0;
}

.header__social a.nav-switch,
.header__switches a.nav-switch {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e1e1e1;
	text-align: center;
	padding-top: 9px;
	margin-top: -9px;
}

@media (max-width: 576px) {
	.header__social a.nav-switch,
	.header__switches a.nav-switch {
		display: inline-block;
	}
}

.header__switches {
	text-align: right;
}

@media (max-width: 576px) {
	.header__switches {
		text-align: center;
		padding-top: 20px;
	}
}

/*----------
   Menu
 ---------*/

@media (min-width: 950px) {
	.fixed__name {
		visibility: visible;
		position: absolute;
	}
}

@media (max-width: 949px) {
	.fixed__name {
		visibility: hidden;
		position: absolute;
	}
}


.fixed__name.hide {
	visibility: hidden;
	position: absolute;
}

@media (min-width: 950px) {
	.main__menu {
		position:absolute; 
		top: 120px;
		right: 0;
		text-align: center;
		width: 100%;
		z-index: 30;
	}
	.main__menu.fixed{
		position:fixed; 
		top:0;
	}
}

@media (max-width: 949px) {
	.main__menu {
		position:absolute;
		text-align: center;
		z-index: 30;
		width: 100%;
		right: 0;
	}
}

@media (max-width: 576px) {
	.main__menu .nav__menu {
		display: none;
	}
}

.main__menu .nav__menu>li {
	display: inline-block;
	position: relative;
	padding-bottom: 16px;
	padding: 0.7%;
	border: 2px;
	border-bottom: 0;
	border-color: black;
}

.main__menu .nav__menu>li:last-child a {
	margin-right: 0;
}

.main__menu .nav__menu>li>a {
	position: relative;
	font-size: 16px;
	color: #6c757d;
	font-weight: 700;
	padding: 5px 2px;
	margin-right: 40px;
	text-transform: uppercase;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.main__menu .nav__menu>li>a {
		margin-right: 20px;
	}
}

/*.main__menu .nav__menu>li>a:after {
	position: absolute;
	content: "";
	width: 0;
	height: 18px;
	left: 0;
	bottom: 5px;
	background: #f8f9fa;
	z-index: -1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}*/

.main__menu .nav__menu>li>a.menu--active {
	color: #222222;
}

.main__menu .nav__menu>li>a.menu--active:after {
	width: 100%;
}

.main__menu .nav__menu>li:hover a {
	color: #222222;
}

.main__menu .nav__menu>li:hover a:after {
	width: 100%;
}

.main__menu .nav__menu>li:hover .sub__menu {
	top: 100%;
	opacity: 1;
	visibility: visible;
	margin-top: 15px;
}

.main__menu .nav__menu>li .sub__menu {
	position: absolute;
	text-align: left;
	padding: 10px 0;
	width: 170px;
	left: 0;
	top: 100%;
	margin-top: 50px;
	-webkit-box-shadow: 0 9px 50px rgba(0, 0, 0, 0.1);
	box-shadow: 0 9px 50px rgba(0, 0, 0, 0.1);
	background: #fff;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.main__menu .nav__menu>li .sub__menu:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 25px;
	left: 0;
	top: -25px;
}

.main__menu .nav__menu>li .sub__menu>li {
	display: block;
}

.main__menu .nav__menu>li .sub__menu>li>a {
	display: block;
	display: block;
	padding: 5px 15px;
	color: #7E858B;
	text-transform: none;
	margin: 0;
	font-size: 14px;
	font-weight: 700;
}

/*.main__menu .nav__menu>li .sub__menu>li>a:hover {
	color: #222222;
}*/

.main__menu .nav__menu>li .sub__menu>li>a:after {
	display: none;
}



.slicknav_menu {
	background: #f7f7f7;
	padding: 0;
	margin-bottom: 30px;
	text-align: left;
	display: none;
}

@media (max-width: 576px) {
	.slicknav_menu {
		display: block;
	}
}

.slicknav_btn {
	display: none;
}

.slicknav_nav ul {
	margin: 0;
}

.slicknav_nav .slicknav_row:hover {
	border-radius: 0;
	background: transparent;
	color: #222222;
}

.slicknav_nav a:hover {
	border-radius: 0;
	background: transparent;
	color: #222222;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
	padding: 11px 25px;
	margin: 0;
	color: #222222;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #e9e9e9;
}

.slicknav_nav .slicknav_item a {
	border-bottom: none;
}

/*---------------------
   Hero section
 -----------------------*/

.hero__section {
	padding-top: 120px;
	margin-bottom: 90px;
}

@media (max-width: 576px) {
	.hero__section {
		padding-top: 30px;
	}
}

.slide-item {
	padding: 0 5px;
	outline: none;
	cursor: pointer;
}

.slick-center.slide-item img {
	padding: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.hero-slider .slick-track {
	-webkit-transition: all 0.1s;
	-o-transition: all 0.1s;
	transition: all 0.1s;
}

.slide-item img {
	height: 570px;
	padding: 65px 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

@media only screen and (min-width: 1100px) and (max-width: 1400px) {
	.slide-item img {
		height: 350px;
		padding: 65px 0;
		-webkit-transition: 0.4s;
		-o-transition: 0.4s;
		transition: 0.4s;
	}
}

@media only screen and (min-width: 950px) and (max-width: 1099px) {
	.slide-item img {
		height: 300px;
		padding: 65px 0;
		-webkit-transition: 0.4s;
		-o-transition: 0.4s;
		transition: 0.4s;
	}
}

@media only screen and (min-width: 521px) and (max-width: 949px) {
	.slide-item img {
		height: 500px;
		padding: 65px 0;
		-webkit-transition: 0.4s;
		-o-transition: 0.4s;
		transition: 0.4s;
	}
}

@media (max-width: 520px) {
	.slide-item img {
		padding: 0;
		width: 350px;
		height: 350px;
	}
}

.hero-text-slider {
	text-align: center;
	padding-top: 50px;
	max-width: 800px;
	margin: 0 auto;
}

/*---------------------
   Footer section
 -----------------------*/

.footer__copyright__text {
	text-align: center;
	padding-bottom: 5px;
}

.footer__copyright__text p {
	font-size: 16px;
}

.footer__copyright__text i {
	color: #d32a2a;
}

.footer__copyright__text a {
	color: #7E858B;
	text-decoration: underline;
}

.footer__copyright__text a:hover {
	color: #8DB952;
}

/*------------------
   About page
 ------------------*/

.about__page {
	padding: 0px 60px 150px;
	margin-top: 30px;
}

@media (max-width: 576px) {
	.about__page {
		padding: 30px 0 150px;
	}
}

.about__title {
	display: inline-block;
	margin-bottom: 50px;
	position: relative;
}

.about__title:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 6px;
	left: 0;
	bottom: 8px;
	background: #8DB952;
	opacity: 0.5;
	z-index: -1;
}

.about__text {
	padding-bottom: 50px;
}

@media only screen and (max-width: 576px) {
	.about__text p {
		text-align: left;
	}
}

.about__text img {
	padding-top: 20px;
}

.about__meta {
	overflow: hidden;
	margin-bottom: 35px;
}

.about__meta img {
	float: left;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-right: 15px;
	padding-top: 0;
}

.gdd .about__meta {
	display: flex; 
	justify-content: center; 
	margin-bottom: 10px;
}

.gdd .about__meta img {
	width: 25em;
	height: auto;
	border-radius: 0%;
	width: auto; 
	margin-right: 0;
}

.gdd h3 {
	margin-bottom: 30px;
	margin-top: 40px;
}

.gdd h4 {
	margin-top: 30px;
}

.gdd .indent {
	margin-left: 30px;
}

.gdd .summary p {
	margin-bottom: 0px;
}

.gdd .summary p:hover {
	color: #222222;
}

.about__meta__info {
	overflow: hidden;
	padding-top: 25px;
}

.about__meta__info h5 {
	margin-bottom: 5px;
}

.about__meta__info p {
	text-transform: uppercase;
	font-size: 12px;
	color: #8DB952;
}

.experience__item {
	padding-top: 15px;
	margin-bottom: 20px;
}

.experience__item h4 {
	font-size: 20px;
	margin-bottom: 20px;
}

.skills__text {
	padding-bottom: 50px;
}

.skills__text p {
	margin-bottom: 40px;
}

.single-progress-item {
	margin-bottom: 30px;
}

.single-progress-item h6 {
	margin-bottom: 10px;
}

.progress-bar-style {
	height: 6px;
	background: #E8E8E8;
}

.progress-bar-style .bar-inner {
	height: 100%;
	background: #8DB952;
}

/*-------------------
   Gallery Page
 -------------------*/

.gallery__page {
	padding: 0px 15px 65px;
}

@media (max-width: 576px) {
	.gallery__page {
		padding: 30px 15px 65px;
	}
	.gallery__page h1 {
		font-size: 40px;
	}
}

.gallery__page h1 {
	color:black;
	margin: 30px;
	font-size: 50px;
}

.gallery__warp {
	max-width: 1570px;
	margin: 0 auto;
}

.gallery__item {
	display: block;
	margin-bottom: 30px;
}

.gallery__item img {
	min-width: 100%;
}

.fr-position-outside {
	left: 0;
	top: 0;
	right: auto;
	bottom: auto;
}

.fr-position-text {
	color: #fff;
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-outside .fr-close:hover .fr-close-background {
	background-color: transparent;
}

.fr-thumbnail-active {
	border: 2px solid #8DB952;
}

/*----------------
   Blog Page
 ----------------*/

.blog__page {
	padding: 0 0 55px;
}

@media (max-width: 576px) {
	.blog__page {
		padding: 30px 0 55px;
	}
}

.blog__warp {
	max-width: 1570px;
	padding: 0 15px;
	margin: 0 auto;
}

.blog__item {
	height: 370px;
	position: relative;
	margin-bottom: 30px;
	background-position: center;
}

.blog__item.blog__item--long {
	height: 770px;
}

.blog__item::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(43%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.49)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.49) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, rgba(0, 0, 0, 0.49) 100%);
}

@media (max-width: 576px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.blog__item h3 {
		font-size: 22px;
	}

	.blog__page h1 {
		font-size: 40px;
	}
}

.blog__content {
	position: absolute;
	bottom: 30px;
	padding: 0 30px;
	z-index: 2;
}

.blog__page h1 {
	color:black;
	margin: 30px;
	font-size: 50px;
}

.blog__content h4 {
	font-size: 22px;
}

.blog__content h4 a {
	color: #fff;
}

.blog__date {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

/*-------------------
   Blog Single Page
 --------------------*/

.blog__slider {
	padding: 70px 0 60px;
}

@media (max-width: 576px) {
	.blog__slider {
		padding: 30px 0 60px;
	}
}

.blog__slider .slick-track {
	margin-left: 380px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.blog__slider .slick-track {
		margin-left: 250px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 576px) {
	.blog__slider .slick-track {
		margin-left: 0;
	}
}

.blog__slider__item {
	outline: none;
	padding: 0 3px;
}

.blog__container {
	max-width: 1000px;
	padding: 0 15px;
	margin: 0 auto 30px;
}

@media only screen and (max-width: 576px) {
	.blog__container p {
		text-align: left;
	}
}

.gddlarge {
	max-width: 1600px;
}

.blog__container .intro {
	margin-bottom: 1.5rem;
}

.blog__container .new {
	margin-top: 1.5rem;
}

.blog__container h4 {
	font-size: 22px;
	margin-bottom: 20px;
}

.blog__header {
	text-align: center;
}

.blog__cata {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 13px;
	border-radius: 2px;
	color: #fff;
	background: #8DB952;
	margin-bottom: 20px;
}

.blog__single__page {
	margin-top: 30px;
}

.blog__single__title {
	font-size: 44px;
	margin-bottom: 10px;
	line-height: 1.2;
}

.blog__metas {
	margin-bottom: 30px;
}

.blog__metas .blog__meta {
	position: relative;
	display: inline-block;
	margin-right: 18px;
	margin-bottom: 5px;
	padding-right: 20px;
	font-size: 14px;
	color: #7E858B;
}

.blog__metas .blog__meta:after {
	position: absolute;
	content: "|";
	font-size: 14px;
	right: 0;
	top: 0;
	color: #7E858B;
}

.blog__metas .blog__meta:last-child {
	margin-right: 0;
	padding-right: 0;
}

.blog__metas .blog__meta:last-child:after {
	display: none;
}

.blog__article blockquote {
	max-width: 1070px;
	margin: 35px auto;
	padding: 30px 45px 30px;
	background-color: #EAEFE5;
	background-image: url("../img/blog-single/quote.png");
	background-repeat: no-repeat;
	background-position: right 60px bottom -10px;
}

.blog__article blockquote p {
	color: #363636;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 25px;
	background-color: rgba(0, 0, 0, 0.0);
}

.blog__article blockquote h4 {
	font-size: 16px;
	margin-bottom: 10px;
}

.blog__article blockquote h5 {
	font-size: 14px;
	text-transform: uppercase;
	color: #8DB952;
	letter-spacing: 1px;
}

.blog__banner {
	max-width: 1170px;
	margin: 0 auto;
}

.blog__banner img {
	min-width: 100%;
}

.post__footer {
	border-top: 1px solid #E8E8E8;
	padding-top: 30px;
	margin-bottom: 70px;
}

.post__tags a {
	display: inline-block;
	font-family: "Raleway", sans-serif;
	color: #7E858B;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 21px;
	margin-bottom: 5px;
	margin-right: 2px;
	background-color: #F3F3F3;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.post__tags a:hover {
	background: #8DB952;
	color: #fff;
}

.post__share {
	text-align: right;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 576px) {
	.post__share {
		text-align: left;
		padding-top: 35px;
	}
}

.post__share span {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
}

.post__share a {
	display: inline-block;
	font-size: 16px;
	color: #7E858B;
	margin-left: 30px;
}

.post__share a:first-child {
	margin-left: 0;
}

.comment__area {
	padding-bottom: 100px;
}

.comment__area h2 {
	margin-bottom: 40px;
}

.comment__form input,
.comment__form textarea {
	width: 100%;
	height: 50px;
	font-size: 16px;
	padding: 15px 20px;
	margin-bottom: 26px;
	color: #222222;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.comment__form input:focus,
.comment__form textarea:focus {
	border: 1px solid #8DB952;
}

.comment__form textarea {
	height: 110px;
	resize: none;
	margin-bottom: 50px;
}

.blog__details__comment {
	border-bottom: 1px solid #EBEBEB;
	padding-bottom: 30px;
}

.blog__details__comment h4 {
	color: #222222;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.recent__post {
	padding: 75px 15px 60px;
	border-top: 1px solid #E8E8E8;
}

.recent__post h2 {
	margin-bottom: 65px;
}

.recent__post .blog__item {
	background-position: center;
}

/*----------------
   Contact Page
 ----------------*/

.contact__warp {
	max-width: 802px;
	padding: 170px 15px 130px;
	margin: 0 auto;
}

@media (max-width: 576px) {
	.contact__warp {
		padding: 30px 15px 130px;
	}
}

.contact__social {
	padding-top: 20px;
	margin-bottom: 40px;
}

.contact__social .bubble {
	display: inline-block;
	text-align: center;
	width: 40px;
	height: 40px;
	padding-top: 8px;
	margin-right: 6px;
	color: #222222;
	border-radius: 50%;
	background: #E8E8E8;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	float: left;
}

.contact__social .bubble:hover {
	background: #8DB952;
	color: #ffffff;
}

.hoverlink p:hover {
	color:#8DB952;
}

.hoverlink:hover {
	color:#8DB952;
}

.contact__social p {
	float: left; 
	vertical-align: middle; 
	padding-top: 4px; 
	margin-bottom: 0;
}

.contact__text p {
	font-size: 18px;
	color: #222222;
}

.contact__form {
	padding-top: 20px;
}

.contact__form input,
.contact__form textarea {
	width: 100%;
	height: 50px;
	font-size: 16px;
	padding: 15px 20px;
	margin-bottom: 26px;
	color: #222222;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__form input:focus,
.contact__form textarea:focus {
	border: 1px solid #8DB952;
}

.contact__form textarea {
	height: 110px;
	resize: none;
	margin-bottom: 50px;
}

/*----------------
   	   Image
 ----------------*/

.textinimage {
	position: relative;
}

.textinimage .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #008CBA;
}

.textinimage:hover .overlay {
  opacity: 1;
}

.textinimage p {
  color: white;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: transparent;
}

@media only screen and (min-width: 991px) and (max-width: 1136px), (min-width: 767px) and (max-width: 900px), (min-width: 576px) and (max-width: 600px), (max-width: 300px) {
	.textinimage p {
		font-size: 16px;
	}
}

/*----------------
   	   Music
 ----------------*/

.blog__page .musictitle {
	color:black;
	margin: 10px;
}

.music {
	background-size: contain; 
	width: 100%; 
	height: 100%; 
	display: flex; 
	align-items: center; 
	justify-content: center;
	cursor: pointer;
}

@media only screen and (max-width: 575px) {
	.music {
		background-image: none;
	}
}

/*----------------
   	   Resume
 ----------------*/

.resume__container {
 	display: flex; 
 	flex-wrap: wrap; 
 	align-items: center; 
 	justify-content: center;
}

.resume__box {
 	width: 35em; 
 	/*box-shadow: 8px 8px 32px #eee; */
 	margin: 20px; 
 	padding: 20px;
}

.resume__box p {
	margin-bottom: 4px;
}

.resume__hover:hover {
	color: #222222;
}

.resume__download {  }

.resume__download a {
	background: #ffffff;
	border: solid 1px #e6e6e6;
	border-radius: 2px;
	display: inline-block;
	height: 100px;
	line-height: 100px;
	margin: 5px;
	position: relative;
	text-align: center;
	vertical-align: middle;
	width: 100px;
}

.resume__download a span {
	background: #f2594b;
	border-radius: 4px;
	color: #ffffff;
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	line-height: normal;
	padding: 5px 10px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.resume__download a span:last-child {
	margin-left: -20px;
}

.resume__download a:before, .resume__download a:after {
	background: #ffffff;
	border: solid 3px #9fb4cc;
	border-radius: 4px;
	content: '';
	display: block;
	height: 35px;
	left: 50%;
	margin: -17px 0 0 -12px;
	position: absolute;
	top: 50%;
	width: 25px;
}

.resume__download a:hover:before, .resume__download a:hover:after {
	background: #e2e8f0;
}

.resume__download a:before {
	margin: -23px 0 0 -5px;
}

.resume__download a:hover {
	background: #e2e8f0;
	border-color: #9fb4cc;
}

.resume__download a:active {
	background: #dae0e8;
	box-shadow: inset 0 2px 2px rgba(0, 0, 0, .25);
}

.resume__download a span:first-child {
	display: none;
}

.resume__download a:hover span:first-child {
	display: inline-block;
}

.resume__download a:hover span:last-child {
	display: none;
}


/* ****************** */
/*		Sheet Overlay   */
/* ****************** */

.sheetOverlay__black {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: .80;
  filter: alpha(opacity=80);
}
.sheetOverlay__overlay {
  display: none;
  position: fixed;
  top: 1%;
  left: 1%;
  width: 98%;
  height: 98%;
  padding: 16px;
  z-index: 1002;
  overflow: auto;
}
.sheetOverlay__cross {
  position: absolute; 
  z-index: 1005; 
  margin: 16px 20px;
}


/* ****************** */
/*	 Background Video  */
/* ****************** */

#background-container {
}

#backgroundVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -20;
  object-fit: cover; /* Pour que la vidéo s'adapte sans déformation */
}
#backgroundImage {
  position: fixed;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  z-index: -20;
  object-fit: cover;
}

.videoOverlay__black {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: #a8a8a8;
  z-index: 1000;
  -moz-opacity: 0.3;
  opacity: .30;
  filter: alpha(opacity=30);
}

.textOverlay {
	min-width: 100%;
	/*min-height: 300px;*/
	padding: 20px 30px;
	background-color: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	box-shadow: 2px 2px 32px #333;
	border-radius: 25px;
	/*justify-content: center;*/

	font-family: "Totum", sans-serif;
}
.textOverlay p {
	color: #333;
	background-color: unset;
	line-height: 1.35;
	margin-bottom: 0.5rem;
	text-align: left;
}
.textOverlay span {
	background-color: unset;
	color: #777;
	text-align: left;
}
.textOverlay b {
	color: #222;
}
.textOverlay h2 {
	color: #222;
}
.textOverlay h3 {
	color: #222;
}

#totumFont {
	font-family: "Totum", sans-serif;
}
#totumFont p, #totumFont span {
	font-size: 22px;
}
#totumFont h2, #totumFont h3 {
	font-family: "Totum", sans-serif;
}

#flightSimFont {
	font-family: "FlightSim", sans-serif;
}
#flightSimFont p, #flightSimFont ul {
	font-size: 18px;
	margin-bottom: 16px;
}
#flightSimFont ul {
	padding-left: 16px;
}
#flightSimFont h2, #flightSimFont h3, #flightSimFont .smallTitle {
	font-family: "FlightSimTitre", sans-serif;
}
#flightSimFont h2 {
	font-size: 45px;
	margin-bottom: 16px;
	line-height: 1;
}
#flightSimFont h3 {
	font-size: 30px;
	margin-bottom: 6px;
}
#flightSimFont .smallTitle {
	font-size: 22px;
	color: #222;
}
#flightSimFont b {
	font-weight: 700;
}
#flightSimFont .blueText {
	color: #4575b9;
}

@font-face {
	font-family: "Totum";
	src: url("../fonts/neucha-regular.ttf");
	/*src: url("../fonts/pangolin-regular.ttf");*/
}
@font-face {
	font-family: "Poker";
	src: url("../fonts/PokerInOctober.otf");
}
@font-face {
	font-family: "FlightSim";
	src: url("../fonts/OpenSans.ttf");
}
@font-face {
	font-family: "FlightSimTitre";
	src: url("../fonts/BebasNeue-Regular.ttf");
}
