/*------------------------------------------------------------------
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:#000 
-------------------------------------------------------------------*/
/************************ 1.Default css ***************************/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}
*, ::after, ::before {
    box-sizing: border-box;
    -webkit-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;
}
.heading-title p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
    color: #000;
}
.heading-title h1 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    color: #191919;
    display: block;
}
.team-card {
    text-align: center;
    position: relative;
    z-index: 1;
    text-align: start;
}
.team-image {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s linear 0s;
}
.team-image img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
    object-position: center;
}
.social-icon {
    position: absolute;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    right: 0;
    padding: 10px;
    width: 100%;
    top: 0;
}
.social-icon a {
    text-decoration: none;
    color: #fff;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease-in-out;
}
.team-card:hover .social-icon a {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
}
.team-card:hover .social-icon a:nth-child(1) {
    transition: all .3s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}
.team-card:hover .social-icon a:nth-child(2) {
    transition: all .4s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}
.team-card:hover .social-icon a:nth-child(3) {
    transition: all .6s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}
.team-card:hover .social-icon a:nth-child(4) {
    transition: all .8s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}
.team-content {
    text-align: start;
}
.team-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
}
.team-detail a {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    color: #000;
    transition: all .35s ease-in;
}
.team-detail i {
    font-size: 24px;
    cursor: pointer;
}
.team-content span {
    font-size: 16px;
    font-weight: 400;
    color: #606060;
}
.social-icon a:hover {
    background-color: #fff;
    color: #000;
    transition: all .5s ease-in-out;
}