@charset "utf-8";
/* CSS Document */
@font-face{
	font-family: rubik;
	src: url("../fonts/Rubik-Regular.ttf");
}
@font-face{
	font-family: rubik_bold;
	src: url("../fonts/Rubik-Bold.ttf");
}

.desk{
	display: none;
}
.successful{
	display: none;
}
/*FILE UPLOAD*/

.file-upload .file-select{
	display: block;
	border: 1px solid #ccc;
	color: #ffffff;
	cursor: pointer;
	height: 45px;
	line-height: 45px;
	text-align: right;
	background: #ffffff;
	overflow: hidden;
	position: relative;
	border-radius: 4px;
	width: 90%;
	direction: rtl;
	margin: 20px 5%;
}
.file-upload .file-select .file-select-name{
	line-height: 45px;
	display: inline-block;
	padding: 0 20px;
	color: #ababab;
}
.file-upload .file-select .file-select-button{
	background: #F8982B;
	padding: 0 10px;
	display: inline-block;
	height: 45px;
	line-height: 45px;
	font-weight: 900;
}
.file-select-button{
	width: 22%;
	text-align: center;
	float: left;
}
.file-upload .file-select input[type="file"]{
	z-index: 100;
	cursor: pointer;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	margin: auto !important;
}
.add_pic{
	display: none;
}
.dis_b{
	display: block;
}

/*FILE UPLOAD*/

html{
	height: 100%;
}
body{
	height: 100%;
	padding: 0px;
	margin: 0px;
	font-size: 16px;
	font-family: rubik;
	overflow-x: hidden;
	scroll-behavior: none;
	background-color: #f9f8f8;
}
*{
    box-sizing: border-box;
}
a, p, button{
	text-decoration: none;
	font-family: rubik;
	font-size: 0.9em;
	color: #5e5a5a;
}
input, textarea, select{
	width: 100%;
	font-family: rubik;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	padding: 8px 20px;
  	margin: 0 0 16px 0;
	text-align: right;
}
textarea{
	height: 80px;
	margin-bottom: 60px;
}
a{
	color: #F8982B;
}
img{
    width: 100%;
}
/*HEADER*/

header{
	font-family: rubik;
	background-color: #fff;
	height: 80px;
	width: 100%;
	position: relative;
    display: flex;
    justify-content: space-between;
	z-index: 5;
	border-bottom: 2px solid #F8982B;
}
.logo{
    position: relative;
    z-index: 15;
	height: 40px;
    display: block;
    margin: 20px 20px;
}
.logo img{
	height: 100%;
    width: unset !important;
}

/*END HEADER*/

/*MOBILE NAVBAR*/

.mobile_navbar{
	height: 80px;
	line-height: 70px;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 10;
	background-color: white;
}
.header_bg{
	width: 100%;
	height: 80px;
	position: absolute;
	border-bottom: 2px solid #F8982B;
	top: 0;
	left: 0;
	z-index: 3;
	background: white;
}
.menu_mobile{
	width: 100%;
	z-index: 2;
	position: absolute;
	text-align: right;
	transition: 0.4s;
	background-color: #363232;
	box-sizing: border-box;
	padding: 10px;
	top: -850px;
	display: block;
}
.menu_mobile > ul{
	border: 1px solid #555;
}
.menu_mobile > ul li a{
	box-sizing: border-box;
	height: 50px;
	font-weight: bold;
	padding-right: 10px;
	display: block;
	background-color: #363232;
	font-size: 1em;
	font-family: rubik !important;
	color: #999;
	line-height: 45px;
	border-top: 1px solid #555;
	border-bottom: 1px solid #555;
}
.menu_mobile > ul li a.active{
	color: #F8982B;
}
.menu_mobile li a:hover{
	color: white;
}
.menu_mobile li > ul li a{
	text-transform: none;
	border: none;
	box-sizing: border-box;
}
.open_sub_menu svg{
	height: 6px;
	width: 10px;
	margin-left: 16px;
	margin-top: 22px;
	float: left;
	transition: all 0.1s ease;
}
.menu_mobile.show_menu ul li.open_sub_menu svg{
	left: 10px !important;
}

.open_sub_menu svg path{
	fill: #999;
}
.menu_mobile li:hover > svg path{
	fill: #fff;
	transition: all 2s ease;
}

/*MOBILE NAVBAR*/

/*SUB MENU*/

.sub_menu{
	width: 100%;
	display: none;
}
.show_sub_menu{
	display: block;
	text-transform: none;
	transition: .4s ease-in-out;
}
.show_menu{
	top: 80px;
}

/*SUB MENU*/

/*ICON_BURGER*/

.icon{
	position: absolute;
	top: 10px;
	left: 0px;
	height: 60px;
	width: 60px;
	cursor: pointer;
	display: block;
	z-index: 4;
	}
.burger{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #757171;
	height: 3px;
	width: 20px;
	transition: .3s;
}
.burger:before,
.burger:after{
	content: '';
	position: absolute;
	height: 3px;
	width: 20px;
	background-color: #757171;
	transition: .3s;
}
.burger:before{
	top:-8px;
}
.burger:after{
	top:8px;
}
.icon.active .burger{
	background: rgba(0,0,0,0);
}
.icon.active .burger:before{
	transform: rotate(45deg);
	background-color: #F8982B;
	top: 0;
}
.icon.active .burger:after{
	transform: rotate(135deg);
	background-color: #F8982B;
	top: 0;
}

/*ICON_BURGER*/

/*NAVBAR*/

.navbar{
	display: none;
	height: 80px;
    margin-left: 60px;
}
.navbar > ul{
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.navbar > ul li a{
	display: block;
	padding: 30px 20px 0;
	font-size: 1em;
	height: 80px;
	text-align: center;
	color: #666a71;
}
.navbar > ul li a.active{
	font-weight: bold;
	color: #F8982B;
}
.navbar li a:hover{
	color: #F8982B;
	transition: all 0.1s ease;
}
.navbar li ul{
	list-style: none;
	border: 1px solid #F8982B;;
	border-top: 2px solid #F8982B;
	z-index: 30;
	padding-right: 0;
	display: none;
	position: absolute;
	top: 78px;
}
.navbar li > ul li {
	border-bottom: 1px solid #c7c8ca;
}
.navbar li > ul li a{
	padding: 10px 20px 10px;
	height: 40px;
	text-transform: none;
	background-color: #fff;
	text-align: center;
}
.navbar li:hover > ul{
	display: block;
}
.navbar ul li a svg{
	height: 6px;
	width: 10px;
	margin-right: 5px;
	float: left;
	margin-top: 7px;
}
.navbar li a svg path{
	fill: #666a71;
}
.navbar li a:hover > svg path{
	fill: #F8982B;
	transition: all 0.1s ease;
}
.lang img{
	width: 24px;
	height: 24px;
	margin-top: -5px;
}
.lang img:hover{
	opacity: .6;
}

/*NAVBAR*/

/*CONTENT*/

.content {
  	min-height: 100%;
	background-color: #f9f8f8;
}
.content-inside {
  	padding-bottom: 660px;
}

/*CONTENT*/

/*ACCESSIBILITY*/

.accessibility_btn{
	height: 50px;
	width: 50px;
	position: fixed;
	background-color: #363232;
	left: 0;
	bottom: 0;
	border-top: 1px solid white;
	border-right: 1px solid white;
	cursor: pointer;
	z-index: 50;
}
.accessibility_btn img, .accessibility_open div img{
	width: 30px;
	height: 30px;
	margin: 10px;
}
.accessibility_btn:hover{
	background-color: #444;
	transition: 0.2s;
}
.accessibility_open{
	width: 50px;
	height: 255px;
	position: fixed;
	border-top: 1px solid white;
	border-right: 1px solid white;
	left: 0;
	bottom: 50px;
	background-color: #222;
	z-index: 49;
	display: none;
}
.accessibility_open div{
	height: 50px;
	width: 50px;
	border-top: 1px solid white;
	cursor: pointer;
}
.accessibility_open > div:nth-child(1){
	background-color: #363232;
	border-top: none;
}
.accessibility_open div:hover{
	background-color: #444;
	transition: 0.2s;
}
.show_accessibility{
	display: block;
	text-transform: none;
	transition: .4s ease-in-out;
}

/*ACCESSIBILITY*/

/*CHECKBOX*/

.container {
	display: block;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 90%;
	margin: 20px auto 0;
	text-align: right;
	padding-right: 40px;
	box-sizing: border-box;
	height: 25px;
	line-height: 25px;
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px !important;
  width: 25px !important;
  background-color: #eee !important;
}
.container:hover input ~ .checkmark {
  background-color: #ccc !important;
}
.container input:checked ~ .checkmark {
  background-color: #F8982B !important;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container input:checked ~ .checkmark:after {
  display: block;
}
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*CHECKBOX*/

/*BO*/

.bo{
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 0;
	right: 0;
    z-index: 1000000000000000;
}
.bo a{
	cursor: default;
}


/*BO*/

/*BO_TABLE*/

input.en, textarea.en{
	border: 1px solid #ffa4a4;
}
label.en{
	color: #ffa4a4;
}
h1.en{
	color: #ffa4a4;
	font-family: rubik_bold;
	font-size: 1.4em;
}
#customers {
	border-collapse: collapse;
	max-width: 1200px;
	width: 90%;
	margin: 30px auto;
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
}
#customers td, #customers th {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: right;
	vertical-align: middle;
	line-height: 24px;
	color: #5e5a5a;
}
#customers tr:hover {
	background-color: #f2f2f2;
}
#customers th {
	padding-top: 12px;
	padding-bottom: 12px;
	background-color: #757171;
	color: white;
	font-weight: bold;
	text-align: center;
}
#customers th:nth-child(1){
	width: 56px;
}
.project_strip table#customers tbody tr td img{
/*
	max-width: 40px;
	max-height: 40px;
*/
	margin: 0 auto;
	display: block;
}
.table_action{
	display: flex;
	justify-content: center;
}
.table_action img{
	width: 24px;
	margin: 8px !important;
	cursor: pointer;
}
.table_action img:hover{
	opacity: 0.5;
}
.move_btn{
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
}
.move_btn img{
	margin: 4px 8px !important;
}
.project_strip table#customers tbody tr th a{
	text-decoration: underline;
	color: white;
}
#customers > tbody:nth-child(1) > tr:nth-child(1) > th:last-child{
	background-color: #F8982B;
	width: 120px;
}
.project_strip table#customers tbody tr th a:hover{
	opacity: 0.8;
}
.vision_and_values_container button{
	height: 44px;
	width: 200px;
	background-color: #F8982B;
	border: none;
	color: white;
	border-radius: 6px;
	margin: 50px auto 0;
}
.select_icon{
	width: 90%;
	margin: 15px auto;
	display: flex;
	justify-content: center;
	opacity: .3;
}
.select_icon div{
	margin: auto 15px;
}
.select_icon img{
	width: 30px !important;
	margin: auto !important;
}
.select_icon p{
	margin: auto !important;
}
/*BO_TABLE*/

/*FOOTER*/


footer {
	height: 660px;
	margin-top: -660px;
	background-color: #363232;
	overflow: hidden;
}

.powered a{
	width: 100%;
	height: 50px;
	margin: auto;
	display: block;
	color: #757171;
	line-height: 48px;
	text-align: center;
	font-size: 0.8em;
}

.footer_links{
	width: 100%;
	max-width: 992px;
	display: flex;
	margin: 12px auto;
	flex-direction: column;
}
.footer_links div{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.footer_links div a{
	width: 100%;
	display: block;
	padding: 10px 0;
	color: white;
	text-align: center;
}
.footer_links div a:hover{
	color: #F8982B;
}
.footer_links div a.active{
	font-weight: bold;
	color: #F8982B;
}
.social{
	display: flex;
	justify-content: center;
}
.social_btn.facebook, .social_btn.instagram{
	width: 24px !important;
	height: 24px !important;
	padding: 0 !important;
	margin: 10px !important;
/*	margin: 10px 0 0 10px !important;*/
}
.facebook{
	background-image: url("../svg/facebook.svg");
}
.instagram{
	background-image: url("../svg/instagram.svg");
}
.facebook:hover{
	background-image: url("../svg/facebook_hover.svg");
}
.instagram:hover{
	background-image: url("../svg/instagram_hover.svg");
}
.social_btn img{
	width: 100%;
}
/*FOOTER*/

/*MAIN COVER*/

.main_cover{
	min-width: 320px;
	width: 100%;
  	position: relative;
}
.cover_content{
	/*position: absolute;*/
	position: relative;
	width: 90%;
	max-width: 600px;
	/*height: 130px;*/
	z-index: 6;
	margin: auto;
	/*top: 50%;*/
	/*left: 50%;*/
	/*transform: translate(-50%, -50%);*/
	display: flex;
	flex-direction: column;
}
.cover_content p.title{
	font-size: 1.2em;
	line-height: 40px;
	font-family: rubik_bold;
}
.cover_content p{
	color: white;
	text-align: center;
}
.cover_content span{
    color: #F8982B;
}
.cover_content button{
	/*position: absolute;*/
	color: white;
	background: unset;
	width: 120px;
	height: 36px;
	border: 1px solid #F8982B;
	border-radius: 4px;
	/*bottom: 10px;*/
	display: block;
	margin: 15px auto 0;
	/*left: 50%;*/
	/*transform: translateX(-50%);*/
}
.cover_content button:hover{
	background-color: #F8982B;
	font-family: rubik_bold;
	transition: .4s ease-in-out;
}
.item{
	position: relative;
	width: auto;
	height: 320px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.black_cover{
	background-color: black;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	position: absolute;
	z-index: 4;
}



.owl-nav button{
	width: 24px;
	height: 24px;
	position: absolute;
	top: 45%;
	opacity: 0.5;
}
.owl-nav button:hover{
	background: 0 !important;
	opacity: 1;
}
.owl-nav button.owl-prev{
	right: 0;
}
.owl-nav button.owl-next{
	left: 0;
}
.owl-dots{
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
}
.owl-dot span{
	background: white !important;
}
.active.owl-dot span{
	opacity: 1;
	background-color: #F8982B !important;
}
.owl-dot span:hover{
	opacity: 1;
	background-color: #F8982B !important;
}
.owl-carousel.owl-theme.owl-rtl.owl-loaded.owl-drag .owl-nav{
	margin-top: 0;
}

/*MAIN COVER*/

/*INDEX*/

/*    areas of practice*/

.areas_of_practice{
	text-align: center;
	width: 100%;
	background-image: url("../images/BG.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	padding: 30px 0;
}
.areas_of_practice p.title{
	font-size: 1.8em;
	line-height: 40px;
	font-family: rubik_bold;
	width: 90%;
	margin: auto 5%;
}
.areas_of_practice_flex{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.areas_of_practice_flex div{
	width: 50%;
}
.areas_of_practice_flex img{
	width: 62px;
	height: 62px;
	margin: 30px auto 10px;
}
.areas_of_practice_flex p{
	line-height: 20px;
	font-family: rubik_bold;
}
.areas_of_practice_flex div:hover img{
	transition: all .2s ease-in-out;
	transform: scale(1.1);
}
.areas_of_practice_flex div:hover{
	cursor: pointer;
}

/*    end areas of practice*/

/*    about strip*/

.about_strip{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #e3e3e3;
    padding: 30px 0;
}
.about_strip_center{
    width: 90%;
    margin: 30px auto 0;
    max-width: 1200px;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #e3e3e3;
}
.about_strip p.title{
	font-size: 1.8em;
	line-height: 40px;
	font-family: rubik_bold;
	width: 90%;
	margin: auto 5%;
    text-align: center;
}
.about_strip p.sec_title{
    margin-bottom: 20px;
    width: 90%;
	margin: auto 5%;
    text-align: center;
}
.about_strip_map{
	width: 100%;
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: max-content;
    margin: auto 0;
/*
    border: 1px solid #F8982B;
    box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
*/
}
.map_location{
    width: 24px;
    height: 24px;
    position: absolute;
    cursor: pointer;
}
.country_flag{
    height: 50px;
    width: 50px;
    border-radius: 25px;
    display: none;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    border: 2px solid white;
    box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
}
.country_name{
    text-align: center;
    padding: 6px 8px;
    display: none;
    position: absolute;
    box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
    background-color: white;
    left: 50%;
    border-radius: 4px;
    top: 30px;
    transform: translateX(-50%);
	z-index: 1;

}
.map_location:hover .country_flag, .map_location:hover .country_name{
    display: block;
}

.about_strip_text{
	width: 100%;
    display: flex;
    flex-direction: column;
	justify-content: center;
}

.about_flex{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about_flex p{
    border: 1px solid #F8982B;
    width: 100%;
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
    line-height: 1.5em;
	font-size: 1.3em;
	font-family: rubik_bold;
}
.about_strip_map_properties{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 240px;
    justify-content: space-between;
}
.about_strip_map_properties div{
    display: flex;
    flex-direction: row;
}
.about_strip_map_properties img{
    width: 24px;
    margin-left: 10px;
}
.about_strip_map_properties p{
    line-height: 25px;
}

/*    end about strip*/

/*    project strip*/

.project_strip{
	text-align: center;
	padding: 30px 0;
	width: 100%;
}
.project_strip p.title{
	font-size: 1.8em;
	line-height: 40px;
	font-family: rubik_bold;
	width: 90%;
	margin: auto 5%;
}
.project_strip_flex{
	display: flex;
	width: 100%;
	max-width: 1100px;
	margin: 30px auto 0;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.project_strip_flex div{
	width: 90%;
	max-width: 300px;
	margin: auto calc(50% - 150px) 30px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
	cursor: pointer;
	background-color: white;

}
.project_strip_flex div span{
	width: 100%;
	height: 300px;
	background-color: rgba(0,0,0,.8);
	opacity: 0;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	transform: translateX(-50%);
}
.project_strip_flex div span p{
	color: white !important;
	width: 80%;
	position: absolute;
	top: 50%;
	padding: 20px;
	border-radius: 10px;
	line-height: 20px;
	border: 1px solid #F8982B;
	left: 50%;
	transform: translate(-50%, -50%);
}
.project_strip_flex div:hover span{
	transition: all .2s ease-in-out;
	opacity: 1;
}
.project_strip_flex div:hover p{
	transition: all .2s ease-in-out;
	color: #F8982B;
}
.project_strip_flex div img{
	height: 300px;
	width: auto;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
	min-width: 100%;
}
.project_strip_flex div img.black_white{
	filter: grayscale(100%);
}
.project_strip_flex div p.title{
	margin: 310px auto 10px;
	font-size: 1.2em;
	line-height: 24px;
	font-family: rubik_bold;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.project_strip_flex div p{
	margin-bottom: 20px;
}

/*    end project strip*/

/*    history strip*/

.history_strip{
	text-align: center;
	padding: 30px 0;
	width: 100%;
	background-color: #e3e3e3;
}
.history_strip p.title{
	font-size: 1.8em;
	line-height: 40px;
	font-family: rubik_bold;
	width: 90%;
	margin: auto 5%;
}

.swiper-container{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.swiper-slide.history{
    width: 250px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background-color: white;
}
.swiper-slide.history img{
	height: 250px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.swiper-slide.history p.title{
	margin-top: 260px;
	font-size: 1.2em;
	line-height: 30px;
	font-family: rubik_bold;
}
.swiper-slide.history p{
	width: 90%;
	margin: auto 5% 20px;
}



.swiper-pagination-bullet-active{
	background-color: #F8982B;
}
.swiper-button-next{
	width: 56px;
	height: 56px;
	background-color: #363232;
	border-radius: 28px;
	color: #363232;
	border: 1px solid #e3e3e3;
	display: none;
}
.swiper-button-next img{
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.swiper-button-prev{
	width: 56px;
	height: 56px;
	background-color: #363232;
	border-radius: 28px;
	color: #363232;
	border: 1px solid #e3e3e3;
	display: none;
}
.swiper-button-prev img{
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/*    end history strip*/

/*INDEX*/

/*ABOUT*/

.about_the_company_strip_flex{
	display: flex;
	width: 100%;
	max-width: 1100px;
	margin: 30px auto 0;
	justify-content: space-around;
	flex-wrap: wrap;
}
.about_the_company_strip_flex div{
	width: 90%;
	max-width: 300px;
	margin: auto calc(50% - 150px) 30px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
	background-color: white;
}
.about_the_company_strip_flex div img{
	height: 250px;
	width: auto;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	transform: translateX(-50%);
}
.about_the_company_strip_flex div p.title{
	margin-top: 260px;
	margin-bottom: 15px;
	font-size: 1.2em;
	line-height: 30px;
	font-family: rubik_bold;
}
.about_the_company_strip_flex div p{
	margin-bottom: 20px;
}
.about_the_company_strip_flex div p a{
	color: #F8982B;
}
.about_the_company_strip_flex div p a:hover{
	text-decoration: underline;
}


/*ABOUT*/

/*HUMAN_CAPITAL*/

.humen_capital_flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.humen_capital_flex div{
	width: 90%;
	margin: 30px 5% 0;
	position: relative;
}
.humen_capital_flex div span{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	top: 0;
	left: 0;
	border-radius: 10px;
	opacity: 0;
	border: 1px solid #F8982B;
}
.humen_capital_flex div:hover span{
	opacity: 1;
	transition: .5s;
	transform: scale(1.1);
	cursor: pointer;
}
.humen_capital_flex div span p{
	width: 90%;
	color: white;
	position: absolute;
	line-height: 20px;
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
}
.humen_capital_flex div img{
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
	border-radius: 10px;
	display: block;
	width: 200px;
	margin: auto;
	background-image: url("../images/humen/no_pic.jpg");
	object-fit: cover;
	filter: none;
	backface-visibility: hidden;
	height: auto;
}
.humen_capital_flex div p.title{
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 0;
}
.humen_capital_flex div p{
	width: 90%;
	margin: 0 5% 15px;
}

/*HUMAN_CAPITAL*/

/*VISION AND VALUES*/

.vision_and_values_container{
	width: 90%;
	max-width: 1200px;
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
	margin: 30px auto 0;
	border-radius: 10px;
	background-color: white;
	padding: 30px;
	box-sizing: border-box;
}
.vision_and_values_container p.title{
	font-weight: bold;
	font-size: 1.2em;
	width: unset;
	margin: auto 0 10px;
	line-height: 24px;
}
.vision_and_values_container p{
	margin: 20px auto 20px;
	text-align: center;
	line-height: 20px;
}
.vision_and_values_container span{
	height: 2px;
	width: 150px;
	margin: auto;
	background-color: #F8982B;
	display: block;
}
.vision_and_values_container label{
	text-align: right;
	display: block;
	width: 90%;
	margin: 25px auto -10px;
}
.vision_and_values_container img{
	width: 90%;
	max-width: 320px;
	margin: 15px auto;
}

/*VISION AND VALUES*/

/*HAIFA OFFICE*/

.haifa_office_flex{
	display: flex;
	width: 90%;
	max-width: 1200px;
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
	margin: 30px auto 0;
	border-radius: 10px;
	flex-direction: row;
	background-color: white;
	flex-wrap: wrap;
	box-sizing: border-box;
}
.haifa_office_flex div{
	width: 100%;
	min-height: 500px;
	position: relative;
	padding: 30px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 0 0 10px 10px;
}
.haifa_office_flex div p.title{
	font-weight: bold;
	font-size: 1.2em;
	width: unset;
	margin: auto 0 10px;
	line-height: 24px;
}
.haifa_office_flex div p{
	margin: 20px auto 20px;
	text-align: center;
	line-height: 20px;
}
.haifa_office_flex span{
	height: 2px;
	width: 150px;
	margin: auto;
	background-color: #F8982B;
	display: block;
}
.haifa_office_flex div img{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/*HAIFA OFFICE*/

/*SEEKING FOR*/

.seeking_for_flex{
	display: flex;
	width: 100%;
	max-width: 900px;
	margin: auto;
	justify-content: space-around;
}
.seeking_for_flex div{
	max-width: 300px;
	width: 100%;
}
.seeking_for_flex div img{
	width: 62px;
	height: 62px;
	margin: 30px auto 10px;
}
.seeking_for_flex p{
	line-height: 20px;
	font-family: rubik_bold;
}
.wonted_flex{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 40px auto 30px;
}
.wonted_flex div{
	width: 90%;
	margin: 20px 5%;
	padding-bottom: 20px;
	border-radius: 10px;
	background-color: white;
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
}
.wonted_flex div p{
	margin: 15px auto;
	width: 90%;
}
.wonted_flex div p span{
	font-weight: bold;
}
.wonted_flex div img{
	width: 62px;
	height: 62px;
	margin: 30px auto 10px;
}

/*SEEKING FOR*/

/*CONTACT*/

.contact_strip_flex{
	display: flex;
	width: 90%;
	max-width: 1200px;
	margin: 30px auto;
	border-radius: 10px;
	flex-wrap: wrap;
	background-color: white;
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
}
.contact_strip_flex div{
	width: 100%;
	min-height: 250px;
}
input, textarea,select, .contact_strip_flex button {
	width: 90%;
	padding: 12px 20px;
	margin: 20px 5% 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
}
.contact_strip_flex button{
	height: 44px;
	background-color: #F8982B;
	border: none;
	color: white;
	margin: 50px auto 20px;
}
.contact_strip_flex button:hover{
	opacity: 0.8;
	transition: 0.2s;
}
iframe{
	border: 1px solid #efeeef;
	width: 100%;
	height: 100%;
	border-radius: 10px 10px 0 0;
}
.contact_strip_flex div label{
	position: absolute;
	visibility: hidden;
}

.gratitude button{
	color: white;
	background: #F8982B;
	min-width: 120px;
	height: 36px;
	margin-top: 20px;
	border: none;
	border-radius: 4px;
	bottom: 10px;
}
.gratitude button:hover{
	opacity: .8;
	transition: .3s;
}

/*CONTACT*/

/*PROJECT PAGE*/

.project_page_container{
	width: 90%;
	max-width: 1200px;
	box-shadow: -1px 9px 18px 0 rgba(75,81,91,.1);
	margin: 30px auto 0;
	border-radius: 10px;
	background-color: white;
	padding-bottom: 30px;
	box-sizing: border-box;
}
.project_page_container p{
	line-height: 20px;
}

.profect_page_pic{
	width: 90%;
	margin: auto;
	max-width: 600px;
	border-radius: 10px;
}
.project_page_details{
	width: 90%;
	margin: auto;
	max-width: 1000px;
}
.project_page_details p{
	margin: 15px auto;
	width: 90%;
}
.project_page_details p span{
	font-weight: bold;
}
.strip_line{
	height: 2px;
	width: 150px;
	margin: auto;
	background-color: #F8982B;
	display: block;
}

/*PROJECT PAGE*/

@media(min-width: 480px){
	.areas_of_practice_flex div{
		width: 33.3%;
	}
}
@media(min-width: 600px){
	.cover_content p.title{
		font-size: 1.8em;
	}
	p{
		font-size: 1em;
	}
    .humen_capital_flex div{
		width: 40%;
		margin: 30px 5% 0;
	}
}
@media(min-width: 768px){
/*
    .about_flex p{
        width: 32%;
    }
*/
	.project_strip_flex div{
		width: 40%;
		margin: auto calc(25% - 150px) 30px;
	}
    .about_strip_text{
		width: 28%;
	}
    .about_strip_map{
        width: 70%;
    }
	.areas_of_practice_flex div{
		width: 25%;
	}
	.humen_capital_flex div{
		width: 30%;
		margin: 30px 1.6% 0;
	}
	.wonted_flex div{
		width: 40%;
		margin: 20px 5%;
		min-height: 350px;
	}
}
@media(min-width: 992px){
	.item{
		height: 600px;
	}
	.social{
		justify-content: flex-start;
	}
	.social_btn.facebook, .social_btn.instagram{
		margin: 10px 8px 0 !important;
	}
	.content-inside {
		padding-bottom: 250px;
	}
	footer {
		height: 250px;
		margin-top: -250px;
	}
	.footer_links div{
		width: 25%;
	}
	.footer_links{
		flex-direction: row;
	}
	.footer_links div a{
		width: 100%;
		display: block;
		padding: 14px 8px 14px 0;
		color: white;
		text-align: right;
	}




	.mobile{
		display: none;
	}
	.desk{
		display: block;
	}
/*    HEADER*/
    .logo{
        margin: 20px 60px 20px 0;
    }
	.navbar{
		display: block;
	}
	.icon, .menu_mobile, .header_bg, .mobile_navbar{
		display: none;
	}
/*    END HEADER*/
	.about_the_company_strip_flex div{
		width: 90%;
		max-width: 300px;
		margin: auto 10px 30px;
	}
	.project_strip_flex div{
		width: 30%;
		margin: auto calc(16.6% - 150px) 30px;
	}
	.areas_of_practice_flex div{
		width: 10%;
	}
	.footer_label > ul > li{
		width: 25%;
	}
	.footer_label ul > li{
		border-bottom: none;
	}
	.open_sub_menu svg{
		display: none;
	}
	.footer_label > ul > li > ul > li{
		padding-right: 0;
		height: 30px;
		line-height: 30px;
		}
	.footer_label p{
		cursor: default;
	}
	.sub_menu {
		display:block!important;
	}
	.footer_content{
		border-bottom: 1px solid #757171;
	}
	.swiper-button-prev, .swiper-button-next{
		display: block;
	}
	.footer_label > ul:nth-child(1) > li:nth-child(5){
		display: none;
	}
	.humen_capital_flex div{
		width: 25%;
		margin: 30px 0 0;
	}
	.haifa_office_flex div{
		width: 50%;
		border-radius: 10px 0 0 10px;
	}
	.contact_strip_flex div{
		width: 50%;
	}
	iframe{
		border-radius: 0 10px 10px 0;
	}
}
@media(min-width: 1200px){
	.wonted_flex div{
		width: 30%;
		margin: 20px 1.6%;
	}
}