@import url("../fonts/style.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
    color: var(--black);
    user-select: none;
}

:root {
    /* COLORS */
    --white: #FAFAFA;
    --white-secondary: #FBF8F4;
    --black: #1B1B1B;
    --black-secondary: rgba(27, 27, 27, 0.12);
    --gray: #d3d3d3;
    --gray-light: #f1f1f1;
    --gray-dark: #9c9da0;
    --choko: #3B2E26;
    --main-bg: #f7f4f0;
}

a {
    text-decoration: none;
}

body {
    background: var(--main-bg);
    padding-top: 98px;
}

.index_body {
    padding-top: 98px;
}

.container {
    max-width: 1260px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    gap: 16px;
    margin-top: 57px;
}
.breadcrumbs a {
    font-weight: 500;
    font-size: 16px;
    color: var(--gray-dark);
    transition: .1s linear;
    position: relative;
}
.breadcrumbs a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: var(--black);
    bottom: 0;
    transition: .2s linear;
}
.breadcrumbs a:hover::before {
    width: 100%;
}
.breadcrumbs a:last-child::before {
    position: unset;
}
.breadcrumbs a:last-child {
    cursor: default;
}

/* Header */

.header {
    padding: 39px 0;
    box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.15);
    background: var(--white-secondary);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
    transition: .1s linear;
}
.burger_open {
    display: none;
    cursor: pointer;
    img {
        filter: grayscale(100%) brightness(0);
    }
}
.burger_close {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 30px;
    right: 30px;
}
.burger_main {
    img {
        filter: unset;
    }
}
.burger_main.active {
    img {
        filter: grayscale(100%) brightness(0);
    }
}
.header_main.active {
    background: var(--white-secondary);
    box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.15);
}
.nav {
    display: flex;
    justify-content: space-between;
}
.nav_links {
    display: flex;
    gap: 22px;
}
.nav_link {
    font-weight: 500;
    font-size: 16px;
    transition: .1s linear;
    position: relative;
}
.nav_link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: var(--black);
    bottom: 0;
    transition: .2s linear;
}
.nav_link:hover::before {
    width: 100%;
}
.nav_logo {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .1s ease-in-out;
}
.nav_logo_white.active {
    color: var(--black);
}
.nav_logo.blur {
    filter: blur(3px);
}

.burger_content {
    position: absolute;
    background: var(--white-secondary);
    right: 0;
    top: 0;
    width: 350px;
    padding: 120px 20px 20px 20px;
    height: 100vh;
    transform: translateX(500px);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 99;
}
.burger_content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.burger_links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.burger_links .nav_link {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(211, 211, 211, 0.5);
}
.burger_address {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(211, 211, 211, 0.5);
}
/* .burger_social {
    justify-content: space-between;
} */

/* header inner */

.header_inner {
    background-size: cover;
    height: 800px;
    margin-top: 40px;
    border-radius: 10px;
    padding: 0 40px 160px 40px;
    display: flex;
    align-items: flex-end;
}
.header_inner h2 {
    font-weight: 600;
    font-size: 56px;
    color: var(--white);
    text-transform: uppercase;
    max-width: 1016px;
}
.header_inner h2 p {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_btn, .btn {
    padding: 12px 30px;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    border-radius: 100px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: .1s linear;
}
.header_btn:hover {
    background: var(--white);
    color: var(--black);
}
.header_btn.mobile {
    display: none;
}

/* services */

.services {
    padding-top: 80px;
    margin-bottom: 164px;
}
.services_top {
    display: flex;
    justify-content: space-between;
}
.services_btn_mobile, .products_btn_mobile {
    display: none;
}
.products_btn_mobile {
    margin-top: 30px;
    padding: 16px 0;
    width: 100%;
    justify-content: center;
}
.subtitle {
    font-weight: 800;
    font-size: 32px;
}
.btn {
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
    background: var(--black-secondary);
    backdrop-filter: unset;
}
.btn:hover {
    background: var(--black);
    color: var(--white);
}
.services_items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 40px;
}
.services_item {
    width: calc(50% - 20px);
    padding: 30px;
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
    flex-grow: 1;
    max-width: 600px;
}
.services_item a {
    margin-top: auto;
}
.services_item_top {
    display: flex;
    gap: 20px;
    align-items: center;
}
.services_item_top p {
    font-weight: 600;
    font-size: 22px;
}
.services_item_top img {
    width: 40px !important;
    height: 40px !important;
}
.services_item_desc {
    font-weight: 400;
    font-size: 16px;
}
.swiper {
    width: 100%;
    height: 100%;
}
.productSwiper {
    margin-top: 40px;
    height: unset;
}
.productSwiper .swiper-wrapper {
    height: unset;
}
.productSwiper .swiper-slide {
    height: 573px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    border-radius: 6px;
}
.product_items {
    h4 {
        color: var(--white);
    }
    p {
        color: var(--white);
    }
}
.product_btn {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    color: var(--white);
}
.product_btn:hover {
    background: var(--white);
    color: var(--black);
}
.product_title {
    padding-bottom: 12px;
}
.product_price {
    padding-bottom: 27px;
    font-weight: 400;
    font-size: 16px;
}
.product_pagination {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}
.swiper-btn-prev, .swiper-btn-next {
    padding: 12px;
    border-radius: 100px;
    background: rgba(27, 27, 27, 0.06);
    backdrop-filter: blur(14px);
    max-width: 48px;
    max-height: 48px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .1s linear;
}
.swiper-button-disabled {
    opacity: .6;
}
.servicesSwiper .services_item {
    width: unset;
}
.servicesSwiper {
    display: none;
    padding: 10px;
    height: unset !important;
}

/* how work */

.how_work {
    background: var(--choko);
    padding: 60px 30px 80px 30px;
    border-radius: 4px;
    position: relative;
    margin-top: 100px;
    margin-bottom: 100px;
}
.how_work_title {
    font-weight: 800;
    font-size: 32px;
    color: var(--white);
    padding: 0 0 34px 60px;
}
.how_work_items {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.how_work_item {
    width: calc(50% - 50px);
    display: flex;
    gap: 24px;
}
.how_work_item_number {
    font-weight: 600;
    font-size: 24px;
    color: var(--white);
}
.how_work_item_block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.how_work_item_title {
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
}
.how_work_item_text {
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
}
.how_work_img {
    position: absolute;
    right: 0;
    top: 0;
}

/* footer */

.footer {
    padding-bottom: 30px;
    display: flex;
    position: relative;
}
.title {
    font-weight: 600;
    font-size: 56px;
    line-height: 70.28px;
    text-transform: uppercase;
    color: var(--choko);
}
.footer_title {
    max-width: 737px;
}
.footer_form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}
.footer_form input {
    outline: none;
    border: none;
    background: none;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
    width: 100%;
    max-width: 559px;
    font-size: 18px;
}
.footer_form input::placeholder {
    font-weight: 400;
    font-size: 18px;
    color: var(--gray-dark);
}
.footer_form p {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.wpcf7 {
    width: 100%;
}
.footer_form p .btn {
    max-width: 144px;
    font-weight: 400;
    font-size: 16px;
    padding: 12px 30px;
    background: var(--gray);
}
.footer_form p .btn:hover {
    background: var(--black);
}
.footer_logo {
    /* padding-top: 64px; */
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--black);
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
    justify-content: start;
    max-width: 570px;
    border-top: 1px solid var(--gray);
    padding-top: 20px;
    align-items: end;
}
.footer_nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.footer_links {
    display: flex;
    gap: 40px;
}
.footer_links a {
    font-size: 14px;
}
.footer_address {
    display: flex;
    align-items: center;
    gap: 34px;
}
.footer_address_item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer_address_item p {
    font-size: 14px;
}
.footer_social {
    display: flex;
    gap: 10px;
}
.social {
    background: var(--black-secondary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    cursor: pointer;
    transition: .1s linear;
}
.social span {
    color: var(--black);
}
.social:hover {
    background: var(--black);
    span {
        color: var(--white);
    }
}
.footer_img {
    position: absolute;
    right: 20px;
    top: -18px;
    z-index: -1;
    border-radius: 4px;
}
.footer_info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer_items {
    display: flex;
    gap: 35px;
}
.footer_item p {
    font-weight: 600;
    font-size: 12px;
    color: var(--gray-dark);
}
.footer_info h2 {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-dark);
    padding-bottom: 6px;
}
.footer_item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer_logo img {
    max-width: 120px;
}
.wpcf7-response-output {
    border: none !important;
    max-width: 559px;
    margin: 0 !important;
    padding: 0 !important;
}


/* services_services */
.services_services {
    padding-top: unset;
}
.services_first_item {
    padding: unset;
    background: unset;
    box-shadow: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services_main {
    position: relative;
}
.services_main_img {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 239px;
    z-index: -1;
}


/* services_details */

.services_details {
    display: flex;
    align-items: center;
    padding-bottom: 63px;
    gap: 20px;
    padding-top: 40px;
    justify-content: space-between;
}
.services_details_subtitle {
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    max-width: 590px;
}
.services_details_photo {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 138px;
}
.services_details_photo img {
    width: 100%;
}
.servicesDetailsSwiper {
    margin-bottom: 100px;
    /* display: none; */
    position: relative;
}
.servicesDetailsSwiper .swiper-slide img {
    height: 380px;
}

.services_photo_1 { grid-area: 1 / 1 / 3 / 3; }
.services_photo_2 { grid-area: 1 / 3 / 2 / 4; }
.services_photo_3 { grid-area: 1 / 4 / 2 / 5; }
.services_photo_4 { grid-area: 2 / 3 / 3 / 5; }


/* product_details */

.product_details {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 67px 0;
    gap: 30px;
}
.product_details_swiper {
    display: flex;
    position: relative;
    flex-direction: column;
    max-width: 610px;
}
.productDetailsSwiper2 {
    height: 80%;
  }
.productDetailsSwiper {
    height: 158px;
    box-sizing: border-box;
    padding-top: 10px;
}
.productDetailsSwiper .swiper-slide {
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.productDetailsSwiper .swiper-slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 158px;
    background: rgba(0, 0, 0, 0.5);
}
.productDetailsSwiper .swiper-slide-thumb-active::before {
    content: unset;
}
.productDetailsSwiper .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productDetailsSwiper2 img {
    border-radius: 6px;
}
.productDetailsSwiper img {
    border-radius: 6px;
}
.productDetailsPag {
    display: none;
}
.product_details_items {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
}
.product_details_item p {
    font-weight: 400;
    font-size: 16px;
}
.product_details_item h4 {
    font-weight: 800;
    font-size: 22px;
}
.product_details_price {
    font-weight: 800;
    font-size: 26px;
}
.product_desc {
    padding-bottom: 138px;
    max-width: 1098px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.product_desc_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product_desc_title {
    font-weight: 800;
    font-size: 22px;
}
.product_desc_text, .product_desc_li {
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
    line-height: 24.6px;
}
.product_desc_subtitle {
    font-size: 18px;
}
.product_desc_text span {
    text-decoration: underline;
    font-style: italic;
}


/* career */

.career {
    padding-bottom: 138px;
}
.career_top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 80px;
    max-width: 1098px;
    font-weight: 400;
    font-size: 18px;
    text-align: justify;
}
.career_accordion {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.career_accordion_item {
    max-width: 820px;
    background: var(--white);
    /* box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.15); */
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    transition: .2s linear;
}
.career_accordion_item.active {
    padding-left: 88px;
}
.career_accordion_item::before {
    position: absolute;
    content: "";
    background: url("../img/career_icon.svg") center no-repeat;
    width: 0;
    height: 34px;
    top: 30px;
    left: 30px;
    opacity: 0;
    transition: .2s linear;
}
.career_accordion_item.active::before {
    position: absolute;
    content: "";
    background: url("../img/career_icon.svg") center no-repeat;
    width: 34px;
    height: 34px;
    top: 30px;
    left: 30px;
    opacity: 1;
}
.career_accordion_title {
    font-weight: 600;
    font-size: 18px;
    transition: .2s linear;
}
.career_accordion_title.active {
    font-size: 22px;
}
.career_accordion_text {
    font-weight: 400;
    font-size: 18px;
}
.career_accordion_info_title {
    font-weight: 800;
    font-size: 18px;
    padding-bottom: 14px;
}
.career_accordion_info li {
    font-size: 18px;
}
.career_btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
.career_btn span {
    display: block;
    transform: rotate(180deg);
}
.career_btn:hover span {
    color: var(--white);
}
.career_content {
    flex-direction: column;
    gap: 28px;
    align-items: start;
    max-width: 550px;
    display: none;
    padding-top: 28px;
    opacity: 0;
    /* visibility: hidden; */
    /* transition: padding-top 0.1s ease-in-out; */
    /* opacity: 0; */
    /* height: 0; */
    transition: opacity 0.3s ease-in-out;
}
.career_content.active {
    display: flex !important;
    opacity: 1;
}
.career_accordion_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.career_open {
    padding: 12px 16px;
    border-radius: 100px;
    background: var(--black-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .1s linear;
}
.career_open:hover {
    background: var(--black);
}
.career_open:hover span {
    color: var(--white);
}
.career_open {
    span {
        transition: .2s ease-in-out;
        font-size: 24px;
        color: var(--gray-dark);
    }
}
.career_open.active  {
    background: var(--black);
    span {
        transform: rotate(180deg);
        color: var(--white);
    }
}


/* portfolio */

.portfolio {
    padding-bottom: 138px;
}
.portfolio_title {
    padding: 40px 0;
}
.portfolio_items {
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
    padding-bottom: 100px;
}
.portfolio_items .portfolio_item {
    height: 573px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    border-radius: 6px;
    max-width: calc(50% - 27px);
}
.portfolio_item {
    width: calc(50% - 27px);
    background-size: cover;
    background-position: center;
    flex-grow: 1;
}
.portfolio_btn {
    display: flex;
    justify-content: center;
}


/* contact */
.contact {
    padding-top: 40px;
    padding-bottom: 138px;
}
.contact_content {
    padding: 10px;
    background: var(--white);
    position: relative;
    width: 100%;
}
.contact_content iframe {
    width: 100%;
}
.contact_address {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact_social {
    padding-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact_items {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(270deg, rgba(250, 250, 250, 0) 0%, #FAFAFA 65.56%);
    display: flex;
    align-items: center;
}


/* not found */
.not_found {
    height: 90vh;
}
.not_found_footer {
    align-items: flex-end;
    justify-content: space-between;
}
.not_found_footer_img {
    position: unset;
}
.not_found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.not_found_text_content {
    position: relative;
}
.not_found_subtitle {
    font-weight: 600;
    font-size: 28px;
    color: var(--gray-dark);
    text-transform: uppercase;
}
.not_found_title {
    font-weight: 600;
    font-size: 295.67px;
    line-height: 295.67px;
}
.not_found_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.not_found_btn {
    margin-top: 30px;
}

.overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(255, 255, 255, 0.);
    backdrop-filter: blur(3px);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: .1s ease-in-out;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}

.swiper {
    z-index: 0 !important;
}

@media screen and (max-width:1025px) {
    .product_details_info .title {
        font-size: 36px;
        line-height: unset;
    }
}

@media screen and (max-width: 920px) {
    .services_details {
        flex-direction: column;
        align-items: start;
    }
    .product_details {
        gap: 20px;
    }
    .services_details_subtitle {
        max-width: unset;
    }
}

@media screen and (max-width:830px) {
    .header {
        padding: 30px 0;
    }
    .nav_links {
        display: none;
    }
    .nav_logo {
        position: unset;
        transform: unset;
    }
    .nav_logo_white {
        color: var(--white);
    }
    .nav {
        justify-content: space-between;
        align-items: center;
    }
    .header_inner {
        margin-top: unset;
        border-radius: unset;
    }
    .burger_open {
        display: unset;
    }
    .index_body {
        padding-top: unset;
    }
    .header_main {
        background: unset;
        box-shadow: unset;
    }
    .services_title {
        font-size: 32px;
    }
    .services_item {
        max-width: unset;
    }
    .services_services {
        padding-top: unset;
    }
    .services_item_top p {
        font-size: 20px;
    }
    .services_item_desc {
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }
    .title {
        font-size: 46px;
        line-height: unset;
    }
    .services_details_subtitle {
        font-size: 16px;
    }
    .product_details {
        flex-direction: column;
    }
}
@media screen and (max-width:768px) {
    .btn {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 16px 20px;
    }
    .header_btn {
        display: none;
    }
    .header_btn.mobile {
        display: flex;
        margin-top: 66px;
        justify-content: center;
    }
    .header_inner {
        flex-direction: column;
        justify-content: end;
        align-items: start;
    }
    .header_inner h2 {
        font-size: 46px;
    }
    .services_items {
        display: none;
    }
    .services_services {
        display: flex;
        flex-direction: column;
    }
    .services_item {
        width: unset;
    }
    .services_main_img {
        display: none;
    }
    .servicesSwiper {
        display: flex;
        margin-top: 30px;
        padding-bottom: 50px;
    }
    .services_item {
        align-items: unset;
    }
    .services_btn, .products_btn {
        display: none;
    }
    .services_btn_mobile {
        display: unset;
    }
    .products_btn_mobile {
        display: flex;
        justify-content: center;
    }
    .product_pagination {
        display: none;
    }
    .how_work_items {
        flex-direction: column;
    }
    .how_work_item {
        width: unset;
    }
    .footer_img {
        display: none;
    }
    .footer_title {
        font-size: 46px;
    }
    .services {
        margin-bottom: 70px;
    }
    .services_details_photo {
        display: none;
    }
    .servicesDetailsSwiper {
        display: block;
    }
    .servicesDetailsPag {
        display: flex;
    }
    .product_details_items .btn {
        width: unset;
        padding: 16px 30px;
    }
    .portfolio_items {
        flex-direction: column;
    }
    .portfolio_items .portfolio_item {
        width: 100%;
        max-width: unset;
    }
    .portfolio_items {
        padding-bottom: 40px;
    }
    .portfolio {
        padding-bottom: 70px;
    }
}

@media screen and (max-width:600px) {
    .footer_form {
        align-items: unset
    }
    .footer_logo {
        /* text-align: center; */
        align-items: center;
        flex-direction: column;
    }
    .footer_logo img {
        margin: 0 auto;
        padding-top: 15px;
    }
    .footer_nav {
        align-items: center;
        justify-content: center;
    }
    .footer_links {
        flex-wrap: wrap;
        gap:  12px 27px;
        justify-content: center;
    }
    .footer_address {
        flex-wrap: wrap;
        gap: 17px 20px;
        justify-content: center;
    }
    .social {
        width: 40px;
        height: 40px;
    }
    .social span {
        font-size: 20px;
    }
    .product_items {
        width: 100%;
    }
    .services_btn_mobile {
        display: flex;
    }
}
@media screen and (max-width:480px) {
    .header_inner h2 {
        font-size: 32px;
    }
    .header_inner {
        align-items: unset;
    }
    .subtitle {
        font-size: 26px;
    }
    .services {
        padding-top: 70px;
    }
    .services_item_top p {
        font-size: 20px;
    }
    .services_item_desc {
        font-size: 14px;
    }
    .btn {
        font-size: 14px;
    }
    .services_btn_mobile {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 16px 0;
    }
    .how_work_title {
        font-size: 26px;
        padding: 0;
    }
    .how_work_items {
        padding-top: 40px;
        gap: 24px;
    }
    .footer_title {
        font-size: 34px;
        line-height: unset;
    }
    .how_work {
        margin-bottom: 70px;
        margin-top: 70px;
    }
    .footer .btn {
        font-size: 16px;
    }
    .footer_address {
        padding: 20px 0;
        border-top: 1px solid var(--gray);
        border-bottom: 1px solid var(--gray);
    }
    .services_title {
        line-height: unset;
    }
    .title {
        font-size: 32px;
    }
    .services_details_subtitle {
        font-size: 14px;
    }
    .services_details {
        padding-bottom: 40px;
    }
    .servicesDetailsSwiper {
        margin-bottom: 70px;
    }
    /* .product_pagination {
        display: flex;
        margin-top: 20px;
    } */
    .productDetailsPag {
        display: flex;
    }
    .product_details {
        gap: 40px;
    }
    .product_details_info .title {
        font-size: 32px;
    }
    .product_details_items {
        padding-top: 24px;
        gap: 24px;
    }
    .product_details_items .btn {
        width: 100%;
    }
    .product_details_price {
        font-size: 26px;
    }
    .career_accordion_item.active {
        padding: 88px 30px 30px 30px;
    }
    .career_accordion_title.active {
        font-size: 18px;
    }
    .career_content {
        padding-top: 16px;
        gap: 16px;
    }
    .career_accordion_text {
        font-size: 14px;
    }
    .career_accordion_info_title {
        font-size: 16px;
    }
    .career_accordion_info li {
        font-size: 14px;
    }
    .contact_items {
        background: linear-gradient(0deg, rgba(250, 250, 250, 0) 0%, #FAFAFA 65.56%);
        top: 10px;
        transform: unset;
        align-items: start;
    }
    .contact_content {
        height: 710px;
        display: flex;
        align-items: flex-end;
    }
    .contact {
        padding-bottom: 70px;
    }
    .not_found_subtitle {
        font-size: 20px;
    }
    .not_found_title {
        font-size: 195px;
        line-height: unset;
    }
    .footer_social {
        gap: 24px;
    }
    .product_desc {
        padding-bottom: 70px;
    }
    .breadcrumbs {
        gap: unset;
        align-items: center;
    }
    .footer_logo {
        font-size: 18px;
    }
    .footer_form p .btn {
        max-width: unset;
    }
    .contact_items {
        background: unset;
        height: unset;
    }
}