/*******************************************************
 *
 * General
 *
 *******************************************************/

#agents-results{
    position: relative;
    margin-bottom: 50px;
}

.agents-list,
.agents-col,
.agents-item {
    display: block;
    position: relative;
}

.agents-col + .agents-col {
    margin-top: 80px;
}

.agents-item {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.agents-img {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.agents-img img,
.agents-img canvas {
    display: block;
    width: 100%;
    transition: all 0.4s ease;
}

.agents-img:hover img,
.agents-img:hover canvas {
    transform: scale(1.1);
}

.agents-img img {
    object-fit: cover;
    object-position: center center;
}

.agents-img canvas {
    background-color: #eeeeee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.agents-main {
    position: relative;
    flex-grow: 1;
    margin-left: 60px;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
}

.agents-name {
    width: 100%;
    font-size: 45px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    margin-top: -4px;
    color: #000;
}

.agents-name a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s ease;
}

.agents-name a:hover {
    color: #cbc07a;
}

.agents-name:after {
    content: "";
    display: none;
    width: auto;
    height: 10px;
    flex-grow: 1;
    background: #eee;
    margin-left: 45px;
}

.agents-description {
    position: relative;
    width: 100%;
    margin: 18px 0;
}

.agents-description p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.67;
    letter-spacing: 0.05px;
}

.agents-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 50px;
    border: 2px solid #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    transition: all 0.4s ease;
}

.agents-button:hover {
    background: #000;
    color: #fff;
}

.agents-smi {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    margin: 0 0 0 35px;
    padding: 0;
}

.agents-smi li {
    display: block;
    margin: 0;
    padding: 10px;
}

.agents-smi li a {
    color: #000;
    text-decoration: none;
    transition: all 0.4s ease;
}

.agents-smi li a:hover {
    color: #cbc07a;
}

.agents-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
    margin: 50px 0 0;
    padding: 20px 0;
    position: relative;
    width: 100%;
    background: #eee;
    margin-left: 0 !important;
}

.agents-contact li {
    display: flex;
    align-items: baseline;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #666666;
    padding: 10px 29px;
}

.agents-contact li span {
    color: #000;
    font-size: 11px;
    margin-right: 8px;
}

.agents-contact li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s ease;
}

.agents-contact li a:hover {
    color: #cbc07a;
}

.agents-col:nth-child(even) .agents-item,
.agents-col:nth-child(even) .agents-name,
.agents-col:nth-child(even) .agents-main {
    flex-direction: row-reverse;
}

.agents-col:nth-child(even) .agents-main {
    margin-left: 0;
    margin-right: 60px;
}

.agents-col:nth-child(even) .agents-name:after {
    margin-left: 0;
    margin-right: 45px;
}

.agents-col:nth-child(even) .agents-description {
    text-align: right;
}

.agents-col:nth-child(even) .agents-smi {
    margin-left: 0;
    margin-right: 45px;
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/

@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1366px) {}

@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 991px) {
    .agents-img, .agents-main {
        width: 100%;
    }

    .agents-item {
        flex-flow: row wrap;
    }

    .agents-main {
        margin: 30px 0 0 !important;
    }

    .agents-item,
    .agents-name,
    .agents-main {
         flex-flow: row wrap !important;
    }

    .agents-name:after {
        display: none;
    }

    .agents-description {
        text-align: left !important;
    }

    .agents-smi {
        width: 100%;
        margin: 50px 0 0 !important;
    }

    .agents-contact {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .agents-name {
        font-size: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .agents-name {
        font-size: 35px;
    }
}