/*------------------------------------------------------------------
Project:Team layout
Author: The_Krishna        
-------------------------------------------------------------------*/
/*----------------Table of contents Start---------------------------
1.Default css
2.layout-1 section
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background:#FFF
Content: #1260FE
-------------------------------------------------------------------*/
/************************ 1.Default css ***************************/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}
*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a:focus, a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
svg {
    vertical-align: middle;
}
input {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
    border: none;
    outline: none;
    width: 100%;
}
textarea {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-family: "Jost", sans-serif;
}
.row {
    --bs-gutter-x: 30px;
}
/* ------------- 1. layout-1 section ------------- */
.team-section-1 {
    padding: 100px 0;
}
.heading-title {
    text-align: center;
    margin-bottom: 40px;
}
.subtitle-wrapper p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
    color: #24495c;
}
.heading-title h1 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    color: #191919;
    display: block;
    margin-bottom: 0;
}
.team-member:hover .team-images img {
    transform: scale(2.02);
    transition: all .35s ease-in-out;
}
.team-images {
    overflow: hidden;
    border-radius: 16px;
}
.team-images img {
    width: 100%;
    transition: all .35s ease-in-out;
    height: auto;
}
.team-detail {
    position: relative;
    z-index: 9;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: -44px;
    border-radius: 16px;
    background-color: #fff;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.team-detail::before {
    content: " ";
    position: absolute;
    background-color: #fff;
    border-radius: 16px;
    transform: translate(0, 0) rotate(0) skewX(0) skewY(4deg) scaleX(1) scaleY(1);
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0px;
    top: -18px;
}
.team-detail .vip {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    margin: 0;
    color: #000;
    transition: all .35s ease-in;
}
.team-detail .vip:hover {
    color: #3b958b;
    transition: all .35s ease-in-out;
}
.team-detail span {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #606060;
}
.team-detail .social {
    position: absolute;
    right: 20px;
    top: -25px;
}
.social-icon {
    position: absolute;
    bottom: 0%;
    opacity: 0;
    z-index: -2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .35s ease-in-out;
    font-size: 18px;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
}
.social-icon a {
    border: 1px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    text-decoration: none;
}
.shere {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3b958b;
    cursor: pointer;
    border-radius: 100%;
    color: #fff;
    font-size: 18px;
}
.team-member:hover .social-icon {
    opacity: 1;
    bottom: 100%;
    transform: translateY(-10px);
    transition: all .35s ease-in-out;
}
.social-icon a:hover {
    background-color: #3b958b;
    transition: all .35s ease-in-out;
    border: 1px solid #3b958b;
}