*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Lato', sans-serif;
    color: #454545;
    font-weight: 300;
    background: #ffffff;
}

a {
    color: #333333;
    font-weight: 400;
    outline: none;
    text-decoration: none;
    transition: 0.5s;
}



.section-title {
    width: 100%;
    text-align: center;
    padding: 45px 0 30px 0;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 5px;
    left: calc(50% - 25px);
    background: #353535;
}

.section-title h1 {
    color: #353535;
    font-size: 50px;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

@media(max-width: 767.98px) {
    .section-title h1 {
        font-size: 40px;
        letter-spacing: 3px;
    }
}

@media(max-width: 567.98px) {
    .section-title h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}


.team-9 {
    padding: 0;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: .6s;
}



.team-9 .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
    margin-bottom: 0;
    border: 0;
    transition: .6s;
}
.team-9:hover  {
transform: scale(.9);
transition: all 1s ease-in-out;
cursor: pointer;
}
.team-9 .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    position: relative;
    transition: .6s;
}

.team-9 .team-content {
    text-align: center;
    position: absolute;
    width: 100%;
    text-align: left;
    display: flex;
    background: rgb(232 241 255);
    bottom: 0;
    left: -15px;
    padding: 10px;
    justify-content: space-between;
}

.team-9 .team-content h2 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.team-9 .team-content h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.team-content .icon {
  position: relative;
  bottom: 0;
  right: 0;
  display: none;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  /* background: linear-gradient(to right, #016cec, #00b5f7); */
  color: #016cec;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 2px 4px 10px #00000000;
}
.team-9:hover .icon {
  background: none;
  background-color: #fff;
  color: #016cec;
  box-shadow: 2px 4px 10px #00000078;
}
.team-content .icon svg {
  fill: white;
}
.team-9:hover .icon svg {
  fill: #016cec;
}
.close-btn{
  color:white;
  border:0px;
  background-color: #d70404;
  border-radius: 7px;
  width: 40px;
  height: 43px;
  position: absolute;
  right: 5px;
  top: 5px;
}
.about-sec h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.about-sec h2{
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}