.containervision {
  /* margin-top: 1rem;
    height: 500px;
    background: #eff4f4; */
}

.contentDiv {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  /* width: 80%; */
  height: 100%;
  margin: auto;
}

.gridDiv {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  height: 80%;
  width: 30%;
  display: flex;
  background-color: white;
  gap: 1rem;
  flex-direction: column;
}

.gridDiv p {
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 16px;
  margin-top: 1rem;
  font-weight: 200;
  word-spacing: 2px;
}

.section_heading {
  box-sizing: border-box;
  padding-left: 8%;
  padding-bottom: 2%;
}

/* @media screen and (min-width: 320px) */
.section_heading .entry_title {
  position: relative;
  padding-bottom: 0px;
  font-size: 20px;
  font-weight: 600;
}

.titleContent {
  /* border: 1px solid black; */
  width: 100%;
  padding: 2rem;
  margin-top: 2rem;
  background-color: whitesmoke;
  /* background: #ffffff; */
}

.currenttitle {
  color: red;
}

.discription {
  display: flex;
  flex-direction: row;
}

.image {
  /* border: 1px solid black; */
  /* width: 50%;
    padding: 2rem; */
  /* height: 450px; */
  /* width: 53%; */
  /* padding-top: 14px; */
}

/* Basic Card */

/* .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

.card-category-1 {
  margin-bottom: 45px;
  /* margin-left: 50px; */
  text-align: center;
  width: calc(33.33% - 10px); /* Adjust width to fit three cards in one line */
}

.card-category-1 div {
  display: inline-block;
}

/* .card-category-1 > div {
  margin: 10px 5px;
  text-align: left;
} */

.basic-card {
  width: 300px;
  position: relative;
  -o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.basic-card .card-content {
  /* padding: 30px; */
  text-align: center;
}

.basic-card .card-title {
  /* font-size: 25px; */
  font-family: "Open Sans", sans-serif;
  color: black;
}

.basic-card .card-text {
  line-height: 1.6;
}

.basic-card .card-link {
  padding: 25px;
  width: -webkit-fill-available;
}

.basic-card .card-link a {
  text-decoration: none;
  position: relative;
  padding: 10px 0px;
}

.basic-card .card-link a:after {
  top: 30px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  width: 0;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.basic-card .card-link a:hover:after {
  width: 100%;
  left: 0;
}

.basic-card-aqua {
  /* background-image: linear-gradient(to bottom right, #ecf2f1, hsl(223, 41%, 97%)); */
  background-color: #ffffff;
}

.basic-card-aqua .card-content,
.basic-card .card-link a {
  color: #fff;
}

.basic-card-aqua .card-link {
  /* border-top: 1px solid #82c1bb; */
}

.basic-card-aqua .card-link a:after {
  background: #fff;
}

.basic-card-lips {
  background-image: linear-gradient(to bottom right, #ec407b, #ff7d94);
}

.basic-card-lips .card-content {
  color: #fff;
}

.basic-card-lips .card-link {
  border-top: 1px solid #ff97ba;
}

.basic-card-lips .card-link a:after {
  background: #fff;
}

.basic-card-light {
  border: 1px solid #eee;
}

.basic-card-light .card-title,
.basic-card-light .card-link a {
  color: #636363;
}

.basic-card-light .card-text {
  color: #7b7b7b;
}

.basic-card-light .card-link {
  border-top: 1px solid #eee;
}

.basic-card-light .card-link a:after {
  background: #636363;
}

.basic-card-dark {
  background-image: linear-gradient(to bottom right, #252525, #4a4a4a);
}

.basic-card-dark .card-title,
.basic-card-dark .card-link a {
  color: #eee;
}

.basic-card-dark .card-text {
  color: #dcdcdcdd;
}

.basic-card-dark .card-link {
  border-top: 1px solid #636363;
}

.basic-card-dark .card-link a:after {
  background: #eee;
}

