@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s14-body-bg: transparent;
  --s14-body-bg-hover: transparent;
  --s14-body-border-radius: 0;
  --s14-body-border-width: 0;
  --s14-body-border-color: transparent;

  /* Card  */

  --s14-card-bg: #237dde;
  --s14-card-bg-hover: #237dde;
  --s14-card-border-radius: 0;
  --s14-card-border-width: 0;
  --s14-card-border-color: transparent;

  /* Image Container  */

  --s14-image-container-border-radius: 0;
  --s14-image-container-border-width: 0;
  --s14-image-container-border-color: transparent;
  --s14-image-container-bg: transparent;
  --s14-image-container-bg-hover: transparent;

  /* Image  */

  --s14-image-shadow-color: #00000033;
  --s14-image-border-color: #237dde;
  --s14-image-border-radius: 0;
  --s14-image-border-width: 3px;

  /* Info Box  */

  --s14-info-box-border-radius: 5px;
  --s14-info-box-border-width: 0;
  --s14-info-box-border-color: transparent;
  --s14-info-box-bg: transparent;
  --s14-info-box-bg-hover: transparent;
  /* Info  */
  --s14-info-font-size: 0.75rem;
  --s14-info-color: #fafafa;
  --s14-info-font-family: "PT Sans Narrow", sans-serif;

  /* Name  */

  --s14-name-font-weight: bold;
  --s14-name-margin-top: 0;
  --s14-name-font-size: 15px;
  --s14-name-margin-bottom: 5px;
  --s14-name-color: #fafafa;
  --s14-name-color-hover: #fafafa;
  --s14-name-font-family: "PT Sans Narrow";

  /* Designation  */

  --s14-designation-font-size: ;
  --s14-designation-color: #fafafa;
  --s14-designation-font-weight: normal;
  --s14-designation-font-family: "PT Sans Narrow";
  --s14-designation-margin-top: 0;
  --s14-designation-margin-bottom: 0;
  --s14-designation-color-hover: #fafafa;

  /* Social Links  */

  --s14-social-links-bg: transparent;
  --s14-social-links-border-width: 0;
  --s14-social-links-border-radius: 5px;
  --s14-social-links-border-color: transparent;
  --s14-social-links-margin-top: 0;
  --s14-social-links-margin-bottom: 0;
  --s14-social-links-bg-hover: transparent;

  /* Social Link  */

  --s14-social-link-color: #fff;
  --s14-social-link-bg: transparent;
  --s14-social-link-width: auto;
  --s14-social-link-height: auto;
  --s14-social-link-border-radius: 0;
  --s14-social-link-border-width: 0;
  --s14-social-link-border-color: transparent;
  --s14-social-link-font-size: 18px;
  /* ................................... */
  /* Expertise Section  */
  --s14-exp-section-font-family: Arial;
  --s14-exp-section-bg: #f8f9fa00;
  --s14-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s14-exp-item-bg: #fff;
  --s14-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s14-exp-label-font-size: 10px;
  --s14-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s14-exp-progress-bar-container-bg: #e0e0e0;
  --s14-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s14-exp-progress-bar-color-1: #43a047;
  --s14-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s14-exp-progress-percentage-color: #111;
}

.style_14 {
  background-color: var(--s14-body-bg);
  border-radius: var(--s14-body-border-radius);
  border-width: var(--s14-body-border-width);
  border-color: var(--s14-body-border-color);
}

.style_14:hover {
  background-color: var(--s14-body-bg-hover);
}

.style_14 .card {
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  background-color: var(--s14-card-bg);
  width: 97%;
  position: relative;
  border-radius: var(--s14-card-border-radius);
  border-width: var(--s14-card-border-width);
  border-color: var(--s14-card-border-color);
  border-style: solid;
}

.style_14 .card:hover {
  background-color: var(--s14-card-bg-hover);
}

.style_14 .card .image-container {
  flex-shrink: 0;
  width: 100%;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: var(--s14-image-container-border-radius);
  border-width: var(--s14-image-container-border-width);
  border-color: var(--s14-image-container-border-color);
  background: var(--s14-image-container-bg);
  border-style: solid;
}

.style_14 .card:hover .image-container {
  transform: translateX(-50%) scale(0.6);
  background: var(--s14-image-container-bg-hover);
}

.style_14 .image-container img {
  width: 100% !important;
  height: 100%;
  box-shadow: 0 2px 6px var(--s14-image-shadow-color);
  border: var(--s14-image-border-width) solid var(--s14-image-border-color);
  border-radius: var(--s14-image-border-radius);
}

.style_14 .card .info-box {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  padding: 20px 0;
  position: absolute;
  right: 0;
  top: 15%;
  transform: translateY(0);
  width: 69%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2px;
  text-align: center;
  border-radius: var(--s14-info-box-border-radius);
  border-width: var(--s14-info-box-border-width);
  border-color: var(--s14-info-box-border-color);
  background-color: var(--s14-info-box-bg);
  border-style: solid;
}

.style_14 .info-box .info {
  font-size: var(--s14-info-font-size);
  color: var(--s14-info-color);
  font-family: var(--s14-info-font-family);
}

.style_14 .info-box .name {
  color: var(--s14-name-color) !important;
  font-size: var(--s14-name-font-size) !important;
  font-weight: var(--s14-name-font-weight) !important;
  font-family: var(--s14-name-font-family) !important;
  margin-top: var(--s14-name-margin-top) !important;
  margin-bottom: var(--s14-name-margin-bottom) !important;
}

.style_14 .card:hover .name {
  color: var(--s14-name-color-hover);
}

.style_14 .designation {
  font-size: var(--s14-designation-font-size) !important;
  color: var(--s14-designation-color) !important;
  font-weight: var(--s14-designation-font-weight)  !important;
  font-family: var(--s14-designation-font-family)  !important;
  margin-top: var(--s14-designation-margin-top) !important;
  margin-bottom: var(--s14-designation-margin-bottom) !important;
}

.style_14 .card:hover .designation {
  color: var(--s14-designation-color-hover);
}

.style_14 .card:hover .info-box,
.style_14 .card:hover .social-links {
  opacity: 1;
  visibility: visible;
}

.style_14 .info.website {
  color: var(--s14-info-color);
}

.style_14 .card .social-links {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s, transform 0.3s ease-in-out;
  padding: 10px;
  right: 0;
  width: 60%;
  z-index: 10;
  background: var(--s14-social-links-bg);
  border-width: var(--s14-social-links-border-width);
  border-color: var(--s14-social-links-border-color);
  border-radius: var(--s14-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s14-social-links-margin-top);
  margin-bottom: var(--s14-social-links-margin-bottom);
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  transform: translateY(5px);
  gap: 2px;
}

.style_14 .card:hover .social-links {
  background: var(--s14-social-links-bg-hover);
}

.style_14 .card .info-box,
.style_14 .card .social-links {
  right: -100%;
  transition: right 0.5s ease, opacity 0.5s ease, visibility 0.5s;
}

.style_14 .card:hover .info-box,
.style_14 .card:hover .social-links {
  right: 0;
  transition: right 0.5s ease, opacity 0.5s ease, visibility 0.5s;
}


.style_14 .social-links .social-link {
  text-align: center;
  transition: all 0.3s;
  padding: 3px;
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  color: var(--s14-social-link-color);
  background-color: var(--s14-social-link-bg);
  width: var(--s14-social-link-width);
  height: var(--s14-social-link-height);
  border-radius: var(--s14-social-link-border-radius);
  border-width: var(--s14-social-link-border-width);
  border-color: var(--s14-social-link-border-color);
  font-size: var(--s14-social-link-font-size);
  border-style: solid;
}

.style_14 .social-links .link {
  border-radius: var(--s14-social-link-border-radius);
}

.style_14 .tweb::before,
.style_14 .info-box .phone::before,
.style_14 .info-box .email::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_14 .info-box .email::before {
  content: "\f0e0";
}

.style_14 .info-box .phone::before {
  content: "\f095";
}

.style_14 .tweb::before {
  content: "\f57d";
}

.style_14 a.tweb {
  color: var(--s14-info-color);
  text-decoration: none !important;

}


/* Facebook Style */
.style_14 .facebook {
  background-color: #3b5998;
}

.style_14 .facebook:hover {
  background-color: #fff;
  color: #3b5998;
}

/* Twitter Style */
.style_14 .twitter {
  background-color: #1da1f2;
}

.style_14 .twitter:hover {
  background-color: #fff;
  color: #1da1f2;
}

/* LinkedIn Style */
.style_14 .linkedin {
  background-color: #0077b5;
}

.style_14 .linkedin:hover {
  background-color: #fff;
  color: #0077b5;
}

/* WhatsApp Style */
.style_14 .whatsapp {
  background-color: #25d366;
}

.style_14 .whatsapp:hover {
  background-color: #fff;
  color: #25d366;
}

/* Instagram Style */
.style_14 .instagram {
  background-color: #e1306c;
}

.style_14 .instagram:hover {
  background-color: #fff;
  color: #e1306c;
}

/* Pinterest Style */
.style_14 .pinterest {
  background-color: #e60023;
}

.style_14 .pinterest:hover {
  background-color: #fff;
  color: #e60023;
}

/* Discord Style */
.style_14 .discord {
  background-color: #7289da;
}

.style_14 .discord:hover {
  background-color: #fff;
  color: #7289da;
}

/* YouTube Style */
.style_14 .youtube {
  background-color: #ff0000;
}

.style_14 .youtube:hover {
  background-color: #fff;
  color: #ff0000;
}

/* Reddit Style */
.style_14 .reddit {
  background-color: #ff4500;
}

.style_14 .reddit:hover {
  background-color: #fff;
  color: #ff4500;
}

/* TikTok Style */
.style_14 .tiktok {
  background-color: #000000;
}

.style_14 .tiktok:hover {
  background-color: #fff;
  color: #000000;
}

/* Telegram Style */
.style_14 .telegram {
  background-color: #0088cc;
}

.style_14 .telegram:hover {
  background-color: #fff;
  color: #0088cc;
}

/* Quora Style */
.style_14 .quora {
  background-color: #b92b27;
}

.style_14 .quora:hover {
  background-color: #fff;
  color: #b92b27;
}

/* Tumblr Style */
.style_14 .tumblr {
  background-color: #35465c;
}

.style_14 .tumblr:hover {
  background-color: #fff;
  color: #35465c;
}

/* Vimeo Style */
.style_14 .vimeo {
  background-color: #1ab7ea;
}

.style_14 .vimeo:hover {
  background-color: #fff;
  color: #1ab7ea;
}

/* ....................................... */


.style_14  .expertise-section {
  font-family: var(--s14-exp-section-font-family);
  background-color: var(--s14-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s14-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_14  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_14  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s14-exp-item-bg);
}

.style_14  .expertise-label {
  font-size: var(--s14-exp-label-font-size);
  font-weight: var(--s14-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_14  .progress-container {
  background-color: var(--s14-exp-progress-bar-container-bg);
  border-radius: var(--s14-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_14  .progress-bar {
  background: linear-gradient(60deg, var(--s14-exp-progress-bar-color-1), var(--s14-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_14  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s14-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}