@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz@9..40&display=swap");

:root {
  /* ///////////////////////// */

  /* Body  */
  --s12-body-bg: transparent;
  --s12-body-bg-hover: transparent;
  --s12-body-border-radius: 0;
  --s12-body-border-width: 0;
  --s12-body-border-color: transparent;

  /* card  */
  --s12-card-bg: #fff;
  --s12-card-bg-hover: #fff;
  --s12-card-border-radius: 5px;
  --s12-card-border-width: 0;
  --s12-card-border-color: transparent;

  /* Image Container  */

  --s12-image-container-border-radius: 0;
  --s12-image-container-border-width: 0;
  --s12-image-container-border-color: transparent;
  --s12-image-container-bg: transparent;
  --s12-image-container-bg-hover: transparent;

  /* Image  */

  --s12-image-border-radius: 10px;
  --s12-image-border-width: 0;
  --s12-image-shadow-color: #00000033;
  --s12-image-border-color: transparent;

  /* Info Box  */
  --s12-info-box-border-radius: 0;
  --s12-info-box-border-width: 0;
  --s12-info-box-border-color: transparent;
  --s12-info-box-bg: #ffffffe6;
  --s12-info-box-bg-hover: #ffffffe6;

  /* Info  */
  --s12-info-font-size: 0.69rem;
  --s12-info-color: #333;
  --s12-info-font-family: "DM Sans", sans-serif;


  /* Name  */

  --s12-name-font-weight: bold;
  --s12-name-margin-top: 0;
  --s12-name-margin-bottom: 7px;
  --s12-name-font-size: 1rem;
  --s12-name-color: #000;
  --s12-name-color-hover: #000000;
  --s12-name-font-family: "Courgette", cursive;

  /* Designation  */

  --s12-designation-font-size: 0.9rem;
  --s12-designation-font-size: 0.69rem;
  --s12-designation-color: #333;
  --s12-designation-font-weight: normal;
  --s12-designation-font-family: "DM Sans";
  --s12-designation-margin-top: 0;
  --s12-designation-margin-bottom: 8px;
  --s12-designation-color-hover: #333;

  /* Social Links  */

  --s12-social-links-border-width: 0;
  --s12-social-links-border-radius: 0;
  --s12-social-links-margin-top: 0;
  --s12-social-links-margin-bottom: 0;
  --s12-social-links-bg: #f0f0f0e6;
  --s12-social-links-bg-hover: #f0f0f0e6;

  /* Social Link  */

  --s12-social-link-color: transparent;
  --s12-social-link-color-bg: transparent;
  --s12-social-link-width: auto;
  --s12-social-link-height: auto;
  --s12-social-link-border-radius: 0;
  --s12-social-link-border-width: 0;
  --s12-social-link-border-color: transparent;
  --s12-social-link-size: 15px;

  /* ................................... */
  /* Expertise Section  */
  --s12-exp-section-font-family: Arial;
  --s12-exp-section-bg: #f8f9fa00;
  --s12-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s12-exp-item-bg: #fff;
  --s12-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s12-exp-label-font-size: 10px;
  --s12-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s12-exp-progress-bar-container-bg: #e0e0e0;
  --s12-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s12-exp-progress-bar-color-1: #43a047;
  --s12-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s12-exp-progress-percentage-color: #111;
}

.style_12 {
  background-color: var(--s12-body-bg);
  border-radius: var(--s12-body-border-radius);
  border-width: var(--s12-body-border-width);
  border-color: var(--s12-body-border-color);
  border-style: solid;
}

.style_12 {
  background: var(--s12-body-bg-hover);
}

.style_12 .card {
  background-color: var(--s12-card-bg);
  border-width: var(--s12-card-border-width);
  border-color: var(--s12-card-border-color);
  border-radius: var(--s12-card-border-radius);
  border-style: solid;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  position: relative;
  overflow: hidden;
}

.style_12 .card:hover {
  background-color: var(--s12-card-bg-hover);
}

.style_12 .card:hover .info-box,
.style_12 .card:hover .social-links {
  transform: translateX(0);
}

.style_12 .image-container {
  border-radius: var(--s12-image-container-border-radius);
  border-width: var(--s12-image-container-border-width);
  border-color: var(--s12-image-container-border-color);
  background-color: var(--s12-image-container-bg);
  border-style: solid;
}

.style_11 .card:hover .image-container {
  background-color: var(--s12-image-container-bg-hover);
}

.style_12 .image-container img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  border-style: solid;
  border-radius: var(--s12-image-border-radius);
  border-width: var(--s12-image-border-width);
  border-color: var(--s12-image-border-color);
  box-shadow: 0 4px 8px var(--s12-image-shadow-color);

}

.style_12 .card:hover .image-container img {
  transform: scale(1.1);
}

.style_12 .info-box {
  left: 0;
  transform: translateX(-100%);
  height: 100%;
  top: 0;
  transition: transform 0.5s;
  box-sizing: border-box;
  position: absolute;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--s12-info-box-bg);
  border-radius: var(--s12-info-box-border-radius);
  border-width: var(--s12-info-box-border-width);
  border-color: var(--s12-info-box-border-color);
  border-style: solid;
}

.style_11 .card:hover .info-box {
  background-color: var(--s12-info-box-bg-hover);
}

.style_12 .info {
  font-size: var(--s12-info-font-size);
  color: var(--s12-info-color);
  font-family: var(--s12-info-font-family);
  margin: 0;
}

.style_12 .tweb {
  text-decoration: none !important;
  color: var(--s12-info-color);
}

.style_12 .name {
  font-size: var(--s12-name-font-size);
  color: var(--s12-name-color);
  font-family: var(--s12-name-font-family);
  font-weight: var(--s12-name-font-weight);
  margin-top: var(--s12-name-margin-top);
  margin-bottom: var(--s12-name-margin-bottom);
}

.style_11 .card:hover .name {
  color: var(--s12-name-color-hover);
}

.style_12 .designation {
  font-size: var(--s12-designation-font-size);
  color: var(--s12-designation-color);
  font-weight: var(--s12-designation-font-weight);
  font-family: var(--s12-designation-font-family);
  margin-top: var(--s12-designation-margin-top);
  margin-bottom: var(--s12-designation-margin-bottom);
}

.style_11 .card:hover .designation {
  color: var(--s12-designation-color-hover);
}

.style_12 .social-links {
  right: 0;
  transform: translateX(100%);
  text-align: left;
  height: 100%;
  top: 0;
  transition: transform 0.5s;
  box-sizing: border-box;
  position: absolute;
  width: 20%;
  display: flex;
  flex-direction: column;
  margin: auto;
  justify-content: center;
  background-color: var(--s12-social-links-bg);
  border-width: var(--s12-social-links-border-width);
  border-radius: var(--s12-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s12-social-links-margin-top);
  margin-bottom: var(--s12-social-links-margin-bottom);
}

.style_11 .card:hover .social-links {
  background-color: var(--s12-social-links-bg-hover);
}

.style_12 .social-link {
  text-decoration: none;
  border-radius: 5px;
  color: var(--s12-social-link-color);
  background-color: var(--s12-social-link-color-bg);
  width: var(--s12-social-link-width);
  height: var(--s12-social-link-height);
  border-radius: var(--s12-social-link-border-radius);
  border-width: var(--s12-social-link-border-width);
  border-color: var(--s12-social-link-border-color);
  font-size: var(--s12-social-link-size);
  border-style: solid;
  padding: 5px;
  transition: all 0.3s;

}

.style_12 .tweb::before,
.style_12 .info-box .phone::before,
.style_12 .info-box .email::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_12 .info-box .email::before {
  content: "\f0e0";
}

.style_12 .info-box .phone::before {
  content: "\f095";
}

.style_12 .tweb::before {
  content: "\f57d";
}


.style_12 .social-link:hover {
  transform: scale(1.1);
}

.style_12 .social-link.facebook {
  color: #3b5998;
}

.style_12 .social-link.facebook:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #3b5998;
}

.style_12 .social-link.twitter {
  color: #1da1f2;
}

.style_12 .social-link.twitter:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #1da1f2;
}

.style_12 .social-link.linkedin {
  color: #0077b5;
}

.style_12 .social-link.linkedin:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #0077b5;
}

.style_12 .social-link.whatsapp {
  color: #25d366;
}

.style_12 .social-link.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #25d366;
}

.style_12 .social-link.instagram {
  color: #c13584;
}

.style_12 .social-link.instagram:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #c13584;
}

.style_12 .social-link.pinterest {
  color: #e60023;
}

.style_12 .social-link.pinterest:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #e60023;
}

.style_12 .social-link.discord {
  color: #7289da;
}

.style_12 .social-link.discord:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #7289da;
}

.style_12 .social-link.facebook-messenger {
  color: #0084ff;
}

.style_12 .social-link.facebook-messenger:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #0084ff;
}

.style_12 .social-link.youtube {
  color: #ff0000;
}

.style_12 .social-link.youtube:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #ff0000;
}

.style_12 .social-link.reddit {
  color: #ff4500;
}

.style_12 .social-link.reddit:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #ff4500;
}

.style_12 .social-link.tiktok {
  color: #000000;
}

.style_12 .social-link.tiktok:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #000000;
}

.style_12 .social-link.telegram {
  color: #0088cc;
}

.style_12 .social-link.telegram:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #0088cc;
}

.style_12 .social-link.quora {
  color: #b92b27;
}

.style_12 .social-link.quora:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #b92b27;
}

.style_12 .social-link.tumblr {
  color: #34526f;
}

.style_12 .social-link.tumblr:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #34526f;
}

.style_12 .social-link.vimeo {
  color: #1ab7ea;
}

.style_12 .social-link.vimeo:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 10px #1ab7ea;
}


/* ....................................... */
.style_12  .expertise-section {
  font-family: var(--s12-exp-section-font-family);
  background-color: var(--s12-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s12-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_12  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_12  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s12-exp-item-bg);
}

.style_12  .expertise-label {
  font-size: var(--s12-exp-label-font-size);
  font-weight: var(--s12-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_12  .progress-container {
  background-color: var(--s12-exp-progress-bar-container-bg);
  border-radius: var(--s12-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_12  .progress-bar {
  background: linear-gradient(60deg, var(--s12-exp-progress-bar-color-1), var(--s12-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_12  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s12-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}