/*Paragraph Spacing*/
body p {
margin: 0;
padding: 0;
}

/*Intro Blog Remove Top Border*/
.boxed .blog-item {
box-shadow: 0 0 2px rgba(51, 57, 66, 0.1), 0 2px 5px rgba(51, 57, 66, 0.08), 0 5px 15px rgba(51, 57, 66, 0.08);
  margin-bottom: 20px;
  margin-top: 20px;
}

/*Boxed Div*/
.boxedborder{
    background-color: #fff;
    color: #666;
    box-shadow: 0 5px 10px #387781;
    padding: 10px;
    border-radius: 20px;
}

/*Boxed Div Transparent*/
.boxedborder-transparent{
    background-color: rgba(255, 255, 255, 0.7);
    color: #666;
    box-shadow: 0 5px 10px #387781;
    padding: 10px;
    border-radius: 20px;
}

/*Button to Div Bottom*/
.bottomdiv {
display: flex; 
  flex-direction: column;}
.buttondiv {
  margin-top: auto;
}

/* Icon Circle: Icon container */
.image-circle {
  width: 150px;
  height: 150px;
  border: 3px solid #5B8894;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}
/* Icon Circle: Image style */
.image-circle img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Icon Circle: Border Hover Effect*/
.image-circle:hover {
  border-color: #5B8894;
}

