@import url('https://fonts.googleapis.com/css2?family=Play:wght@700&display=swap');

:root {
	--colorblue: #5B9ABB;
	--colororange: #FFB675;
	--colorgreen: #57BDA6;
	--colorgrey: #858585;
	--letter: #595A5C;
	--colorOrangeLogo: #f38420;
	--ligtherorange: rgba(243, 132, 32, .2);
	--lightgrey: #F9F9F9;
	--ligtherBlue: rgba(190,215,228,.7);/*Change name*/
	--mainsectionh: 100vh;
	--aboutush: 100vh;
	--missionh: 100vh;
	--theteamh: 140vh;
	--projectsh: 145vh;
	--testimonialsh: 105vh;
	--contacth: 105vh;

	--OrangeOne:  #f89f02;
	--DarkGrey:  #1c1a20;
	--MediumGrey:  #393d3d;
	--LightGrey:  #8a8b88;
	--LightBlue:  #6dcbf5;
	--BrightBlue:  #bcf6f4;
}

.bannerbox{
	background-color: var(--OrangeOne)!important;
	color:  white;
	text-align: center;
	border-radius: 0 0 7px 7px;
}


.menu-style{
	background-color: var(--DarkGrey)!important;
	margin: 0;
	padding: 0;
	min-height: 60px;
	width: auto;
}


.menu-style ul{
	margin: auto auto;
	display: flex;
	list-style: none;
	text-align: center;
}

.menu-responsive ul{
	display: inline-block;
}

.menu-style ul li{
	list-style: none;
	color:  white;
	padding: 8px 16px;
	margin: 0 5px;
}

.menu-style ul li a{
	color: var(--LightBlue)!important;
	padding: 8px 16px!important;
	transition: all 0.3s ease-out;
}

.menu-style ul li a:hover{
	color: white!important;
	background-color: var(--LightGrey);
	
}

.artisan-content{
	background-color: var(--MediumGrey)!important;
}

.artisan-img-box{
	margin: 0;
	padding: 0;
}

.artisan-box-content{
	background-color: var(--LightGrey);
	padding: 10px;
}

.artisan-box-content h4{
	color: var(--BrightBlue);
}

.artisan-box-content ul{
	margin-left: 2em;
	color: white;
}

.artisan-box-content ul li{
	font-size: 20px;
}

.artisan-text-content{
	text-align: justify;
	color: white;
}

.artisan-text-content h4{
	color: var(--BrightBlue);
	margin: auto auto;
	text-align: center;

}

.services-title{
	margin-top: .5em;
	color: var(--BrightBlue);
}

.artisan-services{
	min-height: 250px;
	background-image: url('../img/backgroundIndex2.png');
	background-position: 0 600px;
	background-repeat: none;
	background-size: cover;
	}

.artisan-services-content{
	background-color: rgba(255, 255, 255, .4);
	margin: 20px;
}

.artisan-services-content h2{
	margin-top: 20px;
	color: white;
}

.split{
	margin: auto;
	background-color: white;
	width: 40px;
	height: 1px;
}

.artisan-services-content h5{
	margin-top: 15px;
	color: white;
	font-weight: 100;
}

.dropdown-menu a{
	cursor: pointer;
}

.artisan-cookies-concent{
	position: absolute;
	position: fixed;
	border-radius: 10px 10px 0 0;
	z-index: 10000;
	background-color: rgba(0,0,0,.8);/*var(--DarkGrey);*/
	color:  white;
	width: 100%;
	padding: 0px;
	margin: 0px;
	height: auto;
	border: 1px solid orange;
	bottom:  0;
	box-shadow: -2px -2px 5px rgba(0,0,0, .85);
	animation-name: appear;
  		animation-duration: 2s;
  		animation-iteration-count: 1;
}

@keyframes appear {
  from  {margin-bottom: -200px;}
  to {margin-bottom: 0px}
}

.hide{
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.cookie-image{
	width: 100%;
	height: auto;
}

.action-btn {
	padding: 5px 8px;
	box-shadow: 2px 2px 5px grey;
	border-radius: 5px;
	font-family: 'play';
	color: var(--DarkGrey);
	text-align: center;
	margin: 0 0 20px 0;
	cursor: pointer;
	transition: all .2s ease-in-out!important;
}

.action-btn:hover{
	box-shadow: inset 2px 2px 5px grey;
	background-color: var(--LightGrey);
	color:  white;
}

.action-btn h2, .action-btn h4{
	text-align: center;
}

@media screen and (max-width: 760px){
	.menu-style ul{
		margin: auto auto;
		display: inline-block!important;
		list-style: none;
		text-align: center;
	}

	.cookie-image{
	width: 120px;
	height: auto;
	}	

	.artisan-cookies-concent{
		text-align: justify;
	}


}