@media all and (min-width:769px){
    .col-4-section .tile {
        margin-bottom: 112px;
        margin-right: 24px;
        width: calc((100% - 72px) / 4);
    }
}

/* Alphabet Filter */
.alphabet-filter-section{
    border-bottom: 1px solid #ccc;
    display: flex;
    margin: 30px -6px 0 0;
    padding-bottom: 33px;
}
.alphabet-filter-title{
    font-size: 12px;
    margin-top: 3px;
    width: 140px;
}
.alphabet-filter{
    width: calc(100% - 140px);
}
.alphabet-filter-inner{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.filter-letter-wrap{
    display: inline-block;
}
.filter-letter{
    display: block;
    font-family: 'Times Now', serif;
    font-size: 16px;
    font-weight: 350;
    line-height: 1.2;
}
.filter-letter.gray-text {
    opacity: 0.5;
}
.filter-letter:not(.gray-text):hover{
    color: #7c1913;
}
@media all and (max-width: 1366px){
    .alphabet-filter-title{
        width: 100px;
    }
    .alphabet-filter{
        width: calc(100% - 100px);
    }
    .alphabet-filter-section{
        margin-right: 0;
    }
}
@media all and (max-width: 768px){
    .alphabet-filter{
        overflow: scroll;
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox */
    }
    .alphabet-filter::-webkit-scrollbar { 
        display: none;  /* Safari and Chrome */
    }
    .alphabet-filter-inner{
        width: 1060px;
    }
    .alphabet-filter-section{
        margin: 6px 0 0;
        padding-bottom: 25px;
    }
}
@media all and (max-width: 640px){
    .filter-letter{
        font-size: 12px;
    }
    .alphabet-filter-title{
        padding-left: 4px;
        width: 78px;
    }
    .alphabet-filter{
        width: calc(100% - 78px);
    }
}

/* Agents List */
.agents-letter-section{
    overflow: hidden;
}
.agents-letter-section:not(:last-of-type){
    border-bottom: 1px solid #ccc;
}
.agents-letter{
    margin: 32px 0 24px;
}

.agents-list{
    margin-bottom: -30px;
}
.agent-tile-image {
    filter: grayscale(1);
}
.agent-tile-image.image-container{
    padding-bottom: 121%;
}
.agent-tile-text{
    font-family: 'Suisse Intl', sans-serif;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-top: 20px;
}
.agency-name{
    font-weight: 400;
}
.agent-name{
    font-weight: 300;
}
@media all and (max-width: 1366px){
    .agents-list {
        margin-bottom: 0;
    }
}
@media all and (max-width: 1024px){
    .agent-tile-text{
        font-size: 16px;
    }
}
@media all and (max-width: 768px){
    .agents-letter {
        margin: 27px 0 22px;
        font-size: 28px;
    }
    .agent-tile-text{
        font-size: 14px;
        margin-top: 18px;
    }
}
@media all and (max-width: 640px){
    .agent-tile-text{
        font-size: 12px;
        margin-top: 15px;
    }
    .agents-list .col-4-section .tile{
        margin-bottom: 27px;
    }
}