/* HEADER */
.header {
    margin-top: 10px;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__lang {
    display: flex;
    gap: 30px;
}

.lang-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-group a {
    color: #181313;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 24.3px */
}

.navigation {
    margin: 0 auto;
}

.navigation__list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navigation__list a {
    color: #181313;
    font-family: Open Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 24.3px */
    transition: 0.3s;
}

.navigation__list a:hover {
    color: #ff5703;
}

.navigation__item {
    position: relative;
}

.sub-category {
    position: relative;
}

.sub-category::after {
    position: absolute;
    content: '';
    background: url('../img/arrow.svg') center no-repeat;
    width: 8px;
    height: 6px;
    right: -12px;
    top: 45%;
    transition: 0.2s;
}

.navigation__sub-list {
    position: absolute;
    top: 18px;
    left: -25px;
    display: none;
}

.navigation__sub-list li {
    background-color: #5D0703;
    padding: 0 10px;
}

.navigation__sub-list li:not(:last-child) {
    padding-top: 15px;
}

.navigation__sub-list li:last-child {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navigation__sub-list li a {
    color: #fff;
}

.navigation__item:hover .navigation__sub-list {
    display: block;
    padding-top: 20px;
    z-index: 10;
    width: 170px;
}

.navigation__item:hover .sub-category::after {
    transform: rotate(180deg);
}

.header__feedback {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__feedback p {
    color: #18131399;
    text-align: right;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 21.6px */
    margin-top: 5px;
}
.kk .header__feedback p {
    font-size: 12px;
}
.socials-group {
    display: flex;
    gap: 8px;
    margin-top: 7px;
    justify-content: end;
}

.socials-group svg {
    transition: 0.3s;
    fill: #5D0703;
}

.socials-group svg:hover {
    transform: scale(1.2);
    fill: #ba0a01;
}

.header__navigation {
    display: none;
}

.header-menu-icon {
    display: none;
}

.feedback__phone {
    color: #181313;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
}

.feedback__phone:hover {
    color: #ba0a01;
}

@media (max-width:1300px) {
    .header__feedback {
        gap: 20px;
    }
    .navigation__list a img {
        width: 100px;
    }
}

@media (max-width:1200px) {
    .header__feedback {
        flex-direction: column;
        gap: 0;
    }

    .navigation__list {
        gap: 20px;
    }

    .navigation__list a {
        font-size: 16px;
    }
    .navigation__list a img {
        width: 100px;
    }
    .socials-group {
        display: none;
    }

    .header__feedback p {
        display: none;
    }
}

@media (max-width:992px) {
    .header-menu-icon {
        z-index: 150;
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        cursor: pointer;
        order: 3;
    }

    .header__nav {
        display: none;
    }

    .header__navigation {
        display: block;
    }

    .navigation__list {
        flex-direction: column;
        align-items: baseline;
        margin-left: 20px;
        margin-top: 75px;
    }

    .logo-link {
        display: none;
    }

    .header-menu-icon span,
    .header-menu-icon::after,
    .header-menu-icon::before {
        position: absolute;
        left: 0;
        height: 10%;
        width: 100%;
        transition: all 0.3s ease 0s;
        background-color: #ba0a01;
    }

    .header-menu-icon::after,
    .header-menu-icon::before {
        content: "";
    }

    .header-menu-icon::after {
        top: 0;
    }

    .header-menu-icon::before {
        bottom: 0;
    }

    .header-menu-icon span {
        top: 50%;
        transform: scale(1) translate(0, -50%);
    }

    .header-menu-icon._active span {
        transform: scale(0) translate(0, -50%);
    }

    .header-menu-icon._active::after {
        top: 50%;
        transform: rotate(-45deg) translate(0, -50%);
    }

    .header-menu-icon._active::before {
        bottom: 50%;
        transform: rotate(45deg) translate(0, 50%);
    }

    .header__navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #f5f5f5;
        z-index: 100;
        transition: right 0.3s ease 0s;
    }

    .header__navigation._active {
        right: -15%;
    }

    .navigation__sub-list {
        position: relative;
        display: none;
        background-color: transparent;
    }

    .navigation__item:hover .navigation__sub-list {
        padding: 0;
    }

    .navigation__sub-list {
        top: 0;
        left: 0;
    }

    .navigation__sub-list li a {
        color: #181313;
    }

    .navigation__sub-list li {
        background-color: transparent;
        padding: 0;
    }

    .socials-group {
        display: block;
        justify-content: start;
        margin-top: 40px;
    }

    .feedback__mobile {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 10px;
        margin: 20px 0 0 20px;
    }

    .feedback__mobile p {
        color: #18131399;
        font-family: Open Sans;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%;
        /* 21.6px */
        margin-top: 5px;
    }

    .header__feedback {
        display: none;
    }
}

@media (max-width:767px) {
    .header__feedback {
        display: none;
    }

    .feedback__mobile {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 10px;
        margin: 20px 0 0 20px;
    }
}

/* HEADER END */
/* MAIN */
.info__wrapper {
    display: flex;
    justify-content: space-between;
}

.info__left {
    background: #5D0703;
    width: 100%;
}

.info__left a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 62px;
    margin: 70px 0 0 80px;
    gap: 16px;
}

.info__left p {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #FFF;
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
}

.link-down svg {
    transition: 0.3s;
}

.link-down:hover svg {
    transform: translateY(10%);
}

.main-slider {
    width: 1230px;
    height: 890px;
}

.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    top: 15%;
    right: 8%;
}

.swiper-pagination-bullet {
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    position: relative;
    background-color: #fff;
}

.swiper-pagination-bullet-active::before {
    position: absolute;
    content: '';
    background: url('../img/ellipse.svg') center no-repeat;
    width: 32px;
    height: 32px;
    top: -12px;
    left: -11px;
}

.info__container {
    margin: -330px auto 0;
    position: relative;
    z-index: 20;
    padding-bottom: 50px;
    display: flex;
    gap: 20px;
}

.info__box {
    display: flex;
    gap: 20px;
}

.info__desc {
    color: #FFF;
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
    width: 100%;
    max-width: 217px;
}

.info__title {
    color: #FFF;
    font-size: 84px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 103.2px */
    text-transform: uppercase;
    width: 100%;
    max-width: 1290px;
    text-indent: 250px;
    margin-top: -70px;
}
.kk .info__title {
    color: #fff;
}
.info__btn {
    width: 100%;
    max-width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background-color: #5D0703;
    color: #fff;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    /* 32.4px */
    transition: 0.3s;
}

.info__btn svg {
    margin-left: auto;
    stroke: #fff;
}

.info__btn p {
    text-align: start;
}

.info__btn:hover {
    box-shadow: 10px 10px 4px 4px rgb(255 0 28 / 36%);
    background-color: #ba0a01;
    color: #fff;
}

@media (max-width:1650px) {
    .info__title {
        font-size: 75px;
    }
}

@media (max-width:1540px) {
    .info__title {
        font-size: 70px;
    }
}

@media (max-width:1400px) {

    .main-slider {
        max-width: 1000px;
    }

    .info__title {
        font-size: 64px;
    }
}
@media (max-width:1390px) {
    .info__title {
        margin-top: -62px;
    }
}
@media (max-width:1200px) {
    .info__container {
        margin: -230px auto 0;
    }

    .main-slider {
        max-width: 800px;
    }

    .info__title {
        font-size: 48px;
        margin-top: -50px;
        text-indent: 223px;
    }
}

@media (max-width:992px) {
    .info__left {
        display: none;
    }

    .info__desc {
        font-size: 16px;
    }

    .main-slider {
        max-width: 100%;
        height: 585px;
    }

    .main-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info__wrapper {
        display: block;
    }

    .info__title {
        font-size: 32px;
        margin-top: 0;
        text-indent: 0;
    }

    .info__title span {
        margin-left: 0;
    }

    .info__btn {
        max-width: 275px;
        height: 55px;
        font-size: 14px;
        padding: 16px 10px;
        align-items: center;
    }

    .info__container {
        margin: -280px auto 0;
        flex-direction: column;
    }

    .info__box {
        flex-direction: column;
    }

    .info__btn svg {
        display: none;
    }
}

@media (max-width:767px) {
    .main-slider {
        height: 390px;
    }

    .swiper-pagination-vertical.swiper-pagination-bullets,
    .swiper-vertical>.swiper-pagination-bullets {
        top: 35%;
        right: 10%;
    }

    .info__title {
        font-size: 24px;
        max-width: 520px;
    }

    .info__container {
        margin: -240px auto 0;
        flex-direction: column;
        padding-bottom: 0;
    }

    .info__btn {
        font-size: 12px;
        max-width: 175px;
        height: 55px;
        margin-top: auto;
    }

    .info__btn svg {
        stroke: #fff;
    }
}

@media (max-width:576px) {
    .info__container {
        margin: -240px auto 0;
    }
    .kk .info__container {
        margin: -265px auto 0;
    }
}

.mass-media__wrapper {
    margin-top: 130px;
}

.media__wrapper {
    margin-top: 0;
}

.title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.mass-media__title {
    text-indent: 95px;
    margin-top: -50px;
}
.kk .mass-media__title {
    text-indent: 145px;
    margin-top: -60px;
}
.media__title {
    text-indent: 0;
    margin-top: 0;
}
.kk .media__title {
    text-indent: 0;
    margin-top: 0;
}
.mass-media__desc {
    color: #181313;
    /* 29.7px */
}

.mass-media__title span {
    color: #5D0703;
}

.mass-media__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.media__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.mass-media__card {
    height: 100%;
    position: relative;
    overflow: hidden;
    max-height: 650px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 0.5s ease;
}

.mass-media__card-visible {
    opacity: 1;
    transform: translateY(0);
}

.mass-media__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    filter: brightness(0.7);
}

.mass-media__card:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.mass-media__box {
    position: absolute;
    z-index: 100;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    width: 100%;
}

.mass-media__box svg {
    margin-left: auto;
}

.mass-media__date {
    color: #FFF;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    /* 27px */
}

.mass-media__subtitle {
    color: #FFF;
    font-family: Open Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    /* 43.2px */
    margin-top: 34px;
}

@media (max-width:1240px) {
    .mass-media__subtitle {
        font-size: 22px;
    }

    .media__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:1200px) {
    .mass-media__wrapper {
        margin-top: 75px;
    }

    .mass-media__title {
        margin-top: -40px;
    }
    .kk .mass-media__title {
        margin-top: -48px;
    }
    .media__title {
        margin-top: 0;
    }
}

@media (max-width:992px) {
    .mass-media__subtitle {
        font-size: 16px;
        margin-top: 20px;
    }

    .media__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .title-group {
        flex-direction: column;
        align-items: baseline;
    }

    .mass-media__wrapper {
        margin-top: 100px;
    }

    .mass-media__title {
        text-indent: 0;
        margin-top: 0;
    }
    .kk .mass-media__title {
        text-indent: 0;
        margin-top: 0;
    }
    .mass-media__card {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:767px) {

    .mass-media__container {
        grid-template-columns: 1fr 1fr;
    }

    .mass-media__date {
        font-size: 16px;
    }

    .mass-media__wrapper {
        margin-top: 75px;
    }
}

@media (max-width:576px) {
    .mass-media__container {
        grid-template-columns: 1fr;
    }

    .mass-media__container a {
        height: 400px;
    }

    .mass-media__wrapper {
        margin-top: 75px;
    }
}

.about {
    background-color: #181313;
    border-bottom: 15px solid #5D0703;
    margin-top: 150px;
    background-image: url('../img/about-img.png');
    background-repeat: no-repeat;
    background-position: right;
}

.about__container {
    padding: 120px 0;
}

.about__box {
    display: flex;
    gap: 50px;
}

.about__desc {
    color: #fff;
}

.about__title {
    color: #fff;
    text-indent: 210px;
    margin-top: -58px;
}
.kk .about__title {
    color: #fff;
}
.tabs {
    display: flex;
    gap: 189px;
    margin-top: 50px;
}

.tabs__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tabs__list li {
    color: #FFF;
    font-family: Open Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 29.7px */
    opacity: 0.7;
    cursor: pointer;
}

.tabs__list li.active {
    opacity: 1;
    text-decoration: underline;
}

.tabs__text {
    display: none;
}

.tabs__text p {
    color: #FFF;
    font-family: Open Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 29.7px */
    width: 100%;
    max-width: 1108px;
    margin-bottom: 10px;
}

.tabs__text.active {
    display: block;
}

@media (max-width:1540px) {
    .tabs__text p {
        max-width: 855px;
    }
}

@media (max-width:1240px) {
    .tabs {
        gap: 70px;
    }

    .tabs__text p {
        max-width: 745px;
    }

    .tabs__desc {
        max-width: 745px;
    }

    .about {
        margin-top: 75px;
    }

}

@media (max-width:1200px) {
    .about__title {
        color: #fff;
        text-indent: 160px;
        margin-top: -45px;
    }
    .kk .about__title {
        text-indent: 190px;
    }
}

@media (max-width:992px) {
    .tabs {
        flex-direction: column;
        gap: 30px;
    }

    .tabs__list li {
        font-size: 18px;
    }

    .tabs__text p {
        font-size: 16px;
    }

    .about {
        margin-top: 50px;
    }

    .about__box {
        gap: 25px;
        flex-direction: column;
    }

    .about__title {
        color: #fff;
        text-indent: 0;
        margin-top: 0;
    }
    .kk .about__title {
        text-indent: 0;
    }
}

@media (max-width:767px) {
    .about {
        margin-top: 50px;
    }

    .about__container {
        padding: 50px 0;
    }

    .about__box {
        flex-direction: column;
        gap: 30px;
    }
}

.team__wrapper {
    position: relative;
    display: flex;
    min-width: 0;
    margin-top: 150px;
    gap: 130px;
}

.team__desc {
    color: #181313;
    width: 175px;
}

.team-slider {
    width: 100%;
    max-width: 1395px;
}

.team-slider-slide {
    overflow: hidden;
}

.team-slider-slide a {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.team-slider-slide img {
    width: 100%;
    height: 545px;
    object-fit: cover;
    transition: 0.3s;
    border-bottom: 8px solid #5D0703;
}

.team-slider-slide a:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.team-slider__name {
    color: #181313;
    font-family: Open Sans;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    /* 43.2px */
    margin-top: 26px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.team-slider__desc {
    color: rgba(24, 19, 19, 0.80);
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: 'none';
}

.swiper-button-next,
.swiper-button-prev {
    position: relative;
    width: 60px;
    height: 40px;
}

.team-slider__btn {
    display: flex;
    gap: 40px;
    position: absolute;
    top: 12%;
    left: -12px;
}

@media (max-width:992px) {
    .team__wrapper {
        flex-direction: column;
        margin-top: 50px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        position: relative;
        width: 60px;
        height: 40px;
    }
}

@media (max-width:576px) {
    .team-slider__btn {
        top: 105%;
        left: 35%;
    }

    .team__wrapper {
        margin-bottom: 100px;
        gap: 30px;
    }
}

@media (max-width:480px) {
    .team-slider__btn {
        top: 105%;
        left: 29.5%;
    }
}

.feedback__wrapper {
    margin-top: 150px;
}

.feedback__title {
    text-indent: 255px;
    margin-top: -50px;
}

.feedback__title span {
    color: #5D0703;
}

.feedback__form {
    display: flex;
    gap: 26px;
    margin-top: 50px;
}

.feedback__form input,
textarea {
    background: #F5F7FB;
    resize: none;
    font-size: 18px;
    padding: 24px;
}

.feedback__container {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
}

.feedback__input-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.feedback__form-btn {
    background-color: #5D0703;
    color: #fff;
}

.feedback__form-btn svg {
    stroke: #fff;
}

.feedback__note {
    color: #181313cc;
    font-family: Open Sans;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 135%;
    /* 24.3px */
    margin-top: 20px;
}

.feedback__note a {
    color: #181313cc;
    transition: 0.3s;
}

.feedback__note a:hover {
    color: #282bff;
    text-decoration: underline;
}

@media (max-width:1240px) {
    .feedback__title {
        text-indent: 173px;
        margin-top: -50px;
    }
    .kk .feedback__title {
        text-indent: 200px;
    }
}

@media (max-width:1200px) {
    .feedback__title {
        text-indent: 173px;
        margin-top: -40px;
    }
    .kk .feedback__title {
        text-indent: 190px;
    }
}

@media (max-width:992px) {
    .feedback__form {
        flex-direction: column;
    }

    .feedback__input-group {
        grid-template-columns: 1fr;
    }

    .feedback__form input,
    textarea {
        padding: 14px;
        font-size: 16px;
    }

    .feedback__wrapper {
        margin-top: 70px;
    }

    .feedback__note {
        font-size: 16px;
    }

    .feedback__form-btn svg {
        display: none;
    }

    .feedback__title {
        text-indent: 0;
        margin-top: 0;
    }
    .kk .feedback__title {
        text-indent: 0;
    }
}

/* MAIN END*/
/* FOOTER */
.footer {
    background-color: #5D0703;
    margin-top: 170px;
}

.footer__wrapper {
    padding: 70px 15px 60px 15px;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 74px;
}

.footer__top a {
    color: #FFF;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 24.3px */
    transition: 0.3s;
}

.footer__top a:hover {
    color: #ff5703;
}

.footer__group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__phones {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.phones-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 85px;
    margin-left: auto;
}

.footer__note {
    color: #ffffff99;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.footer__bot {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-top: 95px;
}

.footer__bot a {
    transition: 0.3s;
}

.footer__bot a:hover {
    color: #ff5703;
    text-decoration: underline;
}

@media (max-width:1200px) {
    .footer__top {
        column-gap: 43px;
    }
}

@media (max-width:992px) {
    .footer__top {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }

    .footer__top a {
        font-size: 16px;
    }

    .footer__socials {
        margin-left: 0;
    }

    .footer__group a {
        margin: 0 auto;
    }

    .footer__group p {
        text-align: center;
    }

    .footer__bot {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer {
        margin-top: 50px;
    }
}

/* FOOTER END */
/* ABOUT */
.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.breadcrumbs__list li {
    color: #5D0703;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 29.7px */
}

.breadcrumbs__list a {
    color: #181313;
    transition: 0.3s;
}

.breadcrumbs__list a:hover {
    color: #ff5703;
}

.about-inner__wrapper {
    margin-bottom: 150px;
}

.about-inner__employees {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.about-inner__employee {
    height: 753px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-inner__employee img {
    width: 100%;
    object-fit: cover;
    height: 545px;
    position: relative;
}

.about-inner__employee::after {
    content: '';
    position: absolute;
    background-color: #5D0703;
    width: 100%;
    height: 8px;
    bottom: 27.5%;
}

.about-inner__employee a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1.5px solid #5d07034d;
    margin-top: auto;
}

.about-inner__employee a span {
    color: #5D0703;
    font-family: Open Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    /* 29.7px */
    transition: 0.3s;
}

.about-inner__employee a svg {
    transition: 0.3s;
}

.about-inner__employee a:hover span {
    color: #ff5703;
}

.about-inner__employee a:hover svg {
    transform: rotate(45deg) scale(1.2);
}

.about-inner__employee .team-slider__desc {
    margin-top: 0;
}

@media (max-width:1400px) {
    .team-slider__name {
        font-size: 24px;
    }

    .team-slider__desc {
        font-size: 16px;
    }
}

@media (max-width:1300px) {
    .about-inner__employees {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }

    .about-inner__employee img {
        height: 490px;
    }

    .about-inner__employee {
        height: 680px;
    }
}

@media (max-width:992px) {
    .about-inner__wrapper {
        margin-bottom: 50px;
    }

    .about-inner__employees {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .breadcrumbs__list li {
        font-size: 16px;
    }

    .about-inner__employee {
        height: 645px;
    }

    .team-slider__name {
        font-size: 18px;
    }

    .team-slider__desc {
        font-size: 14px;
    }

    .about-inner__employee a span {
        font-size: 16px;
    }

    .about-inner__employee::after {
        bottom: 23.7%;
    }
}

@media (max-width:576px) {
    .about-inner__employees {
        grid-template-columns: 1fr;
    }

    .about-inner__employee a {
        margin-top: 30px;
    }
}

.specialization {
    background-color: #181313;
    background-image: url('../img/about-img.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
}

.specialization__title {
    color: #fff;
    margin-bottom: 32px;
}

.specialization__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1130px;
    margin-left: auto;
    padding: 80px 0;
}

.specialization__container p {
    color: #FFF;
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
    margin-bottom: 14px;
    width: 100%;
    max-width: 1130px !important;
}

.specialization__important {
    background-color: #5D0703;
    padding: 24px 170px 24px 15px;
    width: 120%;
    margin-top: 20px;
    margin-bottom: 24px;
    margin-left: auto;
}

.specialization__container .specialization__note {
    color: #FFF;
    font-family: Open Sans;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 135%;
    /* 24.3px */
}

@media (max-width:992px) {
    .specialization__container p {
        font-size: 16px;
    }

    .specialization__container .specialization__note {
        font-size: 16px;
    }
}

@media (max-width:640px) {
    .specialization__important {
        padding: 24px 100px 24px 15px;
    }
}

@media (max-width:540px) {
    .specialization__important {
        padding: 24px 87px 24px 15px;
    }
}

.gallery__btn {
    top: 25%;
}

@media (max-width:992px) {
    .gallery__btn {
        top: 15%;
    }
}
@media (max-width:576px) {
    .gallery__btn {
        top: 105%;
    }
}

/* ABOUT END*/
/* EMPLOYEE-INNER */
.employee-inner__wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.employee-inner__wrapper img {
    width: 420px;
    height: 630px;
    object-fit: cover;
}

.employee-inner__container p {
    color: #181313;
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
    margin-bottom: 14px;
}

.employee-inner__container .employee-inner__name {
    color:#5D0703;
    font-family: "Bebas Neue";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 72px */
    text-transform: uppercase;
}

.employee-inner__container .employee-inner__note {
    color: #181313cc;
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
    margin-bottom: 50px;
}

@media (max-width:992px) {
    .employee-inner__wrapper {
        flex-direction: column;
        align-items: baseline;
    }
    .employee-inner__container p {
        font-size: 14px;
    }
    .employee-inner__wrapper img {
        width: 80%;
    }

    .employee-inner__container .employee-inner__note {
        font-size: 14px;
    }

    .employee-inner__desc {
        font-size: 16px;
    }
    .employee-inner__container .employee-inner__name {
        font-size: 28px;
    }
}

@media (max-width:576px) {
    .employee-inner__wrapper img {
        width: 100%;
    }
    .employee-inner__container .employee-inner__name {
        font-size: 24px;
    }
}

/* EMPLOYEE-INNER END*/
/* ADVOCACY */
.advocacy__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 50px;
}

.advocacy__box {
    background: #5d07030d;
    padding: 60px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.advocacy__box img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    transition: 0.3s;
}

.advocacy__box a {
    opacity: 0;
    color: #fff;
    transition: 0.3s;
    display: block;
    margin-top: auto;
    visibility: hidden;
    border: 1px solid #5D0703;
    background-color: #5D0703;
    padding: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    height: 52px;
}

.team-slider-slide .advocacy__box a {
    opacity: 0;
    color: #fff;
    transition: 0.3s;
    display: block;
    margin-top: auto;
    visibility: hidden;
    border: 1px solid #5D0703;
    background-color: #5D0703;
    padding: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    height: 52px;
}

.team-slider-slide .advocacy__box img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    transition: 0.3s;
    border: none;
}

.advocacy__box:hover img {
    opacity: 0.5;
}

.advocacy__box:hover a {
    opacity: 1;
    visibility: visible;
}

.advocacy__box a:hover {
    color: #ff5703;
}

.advocacy__box a svg {
    transition: 0.3s;
}

.advocacy__box a:hover svg {
    transform: rotate(45deg) scale(1.2);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 80px;
}

.pagination .disabled {
    opacity: 0.5;
}

.ellipsis {
    color: rgba(24, 19, 19, 0.60);
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
}

.pagination svg rect {
    fill: #5D0703;
    transition: 0.3s;
}

.pagination svg path {
    fill: #fff;
    transition: 0.3s;
}

.pagination svg:hover {
    border: 1px solid #5D0703;
    border-radius: 20px;
}

.pagination svg:hover rect {
    fill: #fff;
}

.pagination svg:hover path {
    fill: #5D0703;
}

.pagination__list {
    display: flex;
    gap: 20px;
}

.pagination__list a {
    color: #18131399;
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
    transition: 0.3s;
}

.pagination__list a:hover {
    color: #5D0703;
}

.pagination__list a.active {
    color: #5D0703;
}

@media (max-width:1200px) {
    .advocacy__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:992px) {
    .advocacy__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:576px) {
    .advocacy__wrapper {
        grid-template-columns: 1fr;
    }

    .advocacy__box img {
        width: 70%;
    }

    .team-slider-slide .advocacy__box img {
        width: 70%;
    }
}

/* ADVOCACY END*/
/* CITIZENS */
.citizens__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 40px;
}

.citizens__note {
    color: var(--primary, #5D0703);
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
}

.citizens__container p {
    color: #181313;
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    /* 27px */
    width: 100%;
    max-width: 1130px;
}

.citizens__container p:not(:last-child) {
    margin-bottom: 14px;
}

.citizens-box {
    height: 100%;
    padding: 30px;
}

@media (max-width:992px) {
    .citizens__wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .citizens-box {
        height: 500px;
    }

    .citizens__note {
        font-size: 18px;
    }

    .citizens__container p {
        font-size: 16px;
    }
}

/* CITIZENS END*/
/* RECOMMENDATIONS */
.recommendations__wrapper {
    margin-top: 50px;
}

.recommendations__wrapper a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #1813131a;
    padding-bottom: 28px;
}

.recommendations__wrapper a:not(:last-child) {
    margin-bottom: 28px;
}

.recommendations__wrapper a span {
    color: var(--primary, #5D0703);
    font-family: Open Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    /* 32.4px */
    transition: 0.3s;
}

.recommendations__wrapper a svg {
    transition: 0.3s;
}

.recommendations__group {
    display: flex;
    align-items: center;
}

.recommendations__subtitle {
    color: #181313;
    font-family: Open Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    transition: 0.3s;
}

.recommendations__wrapper a:hover .recommendations__subtitle {
    color: #ff5703;
}

.recommendations__wrapper a:hover span {
    color: #ff5703;
}

.recommendations__wrapper a:hover svg {
    transform: rotate(45deg);
}

@media (max-width:1200px) {
    .recommendations__wrapper a span {
        font-size: 20px;
    }

    .recommendations__subtitle {
        font-size: 20px;
    }
}

@media (max-width:992px) {
    .recommendations__wrapper a {
        flex-direction: column;
        padding-bottom: 10px;
    }

    .recommendations__subtitle {
        font-size: 18px;
    }

    .recommendations__wrapper a span {
        font-size: 16px;
    }
}

@media (max-width:767px) {}

/* RECOMMENDATIONS END*/
/* CONTACTS */
.contacts__wrapper {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contacts__container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: space-between;
    width: 100%;
    max-width: 350px;
}

.contacts__address {
    color: #181313;
    font-family: Open Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 30.8px */
    margin-bottom: 30px;
}

.contacts__phones {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.contacts__socials a svg {
    transition: 0.3s;
}

.contacts__socials a:hover svg {
    transform: scale(1.1);
}

iframe {
    width: 100%;
    height: 580px;
}

.contacts__video {
    width: 100%;
    height: 580px;
    margin-top: 80px;
}

video {
    width: 100%;
    height: 100%;
}

@media (max-width:992px) {
    .contacts__wrapper {
        flex-direction: column;
    }

    .contacts__address {
        font-size: 18px;
    }

    .contacts__container {
        max-width: 100%;
        gap: 30px;
    }

    .contacts__video {
        height: 100%;
    }
}

/* CONTACTS END*/

/* MODAL */
.modal {
    margin: 0;
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    padding: 0 15px;
    background: #131313cc;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s;
}

.modal-container {
    margin: auto;
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 6px;
    padding: 30px;
}

.close-modal {
    background-color: transparent;
    margin-left: auto;
    display: block;
}

.modal-title {
    color: #181313;
    font-size: 32px;
    text-align: center;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-form {
    flex-direction: column;
}

.modal-feedback__input-group {
    grid-template-columns: 1fr;
}

.modal-btn {
    max-width: 100%;
    height: 80px;
    align-items: center;
}

@media (max-width:767px) {
    .modal-container {
        padding: 20px;
    }

    .modal-form {
        margin-top: 20px;
    }

    .modal-btn {
        font-size: 16px;
        height: 60px;
    }

    .modal-form input {
        padding: 20px;
    }
}

/* MODAL END */

/*alert*/

.box-size {
    box-sizing: border-box;
}

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
    display: flex;
}

.alert--width {
    width: 400px;
}

.alert--img__item svg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--active .active path {
    fill: #4ad395;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 28px;
    font-weight: 500;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: #968787;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}

@media (max-width:1200px) {
    .alert--width {
        width: 370px;
    }

    .alert--content {
        padding: 25px;
    }

    .alert--img__item svg {
        width: 75px;
        height: 75px;
    }

    .alert-text {
        margin-top: 10px;
    }

    .alert--title {
        font-size: 24px;
    }

    .alert--subtitle {
        font-size: 18px;
    }
}

@media (max-width:500px) {
    .alert--content {
        width: 92%;
    }

    .alert--img__item svg {
        width: 60px;
        height: 60px;
    }

    .alert--title {
        font-size: 22px;
    }
}


/*alert*/


/*formLoader*/

.form_loader {
    position: fixed;
    display: none;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
    position: absolute;
    width: 350px;
    max-width: 90%;
    left: 50%;
    top: 45%;
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.form_loader_animate {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.form_loader_animate:after {
    content: "";
    display: block;
    width: 85%;
    height: 85%;
    /*margin: 8px;*/
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #C53364 transparent #C53364 transparent;
    animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
    font-size: 20px;
    text-align: center;
}

@keyframes loader-animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*formLoader*/