@charset "UTF-8";
/* CSS Document */

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

.menu-bar{
	background-color: white;
}

.nav-link {
	font-size: 16px;
	margin: 3px;
	color: black!important;
	font-weight: 500;
	
}

.navbar-nav{
	text-align: right;
	margin-right: 20px;
}

.menubar .navbar-toggler{
	padding-right: 20px;
	outline: none!important;
	border: none!important;
}

.navbar .fa {
	color: black!important;
	font-size: 30px;
	
}

.nav-link:hover {
	font-weight: 600;
	border-bottom: 1px solid black;
}

.navbar-brand img {
	width: 90px;
	margin-top: 5px;
	margin-left: 20px;
}

@media only screen and (max-width:1000px){
	.nav-link:hover {
		border-bottom: none!important;
	}
}

.myworkshop {
	border-radius: 10px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	background-color: #F3F3F3;
}


.container-fluid {
	animation: transitionIn 0.75s;
}

@keyframes transitionIn {
	from {
		opacity: 0;
		transform: rotateX(-10deg);
		
	}
	
	to {
		opacity: 1;
		transform: rotateX(0);
	}
}


h1 {
font-family: 'Montserrat', sans-serif;
	text-align: center;
	font-size: 40px;
	margin: 40px;
	text-decoration-style: }


h2 {
	font-family: 'Montserrat', sans-serif;
	text-align: left;
	font-size: 30px;
	font-weight: bold;
	padding-left: 27px;
}

p {
	font-family: 'Montserrat', sans-serif;
	text-align: justify;
	font-size: 15px;
	padding: 27px;
	
}

.tune {
	color: black;
	text-align: center;
	font-size: 16px;
}

b {
	font-size: 16px;
	font-weight: bold;
}

i {
	color: mediumslateblue;
}


.btn {
	border: 1px solid black;
	border-radius: 30px;
	backgrounnd-color: white;
	color: black; 
	padding: 14px 28px; 
	font-size: 16px;
	cursor: pointer;
	
}

.supply {
	color: mediumslateblue;
	font-size: 17px;
}

.view {
	border-color: white;
	background-color: mediumslateblue;
	color: white;
}

.view:hover {
	background-color: white;
	color: mediumslateblue;
	border: solid 1px mediumslateblue;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color:#848484;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

.img-responsive {
	max-width: 100%;
	height: auto;
}







