.nav {
    margin-bottom: 20px;
}
.nav__title {
    font-family: 'Didot LT Std';
    font-weight: 500;
    font-size: 17px;
    display: inline-block;
    width: 100%;
    padding: 25px 0px;
    position: relative;
    height: 70px;
}

.nav__title_active:before {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #e5e5e5 transparent transparent transparent;
}

.nav__title_active:after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #ffffff transparent transparent transparent;
}
.nav__border {
     border-right: 1px solid #e5e5e5;
}
.nav__border-b {
     border-bottom: 1px solid #e5e5e5;
}
.nav__item {
    text-align: center;
    width: 100%;
    position: relative;
    height: 70px;
}
.nav__item-link {
    font-family: 'Gotham';
    font-weight: 700;
    font-size: 15px;
    color: #cacaca;
    display: inline-block;
    width: 100%;
    padding: 25px 0px;
    transition: .5s ease all;
    text-transform: uppercase;
}
.nav__title_active .nav__item-link {
    color: #2dc0d4;
}

.nav__item-link:hover,
.nav__title_active .nav__item-link {
    font-weight: bold;
    color: #EB0064;
}
.nav-links {
    width: 100%;
    text-align: center;
    float: left;
}
a.page-numbers{
    color: #00B2DF;
}
a.page-numbers:hover{
    color: #ec0265;
}

@media (max-width: 1200px) {
    .nav__title {
        font-family: 'Didot LT Std';
        font-weight: 700;
        font-size: 15px;
        display: inline-block;
        width: 100%;
        padding: 25px 0px;
    }
    .nav__border {
         border-right: 1px solid #f4f4f4;
    }
    .nav__item {
        text-align: center;
        width: 100%;
    }
    .nav__item-link {
        font-family: 'Gotham';
        font-weight: 700;
        font-size: 13px;
        color: #cacaca;
        display: inline-block;
        width: 100%;
        padding: 25px 0px;
        cursor: pointer;
    }
}
@media (max-width: 990px) {
    .nav__title {
        font-family: 'Didot LT Std';
        font-weight: 700;
        font-size: 18px;
        display: block;
        width: 100%;
        padding: 25px 0px;
        text-align: center;
    }
    .nav__border {
         border-right: 0px solid #f4f4f4;
          border-bottom: 1px solid #f4f4f4;
    }
    .nav__item {
        text-align: center;
        width: 100%;
    }
    .nav__item-link {
        font-family: 'Gotham';
        font-weight: 700;
        font-size: 17px;
        color: #cacaca;
        display: inline-block;
        width: 100%;
        padding: 25px 0px;
    }
    .nav__title_active:after, .nav__title_active:before {
        display: none;
    }
}