/* for popup design */
.popup_item {
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.inner_popup {
    position: absolute;
    width: 100%;
    max-width: 100rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    border-radius: 1.6rem;
    background-color: #fff;
    /* overflow: hidden; */
    transition: .7s transform;
    z-index: 1;
    max-height: 100%;
    overflow: auto;
}
.popup_item.active{
    display: block;
}
.inner_popup.active {
    transform: translate(-50%, -50%);
}
.popup_item-wraap {
    width: 100%;
    height: 100%;
    position: relative;
}
.popup_item-wraap::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .28);
    transition: all .5s;
    opacity: 0;
}
.popup_item.active .popup_item-wraap::after {
    opacity: 1;
}
img.popup_shape_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 52.4rem;
    display: block;
    z-index: -1;
}

.team_popup_top_area {
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
    padding: 3.7rem 3.8rem 3.7rem;
    background: radial-gradient(53.2% 53.2% at 50% 45.15%, rgba(129, 207, 207, 0.20) 0%, rgba(129, 207, 207, 0.00) 100%);
}

.popup_team_title {
    width: calc(50% + 7.7rem);
}

.popup_team_image {
    width: calc(50% - 13.1rem);
    margin-top: 3rem;
}

.popup_team_title h2 {
    font-size: 4rem;
    color: #000;
    margin-bottom: 4rem;
}

.popup_team_title p {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.popup_team_image img {
    width: 100%;
    max-width: 30.5rem;
}

.team_popup_bttm_area {
    border-radius: 8px;
    background: var(--JT-White, #FFF);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.04), 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
    margin: 0 3.8rem 4.9rem;
}
.bottom_first_row {
    border-bottom: 2px solid #51BAB2;
}
.bottom_first_row, .bottom_last_row {
    padding: 2.6rem;
    display: flex;
    flex-wrap: wrap;
    row-gap: 2rem;
}

.team_popup_bttm_area .items_columns {
    width: 50%;
    display: flex;
    align-items: center;
}
.team_popup_bttm_area .items_columns.hide {
    display: none;
}
.team_popup_bttm_area .info_rows {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.team_popup_bttm_area .info_title {
    width: 42%;
}

.team_popup_bttm_area .info_result {
    width: 58%;
}

.team_popup_bttm_area .info_title h5 {
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.team_popup_bttm_area .info_result span {
    font-size: 1.6rem;
}

.team_popup_bttm_area .items_columns .info_rows:first-child {
    margin-top: 0;
}
.close_btn_team {
    position: absolute;
    top: 1.5rem;
    right: 1.7rem;
    cursor: pointer;
}

.team_slider_area {
	margin-top: 15rem;
    padding-bottom: 17.6rem;
}

.team_slider_iteams {
	margin-top: 6rem;
	overflow: hidden;
}
.team_slider_iteams .view_item h2 {
	margin-top: 2.8rem;
	font-size: 2.4rem;
	line-height: normal;
	cursor:pointer;
}
.team_slider_iteams .view_item span {
	color: #4D4D4D;
	margin-top: .4rem;
	display: block;
}
.team_slider_iteams .view_item .team_social_link {
	margin-top: 1.6rem;
	/* display: flex; */
	align-items: center;
	column-gap: 1rem;
	display: none !important;
}
.team_slider_iteams .view_item .team_social_link a {
	display: flex;
	border-radius:100%;
	overflow:hidden;
	background: transparent;
    transition: .7s all;
}

.single_team_item .view_item .team_social_link a svg {
    transition: .7s all;
}
.single_team_item .view_item .team_social_link a:hover {
    background: linear-gradient(90deg, rgba(81, 186, 178, 1) 0%, rgba(163, 135, 182, 1) 72%, rgba(255, 79, 187, 1) 100%);
}
.single_team_item .view_item .team_social_link a:hover svg {
    transform: scale(1.3);
}

.single_team_item .view_item .team_social_link a:hover svg circle {
    stroke: transparent;
}
.ts-popup-data {
	display: none;
}
.team-slider-items-wrap {
	width: calc(100% - ((100% - 162rem) / 2));
	margin-left: auto;
	/* overflow: hidden; */
	position: relative;
}
.tm-next-arrow {
	width: 5.8rem;
	height: 5.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 2.9rem);
	right: 12rem;
	z-index: 9;
	box-shadow: 0px 0px 3rem 0px rgba(0,0,0,0.25) !important;
}
.tm-prev-arrow {
	width: 5.8rem;
	height: 5.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 2.9rem);
	left: -2.8rem;
	z-index: 9;
	box-shadow: 0px 0px 3rem 0px rgba(0,0,0,0.25) !important;
}
.team-slider-arrow .swiper-button-disabled {
	opacity: .3;
	cursor: no-drop;
}
@media only screen and (max-width: 1050px){
    .team-slider-items-wrap {
        width: 100%;
        padding: 0 15px 0 30px;
        margin: 0;
        overflow: inherit;
    }
    .member_thumbnail.team_click {
        width: 195px;
        max-width: 100%;
    }
    .team_slider_area.team_grid_area {
        margin-top: 70px;
        padding-bottom: 0px;
        overflow: hidden;
    }
	.tm-next-arrow {
		right: 5px;
	}
	.tm-prev-arrow {
		left: 5px;
	}
}
@media only screen and (max-width: 991px){
    .sec_title_area h2 {
        font-size: 36px;
    }
    .team_grid_lists {
        margin-top: 50px;
        margin-bottom: 40px;
    }
    .single_team_item .view_item h2 {
        margin-top: 10px;
        font-size: 18px;
    }
    .single_team_item .view_item .team_social_link {
        margin-top: 0;
    }
    .single_team_item .view_item .team_social_link a svg {
        width: 30px;
    }
    .team_grid_area.trem_grid_support {
        padding-top: 40px;
    }
    .team_grid_area.trem_grid_support .team_lists_row {
        justify-content: center;
        column-gap: 30px;
        row-gap: 40px;
    }
    .team_grid_area.trem_grid_support .single_team_item {
        max-width: 200px;
    }
}

@media only screen and (max-width: 768px){
    .team_lists_row .single_team_item {
        width: calc(50% - 54px);
    }
    .team_lists_row {
        column-gap: 30px;
        row-gap: 30px;
        justify-content: center;
    }
    .team_grid_lists {
        margin-top: 30px;
    }
    .sec_title_area {
        text-align: center;
    }
    .team_sec_shape img {
        max-width: 500px;
    }
    .team_popup_top_area {
        flex-direction: column-reverse;
        align-items: center;
    }  
    .popup_team_title {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    .popup_team_title h2 {
        margin-bottom: 10px;
        font-size: 25px;
    }
    .popup_team_image {
        width: 100%;
        text-align: center;
        display: none;
    }
    .popup_team_image img {
        width: 70%;
    }
    .team_popup_bttm_area .items_columns {width: 100%;}

    .bottom_first_row, .bottom_last_row {
        row-gap: 8px;
        padding: 15px;
    }
    .team_popup_bttm_area {
        margin: 0 10px;
    }
    .team_popup_top_area {
        padding: 15px;
        padding-top: 30px;
    }
} 
@media only screen and (max-width: 650px){
    .team_lists_row .single_team_item {
        width: calc(50% - 15px);
    }
    .team_grid_area.trem_grid_support .single_team_item {
        max-width: 150px;
    }
    .team_grid_area.trem_grid_support .team_lists_row {
        justify-content: center;
        column-gap: 30px;
        row-gap: 30px;
    }
    .team_grid_area .single_team_item .view_item h2 {
        font-size: 16px;
    }
    .team_grid_area 
     .single_team_item .view_item .team_social_link a svg {
        width: 25px;
        height: 25px;
    }
    .team_grid_area .single_team_item .view_item .team_social_link {
        margin-top: 8px;
    }
    .single_team_item .view_item span {
        font-size: 12px;
        line-height: 16px;
    }
}

@media only screen and (max-width: 550px){
    .team_slider_area .section_title p{
        text-align: center;
    }
}
@media only screen and (max-width: 420px){
    .team_grid_area.trem_grid_support .single_team_item .view_item {
        text-align: center;
    }
    .team_grid_area.trem_grid_support .single_team_item .view_item .team_social_link {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 7px;
    }
    .team_grid_area.trem_grid_support .team_lists_row {
        column-gap: 20px;
    }
}