@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Lobster&family=Pacifico&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s22-body-bg: transparent;
  --s22-body-bg-hover: transparent;
  --s22-body-border-radius: 0;
  --s22-body-border-width: 0;
  --s22-body-border-color: transparent;

  /* Card  */

  --s22-card-bg: transparent;
  --s22-card-bg-hover: 0;
  --s22-card-border-radius: 0;
  --s22-card-border-width: 0;
  --s22-card-border-color: transparent;


  /* Image Container  */

  --s22-image-container-border-radius: 20px 20px 0 0;
  --s22-image-container-border-width: 0;
  --s22-image-container-border-color: transparent;
  --s22-image-container-bg: #f0f0f0;
  --s22-image-container-bg-hover: #f0f0f0;

  /* Image  */

  --s22-image-border-radius: 0;
  --s22-image-border-width: 0;
  --s22-image-border-color: transparent;

  /* Info Box  */
  --s22-info-box-border-radius: 0;
  --s22-info-box-bg-color-1: #d4fff082;
  --s22-info-box-bg-color-2: #58fa4f78;
  --s22-info-box-shadow-color: #0000001a;
  --s22-info-box-border-width: 0;
  --s22-info-box-border-color: transparent;

  /* Info  */
  --s22-info-font-size: 0.75rem;
  --s22-info-font-family: "Lobster", sans-serif;
  --s22-info-color: #170b6a;


  /* Name  */


  --s22-name-font-weight: normal;
  --s22-name-margin-top: 40px;
  --s22-name-margin-bottom: 15px;
  --s22-name-font-family: "Pacifico";
  --s22-name-font-size: 18px;
  --s22-name-color: #024995;
  --s22-name-color-hover: #024995;


  /* Designation  */

  --s22-designation-font-size: 00.75rem;
  --s22-designation-color: #024995;
  --s22-designation-font-weight: normal;
  --s22-designation-font-family: "Lobster";
  --s22-designation-margin-top: 0;
  --s22-designation-margin-bottom: 4px;
  --s22-designation-color-hover: #024995;


  /* Social Links  */


  --s22-social-links-border-width: 0;
  --s22-social-links-border-radius: 0 0 20px 20px;
  --s22-social-links-margin-top: 0;
  --s22-social-links-margin-bottom: 0;
  --s22-social-links-border-color: transparent;
  --s22-social-links-bg: #000;
  --s22-social-links-bg-hover: #000;

  /* Social Link  */

  --s22-social-link-color-hover: #76aaff;
  --s22-social-link-color: #007bff;
  --s22-social-link-bg: transparent;
  --s22-social-link-width: 30px;
  --s22-social-link-height: 30px;
  --s22-social-link-border-radius: ;
  --s22-social-link-border-width: ;
  --s22-social-link-border-color: transparent;
  --s22-social-link-size: 24px;
  /* ................................... */
  /* Expertise Section  */
  --s22-exp-section-font-family: Arial;
  --s22-exp-section-bg: #f8f9fa00;
  --s22-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s22-exp-item-bg: #fff;
  --s22-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s22-exp-label-font-size: 10px;
  --s22-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s22-exp-progress-bar-container-bg: #e0e0e0;
  --s22-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s22-exp-progress-bar-color-1: #43a047;
  --s22-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s22-exp-progress-percentage-color: #111;

  /* ______________________________ */
  --s22-info-box-bg: radial-gradient(circle,
      var(--s22-info-box-bg-color-1),
      var(--s22-info-box-bg-color-2));
  --s22-info-box-bg-hover: radial-gradient(circle,
      var(--s22-info-box-bg-color-2),
      var(--s22-info-box-bg-color-1));

}

.style_22 {
  background-color: var(--s22-body-bg);
  border-radius: var(--s22-body-border-radius);
  border-width: var(--s22-body-border-width);
  border-color: var(--s22-body-border-color);
  border-style: solid;
}

.style_22:hover {
  background-color: var(--s22-body-bg-hover);
}


.style_22 .card {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  width: 100%;
  height: 100%;
  background-color: var(--s22-card-bg);
  border-radius: var(--s22-card-border-radius);
  border-width: var(--s22-card-border-width);
  border-color: var(--s22-card-border-color);
  border-style: solid;

}

.style_22 .image-container {
  flex-basis: 50%;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(95% - 20px),
      90% 95%,
      80% calc(95% - 20px),
      70% 95%,
      60% calc(95% - 20px),
      50% 95%,
      40% calc(95% - 20px),
      30% 95%,
      20% calc(95% - 20px),
      10% 95%,
      0 calc(95% - 20px));
  background-color: var(--s22-image-container-bg);
  overflow: hidden;
  border-radius: var(--s22-image-container-border-radius);
  border-width: var(--s22-image-container-border-width);
  border-color: var(--s22-image-container-border-color);
  background-color: var(--s22-image-container-bg);
  border-style: solid;
}

.style_22 .card:hover .image-container {
  background-color: var(--s22-image-container-bg-hover);
}

.style_22 .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
  border-radius: var(--s22-image-border-radius);
  border-width: var(--s22-image-border-width);
  border-color: var(--s22-image-border-color);
  border-style: solid;
}

.style_22 .image-container:hover img {
  transform: scale(1.1);
}

.style_22 .info-box {
  flex-basis: 50%;
  padding: 20px 10px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 30px, 10% calc(30px + 20px), 20% 30px, 30% calc(30px + 20px), 40% 30px, 50% calc(30px + 20px), 60% 30px, 70% calc(30px + 20px), 80% 30px, 90% calc(30px + 20px), 100% 30px);
  background: var(--s22-info-box-bg);
  /* Fallback color */
  box-shadow: 0 4px 8px var(--s22-info-box-shadow-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -53px;
  border-radius: var(--s22-info-box-border-radius);
  border-width: var(--s22-info-box-border-width);
  border-color: var(--s22-info-box-border-color);
  border-style: solid;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.style_22 .info {
  margin-bottom: 3px;
  color: var(--s22-info-color);
  font-family: var(--s22-info-font-family);
  font-size: var(--s22-info-font-size);
  line-height: 1;
  letter-spacing: 1;
}

.style_22 .info.name {
  font-size: 18px !important;
  margin: 40px 0 15px 0;
  font-size: var(--s22-name-font-size);
  color: var(--s22-name-color);
  font-weight: var(--s22-name-font-weight);
  font-family: var(--s22-name-font-family);
  margin-top: var(--s22-name-margin-top);
  margin-bottom: var(--s22-name-margin-bottom);
}

.style_22 .card:hover .name {
  color: var(--s22-name-color-hover);
}

.style_22 .info.designation {
  font-size: var(--s22-designation-font-size);
  color: var(--s22-designation-color);
  font-weight: var(--s22-designation-font-weight);
  font-family: var(--s22-designation-font-family);
  margin-top: var(--s22-designation-margin-top);
  margin-bottom: var(--s22-designation-margin-bottom);

}

.style_22 .card:hover .designation {
  color: var(--s22-designation-color-hover);
}

.style_22 .tweb {
  text-decoration: none !important;
  color: var(--s22-info-color);
}

.style_22 .social-links {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 7px;
  background-color: var(--s22-social-links-bg);
  border-width: var(--s22-social-links-border-width);
  border-color: var(--s22-social-links-border-color);
  border-radius: var(--s22-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s22-social-links-margin-top);
  margin-bottom: var(--s22-social-links-margin-bottom);
}

.style_22 .social-link {
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: center;
  transform: translateZ(0);
  text-align: center;
  transition: all 0.3s;
  padding: 3px;
  color: var(--s22-social-link-color);
  background-color: var(--s22-social-link-bg);
  width: var(--s22-social-link-width);
  height: var(--s22-social-link-height);
  border-radius: var(--s22-social-link-border-radius);
  border-width: var(--s22-social-link-border-width);
  border-color: var(--s22-social-link-border-color);
  font-size: var(--s22-social-link-size);
  border-style: solid;
}

.style_22 .social-link:hover {
  color: var(--s22-social-link-color-hover);
  transform: translateZ(10px) scale(1.2);
}

.style_22 .tweb::before,
.style_22 .info-box .phone::before,
.style_22 .info-box .email::before {
  content: " ";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_22 .info-box .email::before {
  content: "\f0e0";
}

.style_22 .info-box .phone::before {
  content: "\f095";
}

.style_22 .tweb::before {
  content: "\f57d";
}



/* ....................................... */


.style_22  .expertise-section {
  font-family: var(--s22-exp-section-font-family);
  background-color: var(--s22-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s22-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_22  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_22  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s22-exp-item-bg);
}

.style_22  .expertise-label {
  font-size: var(--s22-exp-label-font-size);
  font-weight: var(--s22-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_22  .progress-container {
  background-color: var(--s22-exp-progress-bar-container-bg);
  border-radius: var(--s22-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_22  .progress-bar {
  background: linear-gradient(60deg, var(--s22-exp-progress-bar-color-1), var(--s22-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_22  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s22-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}