@import url('https://fonts.googleapis.com/css2?family=Philosopher&display=swap');

:root {
  /* //////////////////////// */

  /* Body  */
  --s21-body-border-radius: 0;
  --s21-body-border-width: 0;
  --s21-body-border-color: transparent;
  --s21-body-bg: transparent;
  --s21-body-bg-hover: transparent;
  
  /* Card  */

  --s21-card-bg: transparent;
  --s21-card-bg-hover: transparent;
  --s21-card-border-radius: 0;
  --s21-card-border-width: 0;
  --s21-card-border-color: transparent;

  /* Image Container  */

  --s21-image-container-bg: #f0f0f0;
  --s21-image-container-border-radius: 20px 20px 0;
  --s21-image-container-border-width: 0;
  --s21-image-container-border-color: transparent;
  --s21-image-container-bg: transparent;
  --s21-image-container-bg-hover: transparent;

  /* Image  */

  --s21-image-border-radius: 0;
  --s21-image-border-width: 0;
  --s21-image-border-color: transparent;


  /* Info Box  */
  --s21-info-box-border-radius: 0 20px 0 20px;
  --s21-info-box-border-width: 0;
  --s21-info-box-border-color: transparent;
  --s21-info-box-bg: #cdc9c9;
  --s21-info-box-bg-hover: #cdc9c9;
  --s21-info-box-shadow-color: #0000001a;
  /* Info  */


  --s21-info-color: #16103b;
  --s21-info-font-family: "Montserrat", sans-serif;
  --s21-info-font-size: 14px;

  /* Name  */


  --s21-name-font-weight: bold;
  --s21-name-margin-top: 0;
  --s21-name-margin-bottom: 6px;
  --s21-name-font-family: ;
  --s21-name-font-size: 18px;
  --s21-name-color: #000;
  --s21-name-color-hover: #000;


  /* Designation  */

  --s21-designation-font-size: 15px;
  --s21-designation-color: #222;
  --s21-designation-font-weight: normal;
  --s21-designation-font-family: 'Philosopher';
  --s21-designation-margin-top: 0;
  --s21-designation-margin-bottom: 5px;
  --s21-designation-color-hover: #222;

  /* Social Links  */


  --s21-social-links-border-width: 0;
  --s21-social-links-border-radius: 0 20px;
  --s21-social-links-margin-top: 0;
  --s21-social-links-margin-bottom: 0;
  --s21-social-links-border-color: transparent;
  --s21-social-links-bg: #000;
  --s21-social-links-bg-hover: #222;

  /* Social Link  */

  --s21-social-link-color: #007bff;
  --s21-social-link-color-hover: #76aaff;
  --s21-social-link-bg: transparent;
  --s21-social-link-border-color: transparent;
  --s21-social-link-size: 24px;
  --s21-social-link-width: 30px;
  --s21-social-link-height: 30px;
  --s21-social-link-border-radius: 0;
  --s21-social-link-border-width: 0;

  /* ................................... */
  /* Expertise Section  */
  --s21-exp-section-font-family: Arial;
  --s21-exp-section-bg: #f8f9fa00;
  --s21-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s21-exp-item-bg: #fff;
  --s21-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s21-exp-label-font-size: 10px;
  --s21-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s21-exp-progress-bar-container-bg: #e0e0e0;
  --s21-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s21-exp-progress-bar-color-1: #43a047;
  --s21-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s21-exp-progress-percentage-color: #111;
}

.style_21 {
  background-color: var(--s21-body-bg);
  border-radius: var(--s21-body-border-radius);
  border-width: var(--s21-body-border-width);
  border-color: var(--s21-body-border-color);
}

.style_21:hover {
  background-color: var(--s21-body-bg-hover);
}

.style_21 .card {
  padding: 0;
  margin: 20px;
  border: none;
  box-shadow: none;
  background: none;
  width: 100%;
  height: 100%;
  background-color: var(--s21-card-bg);
  border-radius: var(--s21-card-border-radius);
  border-width: var(--s21-card-border-width);
  border-color: var(--s21-card-border-color);
  border-style: solid;

}

.style_21 .card:hover {
  background-color: var(--s21-card-bg-hover);
}

.style_21 .image-container {
  flex-basis: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 95.37%, 0 83.8%);
  background-color: var(--s21-image-container-bg);
  overflow: hidden;
  border-radius: var(--s21-image-container-border-radius);
  border-width: var(--s21-image-container-border-width);
  border-color: var(--s21-image-container-border-color);
  border-style: solid;
}

.style_21 .card:hover .image-container {
  background-color: var(--s21-image-container-bg-hover);
}

.style_21 .image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--s21-image-border-radius);
  border-width: var(--s21-image-border-width);
  border-color: var(--s21-image-border-color);
  border-style: solid;
}

.style_21 .info-box {
  flex-basis: 50%;
  padding: 35px 10px;
  clip-path: polygon(100% 34px, 100% 100%, 0 100%, 0 7.07%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -32px;
  text-align: justify;
  background-color: var(--s21-info-box-bg);
  box-shadow: 0 4px 8px var(--s21-info-box-shadow-color);
  border-radius: var(--s21-info-box-border-radius);
  border-width: var(--s21-info-box-border-width);
  border-color: var(--s21-info-box-border-color);
  border-style: solid;

}

.style_21 .info {
  color: var(--s21-info-color);
  font-family: var(--s21-info-font-family);
  font-size: var(--s21-info-font-size);
  font-weight: normal;
  margin: auto;
  line-height: 1;
  letter-spacing: 1;
}

.style_21 .info.name {
  font-size: var(--s21-name-font-size);
  color: var(--s21-name-color);
  font-weight: var(--s21-name-font-weight);
  font-family: var(--s21-name-font-family);
  margin-top: var(--s21-name-margin-top);
  margin-bottom: var(--s21-name-margin-bottom);
}

.style_21 .card:hover .name {
  color: var(--s21-name-color-hover);
}

.style_21 .info.designation {
  font-size: var(--s21-designation-font-size);
  color: var(--s21-designation-color);
  font-weight: var(--s21-designation-font-weight);
  font-family: var(--s21-designation-font-family);
  margin-top: var(--s21-designation-margin-top);
  margin-bottom: var(--s21-designation-margin-bottom);
}

.style_21 .card:hover .designation {
  color: var(--s21-designation-color-hover);
}

.style_21 .tweb {
  text-decoration: none !important;
  color: var(--s21-info-color);
}

.style_21 .social-links {
  background-color: var(--s21-social-links-bg);
  bottom: 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  border-width: var(--s21-social-links-border-width);
  border-color: var(--s21-social-links-border-color);
  border-radius: var(--s21-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s21-social-links-margin-top);
  margin-bottom: var(--s21-social-links-margin-bottom);
  transition: all 0.3s ease;
  gap: 6px;
}

.style_21 .card:hover .social-links {
  background-color: var(--s21-social-links-bg-hover);
}

.style_21 .social-link {
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  transition: all 0.5s ease;
  color: var(--s21-social-link-color);
  background-color: var(--s21-social-link-bg);
  width: var(--s21-social-link-width);
  height: var(--s21-social-link-height);
  border-radius: var(--s21-social-link-border-radius);
  border-width: var(--s21-social-link-border-width);
  border-color: var(--s21-social-link-border-color);
  font-size: var(--s21-social-link-size);
  border-style: solid;
  padding: 3px;
}

.style_21 .link {
  border-radius: var(--s21-social-link-border-radius);

}

.style_21 .social-link:hover {
  color: var(--s21-social-link-color-hover);
  transform: rotateZ(360deg);
}


.style_21 .info-box .email::before,
.style_21 .info-box .phone::before,
.style_21 .tweb::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_21 .info-box .email::before {
  content: "\f0e0";
}

.style_21 .info-box .phone::before {
  content: "\f095";
}

.style_21 .tweb::before {
  content: "\f57d";
}

/* ....................................... */

.style_21  .expertise-section {
  font-family: var(--s21-exp-section-font-family);
  background-color: var(--s21-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s21-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_21  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_21  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s21-exp-item-bg);
}

.style_21  .expertise-label {
  font-size: var(--s21-exp-label-font-size);
  font-weight: var(--s21-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_21  .progress-container {
  background-color: var(--s21-exp-progress-bar-container-bg);
  border-radius: var(--s21-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_21  .progress-bar {
  background: linear-gradient(60deg, var(--s21-exp-progress-bar-color-1), var(--s21-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_21  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s21-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}