/*******************************************************
 *
 * Leadership
 *
 *******************************************************/




 /*** image bg***/
 .accent {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }
 .accent canvas {
     background-size: cover;
     width: 100%;
     height: 100%;
     background-position: center;
 }

 .image-holder{
   position: relative;
 }

 .image-holder canvas{
   display: block;
   height: 100%;
   width: 100%;
 }

 .image-holder img{
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   object-fit: cover;
   object-position: center;
 }
 /*** image bg***/



 .page-template-leadership #inner-page-wrapper > .container {
    width: 100%;
    max-width: 1426px;
}
.ld-agents {
    justify-content: center;
    display: flex;
    flex-flow: row wrap;
    gap: 18px;
    margin-bottom: 135px;
}
.ld-agents-item {
     box-sizing: border-box;
     width: calc(100% / 4 - 14px);
}
.ld-agents-item a {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.ld-agents-item a .agent-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    text-align: center;
    padding-bottom: 34px;
    z-index: 1;

    padding-left: 12px;
    padding-right: 12px;
}
.ld-agents-item a .agent-info h2 {
    color: #fff;
    font-size: 36px;
    font-family: var(--font-title);
    font-weight: 500;
    letter-spacing: -0.04em;
}
.ld-agents-item a .agent-info span {
    font-family: var(--font-title);
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.15em;
}

.ld-agents-item a .image-holder:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    z-index: 1;
    bottom: 0;
}
.ld-agents-item a img {
    filter: grayscale(1);
    transition: all 0.3s ease-in-out;
}
.ld-section-title h2 {
    font-family: var(--font-title);
    font-size: 90px;
    text-align: center;
    letter-spacing: 0.025em;
}
.ld-section-title {
    margin-bottom: 48px;
}
.ld-section-title p {
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
    max-width: 952px;
    margin: 0px auto;
    margin-top: 20px;
}
div#ip-leadership {
    margin-top: 98px;
}
.ld-section-title:first-child {
    margin-bottom: 99px;
}
.ld-agents-item a:hover img {
    filter: none;
}
.ld-agents-item a .agent-info h2 {
    font-size: clamp(24px, 2.25vw , 36px);
}

.ld-agents-item a .agent-info span {
    font-size: clamp(16px, 1.25vw , 20px);
}

.ld-section-title h2 {
    font-size: clamp(40px, 5.625vw , 90px);
}


@media (max-width: 991px) {

			.ld-agents-item {
			   width: calc(100% / 3 - 14px);
			}

}



@media (max-width: 767px) {

			.ld-agents-item {
			    width: calc(100% / 2 - 14px);
			}

}

@media (max-width: 480px) {

			.ld-agents-item {
			    width: calc(100%);
			}

}
