/* NAVBAR STYLING STARTS */
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0px;
  background-color: black;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

/* LOGO */
.logo {
  font-size: 28px;
  padding-left: 2%;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu li:hover {
  background-color: green;
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  list-style: none;
  padding: 5px 0px;
}

/* DROPDOWN MENU */
.services {
  position: relative; 
}

.dropdown {
  background-color: black;
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 30px;
}

.dropdown li + li {
  margin-top: 5px;
}

.dropdown li {
  list-style: none;
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
}

.dropdown li:hover {
  background-color: green;
}

.services:hover .dropdown {
  display: block;
}

.flex {
	display: flex;
  flex-direction: row;
}

.about {
	display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: center;
}

.left {
	display: flex;
	width: 50%;
	align-items: left;
	
}

.homeleft {
	display: flex;
	flex-direction: column;
	align-items: left;
	
}

.right {
	display: flex;
	width: 50%;
	align-items: right;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
	font-family: Arial;
	font-size: 16pt;
	align: center;
	font-weight: bold;
}

h2 {
	font-family: Arial;
	font-size: 14pt;
	align: center;
	font-weight: bold;
}

h3 {
	font-family: Arial;
	font-size: 12pt;
	align: center;
	font-weight: bold;
}

p, ul, il {
	font-family: Arial;
	font-size: 12pt;
}

@media screen and (max-width: 500px) {
	.flex, .nav, .about {
		flex-direction: column;
	}
	
	.left {
		width: 100%;
	}
	
	.right {
		width: 100%;
	}
}





