.grecaptcha-badge {
    display: none;
}

.header {
    position: relative;
    z-index: 10;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #FFF;
}

.header.header_opacity .header__wrapper {
    background: transparent;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo img {
    width: 60px;
}

.header__logo p,
.header__logo p * {
    font-family: "Gotham";
    line-height: 1;
    color: #fff;
    font-size: 18px;
}

.header__col:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding: 0 0 0 35px;
}

.header__contacts:after {
    content: "";
    width: 27px;
    height: 27px;
    background-image: url('../image/phone.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
}

.header__phone,
.header__phone * {
    font-family: "Gotham";
    font-size: 20px;
    color: #fff;
}

.header__mail,
.header__mail * {
    font-size: 14px;
    color: #fff;
}

.header__translate {
    display: flex;
    gap: 5px;
}

.header__translate button {
    width: 30px;
    opacity: .5;
    transition-duration: .3s;
}

.header__translate button:hover {
    opacity: 1;
}

.header__translate button.language__img_active {
    opacity: 1;
}

.header__translate button img {
    width: 100%;
}

.header__menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__menu a,
.header__menu a * {
    color: white;
    position: relative;
    padding: 10px 8px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.header_menu_laptop {
    display: none;
}

.header:not(.header_opacity) {
    box-shadow: 0 12px 6px rgba(0, 0, 0, 0.06);
}

.header:not(.header_opacity) .header__logo p,
.header:not(.header_opacity) .header__logo p * {
    color: var(--primary-text-color);
}

.header:not(.header_opacity) .header__mail,
.header:not(.header_opacity) .header__mail * {
    color: var(--primary-text-color);
}

.header:not(.header_opacity) .header__phone,
.header:not(.header_opacity) .header__phone * {
    color: var(--primary-text-color);
}

.header:not(.header_opacity) .header__menu a,
.header:not(.header_opacity) .header__menu a * {
    color: var(--primary-text-color);
}

.header__menu div {
    position: relative;
}

.header__menu ul {
    display: none;
    position: absolute;
    background-color: white;
    width: 260px;
    background-color: #ffffff;
    border-style: solid;
    border-color: #eeeeee;
    border-width: 1px !important;
    border-radius: 4px;
    box-shadow: 0 33px 32px rgba(0, 0, 0, 0.1);
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 25px;
    left: 0;
    top: calc(100% + 10px);
}

.header__menu ul li {
    padding: 0;
}

.header__menu ul li a {
    color: var(--primary-text-color);
    width: 100%;
    padding: 0;
    font-size: 13px;
    text-transform: none;
}

.header__menu a:hover:after {
    content: "";
    position: absolute;
    height: 40px;
    width: 100px;
    left: 0;
    bottom: -20px;
}

.header__menu a:hover + ul {
    display: flex;
}

.header__menu ul:hover {
    display: flex;
}

.header__burger {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .6);
    transition-duration: .2s;
    display: none;
    align-items: center;
    justify-content: center;
}

.header__burger img {
    width: 18px;
}

.header__burger:hover {
    background-color: white;
}

.banner {
    position: relative;
    margin-bottom: var(--section-mb);
}

.banner:after {
    content: "";
    position: absolute;
    top: -120px;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('../image/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.banner:before {
    content: "";
    position: absolute;
    top: -120px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .65);
    z-index: 2;
}

.banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
}

.banner__title,
.banner__title * {
    font-family: "Gotham";
    font-size: 65px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 0 45px #000;
    text-align: center;
    position: relative;
    z-index: 5;
}

.banner__subtitle,
.banner__subtitle * {
    font-size: 35px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #ddd;
    font-family: "Gotham";
    text-shadow: 0 0 45px #000;
    text-align: center;
    position: relative;
    z-index: 5;
}

.about {
    margin-bottom: var(--section-mb);
}

.about__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about__item:nth-child(even) {
    flex-direction: row-reverse;
}

.about__gallery {
    width: 400px;
    box-shadow: 0 0 35px -5px #ccc;
    position: relative;
}

.about__content {
    width: calc(100% - 430px);
}

.about__content h3 {
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-size: 20px;
    font-family: "Gotham";
}

.about__content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about__content ul li {
    position: relative;
    font-size: 14px;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
}

.about__content ul li:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: black;
    left: 0;
}

.about__gallery__image {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
    border-radius: 5px;
}

.about__gallery__nav {
    opacity: 0;
}

.about__gallery:hover .about__gallery__nav {
    opacity: 1;
}

.equip-category {
    margin-bottom: var(--section-mb);
    padding: 80px 0;
    background-color: #eef1f5;
}

.equip-category.equip-category_no-p {
    padding: 0;
}

.equip-category__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.equip-category__item {
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 90px) / 4);
    box-shadow: 0 0 10px 0 #ddd;
}

.equip-category__item:nth-child(1),
.equip-category__item:nth-child(2),
.equip-category__item:nth-child(3) {
    width: calc((100% - 60px) / 3);
}

.equip-category__image {
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.equip-category__name {
    background-color: white;
    font-family: "Gotham";
    text-transform: uppercase;
    font-size: 16px;
    min-height: 60px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .2s;
    width: 100%;
}

.equip-category__item:hover .equip-category__name {
    background-color: var(--primary-color);
    color: white;
}

.parts-category {
    margin-bottom: var(--section-mb);
}

.parts-category__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.parts-category__item {
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 60px) / 3);
    box-shadow: 0 0 10px 0 #ddd;
}

.parts-category__image {
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.parts-category__name {
    background-color: white;
    font-family: "Gotham";
    text-transform: uppercase;
    font-size: 16px;
    min-height: 60px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .2s;
    width: 100%;
}

.parts-category__item:hover .parts-category__name {
    background-color: var(--primary-color);
    color: white;
}

.advantages {
    margin-bottom: var(--section-mb);
    padding: 80px 0;
    background-color: #eef1f5;
}

.advantages .block-title {
    margin: 0 0 60px 0;
}

.advantages__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 80px;
    padding: 0 50px;
}

.advantages__item {
    width: calc((100% - 160px) / 3);
    background-color: #fff;
    padding: 25px 20px 25px 60px;
    border-radius: 5px;
    box-shadow: 0 0 35px 0 rgb(154 161 171 / 25%);
    position: relative;
}

.advantages__name {
    font-size: 18px;
    font-family: "Gotham";
    line-height: 1;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.advantages__text {
    font-size: 13px;
    color: #555;
    line-height: 1.3;
    font-weight: 600;
}

.advantages__digit {
    position: absolute;
    color: var(--primary-color);
    font-family: "Gotham";
    font-size: 70px;
    top: -35px;
    left: -50px;
}

.advert {
    margin-bottom: var(--section-mb);
}

.advert__wrapper {
    display: flex;
    gap: 30px;
}

.advert__image {
    border-radius: 5px;
    height: 340px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 630px;
}

.advert__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: calc(100% - 660px);
}

.advert__title {
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Gotham";
}

.advert__subtitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.footer {
    background-color: #f8f9fa;
}

.footer__row {
    padding: 50px 0;
    display: flex;
    gap: 30px;
}

.footer__col {
    width: calc((100% - 90px) / 4);
}

.footer__logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 15px 0;
}

.footer__logo img {
    width: 85px;
}

.footer__logo p {
    font-size: 19px;
    font-family: "Gotham";
    line-height: 1.2;
}

.footer__slogan {
    font-size: 14px;
}

.footer__title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-family: "Gotham";
    letter-spacing: .2px;
    font-weight: 600;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer__menu a {
    font-size: 14px;
}

.footer__address {
    margin: 0 0 10px 0;
    line-height: 1.2;
    font-size: 14px;
}

.footer__phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 10px 0;
}

.footer__phone__desc {
    color: #555;
    font-size: 13px;
}

.footer__phone__value {
    font-family: "Gotham";
    font-size: 17px;
}

.footer__mail {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.2;
}

.footer__bottom {
    padding: 15px 0;
    background-color: #eff1f4;
}

.footer__bottom__inner {
    font-size: 13px;
    text-align: center;
}

.breadcrumbs {
    margin: 40px 0 15px 0;
}

.breadcrumbs__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.breadcrumbs a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.breadcrumbs small {
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
}

.breadcrumbs span {
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
}

.about-company {
    margin-bottom: var(--section-mb);
}

.about-company__wrapper {
    display: flex;
    gap: 30px;
    margin: 0 0 20px 0;
}

.about-company__image {
    width: 445px;
}

.about-company__image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 35px -5px #ccc;
}

.about-company__content {
    width: calc(100% - 475px);
}

.about-company__wrapper:not(:has(.about-company__image)) .about-company__content {
    width: 100%;
}

.about-company__content h2 {
    line-height: 1.2;
    font-weight: 600;
    font-size: 26px;
    font-family: "Gotham";
}

.about-company__content h3 {
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-size: 20px;
    font-family: "Gotham";
}

.about-company__content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 15px 0;
}

.about-company__content li {
    position: relative;
    font-size: 14px;
    padding: 0 0 0 20px;
}

.about-company__content li:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: black;
    left: 0;
    top: 5px;
    list-style-type: 1.2;
}

.about-company__content p {
    font-size: 14px;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.about-company__content li b {
    font-weight: 600;
    font-family: "ProximaBold";
}

.contacts {
    margin-bottom: var(--section-mb);
}

.contacts__wrapper {
    display: flex;
    gap: 30px;
}

.contacts__content {
    width: calc(50% - 15px);
}

.contacts__form {
    width: calc(50% - 15px);
}

.contacts__title {
    margin: 0 0 40px 0;
    font-size: 26px;
    font-family: "Gotham";
}

.contacts__company-name {
    margin: 0 0 10px 0;
    font-family: "Gotham";
    font-size: 20px;
    font-weight: 600;
}

.contacts__item {
    margin: 0 0 14px 0;
    font-size: 16px;
}

.contacts__item b {
    font-family: "ProximaBold";
}

.contacts__form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.catalog {
    margin-bottom: var(--section-mb);
}

.catalog__wrapper {
    display: flex;
    gap: 40px;
}

.catalog__content {
    width: calc(100% - 290px);
}

.catalog__sidebar {
    width: 250px;
}

.catalog__sidebar__inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: sticky;
    top: 120px;
}

.catalog__subcategory {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 40px 0;
}

.catalog__subcategory a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    padding: 10px 24px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    display: inline-block;
}

.catalog__products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 0 50px 0;
}

.product {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    width: calc((100% - 60px) / 3);
}

.product__image {
    width: 100%;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
}

.product__name {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 15px;
    margin: 0 0 15px 0;
}

.product__content {
    position: relative;
    padding: 15px 10px 70px 10px;
    height: calc(100% - 200px);
}

.product__props {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product__prop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product__prop__name {
    font-size: 12px;
    line-height: 1;
}

.product__prop__value {
    width: 87px;
    text-align: right;
    font-size: 12px;
    line-height: 1;
}

.product__btn {
    width: calc(100% - 30px);
    font-size: 12px;
    font-weight: 600;
    font-family: "ProximaBold";
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
}

.catalog__description {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background-color: #fff;
    padding: 25px;
}

.catalog__description p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.catalog__description ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 10px 0;
}

.catalog__description ul li {
    position: relative;
    font-size: 14px;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
}

.catalog__description ul li:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: black;
    left: 0;
}

.sidebar-menu {
    background-color: #fff;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    border-radius: 5px;
    padding: 20px 20px 5px 20px;
    border: 1px solid #e6e8eb;
}

.sidebar-menu__title {
    font-size: 17px;
    font-weight: 600;
    font-family: "Gotham";
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 10px 0;
}

.sidebar-menu__item {
    padding: 10px 0;
    border-bottom: 1px solid #e6e8eb;
}

.sidebar-menu__item:last-child {
    border: none;
}

.sidebar-menu__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sidebar-menu a {
    font-size: 14px;
}

.sidebar-menu__wrapper button {
    width: 14px;
    height: 14px;
    position: relative;
}

.sidebar-menu__wrapper button:after {
    content: "+";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    font-family: "Gotham";
    font-weight: 500;
    font-size: 13px;
}

.sidebar-menu__wrapper button.active:after {
    content: "-";
}

.sidebar-menu__subitems {
    padding: 15px 0 0 30px;
    display: none;
}

.sidebar-menu__subitems a {
    margin: 0 0 4px 0;
    display: inline-flex;
}

.fixed-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: none;
}

.fixed-header__burger {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .6);
    transition-duration: .2s;
    display: none;
    align-items: center;
    justify-content: center;
}

.fixed-header__burger img {
    width: 18px;
}

.fixed-header__burger:hover {
    background-color: #eee;
}

.fixed-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #FFF;
}

.fixed-header.fixed-header_opacity .fixed-header__wrapper {
    background: transparent;
}

.fixed-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fixed-header__logo img {
    width: 60px;
}

.fixed-header__logo p {
    font-family: "Gotham";
    line-height: 1;
    color: #fff;
    font-size: 18px;
}

.fixed-header__col:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.fixed-header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding: 0 0 0 35px;
}

.fixed-header__contacts:after {
    content: "";
    width: 27px;
    height: 27px;
    background-image: url('../image/phone.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
}

.fixed-header__phone {
    font-family: "Gotham";
    font-size: 20px;
    color: #fff;
}

.fixed-header__mail {
    font-size: 14px;
    color: #fff;
}

.fixed-header__translate {
    display: flex;
    gap: 5px;
}

.fixed-header__translate button {
    width: 30px;
    opacity: .5;
    transition-duration: .3s;
}

.fixed-header__translate button:hover {
    opacity: 1;
}

.fixed-header__translate button.active {
    opacity: 1;
}

.fixed-header__translate button img {
    width: 100%;
}

.fixed-header__menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-header__menu a {
    color: white;
    position: relative;
    padding: 10px 8px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.fixed-header_menu_laptop {
    display: none;
}

.fixed-header:not(.fixed-header_opacity) {
    box-shadow: 0 12px 6px rgba(0, 0, 0, 0.06);
}

.fixed-header:not(.fixed-header_opacity) .fixed-header__logo p {
    color: var(--primary-text-color);
}

.fixed-header:not(.fixed-header_opacity) .fixed-header__mail {
    color: var(--primary-text-color);
}

.fixed-header:not(.fixed-header_opacity) .fixed-header__phone {
    color: var(--primary-text-color);
}

.fixed-header:not(.fixed-header_opacity) .fixed-header__menu a {
    color: var(--primary-text-color);
}

.equip-detail {
    margin: 0 0 60px 0;
}

.equip-detail__wrapper {
    display: flex;
    gap: 30px;
}

.equip-detail__gallery {
    width: 460px;
    position: relative;
}

.equip-detail__content {
    width: calc(100% - 490px);
}

.equip-detail__gallery__image {
    width: 100%;
    height: 345px;
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.equip-detail__description {
    margin: 0 0 30px 0;
}

.equip-detail__description p {
    font-size: 14px;
    margin: 0 0 10px 0;
}

.equip-detail__description ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 10px 0;
}

.equip-detail__description ul li {
    position: relative;
    font-size: 14px;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
}

.equip-detail__description ul li:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: black;
    left: 0;
}

.equip-detail__btn {
    width: 200px;
    font-size: 12px;
    margin: 0 10px 10px 0;
}

.equip-props {
    margin: 0 0 60px 0;
}

.equip-props__title {
    font-size: 28px;
    margin: 0 0 35px 0;
    font-family: "Gotham";
}

.equip-props__on-request {
    font-size: 16px;
    font-family: "ProximaBold";
}

.equip-props__table {
    border-radius: 5px;
    background: white;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    overflow: hidden;
}

.equip-props__table table {
    width: 100%;
    border-collapse: collapse;
}

.equip-props__table tr td {
    font-size: 14px;
    vertical-align: middle;
    padding: 8px 20px;
    border: 1px solid #d5d5d5;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.equip-additional__title {
    font-size: 28px;
    margin: 0 0 35px 0;
    font-family: "Gotham";
}

.equip-additional .catalog__products {
    margin: 0;
}

.menu {
    position: fixed;
    top: -120%;
    bottom: 0;
    right: 0;
    left: 0;
    transition-duration: .5s;
    background: white;
    z-index: 40;
    width: 100%;
    height: 100vh;
}

.menu.active {
    top: 0;
}

.menu__inner {
    width: 100%;
    height: 100%;
    padding: 30px;
}

.menu__close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 15px;
    right: 10px;
    border-radius: 5px;
    background-color: #faf9f9;
    transition-duration: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__close:hover {
    background-color: #eee;
}

.menu__menu {
    display: flex;
    flex-direction: column;
}

.menu__menu__item {
    border-bottom: 1px solid #d5d5d5;
    padding: 15px 0;
}

.menu__menu__item:last-child {
    border: none;
}

.menu__menu__row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu__menu__row a {
    font-size: 14px;
    font-weight: 600;
    font-family: "ProximaBold";
    letter-spacing: .6;
    text-transform: uppercase;
}

.menu__menu__row button {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    transition-duration: .2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__menu__row button:hover {
    background: #eee;
}

.menu__menu__row button:after {
    content: "+";
    font-size: 14px;
    font-weight: 600;
    font-family: "Gotham";
    position: absolute;
}

.menu__menu__row button.active:after {
    content: "-";
}

.menu__menu__subitems {
    display: none;
    padding: 5px 0 0 15px;
}

.menu__menu__subitems__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.menu__menu__subitems a {
    font-size: 14px;
}

.menu__translate {
    display: flex;
    gap: 10px;
    margin: 30px 0 0 0;
}

.menu__translate button {
    width: 50px;
    opacity: .7;
}

.menu__translate button.active {
    opacity: 1;
}

.menu__translate button img {
    width: 100%;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #3F3F3F;
    opacity: 0.6;
    z-index: 20;
    display: none;
}

.overlay.active {
    display: block;
}

.modal {
    display: none;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
}

.modal__item {
    display: none;
}

.modal__item.active {
    display: block;
    position: relative;
    width: 380px;
    border-radius: 5px;
    padding: 30px;
    background-color: white;
}

.modal__close {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f2f2;
    transition-duration: .2s;
    position: absolute;
    top: 10px;
    right: 10px;
}

.modal__close img {
    width: 14px;
}

.modal__close:hover {
    background-color: #eee;
}

.modal__title {
    line-height: 1.1;
    font-family: "Gotham";
    font-size: 26px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    text-align: center;
}

.modal__subtitle {
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.modal__subtitle a {
    color: var(--primary-color);
    font-family: "Gotham";
    font-size: 23px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.modal__form .field {
    width: 100%;
}

.modal__form input {
    background-color: #f7f7f7;
}

.modal__form button {
    width: 100%;
}

.seo-move {
    background-color: #eff1f4;
    display: flex;
    justify-content: center;
    padding: 15px;
}

.seo-move__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.seo-move img {
    width: 40px;
    height: 40px;
}

.seo-move a {
    cursor: pointer;
    color: #76ae0a !important;
    font-size: 12px;
    text-decoration: none;
}

.seo-move a:hover {
    color: #77dd77 !important;
}