:root {

  /* //////////////////// */

  --s3-body-border-width: 0px;
  --s3-body-border-radius: 0px;
  --s3-body-bg: #00000000;
  --s3-body-bg-hover: #00000000;

  /* Card  */
  --s3-card-border-radius: 0px;
  --s3-card-border-width: 2px;
  --s3-card-border-color: #c0a080;
  --s3-card-shadow-color-hover: #c0a080bf;
  --s3-card-bg-hover: #f0ece7fc;
  --s3-card-bg: #fff;

  /* Image container  */
  --s3-img-container-border-color: #00000000;
  --s3-img-container-border-radius: 0px;
  --s3-img-container-border-width: 0px;
  --s3-img-container-bg: #00000000;
  --s3-img-container-bg-hover: #00000000;

  /* Imgage  */
  --s3-image-border-radius: 0px;
  --s3-image-border-width: 4px;
  --s3-image-filter: sepia(80%);

  /* Info Box  */

  --s3-info-box-bg: #00000000;
  --s3-info-box-border-width: 0px;
  --s3-info-box-margin-bottom: 0px;
  --s3-info-box-margin-top: 0px;
  --s3-info-box-border-radius: 0px;
  --s3-info-box-border-color: #000000;
  --s3-info-box-bg-hover: #00000000;

  /* Info  */

  --s3-info-color: #604020;
  --s3-info-font-size: 0.7rem;
  --s3-info-font-family: "Courier New";

  /* Name  */

  --s3-name-color: #604020;
  --s3-name-color-hover: #604020;
  --s3-name-font-family: "Courier New";
  --s3-name-margin-top: 0px;
  --s3-name-font-size: 20px;
  --s3-name-margin-bottom: 0px;
  --s3-name-font-weight: bold;

  /* Designation  */

  --s3-designation-font-size: 00.7rem;
  --s3-designation-font-weight: bold;
  --s3-designation-color: #604020;
  --s3-designation-color-hover: #604020;
  --s3-designation-font-family: "Courier New";
  --s3-designation-margin-top: 0px;
  --s3-designation-margin-bottom: 0px;

  /* SOcial Container  */

  --s3-social-links-bg: #f0ece7fc;
  --s3-social-links-bg-hover: #f0ece7fc;
  --s3-border-width-social: 0px;
  --s3-social-links-border-radius: 0px;
  --s3-social-links-margin-top: 0px;
  --s3-social-links-margin-bottom: 0px;

  /* Social Icon  */

  --s3-social-link-color: #806040;
  --s3-social-link-color-hover: #3b82f6;
  --s3-social-link-bg: #f0ece7fc;
  --s3-social-link-height: 0px;
  --s3-social-link-width: 0px;
  --s3-social-link-border-radius: 0px;
  --s3-social-link-font-size: 20px;
  --s3-social-link-border-width: 0px;

  /* ................................  */
  /* Expertise Section  */
  --s3-exp-section-font-family: Arial;
  --s3-exp-section-bg: #f8f9fa00;
  --s3-exp-section-border-radius: 0px;

  /* Expertise Item  */
  --s3-exp-item-bg: #fff;
  --s3-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s3-exp-label-font-size: 10px;
  --s3-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s3-exp-progress-bar-container-bg: #e0e0e0;
  --s3-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s3-exp-progress-bar-color-1: #43a047;
  --s3-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s3-exp-progress-percentage-color: #111;
}

.style_3 {
  background-color: var(--s3-body-bg);
  border-width: var(--s3-body-border-width);
  border-radius: var(--s3-body-border-radius);
  transition: all 0.3s ease-in-out;
  border-style: solid;

}

.style_3:hover {
  background-color: var(--s3-body-bg-hover);
}

.style_3 .carousel-item {
  padding: 0 !important;
}

.style_3 .card {
  background-color: var(--s3-card-bg);
  border: var(--s3-card-border-width) double var(--s3-card-border-color);
  border-radius: var(--s3-card-border-radius);
  margin: 0 2px !important;
  padding: 8px;
  word-break: break-word;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.style_3 .card:hover {
  transform: scale(1.03);
  box-shadow: 0px 0px 15px 0px var(--s3-card-shadow-color-hover);
  background-color: var(--s3-card-bg-hover);
}

.image-container {
  border-color: var(--s3-img-container-border-color);
  border-radius: var(--s3-img-container-border-radius);
  border-width: var(--s3-img-container-border-width);
  border-style: solid;
  background-color: var(--s3-img-container-bg);

}

.style_3 .image-container img {
  width: 100%;
  height: 100%;
  filter: var(--s3-image-filter);
  border: var(--s3-image-border-width) solid var(--s3-card-border-color);
  border-radius: var(--s3-image-border-radius);
}

.style_3 .info-box {
  text-align: center;
  background-color: var(--s3-info-box-bg);
  border: var(--s3-border-width) solid var(--s3-info-box-border-color);
  border-radius: var(--s3-info-box-border-radius);
  transition: all 0.3s ease-in-out;
  margin-top: var(--s3-info-box-margin-top);
  margin-bottom: var(--s3-info-box-margin-bottom);
}

.style_3 .card:hover .info-box {
  background-color: var(--s3-info-box-bg-hover)
}

.style_3 .info-box .info {
  font-size: var(--s3-info-font-size);
  color: var(--s3-info-color);
  font-family: var(--s3-info-font-family);
  margin-bottom: 3px;
}

.style_3 .tweb {
  text-decoration: none !important;
  color: var(--s3-info-color);
}

.style_3 .name {
  font-size: var(--s3-name-font-size) !important;
  font-weight: var(--s3-name-font-weight) !important;
  color: var(--s3-name-color) !important;
  font-family: var(--s3-name-font-family) !important;
  margin-top: var(--s3-name-margin-top) !important;
  margin-bottom: var(--s3-name-margin-bottom) !important;
}

.style_3 .card:hover .name {
  color: var(--s3-name-color-hover);
}

.style_3 .designation {
  font-size: var(--s3-designation-font-size) !important;
  font-weight: var(--s3-designation-font-weight) !important;
  color: var(--s3-designation-color) !important;
  font-family: var(--s3-designation-font-family) !important;
  margin-top: var(--s3-designation-margin-top) !important;
  margin-bottom: var(--s3-designation-margin-bottom) !important;

}

.style_3 .card:hover .designation {
  color: var(--s3-designation-color-hover);
}

.style_3 .social-links {
  display: flex;
  gap: 6%;
  justify-content: center;
  position: relative;
  background-color: var(--s3-social-links-bg);
  border-radius: var(--s3-social-links-border-radius);
  margin-top: var(--s3-social-links-margin-top);
  margin-bottom: var(--s3-social-links-margin-bottom);
}

.style_3 .card:hover .social-links {
  background-color: var(--s3-social-links-bg-hover);

}

.style_3 .social-link {
  color: var(--s3-social-link-color);
  font-size: var(--s3-social-link-font-size);

  height: var(--s3-social-link-height);
  width: var(--s3-social-link-width);
  border-width: var(--s3-social-link-border-width);
  border-radius: var(--s3-social-link-border-radius);
  border-style: solid;
  transition: transform 0.7s ease-out, color 0.5s ease-out;
  color: inherit;
}

.style_3 .social-link:hover {
  text-decoration: underline;
  color: var(--s3-social-link-color-hover);
  transform: scale(1.15);
}

.style_3 .info-box .email::before,
.style_3 .info-box .phone::before,
.style_3 .tweb::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_3 .info-box .email::before {
  content: "\f0e0";
}

.style_3 .info-box .phone::before {
  content: "\f095";
}

.style_3 .tweb::before {
  content: "\f57d";
}

/* .........................................  */

.style_3 .expertise-section {
  font-family: var(--s3-exp-section-font-family);
  background-color: var(--s3-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s3-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_3 .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_3 .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s3-exp-item-bg);
}

.style_3 .expertise-label {
  font-size: var(--s3-exp-label-font-size);
  font-weight: var(--s3-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_3 .progress-container {
  background-color: var(--s3-exp-progress-bar-container-bg);
  border-radius: var(--s3-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_3 .progress-bar {
  background: linear-gradient(60deg, var(--s3-exp-progress-bar-color-1), var(--s3-exp-progress-bar-color-2));
  height: 100%;
  width: 0px;
  transition: width 2s ease;
  position: relative;
}

.style_3 .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s3-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}