@import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;500&display=swap");

.grid-team-cards{
  display: grid;
  grid-template-columns: repeat( 2, 2fr);
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  height: auto;
  background-color: #fff;
  font-family: 'Baloo Paaji 2', cursive;
}

.card {
  background-color: #fff;
  height: auto;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.7);
  color: white;
  border: 0px solid black;
  padding:20px;
}

.card__name {
  margin-top: 20px;
  font-size: 1.5em;
  color: #000
}

.card__image {
 height: auto;
    width: 250px;
    /* border-radius: 50%; */
    /* border: 1px solid rgb(39, 33, 51); */
    margin-top: 20px;
    box-shadow: rgb(205 204 204) 6px 5px 20px 0px;

}


.draw-border {
  box-shadow: inset 0 0 0 1px #000;
  color: #58afd1;
  -webkit-transition: color 0.25s 0.0833333333s;
  transition: color 0.25s 0.0833333333s;
  position: relative;
}

.draw-border::before,
.draw-border::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: '';
  pointer-events: none;
  position: absolute;
  width: 0rem;
  height: 0;
  bottom: 0;
  right: 0;
}

.draw-border::before {
  border-bottom-width: 1px;
  border-left-width:1px;
}

.draw-border::after {
  border-top-width: 1px;
  border-right-width: 1px;
}

.draw-border:hover {
  color: #00a69b;
}

.draw-border:hover::before,
.draw-border:hover::after {
  border-color: #eb196e;
  -webkit-transition: border-color 0s, width 0.25s, height 0.25s;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}

.draw-border:hover::before {
  -webkit-transition-delay: 0s, 0s, 0.25s;
  transition-delay: 0s, 0s, 0.25s;
}

.draw-border:hover::after {
  -webkit-transition-delay: 0s, 0.25s, 0s;
  transition-delay: 0s, 0.25s, 0s;
}

.btn {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.5;
  font: 400 1.2rem 'Roboto Slab', sans-serif;
  padding: 10px 2em;
  letter-spacing: 0.05rem;
  margin: 10px;
  width: 13rem;
}

.btn:focus {
  outline: 2px dotted #55d7dc;
}


.social-icons {
  padding: 0;
  list-style: none;
  margin: 1em;
}

.social-icons li {
  display: inline-block;
  margin: 0.15em;
  position: relative;
  font-size: 1em;
}

.social-icons i {
  color: #fff;
  position: absolute;
  top: 0.95em;
  left: 1.2em;
  transition: all 265ms ease-out;
}

.social-icons a {
  display: inline-block;
}

.social-icons a:before {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  content: " ";
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: block;
  background: linear-gradient(
45deg
, rgb(88 175 209), rgb(112 191 180));
    transition: all 265ms ease-out 0s;
}

.social-icons a:hover:before {
  transform: scale(0);
  transition: all 265ms ease-in;
}

.social-icons a:hover i {
  transform: scale(2.2);
  -ms-transform: scale(2.2);
  -webkit-transform: scale(2.2);
  color: #ff003c;
  background: -webkit-linear-gradient(45deg, #00acee, #c648c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 265ms ease-in;
}

.grid-team-cards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0px;
  font-size: 1.2em;
}

 @media only screen and (max-width: 1200px) {
                                 .grid-team-cards {
                                 display: grid;
                                 grid-template-columns: repeat(2, 2fr);
                                 }	
                                 @media only screen and (max-width: 768px) {
                                 .grid-team-cards {
                                 display: grid;
                                 grid-template-columns: repeat(1, 3fr);
                                 }
                                   
                                   .grid-team-cards-inner {
                                 display: grid;
                                 grid-template-columns: repeat(2, 2fr);
                                 }	
                                 @media only screen and (max-width: 768px) {
                                 .grid-team-cards-inner {
                                 display: grid;
                                 grid-template-columns: repeat(1, 3fr);
                                 }	
                                   
   }