.main_container {
  background-color: white;
}

/* .page-top-navigaation {
  padding: 15px 0;
  text-align: center;
} */

/* .page-top-navigaation ul {
  display: inline-flex;
  flex-direction: row;
  margin: 0 auto;
  padding: 5px;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  gap: 10px;
  overflow: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: 90%;
}

.page-top-navigaation ul > li {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 16px;
}

.page-top-navigaation ul li:hover {
  color: #C00000;
}

.page-top-navigaation ul li.active {
  background: #C00000;
  color: #ffffff;
} */

.titleContent {
  /* border: 1px solid black; */
  width: 100%;
  /* padding: 2rem;
  margin-top: 2rem; */
  background-color: whitesmoke;
  /* background: #ffffff; */
  /* background-color: #edf3f5; */
}

.currenttitle {
  color: red;
}

.discription {
  display: flex;
  flex-direction: row;
}

.discription > p {
  padding: 2rem;
  padding-left: 5rem;
  /* border: 1px solid black; */
  width: 50%;
  line-height: 1.9rem;
  font-weight: 300;
  font-size: 15px;
  word-spacing: 3px;
  font-family: sans-serif;
}

.image {
  /* border: 1px solid black; */
  /* width: 50%;
    padding: 2rem; */
  /* height: 450px; */
  /* width: 80%; */
  /* padding-top: 14px; */
}

.operativeText {
  /* border: 1px solid black; */
  padding: 2rem;
  padding-left: 5rem;
}

.operativeText > h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.operativeText > h4 {
  font-size: 16px;
  color: red;
  font-weight: 600;
  word-spacing: 2.5px;
  margin-top: 1.5rem;
  margin-bottom: 0.1rem;
}

.operativeText > p {
  font-size: 15px;
  line-height: 1.5rem;
  word-spacing: 4px;
  padding-right: 2rem;
  margin-bottom: 0.4rem;
  font-family: sans-serif;
}

.differenceText {
  /* border: 1px solid black; */
  padding: 2rem;
  padding-left: 5rem;
}

.differenceText > h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.differenceText > ul > li {
  font-size: 15px;
  line-height: 1.5rem;
  word-spacing: 4px;
  padding-right: 2rem;
  margin-left: 3rem;
  margin-bottom: 0.4rem;
  font-family: sans-serif;
  list-style-type: disc;
}

/* Basic Card */

/* .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

.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 {
  text-align: center;
  padding-top: 6%;
}

.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;
}

