/*Theme Setup*/
:root {
	/*COLOR VAR*/
  --main-color: #d94f14;
  /*BACKGROUND IMAGE*/
  --section_1-background:  url(../images/image_header_1.jpg);
  --section_5-background: url(../images/image_contact.jpg);
}
/*FONTS*/
@font-face {
   font-family: RobotoCondensed-Regular;
   src: url(../fonts/RobotoCondensed-Regular.ttf);
}
@font-face {
   font-family: RobotoCondensed-Bold;
   src: url(../fonts/RobotoCondensed-Bold.ttf);
}
/*DEFAULT*/
body {
	overflow-x: hidden;
	background-color: #000000;
}
::selection {
  color: #ffffff;
  background: var(--main-color);
}
.loader {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
}
.loader .spinner-grow {
	width: 5rem; 
	height: 5rem;
}
/*HEADER*/
.header {
	z-index: 999;
	width: 100%;
	position: fixed;
	background-color: transparent;
	transition: .2s;
}
.title {
	float: left;
}
.title h1 {
	color: #ffffff;
	font-family: RobotoCondensed-Regular;
	font-size: 40px;
	user-select: none; 
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
}
.btn_menu{
	color: #ffffff;
	display: flex;
	margin: 5px 0px 0px 0px;
	float: right;
	cursor: pointer;
	font-size: 35px;
}
.anchor {
	position: relative;
	top: -50px;
}
/*Responsivity*/
@media(max-width: 575px) {
	.btn_menu{
		position: absolute;
		right: 35px;
	}
}
/*MENU*/
.nav_menu {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.75);
}
.nav_menu .close_btn i{
	color: #ffffff;
	display: flex;
	margin-top: 10px;
	float: right;
	cursor: pointer;
	font-size: 40px;
	transition: .2s;
}
.nav_menu .close_btn i:hover{
	color: #d1d1d1;
	transition: .2s;
}
.menu_ul {
  height:50px;
  position:fixed;
  top:30%; 
  left: 43%;
}
.menu_ul ul{
	list-style-type: none;
}
.menu_ul a{
	font-family: RobotoCondensed-Regular;
	text-decoration: none;
	font-size: 30px;
	color: #ffffff;
	transition: .2s;
}
.menu_ul ul li a:hover{
	color: var(--main-color);
	transition: .2s;
}
.social_medias {
	padding-left: 40px;
}
.social_medias a{
 margin-right: 10px;
}
.fa-facebook:hover{
 color: #4267B2;
 transition: .2s;
}
.fa-twitter:hover{
 color: #1DA1F2;
 transition: .2s;
}
.fa-instagram:hover{
	background: linear-gradient(to right top, #405de6, #d84fbf, #ff6c8d, #ffa470, #ffdc80);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: .2s;
}
.fa-linkedin-in:hover{
 color: #2867B2;
 transition: .2s;
}
/*Responsivity*/
@media(max-width: 1382px) {
	.menu_ul {
		left: 40%;
	}
}
@media(max-width: 1024px) {
	.menu_ul {
		left: 38.5%;
	}
}
@media(max-width: 768px) {
	.menu_ul {
		left: 34%;
	}
}
@media(max-width: 558px) {
	.btn_menu{
		margin: 5px -17px 0px 0px;
	}
	.nav_menu .close_btn i{
		margin-right: 15px;
	}
}
@media(max-width: 540px) {
	.menu_ul {
		left: 28%;
	}
}
@media(max-width: 414px) {
	.menu_ul {
		left: 20%;
	}
}
@media(max-width: 411px) {
	.menu_ul {
		left: 20%;
	}
}
@media(max-width: 375px) {
	.menu_ul {
		left: 16%;
	}
}
@media(max-width: 320px) {
	.menu_ul {
		left: 11%;
	}
}
@media(max-width: 280px) {
	.menu_ul {
		left: 7%;
	}
}
/*SECTION 1*/
.section_1 {
	height: 900px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-image: var(--section_1-background);
}
.section_1_personal {
	padding-top: 230px;
}
.section_1 .name {
	font-size: 115px;
	font-family: RobotoCondensed-Regular;
	color: #FFFFFF;
	margin-bottom: -80px;
}
.section_1 .surname {
	font-size: 150px;
	font-family: RobotoCondensed-bold;
	color: #FFFFFF;
}
.section_1 .profession {
	color: #d1d1d1;
	font-size: 20px;
	font-family: RobotoCondensed-Bold;
}
/*Animation profession*/
.profession:after{
 content: '|';
 margin-left: 5px;
 opacity: 1;
 animation: blin .7s infinite;
}
@keyframes blin{
  0%, 100%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
}
/*Responsivity*/
@media(max-width: 1050px) {
	.section_1_personal{
		padding-top: 150px;
	}
	.section_1 {
		height: 500px;
	}
	.section_1 .name {
		font-size: 80px;
		margin-bottom: -55px;
	}
	.section_1 .surname {
		font-size: 100px;
	}
	.section_1 .profession {
		font-size: 17px;
	}
}
@media(max-width: 750px) {
	.section_1_personal{
		padding-top: 140px;
	}
	.section_1 {
		background-position: right top;
		background-size: 750px 533px;
	}
}
/*Section 2*/
.about_div {
	padding: 100px 0px 50px 0px;
}
.about_div .section_title{
	margin-top: -50px;
	margin-bottom: -15px;
}
.about_div .section_title .h1{
	margin-bottom: -15px;
}
.about_div img{
	max-width: 400px;
	width: 100%;
	margin-bottom: 40px;
}
.about_div p{
	font-size: 18px;
	color: #d1d1d1;
	font-family: RobotoCondensed-Regular;
}
.about_div a{
	padding: 15px 25px 15px 25px;
	font-size: 15px;
	font-family: RobotoCondensed-Bold;
}
/*Responsivity*/
@media(max-width: 974px){
	.about_div {
		padding: 50px 0px 50px 0px;
	}
	.about_div .section_title{
		margin-top: 0px;
		margin-bottom: 0px;
	}
}
/*Section 3*/
.section_3 {
	margin-bottom: 50px;
}
.section_3_obj {
	margin-bottom: 25px;
	padding: 0px 35px 0px 35px;
}
.section_3_obj i{
	font-size: 65px;
	color: #ffffff;
	margin-bottom: 15px;
	transition: .2s;
}
.section_3_obj i:hover{
	transform: translateY(-10px);
	color: var(--main-color);
	transition: .2s;
}
.section_3 .h3{
	color: #ffffff;
	font-family: RobotoCondensed-Regular;
}
.section_3_desc {
	color: #d1d1d1;
	font-family: RobotoCondensed-Regular;
}
/*Section 4*/
.section_4 {
	padding: 50px 0px 50px 0px;
	background-color: #111111;
}
.section_title .h6{
	color: #d1d1d1;
	font-family: RobotoCondensed-Regular;
	font-size: 22px;
	margin-bottom: -17px;
}
.section_title .h1{
	font-size: 55px;
	font-family: RobotoCondensed-Bold;
	color: #ffffff;
}
.element_port {
	margin: 15px 0px 10px 0px;
}
.div_portfolio {
	padding-left: 60px;
}
.div_img_portfolio img{
	cursor: pointer;
  width: 350px;
  height: 350px;
 	object-fit: cover;
}
.element_port:hover .portfolio_hover{
	display: block;
	-webkit-animation: fadein .2s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein .2s; /* Firefox < 16 */
	-ms-animation: fadein .2s; /* Internet Explorer */
	-o-animation: fadein .2s; /* Opera < 12.1 */
	animation: fadein .2s;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.portfolio_hover {
	display: none;
	cursor: pointer;
	position: absolute;
	width: 350px;
	height: 350px;
	backdrop-filter: blur(2px);
	background-color: rgba(0, 0, 0, 0.75);
}
.port_subtitle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.port_subtitle i {
	color: var(--main-color);
	font-size: 40px;
	margin-bottom: 15px;
}
.port_subtitle .h3 {
	color: #ffffff;
	font-family: RobotoCondensed-Bold;
}
.port_subtitle .h6 {
	color: #d1d1d1;
	font-family: RobotoCondensed-Regular;
}

/*Responsivity*/
@media(max-width: 974px){
	.div_portfolio{
		padding-left: 0px;
	  margin: auto;
	  width: 50%;
	}
}
@media(max-width: 974px){
	.div_portfolio{
		padding-left: 0px;
	  margin: auto;
	  width: 80%;
	}
	.div_img_portfolio img{
	  width: 250px;
	  height: 250px;
	}
	.portfolio_hover {
	  width: 250px;
	  height: 250px;
	}
}
@media(max-width: 767px){
	.div_portfolio{
		padding-left: 0px;
	  margin: auto;
	  width: 50%;
	}
}
@media(max-width: 414px){
	.div_portfolio{
	  width: 65%;
	}
}
@media(max-width: 411px){
	.section_title .h6{
		font-size: 15px;
		margin-bottom: -10px;
	}
	.section_title .h1{
		font-size: 50px;
	}
	.div_portfolio{
	  width: 65%;
	}
}
@media(max-width: 375px){
	.div_portfolio{
		padding-left: 0px;
	  margin: auto;
	  width: 73%;
	}
}
@media(max-width: 360px){
	.div_portfolio{
		padding-left: 0px;
	  margin: auto;
	  width: 75%;
	}
}
@media(max-width: 320px){
	.div_portfolio{
		padding-left: 0px;
	  margin: auto;
	  width: 85%;
	}
}
@media(max-width: 280px){
	.div_portfolio{
		padding-left: 0px;
		margin-left: 5px !important;
	}
}
/*Modal Image*/
.modal_image {
	width: 100% !important;
}
.modal_image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.close_modal_new {
	margin-right: 30px;
	font-size: 30px;
	right: 0;
	top: 0;
	position: absolute;
	color: #ffffff;
	background-color: transparent;
	border: none;
	transition: .2s;
}
.close_modal_new:hover {
	transition: .2s;
	color: #d1d1d1;
}
.modal_img {
	width: 100%; 
	height: 100%; 
	object-fit: contain;
	background-color: transparent;
	border: none;
}
/*Modal Video*/
.modal_video {
	width: 100%;
	height: 700px;
}
#modal_video .modal-content {
	background-color: transparent;
	border: none;
}
/*Modal Information*/
.modal_information .modal-header {
	border: none;
}
.modal_information .modal-title {
	font-size: 30px;
	font-family: RobotoCondensed-Bold;
}
.modal_information .modal-content {
	background-color: #111111;
	color: #ffffff;
}
.img_info_slide {
	width: 100%;
}
.modal_info_lbl {
	font-family: RobotoCondensed-Bold;
	font-size: 20px;
}
.modal_info_p {
	font-family: RobotoCondensed-Regular;
	font-size: 16px;
}
.title_info_details {
	font-size: 18px;
	font-family: RobotoCondensed-Bold;
}
.info_details {
	font-family: RobotoCondensed-Regular;
	font-size: 16px;
}
.info_details a {
	text-decoration: none;
	border-radius: 2px;
	background-color: var(--main-color);
	padding: 5px 15px 5px 15px;
	color: #ffffff;
}
/*Responsivity*/
@media(max-width: 565px) {
	.close_modal_new {
		z-index: 1065;
	}
}
/*Section 4*/
.section_5 {
	background-position: top;
	background-image: var(--section_5-background);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
.filter_transparent {
	background-color: rgba(0, 0, 0, 0.75);
}
.section_5 .container {
	color: #ffffff;
	padding: 165px 0px 165px 0px;
}
.section_5 p {
	font-size: 38px;
	font-family: RobotoCondensed-Bold;
}
.section_5 a {
	font-size: 23px;
	font-family: RobotoCondensed-Regular;
}
.section_5 i {
	margin-left: 5px;
	font-size: 24px;
}
/*Section 6*/
.testimonials {
	padding: 50px 15px 50px 15px;
}
.testimonial_container {
	margin-left: 30px;
}
.testimonial_item{
	margin: 0 auto;
	max-width: 750px;

}
.testimonial_item img{
	margin: 0 auto;
	width: 100%;
	max-width: 200px;
	border-radius: 100px;
}
.testimonial_title {
	position: relative;
	top: 15%;
} 
.testimonial_item .h6 {
	font-family: RobotoCondensed-Regular;
	font-size: 15px;
	color: #d1d1d1;
	margin-bottom: -5px;
}
.testimonial_item .h4 {
	position: relative;
	top: 15%;
	font-family: RobotoCondensed-Bold;
	font-size: 30px;
	color: #ffffff;
}
.testimonial_text {
	position: relative;
	top: 15%;
	font-family: RobotoCondensed-Regular;
	font-size: 16px;
	color: #ffffff;
}
.owl-carousel .active span {
  width:10px;
  height:10px;
  margin:5px 7px;
  background: var(--main-color) !important;
  display:block;
  -webkit-backface-visibility:visible;
  -webkit-transition:opacity 200ms ease;
  -moz-transition:opacity 200ms ease;
  -ms-transition:opacity 200ms ease;
  -o-transition:opacity 200ms ease;
  transition:opacity 200ms ease;
  -webkit-border-radius:30px;
  -moz-border-radius:30px;
  border-radius:30px;
}
/*Responsivity*/
@media(max-width: 958px) {
	.testimonial_container {
		margin-left: 0px;
	}
}
@media(max-width: 767px) {
	.testimonial_info {
		align-items: center;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.testimonial_title {
		margin: 0 auto;
	}
	.testimonial_text {
		text-align: center !important;
	}
}
/*Section 7*/
.faq {
	background-color: #111111;
	padding: 50px 0px 50px 0px;
}
.img_faq img {
	width: 100%;
}
.accordion-header {
	border-color: #ffffff;
}
.accordion-header button{
	font-family: RobotoCondensed-Regular;
	font-size: 20px;
	color: #ffffff;
	background-color: transparent;
}
.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg)
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.125);
}
.accordion-header button[aria-expanded="true"]{
	background-color: transparent;
	color: var(--main-color);
}
.accordion-item {
	border-color: #424242;
	font-family: RobotoCondensed-Regular;
	color: #ffffff;
	background-color: transparent;
}
/*Section 8*/
.section_8 {
	padding: 50px 0px 50px 0px;
}
.section_8 textarea {
	overflow: hidden;
	font-family: RobotoCondensed-Regular;
	color: #ffffff !important;
	resize: none;
	border-radius: 0px;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px solid #424242;
	background-color: transparent;
}
.section_8 textarea:focus {
	border-color: #ffffff;
	outline: none;
	background-color: transparent;
}
.section_8 label {
	font-family: RobotoCondensed-Regular;
	color: #d1d1d1;
}
.section_8 button {
	font-family: RobotoCondensed-Regular;
	padding: 10px 15px 10px 15px;
	float: right;
}
.contact_2 {
	padding-left: 85px;
}
.contact_title {
	font-size: 35px;
	font-family: RobotoCondensed-Bold !important;
	color: #ffffff !important;
}
.contact_2 p {
	font-family: RobotoCondensed-Regular;
	color: #d1d1d1;
}
.contact_2 a {
	text-decoration: none;
	color: #d1d1d1;
}
.contact_2 span {
	color: var(--main-color);
}
.contact_item {
 font-size: 19px;
}
.social_medias_contact {
	font-size: 25px;
}
.social_medias_contact a{
 margin-right: 20px;
}
/*Responsivity*/
@media(max-width: 1000px){
	.contact_2 {
		padding-left: 10px;
	}
}
@media(max-width: 558px){
	.div_contact {
		margin-left: 10px;
	}
}
/*Footer*/
.footer {
	background-color: #111111;
}
.footer .row {
	font-size: 17px;
	font-family: RobotoCondensed-Regular;
	color: #d1d1d1;
}
.footer a{
	font-family: RobotoCondensed-Bold;
	text-decoration: none;
	color: var(--main-color);
}
.footer a:hover{
	text-decoration: underline;
}
/*Responsivity*/
@media(max-width: 767px) {
	.footer .row {
		text-align: center;
	}
}