.GN_container {
    width: 100%;
}
.GN_indicator {
    background-color: #f4f4f4;;
    width: 100%;
}
.GN_indicator > span {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    padding: 10px 0;
}
.GN_indicator > span > p:nth-child(1) {
    color: #999999;
}
.GN_indicator > span > p:nth-child(2) {
    color: #E90030;
}
.GN_main {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
}
.GN_left {
    width: 100%;
    max-width: 280px;
    min-width: 280px;
    margin-top: 40px;
    height: 100%;
}
.GN_left > h1 {
    color: #E90030;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.GN_left > button {
    background-color: #E90030;
    color: #fff;
    border: 0;
    padding: 8px 16px;
    font-size: 16px;
    width: 90%;
    text-align: left;
    border-radius: 50px;
    cursor: pointer;
}
.GN_right {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.GN_right > span > h1 {
    font-size: 24px;
    font-weight: 500;
    padding: 0 0 8px;
    color: #222222;
}
.GN_right > span > h3 {
    font-size: 16px;
    color: #999999;
    font-weight: 300;
    white-space: nowrap;
}
.GN_map_wrap {
    padding: 10px 20px;
    width: 100%;
    height: 428px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    
}
.GN_map {
    position: relative;
    height: 100%;
    background: url(../images/GNmap.svg) no-repeat 0 0;
    overflow: hidden;
}
.region-btn {
    position: absolute;
    background-color: #fff;
    opacity: 80%;
    border: 1px solid #E90030;
    border-radius: 8px;
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: -1.2px;
}
.region-btn:hover {
    background-color: #E90030;
    color: #fff;
    cursor: pointer;
}
.region-btn.on {
    background-color: #E90030;
    color: #fff;
}
.region-btn.europe {
    left: 25px;
    top: 123px;
}
.region-btn.russia-cis {
    left: 241px;
    top: 89px;
}
.region-btn.middle-east {
    left: 116px;
    top: 221px;
}
.region-btn.south-west-east-asia {
    left: 238px;
    top: 258px;
}
.region-btn.china {
    left: 279px;
    top: 186px;
}
.region-btn.japan {
    left: 390px;
    top: 162px;
}
.region-btn.north-america {
    left: 657px;
    top: 129px;
}
.region-btn.middle-south-america {
    left: 582px;
    top: 214px;
}
.GN_office_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#office-title {
    padding: 0 20px 12px;
     text-transform: uppercase;
}
.office-table {
    border: 1px solid #F4F4F4;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
}
.office-table th, td {
    padding: 8px 10px;
    align-items: center;
    white-space: normal;
    word-wrap: keep-all;
    max-width: 200px;
    min-width: 150px;
}
.office-table th {
    font-size: 14px;
}
.office-table td:first-child, .office-table th:first-child {
    padding-left: 24px;
}
.office-table td:last-child, .office-table th:last-child
{
    padding-right: 24px;
}
.office-table td {
    font-size: 16px;
    line-height: 26px;
}
.office-table thead {
    background-color: #F4F4F4;
}
.office-table tbody tr {
  display: none;
}
.office-table tbody tr.active {
  display: table-row;
}