@charset "UTF-8";

:root {
    --gutter: 2rem;
    --wrapper: 128rem;
    --wrapper-padding: calc((100% - var(--wrapper)) / 2 - var(--gutter));
    --sidewrap: calc(var(--wrapper) + var(--wrapper-padding) * 2 + var(--gutter));
    
    --section-padding: 8rem;

    --font-inter: 'Inter', sans-serif;
    --color-red: #E2001A;
    --color-orange: #FFA500;
    --color-gray: #F3F3F3;
    --color-text-1: #090909;
    --color-text-2: #3F3F3F;
    --color-default: var(--color-text-2);
}

/*:focus:not(:active):not(:hover) {
    outline: 2px solid #0078d4;
    outline-offset: 2px;
}
*/
.user-is-tabbing :focus {
    outline: 2px solid #0078d4;
    outline-offset: 2px;
}

body {
    background: var(--color-gray);
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: normal;
    color: var(--color-default);
}

section {
    width: 100%;
    padding: var(--section-padding) 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

section.no-padding {
    padding: 0;
}

section:not(.no-padding) + .no-padding {
    margin-top: var(--section-padding);
}

section.no-padding + section:not(.no-padding) {
    padding-top: calc(var(--section-padding) * 1.5);
}

.section-gray {
    background-color: var(--color-gray);
}

.section-white {
    background-color: #fff;
}

@media screen and (max-width: 1024.9px) {
    body {
        font-size: 1.7rem;
    }
}


@media screen and (max-width: 575.9px) {
    :root {
        --section-padding: 6rem;
    }

    body {
        font-size: 1.6rem;
    }
}


/* btn START */
.btn,
[type="submit"] {
    --btn-color: var(--color-red);

    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-height: 4.4rem;
    padding: 1rem 2rem;

    background: var(--btn-color);
    border: 0.1rem solid var(--btn-color);
    border-radius: 0.3rem;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1.6rem;
    color: #fff;
    
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-out;
}

.btn__inner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.btn__icon {
    transition: 0.3s;
}

.btn__icon.order-1 {
    order: 1;
    margin-right: -0.5rem;
}

.btn path {
    stroke: currentColor;
}

.btn_white {
    --btn-color: #fff;

    color: var(--color-red);
}

.btn_white-transparent {
    --btn-color: #fff;

    color: var(--btn-color);
    background: transparent;
}

.btn_black-transparent {
    --btn-color: var(--color-default);
}

.btn_simple {
    min-height: unset;
    padding-inline: 0;
    background: unset;
    border: unset;
    font-weight: 500;
    color: var(--color-red);
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        background: rgb(255 255 255 / 10%);
        color: var(--btn-color);
    }

    .btn_white-transparent:hover {
        background: var(--btn-color);
        color: var(--color-red);
    }

    .btnblack-transparent:hover {
        background: var(--btn-color);
        color: #fff
    }

    .btn_simple:hover .btn__icon {
        translate: 50% 0;
    }
}

@media (hover: none) {
    .btn:active {
        background: rgb(255 255 255 / 10%);
        color: var(--btn-color);  
    }

    .btn_white-transparent:active {
        background: var(--btn-color);
        color: var(--color-red);
    }
}



@media screen and (max-width: 575.9px) {
    .btn:not(.btn_simple) {
        width: 100%;
        min-height: 5.6rem;
    }
}
/* btn END */






/* text START */
.text {
    line-height: 1.5;
}

.pretitle {
    padding-left: 1rem;
    border-left: 0.3rem solid var(--color-red);
    font-weight: 500;
    color: var(--color-text-1);
}

.title,
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
    font-weight: 700;
    font-size: 3.8rem;
    line-height: calc(46/38);
    letter-spacing: 0.03em;
    color: #000;
}

.title:not(.title_noline) {
    position: relative;
    padding-bottom: 0.8rem;
}

.title:not(.title_noline)::after {
    content: "";
    display: block;
    width: 15rem;
    height: 0.3rem;
    background: var(--color-red);
    position: absolute;
    left: 0;
    bottom: 0;
}

.title-l,
.text h1 {
    font-size: 4rem;
    line-height: 1.15;
    letter-spacing: 0.03em;
}

.title-s,
.text h3 {
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
}

.title-xs,
.text h4 {
    font-size: 2.8rem;
    line-height: 1.37;
}

.title-xxs,
.text h5 {
    font-weight: 500;
    font-size: 1.8rem;
}

.title-xxxs,
.text h6 {
    font-weight: 500;
    font-size: 1.6rem;
}

.text * + p {
    margin-top: 2rem;
}

.text p + p {
    margin-top: 2rem;
}

.text * + ul,
.text * + ol {
    margin-top: 3.2rem;
}

.text * + h2,
.text * + h3 {
    margin-top: 2rem;
}

.text * + blockquote {
    margin-top: 4rem;
}

.text p + blockquote {
    margin-top: 2rem;
}

.text p img {
    width: revert-layer;
    margin-top: 8rem;
}

.text ol,
.text ul {
    padding-left: 3.2rem;
}

.text li {
    display: list-item;
    margin-top: 1.6rem;
    position: relative;
}

.text p a,
.single-post-content__text a {
    display: inline-block;
    position: relative;
    color: var(--color-red);
}

.text p a::after,
.single-post-content__text a::after {
    content: '';
    display: block;
    width: 100%;
    height: 0.1rem;
    background: currentColor;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: 0.3s;
}

.text p a:hover::after,
.single-post-content__text a:hover::after {
    width: 0%;
}

.text blockquote p {
    padding-left: 1rem;
    border-left: 0.3rem solid currentColor;
}

.text .wp-caption-text {
    padding-block: 1rem;
    font-size: small;
    text-align: center;
    opacity: 0.5;
}


/* Complianz Cookie Page Start*/
.cmplz-document p a::after {
    display: inline;
    position: static;
    background: unset;
}

.cmplz_consent_per_service_label .screen-reader-text {
    display: inline-block;
    width: 0px;
    height: 0px;
    overflow: hidden;
}

/* Complianz Cookie Page End*/



@media screen and (max-width: 1024.9px) {
    .title-l,
    .text h1 {
        font-size: 3.2rem;
    }

    .title,
    .text h2 {
        font-size: 3rem;
    }

    .title-s,
    .text h3 {
        font-size: 2.8rem;
    }

    .title-xs,
    .text h4 {
        font-size: 2.6rem;
    }

    .title-xxs,
    .text h5 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 575.9px) {
    .title-l,
    .text h1 {
        font-size: 2.6rem;
    }

    .title,
    .text h2 {
        font-size: 2.4rem;
    }

    .title-s,
    .text h3 {
        font-size: 2.1rem;
    }

    .title-xs,
    .text h4 {
        font-size: 1.9rem;
    }

    .title-xxs,
    .text h5 {
        font-size: 1.4rem;
    }
}
/* text END */








/* langs START */
.langs {
    position: relative;
}

.langs__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.6rem;
    line-height: 4rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.langs__list {
    min-width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.langs:hover .langs__list,
.langs:focus .langs__list,
.langs:has(:focus) .langs__list {
    opacity: 1;
    visibility: visible;
}

.langs__list-inner {
    min-width: 100%;
    padding-block: 1rem;
    background: #fff;
    box-shadow: 0.5rem 0.7rem 1rem 0 rgb(0 0 0 / 25%);
    margin-left: -2rem;
}

.langs__list .langs__item {
    padding: 0 2rem;
}

.langs__list .langs__item:hover {
    color: var(--color-red);
}

@media screen and (max-width: 1024.9px) {
    .langs {
        display: none;
    }
}
/* langs END */



/* section-header START */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 6rem;
}

.section-header__info {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    max-width: 65rem;
}

.section-header__text {
    letter-spacing: 0.01em;
}

/* section-header END */



/* header START */
.header {
    width: 100%;
    padding-block: 2rem;
    background: #fff;
    backdrop-filter: blur(3rem);
    color: var(--color-text-1);
    position: sticky;
    top: 0;
    z-index: 10;
    transition: 0.3s ease-out;
}

.header.scrolled:not(.menu-opened) {
    background: rgb(255 255 255 / 50%);
    box-shadow: 0 0 0.3rem 0.3rem rgb(0 0 0 / 25%);
}

.header__content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.header__menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 1.6rem;
    white-space: nowrap;
    transition: 0.3s;
}

.header__menu a:hover {
    color: var(--color-red);
}

.header__menu .sub-menu {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-block: 4rem;
    background: #fff;
    border-radius: 0.5rem;
    position: absolute;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.header__menu li:has(a:focus) > .sub-menu,
.header__menu li:hover > .sub-menu {
    pointer-events: auto;
    opacity: 1;
}

.header__menu .nav-menu-arrow path {
    fill: currentColor;
}

.header__menu .sub-menu.two-columns {
    display: block;
    columns: 2;
    gap: 2rem;
}

.header__menu .sub-menu.two-columns > li:first-child {
    margin-top: 0;
}

.header__menu .sub-menu .nav-menu-arrow {
    display: none;
    rotate: -90deg;
}

.header__menu > li {
    --shift: 2.5rem;

    padding-block: var(--shift);
    margin-block: calc(var(--shift) * -1);
    position: relative;
}

.header__menu > li > a {
    padding: 1rem;
}

.header__menu > li > .sub-menu {
    box-shadow: 0.2rem 0.2rem 0.4rem rgb(0 0 0 / 24%);
    top: 100%;
    left: -4rem;
}

.header__menu > li > .sub-menu > li {
    padding: 1.25rem 4rem 1.25rem 3rem;
}

.header__menu > li > .sub-menu > li:first-child {
    margin-top: -1.25rem;
}

.header__menu > li > .sub-menu > li > a {
    padding-left: 0.7rem;
    border-left: 0.3rem solid #fff;
    font-weight: 500;
}

.header__menu > li > .sub-menu > li > a:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.header__menu > li > .sub-menu .sub-menu {
    gap: 2.5rem;
    padding: 4rem;
    padding-left: 5rem;
    margin-left: -1rem;
    top: 0;
    left: 100%;
}

.header__menu > li > .sub-menu .sub-menu::before {
    content: "";
    display: block;
    width: 0.1rem;
    height: calc(100% - 8rem);
    background: #090909;
    position: absolute;
    left: 1rem;
    top: 50%;
    translate: 0 -50%;
    opacity: 0.1;
    z-index: 1;
}

.header__menu > li > .sub-menu .sub-menu a {
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--color-text-2);
}

.header__menu > li > .sub-menu .sub-menu a:hover {
    color: var(--color-red);
}

.header__menu .current-menu-item > a,
.header__menu .current-menu-ancestor > a {
    color: var(--color-red);
}

.header__menu-toggler {
    display: none;
}

@media screen and (max-width: 1024.9px) {
    .header {
        padding-block: 1rem;
    }

    .header.scrolled:not(.menu-opened) {
        background: #fff;
        backdrop-filter: unset;
    }

    .header__nav {
        display: none;
    }

    .header__menu-toggler {
        display: block;
    }
}

@media screen and (max-width: 575.9px) {
    .header__logo {
        margin-right: auto;
    }
}
/* header END */



/* header-alt-menu START */
.header-alt-menu {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: auto;
}

.header-alt-menu::after {
    flex: 0 0 auto;
    content: "";
    display: block;
    width: 0.1rem;
    height: 2.2rem;
    background: #000;
    opacity: 0.1;
    margin-right: -1rem;
}

.header-alt-menu__item {
    font-size: 1.6rem;
    transition: 0.3s;
}

.header-alt-menu__item:hover,
.header-alt-menu__item.current {
    color: var(--color-red);
}

.header-alt-menu__item-inner {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
}

.header-alt-menu__item-icon {
    order: -1;
}

.header-alt-menu__item-icon path {
    fill: none;
    stroke: currentColor;
}

.header-alt-menu__item:last-child .header-alt-menu__item-icon path {
    fill: currentColor;
    stroke: unset;
}

@media screen and (max-width: 575.9px) {
    .header-alt-menu {
        display: none;
    }
}
/* header-alt-menu END */



/* header-search START */
.header-search {
    position: relative;
}

.header-search__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    aspect-ratio: 44/40;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}

.header-search__btn::before,
.header-search__btn::after {
    content: "";
    width: 1.6rem;
    height: 0.2rem;
    background: red;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    rotate: 45deg;
    opacity: 0;
}

.header-search__btn::after {
    rotate: -45deg;
}

.header-search__btn:hover {
    color: var(--color-red);
}

.header-search__btn path {
    stroke: currentColor;
}

.header-search__btn.active > svg {
    opacity: 0;
}

.header-search__btn.active::before,
.header-search__btn.active::after {
    opacity: 1;
}

.header-search-form {
    padding: 2rem;
    position: absolute;
    top: 100%;
    right: 0;
    transition: 0.3s;
}

.header-search-form:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.header-search-form__inner {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    gap: 1rem;
    border-radius: 0.5rem;
    background: #fff;
}

.header-search-form__inner input {
    width: 20rem;
    height: 4.2rem;
}

.header-search-form__btn {
    flex: 0 0 auto;
    aspect-ratio: 1;
    width: 2.4rem;
    cursor: pointer;
}

.header-search-form__btn path {
    stroke: currentColor;
}

.header-search-form__btn:hover {
    color: var(--color-red);
}

@media screen and (max-width: 1024.9px) {
    .header-search__btn path {
        stroke: var(--color-text-2);
    }
}

@media screen and (max-width: 575.9px) {
    .header-search {
        position: static;
    }

    .header-search-form {
        width: 100%;
        right: auto;
        left: 0;
    }

    .header-search-form__inner input {
        width: 100%;
    }
}
/* header-search END */



/* footer START */
.footer {
    padding-block: 13rem;
    background: #272429;
    font-size: 1.6rem;
    color: #E2E2E2;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    gap: 3.6rem;
    margin-bottom: 5rem;
}

.footer__info {
    gap: 3.6rem;
    max-width: 38rem;
    margin-right: auto;
}

.footer-socials__title {
    font-weight: 600;
    line-height: calc(24/18);
    margin-bottom: 1rem;
}

.footer__menus {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 9.5rem;
}

.footer__menu {
    gap: 1rem;
}

.footer__menu-title {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: calc(24/18);
    color: #fff;
}

.footer__menu-item {
    line-height: 1.5;
}

.footer__menu-item,
.copyright__menu a {
    position: relative;
}

.footer__title {
    font-weight: 900;
    font-size: 7.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #fff;
    opacity: 0.2;
    margin-bottom: 2rem;
}

.footer__menu-item::after,
.copyright__menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 0.1rem;
    background: currentColor;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.footer__menu-item:hover::after,
.copyright__menu a:hover::after {
    width: 100%;
}

@media screen and (max-width: 1024.9px) {
    .footer {
        padding-block: 10rem;
    }

    .footer__title {
        font-size: 6rem;
    }
}

@media screen and (max-width: 575.9px) {
    .footer {
        padding-block: 8rem;
    }

    .footer__title {
        font-size: 4rem;
    }
}
/* footer END */



/* copyright START */
.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 6rem;
    border-top: 0.1rem solid rgb(255 255 255 / 10%);
    gap: 4rem;
    line-height: 1.5;
}

.copyright__menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 4rem;
}

@media screen and (max-width: 1024.9px) {
    .copyright__text {
        order: 1;
    }
}
/* copyright END */



/* posts-item START */
.posts-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.posts-item__image {
    width: 100%;
    aspect-ratio: 415/205;
    overflow: hidden;
}

.posts-item__image img {
    transition: 0.3s;
}

.posts-item__content {
    flex: 1;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
}

.posts-item__dash {
    width: 5.6rem;
    height: 0.2rem;
    background: var(--color-red);
    margin-bottom: -1rem;
}

.posts-item__title {
    font-weight: 600;
    font-size: 2rem;
    color: var(--color-text-1);
}

.posts-item__cats {
    font-size: 1.4rem;
    opacity: 0.5;
}

.posts-item__text {
    font-size: 1.6rem;
}

.posts-item__more {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 0.5rem;
    font-size: 1.6rem;
    color: var(--color-red);
    margin-top: auto;
}

.posts-item__more-icon {
    width: 1.6rem;
    transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .posts-item:hover .posts-item__image img {
        scale: 1.05;
    }

    .posts-item:hover .posts-item__more-icon {
        translate: 50% 0;
    }
}

@media (hover: none) {
    .posts-item:active .posts-item__image img {
        scale: 1.05;
    }

    .posts-item:active .posts-item__more-icon {
        translate: 50% 0;
    }
}
/* posts-item END */



/* socials__title START */
.socials {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.socials__item {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 3.6rem;
    border: 0.1rem solid rgb(255 255 255 / 20%);
    border-radius: 0.5rem;
    transition: 0.3s;
}

.socials__item svg {
    max-width: 2.4rem;
    max-height: 2.4rem;
    transition: inherit;
}

@media (hover: hover) and (pointer: fine) {
    .socials__item:hover {
        border-color: #fff;
    }

    .socials__item:hover svg {
        scale: 0.9;
    }
}

@media (hover: none) {
    .socials__item:active {
        border-color: #fff;
    }

    .socials__item:active svg {
        scale: 0.9;
    }
}



@media screen and (max-width: 767.9px) {
    .socials {
        gap: 1.2rem;
    } 
}
/* socials__title END */



/* accordion START */
.accordion__list {
    gap: 1rem;
}

.accordion-item {
    width: 100%;
    padding: 3rem 2rem;
    background: #fff;
}

.accordion-item__header {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    padding-left: 1rem;
    border-left: 0.3rem solid var(--color-red);
    cursor: pointer;
    transition: 0.3s;
}


.accordion-item__title {
    font-weight: 600;
    font-size: 2rem;
}

.accordion-item.active .accordion-item__title {
    color: var(--color-red);
}

.accordion-item__icon {
    flex: 0 0 auto;
    aspect-ratio: 1;
    width: 2.4rem;
    transition: 0.3s;
    position: relative;
}

.accordion-item.active .accordion-item__icon {
    rotate: 45deg;
}

.accordion-item__icon::before,
.accordion-item__icon::after {
    content: "";
    width: 1.4rem;
    height: 0.2rem;
    background: var(--color-red);
    border-radius: 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
}

.accordion-item__icon::after {
    rotate: 90deg;
}

.accordion-item__content {
    display: none;
}

.accordion-item__content-inner {
    display: flex;
    gap: 3.2rem;
}

.accordion-item__info {
    width: 100%;
    padding: 4rem 3rem;
    gap: 2rem;
}

.accordion-item__subtitle {
    font-weight: 500;
}

.accordion-item__text {
    font-size: 1.6rem;
}

.accordion-item__btn {
    padding-block: 1.6rem;
}

.accordion-item__btn-inner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.accordion-item__btn-icon {
    transition: 0.3s;
}

.accordion-item__image {
    flex: 0 0 auto;
    width: 45%;
}

@media (hover: hover) and (pointer: fine) {
    .accordion-item__header:hover{
        color: var(--color-red);
    }

    .accordion-item__btn:hover .accordion-item__btn-icon {
        translate: 50% 0;
    }
}

@media (hover: none) {
    .accordion-item__header:active{
        color: var(--color-red);
    }

    .accordion-item__btn:active .accordion-item__btn-icon {
        translate: 50% 0;
    }
}



@media screen and (max-width: 767.9px) {
    .accordion-item__content-inner {
        flex-direction: column;
    }

    .accordion-item__image {
        order: -1;
        width: 100%;
        padding-top: 4rem;
    }
}
/* accordion END */



/* breadcrumbs START */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 100%;
    font-size: 1.4rem;
    white-space: nowrap;
    margin-bottom: -1rem;
}

.breadcrumbs__link {
    color: #3F3F3F;
    opacity: 0.8;
}

.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs__divider {
    flex: 0 0 auto;
    width: 1.6rem;
}

.breadcrumbs__title {
    flex: 1;
    color: var(--color-red);
    text-overflow: ellipsis;
    overflow: hidden;
}
/* breadcrumbs END */



/* scroll-down START */
.scroll-down {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--color-red);
    cursor: pointer;
}

.scroll-down img {
    flex: 0 0 auto;
    width: 1.8rem;
}

.scroll-down img {
    animation: scroll-down 1s linear infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); }
    25% { transform: translateY(-0.2rem); }
    75% { transform: translateY(0.2rem); }
    100% { transform: translateY(0); }
}
/* scroll-down END */



/* sharing START */
.sharing {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 8rem;
    font-weight: 600;
    color: #122926;
}

.sharing__list {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sharing__link {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 5.4rem;
    border: 0.1rem solid #D0D4D4;
    border-radius: 100%;
    transition: 0.3s;
}

.sharing__link img {
    max-width: 2rem;
    transition: inherit;
}

@media (hover: hover) and (pointer: fine) {
    .sharing__link:hover {
        border-color: #122926;
    }

    .sharing__link:hover img {
        scale: 0.9;
        opacity: 0.8;
    }
}

@media (hover: none) {
    .sharing__link:active {
        border-color: #122926;
    }

    .sharing__link:active img {
        scale: 0.9;
        opacity: 0.8;
    }
}

/* sharing END */



/* search START */
.page-search__inner {
    padding-top: 6rem;
    gap: 3rem;
}

.search-form__content {
    display: flex;
    align-items: center;
    gap: 0rem;
}

.search-form__btn.btn {
    width: auto;
    height: 6.2rem;
    margin-left: -0.5rem;
}
/* search END */



/* category-list START */
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-block: 2.5rem;
}

.category-list__item {
    --btn-color: var(--color-default);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    padding: 0.5rem 1rem;
    background: var(--btn-color);
    border: 0.1rem solid var(--btn-color);
    border-radius: 0.3rem;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-out;
}

.category-list__item:hover {
    color: var(--btn-color);
    background: transparent;
}
/* category-list END */