body {
    font-weight: 500;
    font-family: "Fontimer", sans-serif;
}
button,
input {
    font-weight: 500;
    font-family: "Fontimer", sans-serif;
}
@font-face {
    font-family: "Fontimer";
    src: url("../fonts/fontimer/AVFontimer-ExtraLight.ttf")
        format("truetype");
    font-weight: 200;
}
@font-face {
    font-family: "Fontimer";
    src: url("../fonts/fontimer/AVFontimer-Light.ttf") format("truetype");
    font-weight: 300;
}
@font-face {
    font-family: "Fontimer";
    src: url("../fonts/fontimer/AVFontimer-Regular.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: "Fontimer";
    src: url("../fonts/fontimer/AVFontimer-Medium.ttf") format("truetype");
    font-weight: 500;
}
@font-face {
    font-family: "Fontimer";
    src: url("../fonts/fontimer/AVFontimer-SemiBold.ttf")
        format("truetype");
    font-weight: 600;
}
@font-face {
    font-family: "Fontimer";
    src: url("../fonts/fontimer/AVFontimer-Bold.ttf") format("truetype");
    font-weight: 700;
}
@font-face {
    font-family: "Fontimer";
    src: url("../fonts/fontimer/AVFontimer-ExtraBold.ttf")
        format("truetype");
    font-weight: 800;
}
@font-face {
    font-family: "Fontimer";
    src: url("../fonts/fontimer/AVFontimer-Black.ttf") format("truetype");
    font-weight: 900;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #223138;
}
.section-title.lil {
    font-size: 2rem;
}
.section-title.white {
    color: #fefefe;
}
.txt-1-25 {
    font-size: 1.25rem;
}
.op-7-txt {
    opacity: 0.7;
    font-size: 0.9rem;
    font-weight: 400;
}
.lil-txt {
    font-size: 0.9rem;
    font-weight: 400;
}
.big-red-txt {
    color: #640000;
    font-size: 2rem;
}
.container {
    width: 83.75rem;
}
.container.sec {
    width: 55.4rem;
}
section {
    margin-bottom: 3.5rem;
}
img {
    object-fit: cover;
}
header {
    padding: 1rem 0;
    background: white;
    transition: all 0.25s;
}
header *{
    transition: all 0.25s;
}
.head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}
.head-nav a {
    font-weight: 400;
    color: #171616;
    font-size: 0.9rem;
}
.head-nav a:hover, .head-nav a.active{
    color: #9b0000;
}
.head-logo {
    width: 8.94363rem;
    display: block;
    /*height: 3rem;*/
}
.head-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.head-lang {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 0.9rem;
    gap: 0.1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #171616;
}
.head-lang a {
    color: #b1b1b1;
    transition: all 0.3s ease-in;
}
.head-lang a:hover {
    color: #171616;
}
.head-lang .active {
    color: #171616;
}
.head-num {
    font-weight: 400;
    font-size: 0.9rem;
    color: #171616;
    text-decoration: none;
    background-image: linear-gradient(#171616, #171616);
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}
.head-num:hover {
    background-size: 100% 1px;
}

.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    color: #171616;
    font-size: 0.9rem;
    text-decoration: none;
}

.dropdown-arrow {
    font-size: 0.75rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    background: #fff;
    border-radius: 1rem;
    padding: 0.75rem 0 0.5rem 0;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
    transition-delay: 0.12s;
    transform: translateX(-50%) translateY(6px);
    z-index: 100;
}

.dropdown-menu::after {
    content: "";
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 1rem;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    z-index: 1;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(8px);
    transition-delay: 0s;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #171616;
    cursor: pointer;
    border-radius: 0.5rem;
    margin: 0 0.25rem;
    gap: 2rem;
    position: relative;
    transition:
        background 0.15s ease,
        color 0.15s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    color: #aaa;
}
.dropdown-item:hover .submenu-arrow {
    color: #9b0000;
}

.submenu-arrow {
    /* font-size: 0.7rem; */
    color: #aaa;
    flex-shrink: 0;
}

.submenu {
    position: absolute;
    top: -0.5rem;
    left: calc(100% + 0.75rem);
    background: #fff;
    border-radius: 1rem;
    padding: 0.5rem 0;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
    transition-delay: 0.1s;
    transform: translateX(6px);
}

.submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -0.85rem;
    width: 0.85rem;
    height: 100%;
}

.dropdown-item:hover .submenu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
    transition-delay: 0s;
}

.submenu a {
    display: block;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    color: #2a2a2a;
    text-decoration: none;
    border-radius: 0.5rem;
    margin: 0 0.25rem;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.submenu a:hover, .submenu a.active {
    background: #f5f5f5;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1001;
    color: #000000;
}

.burger span {
    display: block;
    width: 2.1rem;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    transform-origin: center;
}
.burger.open span {
    background: #fff;
}
.burger.open {
    gap: 0.31rem;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1000;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu-inner {
    padding: 6rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 400;
    color: #fefefe;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: #aaa;
}

.mobile-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fefefe;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.mobile-accordion-trigger:hover {
    color: #aaa;
}

.mobile-accordion-trigger--sub {
    font-size: 0.95rem;
    color: #ffffff;
    border-bottom: none;
    padding: 0.6rem 0;
}

.mobile-acc-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-accordion.active > .mobile-accordion-trigger .mobile-acc-arrow {
    transform: rotate(180deg);
}

.mobile-accordion-body {
    display: none;
    padding-left: 1rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
    margin-left: 0.25rem;
    margin-bottom: 0.25rem;
}

.mobile-accordion.active > .mobile-accordion-body {
    display: block;
}

.mobile-accordion--sub {
    margin-bottom: 0.1rem;
}

.mobile-sublink {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.85rem 0;
    transition: color 0.2s ease;
}

.mobile-sublink:hover {
    color: #fefefe;
}

.mobile-bottom {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-lang {
    font-size: 0.9rem;
    color: #b1b1b1;
    text-transform: uppercase;
}

.mobile-lang a {
    color: #b1b1b1;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-lang a.active,
.mobile-lang a:hover {
    color: #fefefe;
}

.mobile-num {
    font-size: 1rem;
    color: #fefefe;
    text-decoration: none;
}

.mobile-btn {
    align-self: flex-start;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    overflow-y: auto;

    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 6rem 2rem 3rem;
    gap: 0.25rem;
}

.mobile-menu.open .mobile-link,
.mobile-menu.open .mobile-accordion-trigger:not(.mobile-accordion-trigger--sub),
.mobile-menu.open .mobile-bottom {
    animation: fadeSlideIn 0.4s ease forwards;
}

.mobile-menu.open .mobile-link:nth-child(1) {
    animation-delay: 0.05s;
}
.mobile-menu.open .mobile-link:nth-child(2) {
    animation-delay: 0.1s;
}
.mobile-menu.open .mobile-accordion:nth-child(3) .mobile-accordion-trigger {
    animation-delay: 0.15s;
}
.mobile-menu.open .mobile-link:nth-child(4) {
    animation-delay: 0.2s;
}
.mobile-menu.open .mobile-link:nth-child(5) {
    animation-delay: 0.25s;
}
.mobile-menu.open .mobile-bottom {
    animation-delay: 0.3s;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-link {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fefefe;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
    opacity: 0;
}

.mobile-accordion-trigger {
    font-size: 1.3rem;
}

.mobile-bottom {
    opacity: 0;
}

.btn {
    display: flex;
    height: 3.125rem;
    padding: 0.625rem 1.25rem;
    padding-top: 0.75rem;
    justify-content: center;
    align-items: center;
    border-radius: 6.25rem;
    min-width: 12.9375rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    align-self: flex-start;
}
.btn.white {
    color: #171616;
    background: #fefefe;
}
.btn.white:hover {
    color: #fefefe;
    background: #9b0000;
}
.btn.red {
    color: #fefefe;
    background: #9b0000;
}
.btn.red:hover {
    background: #7b0000;
}
.btn.sky-blue {
    color: #171616;
    background: #e7edf0;
}
.btn.sky-blue:hover {
    color: #fefefe;
    background: #171616;
}
.btn.black {
    background: #171616;
    color: #fff;
}
.btn.black:hover {
    background: #9b0000;
}
.btn.width {
    width: 20rem;
}
.btn.dark-gray {
    background: #223138;
    color: #fff;
}
.btn.dark-gray:hover {
    background: #000000;
}
.btn.black.sec:hover {
    background-color: white;
    color: #000000;
}

.hero-section {
    position: relative;
    min-height: 43rem;
    display: flex;
    align-items: center;
    color: #fefefe;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-back {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    inset: 0;
}
.hero-inner {
    width: 48rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero-btns {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}
.hero-btns .btn {
    width: 15.5rem;
}
.hero-txt {
    font-size: 1.25rem;
}

.partner-img {
    border-radius: 1.25rem;
    height: 100%;
    width: 100%;
}

.partner-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.8rem;
    height: 100%;
}
.partner-card-top p {
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.partner-card-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
}
.partner-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    align-self: stretch;
}
.partner-info-big {
    color: #9b0000;
    font-size: 2.75rem;
    line-height: 1.1;
}
.partner-info-txt {
    margin-bottom: 0;
}
.direction-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem;
}
.direction-img {
    border-radius: 1.25rem;
    height: 21.625rem;
    width: 100%;
    overflow: hidden;
}
.direction-img.sec {
    height: 17rem;
}
.direction-img img {
    height: 100%;
    width: 100%;
}
.direction-row1,
.direction-row2 {
    width: 100%;
}
.direction-card {
    padding: 1.25rem;
    border-radius: 1.875rem;
    background: #e7edf0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.direction-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 400;
}

.partner-info2 {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.geography-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1.8rem;
    column-gap: 1.8rem;
}

.geography-map {
    width: 100%;
}
.map-info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}
.rectangle {
    width: 1.8125rem;
    height: 1.5rem;
}
.rectangle.red {
    background: #9b0000;
}
.rectangle.gray {
    border: 1px solid rgba(0, 0, 0, 0.5);
    background: #d6d6d6;
}

.our-part-slider .slick-track {
    display: flex !important;
}

.our-part-slider .slick-slide {
    height: auto;
    display: flex !important;
}

.our-part-card {
    border-radius: 1.875rem;
    border: 1px solid rgba(34, 49, 56, 0.3);
    background: #fefefe;
    display: flex !important;
    padding: 1.25rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    height: 100%;
}
.our-part-card img {
    width: 100%;
}

.our-part-slider .slick-slide {
    padding: 0 10px;
}

.advantages-section {
    height: 36rem;
    padding: 3.12rem 0;
    position: relative;
}
.back-policy {
    height: 100%;
    border-radius: 2.5rem;
    z-index: -1;
    position: absolute;
    inset: 0;
    width: 100%;
}

.advantages-card {
    border-radius: 1.875rem;
    background: rgba(231, 237, 240, 0.7);
    backdrop-filter: blur(4.199999809265137px);
    display: flex;
    height: 14.25rem;
    padding: 1.25rem;
    justify-content: space-between;
    flex-direction: column;
}
.advantages-title {
    color: #9b0000;
    font-size: 1.5rem;
}
.inf-img {
    height: 4.25rem;
    object-fit: contain;
}
.inf-img-slider .slick-list {
    overflow: visible;
}
.inf-img-slider .inf-img {
    padding: 0 15px;
}

.news-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease-in;
}
.news-card:hover .news-img img {
    scale: calc(1.15);
}
.news-img {
    height: 11rem;
    border-radius: 1.25rem;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in;
}
.news-img img {
    height: 100%;
    transition: all 0.3s ease-in;
    width: 100%;
}
.news-card-date {
    text-align: right;
}
.certefication-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}
.certefication-img {
    height: 6rem;
    object-fit: contain;
}
.p_mb_0 p{
    margin-bottom: 0;
}
.red-back1 {
    /*background-image: url("../img/red-back1.png");*/
    border-radius: 2.5rem;
    padding: 2.5rem;
    color: #fefefe;
}
.red-back1.blue-back {
    /*background-image: url("../img/blue-back.jpg");*/
    color: #fff;
}
.red-back-inp {
    display: flex;
    height: 3.6rem;
    padding: 0.6875rem 1.25rem;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    border-radius: 0.625rem;
    background: #fff;
    font-size: 0.9rem;
    width: 100%;
    font-weight: 400;
    margin-bottom: 0.625rem;
}
.blue-back-inp {
    display: flex;
    height: 3.125rem;
    padding: 0.6875rem 1.25rem;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    border-radius: 0.625rem;
    background: #fff;
    font-size: 0.9rem;
    width: 100%;
    font-weight: 400;
    margin-bottom: 0.625rem;
}

.politics-txt {
    opacity: 0.7;
    color: rgb(237, 237, 237);
    font-size: 0.8rem;
    margin-top: 1.6rem;
    margin-bottom: 0.6rem;
}
.politics-txt a {
    color: rgb(237, 237, 237);
    text-decoration: underline;
}
.politics-txt a:hover {
    color: #fff;
    text-decoration: none;
}

.contacts-top {
    display: flex;
    justify-content: space-between;
}
.con-info {
    display: flex;
    flex-direction: column;
}
.con-title {
    margin-bottom: 0.85rem;
    font-size: 1.3rem;
    color: #9b0000;
    font-weight: 500;
}
.con-link {
    transition: all 0.35s ease-in;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.con-link:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 7%;
    text-underline-offset: 16.5%;
}
.con-more {
    font-size: 1.25rem;
    opacity: 0.5;
    margin-bottom: 0;
}
.con-social-medias {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.con-social {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 6.25rem;
    background-color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 0.35rem;
    transition: all 0.3s ease-in;
}
.con-social span {
    transition: all 0.3s ease-in;
    font-size: 1.5rem;
    color: #fff;
}
.con-social:hover {
    background-color: #9b0000;
}
.con-social.white {
    background-color: #fefefe;
}
.con-social.white span {
    color: #000000;
}
.con-social.white:hover {
    background-color: #9b0000;
}
.con-social.white:hover span {
    color: #fefefe;
}

.con-box {
    width: 100%;
    border-radius: 1.875rem;
    height: 27.1875rem;
    overflow: hidden;
}
.con-box img,
.con-box .con-map {
    width: 100%;
    height: 100%;
}

footer {
    background: #223138;
    padding: 2.5rem 0;
    color: #fefefe;
}
.foot-top {
    display: flex;
    justify-content: space-between;
}
.foot-logo {
    width: 12.9375rem;
    height: 4.32594rem;
}
.foot-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.foot-pg {
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.25s ease-in;
    color: #fefefe;
    margin-bottom: 1.25rem;
}
.foot-pg:hover, .foot-pg.active {
    color: #ed0000;
}
.footer-main-links {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.75rem;
}
.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.88rem;
    padding-top: 1rem;
    border-top: 1px solid white;
}

.page-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    font-size: 0.8rem;
    font-weight: 400;
    padding-top: 6rem;
    padding-bottom: 2rem;
}
.page-links li {
    color: gray;
}
.page-links a {
    color: gray;
}
.page-links a:hover {
    color: #000000;
}

.ab-main-img {
    width: 100%;
    border-radius: 1.25rem;
    height: 28.9375rem;
}

.adv2-card {
    border-radius: 1.875rem;
    background: rgba(231, 237, 240, 0.7);
    backdrop-filter: blur(50px);
    padding: 1.25rem;
    margin-bottom: 0.625rem;
    position: sticky;
    top: 6.5rem;
}

.adv2-title {
    font-size: 2rem;
    color: #9b0000;
}
.adv2-inf {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    align-self: stretch;
}
.adv2-name {
    font-size: 1.25rem;
    color: #223138;
}
.adv2-txt {
    margin-bottom: unset;
    opacity: 0.5;
}
.adv2-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.out-team-txt p {
    margin-bottom: 0.5rem;
}
.our-team-card img {
    width: 100%;
    height: 21.4375rem;
    border-radius: 1.875rem;
    margin-bottom: 1.25rem;
}

.vacancies-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1.5rem;
}
.vacancies-img {
    height: 31.5rem;
    border-radius: 1.25rem;
    width: 100%;
}
.techno-img {
    height: 21.7rem;
    border-radius: 1.25rem;
    width: 100%;
}

.ser-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.ser-txt {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0;
    width: 28rem;
}
.ser-links {
    font-size: 1.25rem;
    transition: all 0.3s ease-in;
    width: 100%;
}
.ser-links:hover {
    color: #9b0000;
}
.bor-bot {
    padding-bottom: 1rem;
    margin-bottom: 1.3rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.297);
}
.bor-bot:last-child {
    border-bottom: unset;
}
.services_row {
    margin-bottom: 2rem;
}

.red-back2 {
    background-image: url("../img/red-back2.jpg");
    height: 28.9375rem;
    color: #fefefe;
    width: 100%;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.25rem;
}

.method-img {
    height: 26.1875rem;
    border-radius: 1.25rem;
    width: 100%;
}

.main-met-card {
    padding: 1.25rem;
    border-radius: 1.875rem;
    background: #e7edf0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-met-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 400;
    margin-bottom: 0;
}

.w40 {
    width: 41.25rem;
}
.w55 {
    width: 55.4375rem;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    padding-top: 0.2rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #535862;
    text-decoration: none;
    transition: all 0.25s ease-in;
}

.page-link:hover {
    background: #fafafa;
    color: #535862;
}

.page-item.active .page-link {
    background: #fafafa;
    color: #252b37;
    pointer-events: none;
}

.page-item:has(.page-link:not([href])) .page-link,
.page-item .page-link[href="#"]:empty {
    cursor: default;
}

.pagination li:nth-child(4) .page-link {
    cursor: default;
    color: #aaa;
    letter-spacing: 0.05em;
}

.pagination li:nth-child(4) .page-link:hover {
    background: none;
    color: #aaa;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.489);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.25rem;
}

.modal-overlay.modal-open {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    border-radius: 2.5rem;
    padding: 2.5rem 2rem;
    width: 100%;
    width: 39.1875rem;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.modal-open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #fff;
}

.card-news-img {
    width: 100%;
    /*height: 20.1875rem;*/
    margin-bottom: 1.2rem;
}
.content-txt p {
    margin-bottom: 0.45rem;
}

.vacancy-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    align-self: stretch;
    padding: 1.25rem;
    border-radius: 1.875rem;
    background: #e7edf0;
    justify-content: space-between;
    height: 100%;
}

.vacancy-top {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}
.vacancy-info {
    opacity: 0.7;
    font-size: 0.875rem;
    flex-wrap: wrap;
    display: flex;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 6.25rem;
    background: #fff;
    color: #000000;
    font-weight: 400;
}
.vacancy-btn {
    width: 17.5rem;
}

.position-dropdown {
    display: flex;
    height: 3.125rem;
    padding: 0.6875rem 1.25rem;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    border-radius: 0.625rem;
    background: #fff;
    font-size: 0.9rem;
    width: 100%;
    font-weight: 400;
    margin-bottom: 0.625rem;
    color: rgb(117, 116, 116);
    font-family: "Fontimer", sans-serif;
    position: relative;
    appearance: none;
}
.down-icon {
    position: absolute;
    z-index: 10;
    right: 0.5rem;
    top: 0.8rem;
}

.back-btn {
    color: #171616;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.result{
    font-size: 0.875rem;
}
.c400{
    font-weight: 400;
    margin-top: 0.5rem;
}
.back-btn:hover {
    opacity: 1;
}
.card-vacancy-list {
    display: flex;
    flex-direction: column;
    padding-left: 1.15rem;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.card-vacancy-list li {
    font-weight: 400;
}
.card-vacancy-right {
    padding: 2rem;
    border-radius: 1.25rem;
    background: #e7edf0;
}
.result p{
    color: white!important;
}
.politics-txt.black{
    color: #000000;
}
.politics-txt.black a{
    color: #000000;
}
#modal-success-msg .section-title{
    text-align: center;
    margin: 2.5rem 0;
    font-size: 2rem;
}

html.about_page, .about_page body{
    overflow: unset;
}
.over{
    overflow-x: hidden;
}