/*------------------------------------------------------------------
Project:Team
Author: The_Krishna        
-------------------------------------------------------------------*/
/*----------------Table of contents Start---------------------------
1.Default css
2.layout-1 section
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background: #FFF
Content: linear-gradient(90deg, #0b57e3 40%, #022b6d 100%)  
-------------------------------------------------------------------*/
/************************ 1.Default css ***************************/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: auto;
}
*, ::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: "Inter", sans-serif;
}
.row {
    --bs-gutter-x: 30px;
}
/* ------------- 1. layout-1 section ------------- */
.team-section-1 {
    /*padding: 100px 0;*/
}
.sub-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #0b57e3 40%, #022b6d 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.content-left {
    text-align: center;
    margin-bottom: 40px;
}
.heading {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    color: #191919;
    display: block;
    margin-bottom: 0;
}
.main p {
    font-size: 18px;
}
.team-style-two {
    margin-bottom: 5px;
}
.team-style-two .thumb {
    padding-left: 70px;
    position: relative;
    z-index: 1;
}
.team-style-two .thumb::after {
    position: absolute;
    left: 25px;
    top: 0;
    content: "";
    height: 0;
    width: 20px;
    background: transparent;
    border-radius: 10px;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.team-style-two:hover .thumb::after {
    height: 40%;
    opacity: 1;
    visibility: visible;
    background-color: #0b57e3;
}
.team-style-two .thumb img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
.team-style-two .social {
    display: inline-block;
    position: absolute;
    left: 15px;
    bottom: 0;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.team-style-two .social li:first-child {
    transform: translateY(30px);
}
.team-style-two .social li {
    transition: all 0.35s ease-in-out;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
}
.team-style-two .social a {
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: #0b57e3;
    color: #fff;
    border-radius: 50%;
    margin-top: 10px;
}
.team-style-two:hover .social li {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.team-style-two .social li.dribbble a {
    background: #1a53e1;
}
.team-style-two .social li.twitter a {
    background: #1DA1F2;
}
.team-style-two .social li.facebook a {
    background: #3d62af;
}
.team-style-two .info {
    padding: 15px 30px;
    position: relative;
    max-width: 100%;
    min-height: 129.5px;
}
.team-style-two .info::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 150%;
    width: 100%;
    background: #ffff;
    z-index: -1;
    border-radius: 10px;
    box-shadow: 0 5px 3px rgb(3 27 78 / 8%);
}
.team-style-two .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
    display: block;
    color: #000;
    transition: all .35s ease-in;
}
.team-style-two .title:hover {
    color: #0b57e3;
    transition: all .35s ease-in-out;
}
.content span {
    font-size: 16px;
    font-weight: 400;
    color: #606060;
}
.swiper {
    width: 100%;
    height: 100%;
    /*padding: 30px 0;*/
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content {
    text-align: left;
}