/*--------------------------------------------------------------------------
------- codecanyon project : TeamCard | Bootstrap Team Member Layout -------
------------------------------ Author: Onushor IT --------------------------
--------------------------------------------------------------------------*/
/*================================================================
	
    |--STYLESHEET INDEXING
    |
    |-- 01. Google Font and Root CSS
    |-- 02. Demo CSS	
    |-- 03. Section Team CSS
    |-- 04. Team Style one CSS 	
    |-- 05. Team Style Two CSS
    |-- 06. Team Style Three CSS
    |-- 07. Team Style Four CSS
    |-- 08. Team Style Five CSS
    |-- 09. Team Style Six CSS
    |-- 10. Team Style Seven CSS
    |-- 11. Team Style Eight CSS
    |-- 12. Team Style Nine CSS
    |-- 13. Team Style Ten CSS
    |
    |--END STYLESHEET INDEXING

===================================================================*/
/** --- 01. Google Font and Root CSS ----
------------------------------------- **/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap");
:root {
  --color-primary: #5a49f8;
  --color-secondary: #FFA41B;
  --color-white: #ffffff;
  --color-white-smoke: #F5F5F5;
  --color-alice-blue: #f0f8ff;
  --color-black: #000000;
  --color-black-light: #6c6c6e;
}

/** ------------ 02. Demo CSS -----------
------------------------------------- **/
body {
  margin: 0;
  padding: 0;
}

hr {
  border-color: var(--color-black-light);
  margin: 8px 0;
  border-style: dashed;
}

/** ------ 03. Section Team CSS ------
------------------------------------- **/
section.team {
  padding: 90px 0;
  background: var(--color-alice-blue);
  font-family: 'Jost', sans-serif;
}

section.team .section-headings {
  margin: 0 auto 32px auto;
  max-width: 650px;
  text-align: center;
}

section.team .section-headings .subtitle {
  background: rgba(90, 73, 248, 0.15);
  color: var(--color-primary);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}

section.team .section-headings .subtitle span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

section.team .section-headings h2.main-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
}

section.team .section-headings.sh-left-align {
  text-align: left;
  width: 100%;
}

section.team .section-headings.reverse .subtitle {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

section.team .section-headings.reverse h2.main-title {
  color: var(--color-white);
}

section.team .section-headings.reverse p {
  color: var(--color-white);
}

@media (max-width: 767.98px) {
  section.team {
    padding: 50px 0;
  }
  section.team .section-headings h2.main-title {
    font-size: 24px;
  }
}

/** ------ 04. Team Style One ------
------------------------------------- **/
.team-card-one {
  position: relative;
  text-align: center;
  margin-top: 24px;
  background: transparent;
  border: none;
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-one .card-flip .mainflip {
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 1s;
  -moz-transition: 1s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
  position: relative;
}

.team-card-one .card-flip .mainflip .frontside,
.team-card-one .card-flip .mainflip .backside {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 1s;
  -moz-transform-style: preserve-3d;
  -o-transition: 1s;
  -o-transform-style: preserve-3d;
  -ms-transition: 1s;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
}

.team-card-one .card-flip .mainflip .frontside {
  position: relative;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
}

.team-card-one .card-flip .mainflip .backside {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.team-card-one .card-flip .mainflip .frontside .card,
.team-card-one .card-flip .mainflip .backside .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* padding: 52px 36px 36px 36px; */
  min-height: 400px;
  border-radius: 4px;
  border: none;
  background: var(--color-white);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.team-card-one .card-flip .mainflip .frontside .card::before,
.team-card-one .card-flip .mainflip .backside .card::before {
  content: "";
  position: absolute;
  background: var(--color-alice-blue);
  height: 16px;
  top: 2px;
  left: 75px;
  right: 75px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-one .card-flip .mainflip .frontside .card .card-body,
.team-card-one .card-flip .mainflip .backside .card .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-card-one .card-flip .team-card-image {
  margin-bottom: 32px;
}

.team-card-one .card-flip .team-card-image img {
  width: 110px;
  border-radius: 50%;
}

.team-card-one .card-flip .team-card-details {
  margin-bottom: 32px;
}

.team-card-one .card-flip .team-card-details h4 {
  margin-bottom: 2px;
  color: var(--color-black);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.team-card-one .card-flip .team-card-details p {
  color: var(--color-black-light);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.team-card-one .card-flip .team-card-details p.job-position {
  margin-bottom: 20px;
}

.team-card-one .card-flip .team-card-details p.experties {
  margin-bottom: 20px;
}

.team-card-one .card-flip .team-card-details p.contact {
  margin-bottom: 2px;
}

.team-card-one .card-flip a.hover-icon i {
  font-size: 32px;
  margin-top: 32px;
}

.team-card-one .card-flip .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-card-one .card-flip .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-one .card-flip .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-one .card-flip .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-one .card-flip .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-one .card-flip .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-one .card-flip:hover .backside, .team-card-one .card-flip.highlight .backside {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  border-radius: .25rem;
}

.team-card-one .card-flip:hover .backside .card, .team-card-one .card-flip.highlight .backside .card {
  background: var(--color-primary);
}

.team-card-one .card-flip:hover .backside .card::before, .team-card-one .card-flip.highlight .backside .card::before {
  background: var(--color-secondary);
}

.team-card-one .card-flip:hover .backside .team-card-details h4, .team-card-one .card-flip.highlight .backside .team-card-details h4 {
  color: var(--color-white);
}

.team-card-one .card-flip:hover .backside .team-card-details p, .team-card-one .card-flip.highlight .backside .team-card-details p {
  color: var(--color-alice-blue);
}

.team-card-one .card-flip:hover .frontside, .team-card-one .card-flip.highlight .frontside {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/** ------ 05. Team Style Two ------
------------------------------------- **/
.team-card-two {
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 52px 36px 36px 36px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-two::before {
  content: "";
  position: absolute;
  background: var(--color-alice-blue);
  height: 16px;
  top: 2px;
  left: 75px;
  right: 75px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-two .team-card-image {
  margin-bottom: 32px;
}

.team-card-two .team-card-image img {
  width: 110px;
  border-radius: 50%;
}

.team-card-two .team-card-details {
  margin-bottom: 32px;
}

.team-card-two .team-card-details h4 {
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-two .team-card-details p {
  color: var(--color-black-light);
}

.team-card-two .team-card-details p.job-position {
  margin-bottom: 20px;
}

.team-card-two .team-card-details p.contact {
  margin-bottom: 2px;
}

.team-card-two .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-card-two .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-two .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-two .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-two .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-two .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-two:hover::before, .team-card-two.highlight::before {
  background: var(--color-primary);
  border-radius: 4px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}

.team-card-two:hover .team-card-details h4, .team-card-two.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-two:hover .team-card-details p, .team-card-two.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

/** ------ 06. Team Style Three ------
------------------------------------- **/
.team-card-three {
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 52px 36px 36px 36px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-three::before {
  content: "";
  position: absolute;
  background: var(--color-alice-blue);
  height: 16px;
  top: 2px;
  left: 75px;
  right: 75px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-three .team-card-image {
  margin-bottom: 32px;
}

.team-card-three .team-card-image img {
  width: 110px;
  border-radius: 50%;
}

.team-card-three .team-card-details {
  margin-bottom: 32px;
}

.team-card-three .team-card-details h4 {
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-three .team-card-details p {
  color: var(--color-black-light);
}

.team-card-three .team-card-details p.job-position {
  margin-bottom: 0;
}

.team-card-three .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-card-three .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-three .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-three .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-three .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-three .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-three:hover::before, .team-card-three.highlight::before {
  background: var(--color-primary);
  border-radius: 4px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}

.team-card-three:hover .team-card-details h4, .team-card-three.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-three:hover .team-card-details p, .team-card-three.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

/** ------ 07. Team Style Four ------
------------------------------------- **/
.team-card-four {
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 52px 36px 36px 36px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-four::before {
  content: "";
  position: absolute;
  background: var(--color-alice-blue);
  height: 16px;
  top: 2px;
  left: 75px;
  right: 75px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-four .team-card-image {
  margin-bottom: 32px;
}

.team-card-four .team-card-image img {
  width: 110px;
  border-radius: 50%;
}

.team-card-four .team-card-details {
  margin-bottom: 32px;
}

.team-card-four .team-card-details h4 {
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-four .team-card-details p {
  color: var(--color-black-light);
}

.team-card-four .team-card-details p.job-position {
  margin-bottom: 20px;
}

.team-card-four .team-card-details p.experties {
  margin-bottom: 0;
}

.team-card-four .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-card-four .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-four .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-four .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-four .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-four .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-four:hover::before, .team-card-four.highlight::before {
  background: var(--color-primary);
  border-radius: 4px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}

.team-card-four:hover .team-card-details h4, .team-card-four.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-four:hover .team-card-details p, .team-card-four.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

/** ------ 08. Team Style Five ------
------------------------------------- **/
.team-card-five {
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 36px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-five::before {
  content: "";
  position: absolute;
  border: 3px dashed var(--color-alice-blue);
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-five .team-card-image {
  margin-bottom: 32px;
}

.team-card-five .team-card-image img {
  width: 110px;
  border-radius: 50%;
}

.team-card-five .team-card-details {
  margin-bottom: 32px;
}

.team-card-five .team-card-details h4 {
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-five .team-card-details p {
  color: var(--color-black-light);
}

.team-card-five .team-card-details p.job-position {
  margin-bottom: 0;
}

.team-card-five .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-card-five .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-five .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-five .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-five .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-five .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-five:hover, .team-card-five.highlight {
  background: var(--color-primary);
}

.team-card-five:hover::before, .team-card-five.highlight::before {
  background: var(--color-primary);
  border: 2px dashed var(--color-secondary);
  border-radius: 8px;
  z-index: -1;
}

.team-card-five:hover .team-card-details h4, .team-card-five.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-five:hover .team-card-details p, .team-card-five.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

/** ------ 09. Team Style Six ------
------------------------------------- **/
.team-card-six {
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 36px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-six::before {
  content: "";
  position: absolute;
  border: 3px dashed var(--color-alice-blue);
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-six .team-card-image {
  margin-bottom: 32px;
}

.team-card-six .team-card-image img {
  width: 110px;
  border-radius: 50%;
}

.team-card-six .team-card-details {
  margin-bottom: 32px;
}

.team-card-six .team-card-details h4 {
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-six .team-card-details p {
  color: var(--color-black-light);
}

.team-card-six .team-card-details p.job-position {
  margin-bottom: 20px;
}

.team-card-six .team-card-details p.contact {
  margin-bottom: 2px;
}

.team-card-six .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-card-six .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-six .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-six .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-six .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-six .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-six:hover, .team-card-six.highlight {
  background: var(--color-primary);
}

.team-card-six:hover::before, .team-card-six.highlight::before {
  background: var(--color-primary);
  border: 2px dashed var(--color-secondary);
  border-radius: 8px;
  z-index: -1;
}

.team-card-six:hover .team-card-details h4, .team-card-six.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-six:hover .team-card-details p, .team-card-six.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

/** ------ 10. Team Style Seven ------
------------------------------------- **/
.team-card-seven {
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 36px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-seven::before {
  content: "";
  position: absolute;
  border: 3px dashed var(--color-alice-blue);
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-seven .team-card-image {
  margin-bottom: 32px;
}

.team-card-seven .team-card-image img {
  width: 110px;
  border-radius: 50%;
}

.team-card-seven .team-card-details {
  margin-bottom: 32px;
}

.team-card-seven .team-card-details h4 {
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-seven .team-card-details p {
  color: var(--color-black-light);
}

.team-card-seven .team-card-details p.job-position {
  margin-bottom: 20px;
}

.team-card-seven .team-card-details p.experties {
  margin-bottom: 0;
}

.team-card-seven .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-card-seven .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 12px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-seven .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-seven .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-seven .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-seven .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-seven:hover, .team-card-seven.highlight {
  background: var(--color-primary);
}

.team-card-seven:hover::before, .team-card-seven.highlight::before {
  background: var(--color-primary);
  border: 2px dashed var(--color-secondary);
  border-radius: 8px;
  z-index: -1;
}

.team-card-seven:hover .team-card-details h4, .team-card-seven.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-seven:hover .team-card-details p, .team-card-seven.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

/** ------ 11. Team Style Eight ------
------------------------------------- **/
.team-card-eight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 8px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-eight::before {
  content: "";
  position: absolute;
  border: 3px dashed var(--color-alice-blue);
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-eight .card-left .team-card-image {
  margin-right: 16px;
  margin-bottom: 0;
}

.team-card-eight .card-left .team-card-image img {
  width: 100px;
  border-radius: 50%;
}

.team-card-eight .card-right {
  text-align: left;
}

.team-card-eight .card-right .team-card-details {
  margin-bottom: 20px;
}

.team-card-eight .card-right .team-card-details h4 {
  font-size: 20px;
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-eight .card-right .team-card-details p {
  color: var(--color-black-light);
}

.team-card-eight .card-right .team-card-details p.job-position {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.team-card-eight .card-right .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.team-card-eight .card-right .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-eight .card-right .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-eight .card-right .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-eight .card-right .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-eight .card-right .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-eight:hover, .team-card-eight.highlight {
  background: var(--color-primary);
}

.team-card-eight:hover::before, .team-card-eight.highlight::before {
  background: var(--color-primary);
  border: 2px dashed var(--color-secondary);
  border-radius: 8px;
  z-index: -1;
}

.team-card-eight:hover .team-card-details h4, .team-card-eight.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-eight:hover .team-card-details p, .team-card-eight.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

@media (max-width: 991.98px) {
  .team-card-eight {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team-card-eight .card-left .team-card-image {
    margin-right: 0;
    margin-bottom: 32px;
  }
  .team-card-eight .card-right {
    text-align: center;
  }
  .team-card-eight .card-right .team-card-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/** ------ 12. Team Style Nine ------
------------------------------------- **/
.team-card-nine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 8px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-nine::before {
  content: "";
  position: absolute;
  border: 3px dashed var(--color-alice-blue);
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-nine .card-left .team-card-image {
  margin-right: 16px;
  margin-bottom: 0;
}

.team-card-nine .card-left .team-card-image img {
  width: 100px;
  border-radius: 50%;
}

.team-card-nine .card-right {
  text-align: left;
}

.team-card-nine .card-right .team-card-details {
  margin-bottom: 32px;
}

.team-card-nine .card-right .team-card-details h4 {
  font-size: 20px;
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-nine .card-right .team-card-details p {
  color: var(--color-black-light);
}

.team-card-nine .card-right .team-card-details p.job-position {
  margin-bottom: 20px;
}

.team-card-nine .card-right .team-card-details p.contact {
  margin-bottom: 2px;
}

.team-card-nine .card-right .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.team-card-nine .card-right .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-nine .card-right .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-nine .card-right .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-nine .card-right .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-nine .card-right .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-nine:hover, .team-card-nine.highlight {
  background: var(--color-primary);
}

.team-card-nine:hover::before, .team-card-nine.highlight::before {
  background: var(--color-primary);
  border: 2px dashed var(--color-secondary);
  border-radius: 8px;
  z-index: -1;
}

.team-card-nine:hover .team-card-details h4, .team-card-nine.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-nine:hover .team-card-details p, .team-card-nine.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

@media (max-width: 991.98px) {
  .team-card-nine {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team-card-nine .card-left .team-card-image {
    margin-right: 0;
    margin-bottom: 32px;
  }
  .team-card-nine .card-right {
    text-align: center;
  }
  .team-card-nine .card-right .team-card-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/** ------ 13. Team Style Ten ------
------------------------------------- **/
.team-card-ten {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  text-align: center;
  margin-top: 24px;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 8px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  z-index: 1;
}

.team-card-ten::before {
  content: "";
  position: absolute;
  border: 3px dashed var(--color-alice-blue);
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 4px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-ten .card-left .team-card-image {
  margin-right: 16px;
  margin-bottom: 0;
}

.team-card-ten .card-left .team-card-image img {
  width: 100px;
  border-radius: 50%;
}

.team-card-ten .card-right {
  text-align: left;
}

.team-card-ten .card-right .team-card-details {
  margin-bottom: 32px;
}

.team-card-ten .card-right .team-card-details h4 {
  font-size: 20px;
  margin-bottom: 2px;
  color: var(--color-black);
}

.team-card-ten .card-right .team-card-details p {
  color: var(--color-black-light);
}

.team-card-ten .card-right .team-card-details p.job-position {
  margin-bottom: 20px;
}

.team-card-ten .card-right .team-card-details p.contact {
  margin-bottom: 2px;
}

.team-card-ten .card-right .team-card-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.team-card-ten .card-right .team-card-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-alice-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-ten .card-right .team-card-social a:last-child {
  margin-right: 0;
}

.team-card-ten .card-right .team-card-social a i {
  font-size: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.team-card-ten .card-right .team-card-social a:hover {
  background: var(--color-secondary);
}

.team-card-ten .card-right .team-card-social a:hover i {
  color: var(--color-primary);
}

.team-card-ten:hover, .team-card-ten.highlight {
  background: var(--color-primary);
}

.team-card-ten:hover::before, .team-card-ten.highlight::before {
  background: var(--color-primary);
  border: 2px dashed var(--color-secondary);
  border-radius: 8px;
  z-index: -1;
}

.team-card-ten:hover .team-card-details h4, .team-card-ten.highlight .team-card-details h4 {
  color: var(--color-white);
}

.team-card-ten:hover .team-card-details p, .team-card-ten.highlight .team-card-details p {
  color: var(--color-alice-blue);
}

@media (max-width: 991.98px) {
  .team-card-ten {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team-card-ten .card-left .team-card-image {
    margin-right: 0;
    margin-bottom: 32px;
  }
  .team-card-ten .card-right {
    text-align: center;
  }
  .team-card-ten .card-right .team-card-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/** ------------- End CSS -------------*/
/*# sourceMappingURL=style.css.map */