@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --ff-body: "Montserrat", sans-serif;
  --ff-heading: "Jost", sans-serif;
  --ff-p: "Montserrat", sans-serif;
  --fw-normal: normal;
  --fw-thin: 100;
  --fw-elight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-sbold: 600;
  --fw-bold: 700;
  --fw-ebold: 800;
  --fw-black: 900;
  --fs-body: 16px;
  --fs-p: 16px;
  --fs-h1: 60px;
  --fs-h2: 48px;
  --fs-h3: 20px;
  --fs-h4: 18px;
  --fs-h5: 16px;
  --fs-h6: 14px;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #232323;
  --color-heading-primary: #171717;
  --color-text-body: #fff;
  --color-theme-primary: #57a1d1;
  --color-theme-secondary: #8cbe3d;
  --color-bg-1: #11151C;
  --color-grey-1: #F4F4F2;
  --color-border-1: #171717;
  --color-border-light: #E4E4E4;
} 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  /* /* background-color: var(--color-black); */
/*   font-family: var(--ff-body); */
  /* font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--color-text-body); */ 
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

 h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  margin-top: 0px;
  font-weight: var(--fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
} 



ul {
  margin: 0px;
  padding: 0px;
}


a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-theme-primary);
}

.slick-list.draggable {
  cursor: grab;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--color-black);
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-black);
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: var(--color-black);
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--color-black);
  font-size: var(--fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--color-black);
  font-size: var(--fs-body);
  opacity: 1;
}


/* css for custom post type */




.team_wrp{
display:flex;}
.team_item {
    position: relative;
    text-align: center;
}
.team_item:hover .img::after {
    opacity: 1;
}
.team_item:hover .img .social-icons {
    opacity: 1;
    bottom: 15px;
    padding: 10px 30px 10px 30px;
}
.team .img {
    position: relative;
    overflow: hidden;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    border-radius: 5px;
}
.team .img img {
    width: 100%;
    margin: 0;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    background-size: cover;
    border-radius: 6px;
}
.team .item:hover .img {
    transform: scale(0.98);
}
.team_item .img::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 50%;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.team_item .img .social-icons {
    position: absolute;
    bottom: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 1px 20px;
    border-radius: 50px;
    background-color: #ac835d;
    white-space: nowrap;
    opacity: 0;
    z-index: 20;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.team_item .img .social-icons a {
    font-size: 15px;
    margin: 15px 5px;
    line-height: 1;
    color: #fff;
}
.team_item .img .social-icons a:hover {
    color: #fff;
    opacity: 1;
}
.team_item .info {
    padding: 30px 15px;
}
.team_item .info h5 {
    font-size: 21px;
    color: #14100c;
    margin-bottom: 5px;
}
.team_item .info p {
    font-size: 18px;
    color: #817f7c;
    margin-bottom: 0px;
    font-family: 'Jost';
}

.team_item .info a {
    box-shadow: none;
    text-decoration: none;
    font-family: 'Playfair Display';
    font-size: 20px;
}






