.site-content {
    padding: 0;
}
.headline-wrapper {
    width: 100%;
    height: 285px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    color: #fff;
}
.headline-wrapper .headline {
    width: 100%;
    height: 64px;
    font-family: 'Avenir-Heavy';
    font-size: 60px;
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -0.9px;
    color: #ffffff;
    text-align: center;
}
.dealers-list {
    max-width: 1280px;
    margin: 0 auto 72px auto;
}
.dealers-list-item {
    display: grid;
    grid-template: 1fr / 40px 1fr;
    align-items: center;
    height: 166px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    transition: 0.3s linear;
}
.dealers-list-item.hide {
    opacity: 0;
    height: 0;
}
.dealers-list-item.hide.no-display {
    display: none;
}
.dealer-data {
    display: grid;
    grid-template: 1fr / repeat(3, 1fr);
    text-align: left;
    height: 100%;
    align-items: center;
}
.logo-wrapper {
    display: flex;
    justify-content: center;
}
.location-icon {
    margin: 0 auto;
}
.logo-wrapper .dealer-logo {
    width: 219px;
    height: auto;
}
.dealer-description {
    font-family: 'Avenir-Book';
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -0.24px;
    color: #878787;
    text-align: left;
}
.dealer-contact-info {
    display: grid;
    grid-template: repeat(3, 1fr) / 1fr;
    gap: 10px;
    text-align: left;
    color: #111111;
    font-family: 'Avenir-Book';
    font-size: 16px;
    color: #111111;
    letter-spacing: -0.24px
}
.map-wrapper {
    width: 908px;
    height: 527px;
    margin: auto auto 72px auto;
    overflow: hidden;
    position: relative;
}
.map-wrapper iframe {
    width: 100%;
    height: 110%;
    top: -54px;
    position: absolute;
}
.country-select-wrapper {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.select-container {
    display: flex;
    flex-direction: column;
}
.select-container span {
    font-family: 'Avenir-Heavy';
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.21px;
    color: #000000;
    margin: 0 0 7px 0;
}
.country-select-wrapper select{
    width: 269px;
    height: 37px;
    border-radius: 4px;
    border: solid 1px #c9d5ea;
    background-color: #ffffff;
    padding: 0 10px;
    cursor: pointer;
    position: relative;
}
.country-select-wrapper .select-box {
    position: relative;
}
.country-select-wrapper .select-box::after {
    content: '▾';
    position: absolute;
    right: 10px;
    top: 10px;
}


@media screen and (max-width: 782px) { 
    .country-select-wrapper {
        height: 150px;
    }
    .headline-wrapper {
        width: 100vw;
        height: 190px;
    }
    .headline-wrapper .headline {
        font-size: 30px;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dealers-list-item {
        width: 90%;
        height: auto;
        margin: auto;
        justify-content: center;
        align-items: baseline;
        padding-bottom: 10px;
   	 	padding-top: 10px;
    }
    .dealer-data {
        grid-template: repeat(2, 1fr) / 1fr;
    }
    .logo-wrapper {
        justify-content: flex-start;
    }
    .dealer-description {
        margin-bottom: 10px;
    }
    .map-wrapper {
        width: 345px;
        height: 234px;
    }
    .logo-wrapper {
        display: -webkit-box;
        justify-content: center;
}
    .logo-wrapper .dealer-logo {
        max-height: 110px;
}
}