:root {
  --surface-color: #fff;
  --curve: 40;
}

.cards {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  gap: 2rem;
  margin: 4rem 5vw;
  padding: 0;
  list-style-type: none;
}

.card {
  position: relative;
  display: block;
  /* height: 100%; */
  /* border-radius: calc(var(--curve) * 1px); */
  overflow: hidden;
  text-decoration: none;
}

.card__image {
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: calc(var(--curve) * 1px);
  background-color: var(--surface-color);
  transform: translateY(100%);
  transition: 0.2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: 0.2s ease-in-out;
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}

.card:hover .card__header {
  transform: translateY(0);
}

.card__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 40px;
  border-radius: 50%;
}

.card__title {
  font-size: 1em;
  margin: 0 0 0.3em;
  color: #0e416f;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  font-family: "MockFlowFont";
  font-size: 0.8em;
  color: #d7bdca;
}

.card__status {
  font-size: 0.8em;
  color: #d7bdca;
}

.card__description {
  padding: 0 2em 2em;
  margin: 0;
  color: #000000;
  font-family: "MockFlowFont";
  /* display: -webkit-box; */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 14px;
}

/* ========================================================== */

.figure {
  background: #1d1d1d;
  display: inline-block;
  margin: 10px 0px;
  /* max-width: 280px;
  min-width: 230px; */
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}

.figure * {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

/* Section 1 - Hover Effect #01 */

.section-1 .figure:before,
.section-1 .figure:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: #1d1d1d;
  border-left: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  content: "";
  opacity: 0.9;
  z-index: 1;
}

.section-1 .figure:before {
  -webkit-transform: skew(45deg) translateX(-180%);
  transform: skew(45deg) translateX(-180%);
}

.section-1 .figure:after {
  -webkit-transform: skew(45deg) translate(180%);
  transform: skew(45deg) translateX(180%);
}

.section-1 .figure img {
  /* -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden; */
  max-width: 100%;
  vertical-align: top;
}

.section-1 .figure figcaption {
  top: 50%;
  left: 50%;
  position: absolute;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  -webkit-box-shadow: 0 0 10px #1d1d1d;
  box-shadow: 0 0 10px #1d1d1d;
}

.section-1 .figure h3 {
  background-color: #1d1d1d;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  padding: 5px 10px;
  text-transform: uppercase;
}

.section-1 .figure a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.section-1 .figure:hover > img,
.section-1 .figure:hover > img {
  opacity: 0.5;
}

.section-1 .figure:hover:before,
.section-1 .figure.hover:before {
  -webkit-transform: skew(45deg) translateX(-80%);
  transform: skew(45deg) translateX(-80%);
}

.section-1 .figure:hover:after,
.section-1 .figure.hover:after {
  -webkit-transform: skew(45deg) translateX(80%);
  transform: skew(45deg) translateX(80%);
}

.section-1 figure:hover figcaption,
.section-1 figure.hover figcaption {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Section 2 - Hover Effect #02 */

section.section-2 {
  background: #1d1d1d;
  color: #efefef;
}

.section-2 .figure {
  background: #ffffff;
  color: #1d1d1d;
}

.section-2 .figure img {
  vertical-align: top;
  max-width: 100%;
  backface-visibility: hidden;
}

.section-2 .figure figcaption {
  position: absolute;
  background-color: #efefef;
  z-index: 1;
  top: 50%;
  left: 50%;
  padding: 5px 20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 1.1em; /* 1.1em */
  overflow: hidden;
  height: 44px;
  width: 150px;
}

.section-2 .figure h3 {
  text-transform: uppercase;
  font-size: 0.9em;
  margin: 0;
  letter-spacing: 2px;
}

.section-2 .figure h3.hover {
  color: #efefef;
  font-weight: 700;
}

.section-2 .figure a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.section-2 .figure .title {
  transform: translatey(50%);
}
.section-2 .figure .hover {
  transform: translatey(50%);
}

.section-2 .figure:hover > img,
.section-2 .figure.hover > img {
  opacity: 0;
}

.section-2 .figure:hover figcaption,
.section-2 .figure.hover figcaption {
  background-color: #1d1d1d;
}

.section-2 .figure:hover .title,
.section-2 .figure.hover .title {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}

.section-2 .figure:hover .hover,
.section-2 .figure.hover .hover {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Section 3 - Hovering Effect #03 */

.section-3 .figure {
  background-color: #1d1d1d;
  color: #efefef;
}

.section-3 .figure img {
  max-width: 100%;
  vertical-align: top;
}

.section-3 .figure figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 100%
  );
  background-image: linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  padding: 0 0px 10px 15px;
}

.section-3 .figure h3 {
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  margin: 3px 0;
}

.section-3 .figure .title1,
.section-3 .figure .title3 {
  font-weight: 300;
  font-size: 25px;
}

.section-3 .figure .title2 {
  color: #a58e7c;
  font-weight: 400;
  text-transform: uppercase;
}

.section-3 .figure a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.section-3 .figure:hover img,
.section-3 .figure.hover img {
  -webkit-transform: scale(1.3) rotate(-3deg);
  transform: scale(1.3) rotate(-3deg);
}

/* Section 4 - Hover Effect #04 */

.section-4 {
  /* background: #1d1d1d; */
  color: #000000;
}

.section-4 .figure {
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(0, 212, 255, 1) 100%
  );
  text-align: center;
  box-shadow: 0 0 18px rgb(0 0 0 / 29%);
}

.section-4 .figure img {
  vertical-align: top;
  /* max-width: 100%; */
  width: 100%;
}

.section-4 .figure div {
  position: absolute;
  top: 50%;
  left: 50%;
  display: table;
  padding: 0 20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.section-4 .figure div:before,
.section-4 .figure div:after {
  position: absolute;
  display: block;
  width: 0%;
  height: 100%;
  content: "";
  background-color: rgb(217 49 111 / 90%);
  opacity: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-tranisition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.section-4 .figure div:before {
  right: -150%;
}

.section-4 .figure div:after {
  left: -150%;
}

.section-4 .figure h3 {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  opacity: 0;
  font-size: 14px;
}

.section-4 .figure h3 span {
  font-weight: 700;
  display: block;
}

.section-4 .figure a {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}

.section-4 .figure:hover img,
.section-4 .figure.hover img {
  opacity: 0.3;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.section-4 .figure:hover h3,
.section-4 .figure.hover h3 {
  opacity: 1;
}

.section-4 .figure:hover div,
.section-4 .figure.hover div {
  opacity: 1;
}

.section-4 .figure:hover div:before,
.section-4 .figure.hover div:before,
.section-4 .figure:hover div:after,
.section-4 .figure.hover div:after {
  width: 150%;
}

/* Section 5 - Hover Effect #05 */

.section-5 .figure {
  height: 418px;
}

.section-5 .figure img {
  max-width: 100%;
  position: relative;
  opacity: 0.7;
}

.section-5 .figure figcaption {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 13%;
  right: 13%;
  border: 1px solid rgba(239, 239, 239, 0.8);
  border-width: 0 1px;
  background-color: rgba(29, 29, 29, 0.2);
  color: #efefef;
  /*   width: 220px; */
}

.section-5 .figure h2 {
  padding: 15px 20px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -1px;
}

.section-5 .figure h2 span {
  font-weight: 800;
}

.section-5 .figure .icon,
.section-5 .figure .caption {
  overflow: hidden;
  width: 100%;
  position: absolute;
}

.section-5 .figure .icon {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 0;
}

.section-5 .figure .caption {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  bottom: 0;
}

.section-5 .figure p,
.section-5 .figure .icon span {
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  text-align: center;
  width: auto;
  color: rgba(239, 239, 239, 0);
  font-size: 0.8em;
}

.section-5 .figure p:before,
.section-5 .figure .icon span:before,
.section-5 .figure p:after,
.section-5 .figure .icon span:after {
  position: absolute;
  height: 1px;
  content: "";
  background: #fff;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.section-5 .figure .icon span:before,
.section-5 .figure .icon span:after {
  width: 1000%;
  top: 50%;
}

.section-5 .figure .icon span:before {
  left: -1000%;
}

.section-5 .figure .icon span:after {
  right: -1000%;
}

.section-5 ion-icon {
  color: #efefef;
  font-size: 30px;
}

.section-5 .figure p:before,
.section-5 .figure p:after {
  width: 150%;
  bottom: 50%;
}

.section-5 .figure p:before {
  left: -100%;
}

.section-5 .figure p:after {
  right: -100%;
}

.section-5 .figure a {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}

.section-5 .figure:hover img,
.section-5 .figure.hover img {
  opacity: 0.15;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.section-5 .figure:hover p,
.section-5 .figure.hover p {
  opacity: 1;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
  color: #efefef;
}

.section-5 .figure:hover p:before,
.section-5 .figure.hover p:before {
  left: -150%;
}

.section-5 .figure:hover p:after,
.section-5 .figure.hover p:after {
  right: -150%;
}

/* Section 6 - Hover Effect 6 */

.section-6 {
  background: #1d1d1d;
  color: #efefef;
}

.section-6 .figure {
  text-align: left;
  background: #1d1d1d;
  font-size: 16px;
}

.section-6 .figure img {
  position: relative;
  max-width: 100%;
  vertical-align: top;
}

.section-6 figcaption {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  padding: 20px 30px;
}

.section-6 .figure figcaption:before,
.section-6 .figure figcaption:after {
  width: 1px;
  height: 0;
}

.section-6 .figure figcaption:before {
  right: 0;
  top: 0;
}

.section-6 .figure figcaption:after {
  left: 0;
  bottom: 0;
}

.section-6 .figure h3,
.section-6 .figure p {
  line-height: 1.5em;
}

.section-6 .figure h3 {
  margin: 0 0 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-6 .figure p {
  font-size: 0.8em;
  font-weight: 400;
  margin: 0 0 15px;
}

.section-6 .figure a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.section-6 .figure:before,
.section-6 .figure:after,
.section-6 .figure figcaption:before,
.section-6 .figure figcaption:after {
  position: absolute;
  content: "";
  background-color: #efefef;
  z-index: 1;
  -webkit-transition: all 0.35s ease-in;
  transition: all 0.35s ease-in;
  opacity: 0.8;
}

.section-6 .figure:before,
.section-6 .figure:after {
  height: 1px;
  width: 0%;
}

.section-6 .figure:before {
  top: 0;
  left: 0;
}

.section-6 .figure:after {
  bottom: 0;
  right: 0;
}

.section-6 .figure:hover img,
.section-6 .figure.hover img {
  opacity: 0.4;
}

.section-6 .figure:hover figcaption:before,
.section-6 .figure.hover figcaption:before,
.section-6 .figure:hover figcaption:after,
.section-6 .figure.hover figcaption:after {
  height: 100%;
}

.section-6 .figure:hover figcaption {
  opacity: 1;
}

.section-6 .figure:hover:before,
.section-6 .figure.hover:before,
.section-6 .figure:hover:after,
.section-6 .figure.hover:after {
  width: 100%;
}

.section-6 .figure:hover:before,
.section-6 .figure.hover:before,
.section-6 .figure:hover:after,
.section-6 .figure.hover:after,
.section-6 .figure:hover figcaption:before,
.section-6 .figure.hover figcaption:before,
.section-6 .figure:hover figcaption:after,
.section-6 .figure.hover figcaption:after {
  opacity: 0.1;
}
.i-shadow {
  box-shadow: 1px 1px 8px #000000d6;
}
.bg-sec {
  background-color: #64b9be26;
}
.t-upper {
  text-transform: uppercase;
}
/* .f-h1 {
  font-size: 48px !important;
} */

/* ===============================button Css ============================= */

.darksoul-hover-fill-button1 {
  margin: auto;
  display: flex;
  width: 200px;
  height: 40px;
  border-radius: 5px;
  outline: none;
  border: 1px solid rgb(160, 216, 255);
  background-color: white;
  font-family: "Belanosima", sans-serif;
  cursor: pointer;
  align-items: center;
  justify-content: left;
}
.color-fill-1 {
  position: absolute;
  margin-left: -7px;
  width: 2px;
  height: 40px;
  background-color: rgb(160, 216, 255);
  visibility: hidden;
}
.darksoul-hover-fill-button1:hover .color-fill-1 {
  visibility: visible;
  width: 200px;
  height: 40px;
  border-radius: 5px;
  transition: all cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.5s;
}
.darksoul-hover-fill-button1:hover {
  box-shadow: 1px 1px 20px rgb(160, 216, 255);
  transition: all 1s;
}
.darksoul-hover-fill-button1 a {
  margin: auto;
  z-index: 10;
  color: #000000;
  font-weight: 600;
  font-family: Poppins, "open sans", sans-serif !important;
}

.darksoul-hover-fill-button2 {
      margin: auto;
    display: flex;
    width: 160px;
    height: 40px;
    border-radius: 8px;
    outline: none;
    border: 0px solid rgb(34 107 109);
       background: linear-gradient(135deg, rgb(55 91 92) 0, rgb(94 162 164) 59%, rgb(87 146 148) 59%, rgb(43 59 60 / 94%) 100%);
    font-family: "Belanosima", sans-serif;
    cursor: pointer;
    align-items: center;
    justify-content: left;
}
.color-fill-2 {
  position: absolute;
  margin-left: -7px;
  width: 20px;
  height: 40px;
  border-radius: 25px 0px 0px 25px;
  background-color: rgb(160, 168, 255);
  visibility: hidden;
}
/*.darksoul-hover-fill-button2:hover .color-fill-2 {
    visibility: visible;
    width: 160px;
    height: 40px;
    border-radius: 25px;
    transition: all 0.5s;
    background: #000000;
    border-left: solid 2px #226b6d;
    border-top: solid 2px #226b6d;
    border-bottom: solid 2px #226b6d;*/
}
.darksoul-hover-fill-button2:hover .new_one_animation {
    visibility: visible;
    width: 125px;
    height: 40px;
    border-radius: 25px;
    transition: all 0.5s;
    background: #000000;
    border-left: solid 2px #226b6d;
    border-top: solid 2px #226b6d;
    border-bottom: solid 2px #226b6d;
}
/*.darksoul-hover-fill-button2:hover .new_one_animation1 {
    visibility: visible;
    width: 125px;
    height: 40px;
    border-radius: 25px;
    transition: all 0.5s;
    background: #000000;
    border-left: solid 2px #226b6d;
    border-top: solid 2px #226b6d;
    border-bottom: solid 2px #226b6d;*/
}
.darksoul-hover-fill-button2:hover .new_one_animation5 {
    visibility: visible;
    width: 112px;
    height: 40px;
    border-radius: 25px;
    transition: all 0.5s;
    background: #000000;
    border-left: solid 2px #226b6d;
    border-top: solid 2px #226b6d;
    border-bottom: solid 2px #226b6d;
}
.darksoul-hover-fill-button2:hover .productinquery1{
  visibility: visible;
    width: 152px;
    height: 40px;
    border-radius: 25px;
    transition: all 0.5s;
    background: #000000;
    border-left: solid 2px #226b6d;
    border-top: solid 2px #226b6d;
    border-bottom: solid 2px #226b6d;
}
.darksoul-hover-fill-button2:hover {
      box-shadow: 3px 3px 5px #61616194;
  transition: all 1s;
}
.darksoul-hover-fill-button2 a {
     margin: auto;
    z-index: 10;
    color: #fff;
    font-weight: 600;
    font-family: Poppins, "open sans", sans-serif !important;
}
.darksoul-hover-fill-button2:hover a {
  color: #ffffff;
}

.darksoul-hover-fill-button3 {
  margin: auto;
  display: flex;
  width: 200px;
  height: 40px;
  border-radius: 5px;
  outline: none;
  border: 2px solid rgb(14 65 112);
  background-color: white;
  font-family: "Belanosima", sans-serif;
  cursor: pointer;
  align-items: center;
  justify-content: left;
}
.color-fill-3 {
  position: absolute;
  margin-left: -7px;
  width: 200px;
  height: 1px;
  background-color: linear-gradient(to right, #06194e -50%, #006c96 100%);
  visibility: hidden;
}
.darksoul-hover-fill-button3:hover .color-fill-3 {
  visibility: visible;
  width: 200px;
  height: 40px;
  border-radius: 5px;
  transition: all 0.5s;
  background-color: linear-gradient(to right, #06194e -50%, #006c96 100%);
}
.darksoul-hover-fill-button3:hover {
  box-shadow: 3px 1px 13px #7df9ff;
  transition: all 1s;
}
.darksoul-hover-fill-button3 a {
  margin: auto;
  z-index: 10;
  color: #000000;
  font-weight: 600;
  font-family: Poppins, "open sans", sans-serif !important;
}
.cnsajvjv-js_jdsc1 {
  gap: 100px !important;
}

/* ==============================Style Next=================================== */

/* Style 9
   ----------------------------- */
.nine .myachieve {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  color: #253a58;
  letter-spacing: 1px;
  font-weight: 400;
}
.nine .myachieve span {
  margin-top: 5px;
  font-size: 15px;
  color: #444;
  word-spacing: 0px;
    font-weight: normal;
    letter-spacing: 0px;
  text-transform: capitalize;
  font-family: "Raleway", sans-serif;
  font-weight: 600;

  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 0px 20px;
  align-items: center;
}

.nine .myachieve span:after,
.nine .myachieve span:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #226b6d;
    border-top: 1px solid #226b6d;
    height: 20px;
    background-color: #226b6d;
}

.bottom-border {
  border-bottom: 3px double #000;
}
.bg-gray {
  background: #f0f0f0;
}

/* ===================================Awards=========================== */

.card-custom {
  overflow: hidden;
  min-height: 450px;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
}

.card-custom-img {
  height: 200px;
  min-height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-color: inherit;
}

/* First border-left-width setting is a fallback */
.card-custom-img::after {
  position: absolute;
  content: "";
  top: 161px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top-width: 40px;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 545px;
  border-left-width: calc(575px - 5vw);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: inherit;
}

.card-custom-avatar img {
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
  position: absolute;
  top: 100px;
  left: 1.25rem;
  width: 100px;
  height: 100px;
}
.br-5 {
  border-radius: 5px !important;
}

.of {
  height: 200px;
  overflow-y: scroll !important;
  padding-right: 5px;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #15046b;
}

.title-height {
  height: 60px;
}
.align-left {
  text-align: left !important;
}
.efe-evcs{
    display: flex;
    gap: 10px;
    text-align: center;
    justify-content: center;
}
.feqfewqfewqf{
text-transform: none!important;

}
.efeqewqwqwqwqq{
 text-transform: none; 
 font-weight: 700;
 font-size: 18px;
}
.list-unstyled li a{
      display: flex!important;
    align-items: center!important;
    gap: 10px;

}
.dsvdsvd{
  text-transform: none;
}