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