@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

a { text-decoration: none; }
ul.navigation a:link { color: #dddddd; }
ul.navigation a:visited { color: #dddddd; }
ul.navigation a:hover { color: #414738; }
ul.navigation a:active { color: #444444; }

body { margin: 0; }

.portfolio {
	object-fit: cover;
	width: 100%;
	height: 800px;
}

.main {
  object-fit: cover;
  width: 100%;
  height: 800px;
}

td {
  padding: 20px;
  vertical-align: top;
}

h1 {
  margin-left: 5%;
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, sans-serif;  
	font-size: 24pt;
	color: #414738;
  font-weight: normal;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
  align-items: center;
}

li {
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: 20px;
	margin-right: 20px;
	white-space: nowrap;
}

li a {
	display: block;
	text-align: center;
	font-size: 18pt;
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, sans-serif;  
}

li {
  display: block;
  text-align: center;
  font-size: 18pt;
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, sans-serif;  
}

p {
	margin-left: 200px;
	margin-right: 200px;
	font-size: 14pt;
	font-family: 'DM Sans', 'Helvetica Neue', Helvetica, sans-serif;
  color: #414738;
}

p.services {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 14pt;
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, sans-serif;
  color: #414738;
}

* {box-sizing:border-box}

.slideshow-container {
  max-width: 2000px;
  position: relative;
  margin: auto;
}

.slide {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: #414738; /* rgba(0,0,0,0.8); */
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #414738; /* 717171 */
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

