/*------------------------------------------------------------------
team_with_modal.css
Last edited: 3/19/25
[Table of contents]

100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)

[Notes]
-------------------------------------------------------------------*/
/* add mobile CSS here */
.band-team-with-modal .intro {
	margin-bottom: 40px;
	text-align: center;
}
.band-team-with-modal .card {
	margin-bottom: 60px;
}
.band-team-with-modal .card,
.band-team-with-modal .card img {
	transition: 0.4s all ease;
}
.band-team-with-modal .card img {
	margin-bottom: 0;
	width: 100%;
}
.band-team-with-modal .card:hover img {
}
.band-team-with-modal a,
.band-team-with-modal a:hover {
    text-decoration: none;
}
.band-team-with-modal .card-body {
	background-color: var(--theme-color-light);
	padding: 15px;
	text-align: center;
	transition: 0.2s all ease;
}
.band-team-with-modal .card-body h3 {
	color: var(--theme-color-orange);
	font-size: 30px;
	transition: 0.2s all ease;
}
.band-team-with-modal a:hover .card-body {
	background-color: var(--theme-color-orange);
}
.band-team-with-modal a:hover .card-body,
.band-team-with-modal a:hover .card-body h3 {
	color: var(--theme-color-light);
}
.team-modal {
	padding: 15px 0;
}
.team-modal .social-icons a:first-of-type {
	padding-left: 0;
}
.team-modal .social-icons a:hover {
	text-decoration: none;
}
.team-modal h3.name {
	color: var(--theme-color-orange);
	font-size: 28px;
	margin-bottom: 5px;
}
/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
    
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {

}

/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {    
}

/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
	.band-team-with-modal .gutter [class^="col-"]:nth-of-type(3n+1) {
		padding-left: 15px;
		padding-right: 29px;
	}
	.band-team-with-modal .gutter [class^="col-"]:nth-of-type(3n-1) {
		padding-left: 22px;
		padding-right: 22px;
	}
	.band-team-with-modal .gutter [class^="col-"]:nth-of-type(3n) {
		padding-left: 29px;
		padding-right: 15px;
	}  	
}

/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1450px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
   
}