* {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  padding: 0px;
  font-family: Arial;
  width: 100%;	
}

.topnav {
  overflow: hidden;
  background-color:#04AA6D;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ccf9cf;
  color: black;
}

.topnav a.active {
  background-color: #ccf9cf;
  color: #000;
}

.topnav .icon {
  display: none;
}

@media only screen and (max-width: 900px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}

@media only screen and (min-width: 900px) {

  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}

}

@media screen and (max-width: 900px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
	*{
		marign:0px;
		padding: 0px;
		box-sizing: border-box;
	}	
	.title h1{
		text-align: center;
		padding-top: 50px;
		font-size: 42px;
	}
	.title h1::after{
		content: "";
		height: 4px;
		width:230px;
		background-color: #000;
		display: block;
		margin: auto;
	}
	
	.services{
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 75px auto;
		text-align: center;
	}
	
	.card{
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		margin: 0px 20px;
		padding: 20px 20px;
		background-color: #efefef;
		border-radius: 10px;
		cursor:pointer;
	}
}