.link {
  margin-top: 30px;
}
.link h2 {
  border: 1px solid #205648;
  width: 28%;
  margin: 0 auto;
  height: auto;
  line-height: 40px;
  border-radius: 5px;
  text-align: center;
  color: #205648;
  font-family: sans-serif;
  font-weight: lighter;
}
.top-addons {
	background:url(../img/dotted-bg.png);
	background-position: center;
	background-size: cover;
/*	padding: 50px 0px;*/
}
#addon {
  padding: 60px;
}
#addon .heading h2 {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #205648;
  font-size: 28px;
  font-family: sans-serif;
  font-weight: lighter;
}

#addon .addon_box {
  height: 50px;
  margin: 7px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #205648;
cursor: pointer;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
#addon .addon_box:hover {
  background: #C9E6CA;
}
#addon .back_hover:hover {
	color: #fff;
	background: #205648 !important;
}
#addon .addon_box p {
  font-family: sans-serif;
  font-weight: lighter;
  padding-top: 0px;
  font-size: 15px;

}
#addon .addon_box .description {
	margin-top: 10px;
	font-family: sans-serif;
  font-weight: lighter;
	 font-size: 15px;
	opacity: 0;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	text-transform: capitalize;
}
#addon .addon_box:hover .description {
	opacity: 1;
}
#addon .sildebar {
  padding: 15px;
}
#addon .sildebar ul {
  margin: 10px;
}
#addon .sildebar ul p {
  height: 35px;
  line-height: 35px;
  background: #EB3C00;
  font-size: 22px;
  padding-left: 30px;
  color: #ffffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#addon .sildebar ul li {
  background: #205648;
  margin: 8px;
  padding: 15px;
  list-style: none;
  color: #ffffff;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
#addon .sildebar ul li:hover {
  background: none;
  border: 1px solid #205648;
  color: #205648;
}
#addon .sildebar ul li a {
  font-family: sans-serif;
  font-weight: lighter;
  padding-left: 15px;
  font-size: 16px;
}
#services {
  padding: 40px;
}
#services .heading h2 {
  margin-top: 20px;
  margin-bottom: 30px;
  color: #205648;
  font-size: 28px;
  font-family: sans-serif;
  font-weight: lighter;
}
#services img {
  margin-right: 20px;
  margin-left: 80px;
  width: 200px;
  height: auto;
}
#services .description {
  margin-left: 20px;
}
#services .description p {
  text-align: justify;
  padding-bottom: 10px;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: lighter;
  line-height: 25px;
  letter-spacing: 1px;
}
#services .description .sub {
  margin-left: 20px;
}
#services .description .sub_head h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #205648;
  font-size: 24px;
  font-family: sans-serif;
  font-weight: bold;
}
#services .sildebar ul {
  margin: 15px;
}
#services .sildebar ul p {
  font-family: sans-serif;
  font-weight: lighter;
  height: 35px;
  line-height: 35px;
  background: #EB3C00;
  font-size: 22px;
  padding-left: 30px;
  color: #ffffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#services .sildebar ul li {
  background: #205648;
  margin: 8px;
  padding: 15px;
  list-style: none;
  color: #ffffff;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
#services .sildebar ul li:hover {
  background: none;
  border: 1px solid #205648;
  color: #205648;
}
#services .sildebar ul li a {
  font-family: sans-serif;
  font-weight: lighter;
  padding-left: 15px;
  font-size: 16px;
}
.addon_box {
    position: relative;
    
}

.addon_box .tooltiptext {
    visibility: hidden;
	 font-family: sans-serif;
  	font-weight: lighter;
	line-height: 25px;
	text-transform: capitalize;
/*    width: 180px;*/
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 0px;
    right: 0px;
	margin: 0px 10px;
    opacity: 0;
    transition: opacity 1s;
}

.addon_box .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.addon_box:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}