@font-face {
    font-family: "Gilroy";
    src: url("../assets/fonts/Gilroy/Gilroy-Regular.woff2") format("woff2"), url("../assets/fonts/Gilroy/Gilroy-Regular.woff") format("woff"), url("../assets/fonts/Gilroy/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../assets/fonts/Gilroy/Gilroy-Bold.woff2") format("woff2"), url("../assets/fonts/Gilroy/Gilroy-Bold.woff") format("woff"), url("../assets/fonts/Gilroy/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Gilroy", Arial, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    body {
        font-size: 0.9em;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 0.85em;
    }
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 1500px) {
    .container {
        max-width: 990px;
    }
}

@media (max-width: 1300px) {
    .container {
        max-width: 940px;
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 479px) {
    .container {
        padding: 0 15px;
    }
}

.header {
    padding: 60px 0;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .header {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 30px 0;
    }

    .header .container {
        padding: 0;
    }
}

.header__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
}

@media (max-width: 991px) {
    .header__content {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .header__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
        text-align: center;
    }
}

.header__content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1 1 50%;
}

@media (max-width: 767px) {
    .header__content-block {
        align-items: center;
        padding: 0 15px;
    }
}

.header__logo {
    margin-bottom: 130px;
}

@media (max-width: 991px) {
    .header__logo {
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .header__logo {
        margin-bottom: 50px;
    }
}

.header__logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .header__logo img {
        max-width: 300px;
    }
}

.header__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 35px;
}

@media (max-width: 991px) {
    .header__title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .header__title {
        font-size: 36px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .header__title {
        font-size: 42px;
    }
}

.header__subtitle {
    font-size: 24px;
    margin: 0 0 30px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .header__subtitle {
        font-size: 18px;
        text-align: center;
    }
}

.header__banner {
    max-width: 570px;
    padding: 60px 70px;
    min-height: 700px;
    background-image: url("../assets/header/header_banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
    flex: 0 1 50%;
}

@media (max-width: 991px) {
    .header__banner {
        padding: 40px 50px;
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .header__banner {
        max-width: 100%;
        padding: 30px 30px;
        flex: 0 1 auto;
    }
}

@media (max-width: 575px) {
    .header__banner {
        gap: 40px;
    }
}

.header__banner p {
    font-size: 32px;
    line-height: 100%;
    margin: 0;
    text-align: start;
}

@media (max-width: 991px) {
    .header__banner p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .header__banner p {
        font-size: 24px;
    }
}

.header__banner svg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .header__banner svg {
        max-width: 300px;
    }
}

.hero {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hero {
        margin-bottom: 20px;
    }
}

.hero__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 80px;
}

@media (max-width: 991px) {
    .hero__content {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 30px;
    }
}

.hero__description {
    text-align: start;
    font-size: 36px;
    line-height: 1.5;
    flex: 1 1 60%;
}

@media (max-width: 991px) {
    .hero__description {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .hero__description {
        text-align: center;
    }
}

.hero__description:last-child {
    font-weight: 700;
    flex: 1 0 40%;
}

@media (max-width: 767px) {
    .hero__description:last-child {
        flex: none;
    }
}

.about {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .about {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about {
        margin-bottom: 40px;
    }
}

.about__banner {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .about__banner {
        margin-bottom: 30px;
    }
}

.about__banner img {
    width: 100%;
    height: auto;
}

.about__title {
    text-align: start;
    padding-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .about__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.about__grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: calc(60px + 30px);
}

@media (max-width: 991px) {
    .about__grid {
        gap: 0;
    }
}

@media (max-width: 767px) {
    .about__grid {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .about__grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 30px;
    }
}

.about__card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr;
    text-align: center;
    align-items: center;
    justify-items: center;
    padding: 20px 30px;
    flex: 1 1 33%;
}

@media (max-width: 767px) {
    .about__card {
        flex: 1 1 calc(50% - 20px / 2);
    }
}

@media (max-width: 575px) {
    .about__card {
        flex: 1 1 auto;
        padding: 20px 0;
    }
}

.about__card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .about__card img {
        max-width: 100px;
    }
}

.about__card p {
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
    text-align: start;
}

@media (max-width: 991px) {
    .about__card p {
        font-size: 18px;
    }
}

.about__bottom {
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 767px) {
    .about__bottom {
        padding: 30px 0;
    }
}

.products {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .products {
        margin-bottom: 20px;
    }
}

.product-feature {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 190px;
}

@media (max-width: 991px) {
    .product-feature {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .product-feature {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 40px;
        margin-bottom: 50px;
    }
}

.product-feature__image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1 1 50%;
    background-image: url("../assets/product/prodict_feature_banner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 100px 120px;
    min-height: 700px;
}

@media (max-width: 991px) {
    .product-feature__image {
        padding: 40px 60px 80px;
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .product-feature__image {
        flex: 1 1 auto;
        min-height: 400px;
        padding: 30px 40px 60px;
    }
}

.product-feature__image p {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .product-feature__image p {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .product-feature__image p {
        font-size: 32px;
    }
}

.product-feature__image p:last-child {
    margin-bottom: 0;
}

.product-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1 1 50%;
    padding: 0 100px 120px;
}

@media (max-width: 1100px) {
    .product-feature__content {
        padding: 0 70px 120px;
    }
}

@media (max-width: 991px) {
    .product-feature__content {
        padding: 40px 60px 80px;
    }
}

@media (max-width: 767px) {
    .product-feature__content {
        flex: 1 1 auto;
        padding: 0;
    }
}

.product-feature__content p {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 60px;
    line-height: 54px;
}

@media (max-width: 991px) {
    .product-feature__content p {
        font-size: 28px;
        margin: 0 0 40px;
    }
}

@media (max-width: 767px) {
    .product-feature__content p {
        font-size: 32px;
        margin: 0 0 30px;
        line-height: 36px;
    }
}

.product-feature__content p:last-child {
    margin-bottom: 0;
}

.products-gallery__title {
    background-image: url("../assets/product/product_galery_banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    margin-bottom: 140px;
}

@media (max-width: 767px) {
    .products-gallery__title {
        margin-bottom: 40px;
    }
}

.products-gallery__title h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
    padding: 20px 100px;
    text-align: start;
    margin: 0;
}

@media (max-width: 991px) {
    .products-gallery__title h3 {
        padding: 20px 50px;
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .products-gallery__title h3 {
        padding: 15px 30px;
        font-size: 24px;
        margin-bottom: 40px;
    }
}

.products-gallery__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 50px;
    padding: 40px 0;
}

@media (max-width: 991px) {
    .products-gallery__content {
        gap: 30px;
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .products-gallery__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 30px;
        padding: 20px 0;
    }
}

.products-gallery__content ol {
    flex: 0 0 50%;
    list-style-type: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .products-gallery__content ol {
        flex: 0 0 auto;
        width: 100%;
    }
}

.products-gallery__content ol li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    padding: 0;
}

@media (max-width: 991px) {
    .products-gallery__content ol li {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .products-gallery__content ol li {
        font-size: 18px;
    }
}

.products-gallery__content ol li:last-child {
    margin-bottom: 0;
}

.products-gallery__content ol li::before {
    content: counter(item);
    counter-increment: item;
    display: inline-flex;
    align-items: center;
    padding: 5px 30px;
    color: #FFFFFF;
    background-color: #000000;
    font-size: inherit;
    line-height: inherit;
}

@media (max-width: 991px) {
    .products-gallery__content ol li::before {
        padding: 5px 20px;
    }
}

.products-gallery__content div {
    flex: 0 0 40%;
}

@media (max-width: 767px) {
    .products-gallery__content div {
        flex: 0 0 auto;
        width: 100%;
    }
}

.products-gallery__content div p {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 30px;
}

@media (max-width: 991px) {
    .products-gallery__content div p {
        font-size: 18px;
        margin: 0 0 20px;
    }
}

.products-gallery__content div p:last-child {
    margin-bottom: 0;
}

.philosophy {
    background-image: url("../assets/philosophy/philosophy_banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 65px 60px 50px;
}
.philosophy .container {
    display: contents;
}

@media (max-width: 1100px) {
    .philosophy {
        padding: 50px 40px 40px;
    }
}

@media (max-width: 767px) {
    .philosophy {
        padding: 30px 0 0;
        min-height: 490px;
    }
    .philosophy .container {
        display: block;
    }
}

.philosophy__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 100%;
    margin: 0 0 40px;
    text-align: start;
}

@media (max-width: 991px) {
    .philosophy__title {
        font-size: 48px;
        margin: 0 0 30px;
    }
}

@media (max-width: 767px) {
    .philosophy__title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

.philosophy__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 200px;
}

@media (max-width: 991px) {
    .philosophy__content {
        gap: 70px;
    }
}

@media (max-width: 767px) {
    .philosophy__content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }
}

.philosophy__values {
    font-size: 48px;
    line-height: 100%;
}

@media (max-width: 991px) {
    .philosophy__values {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .philosophy__values {
        font-size: 36px;
    }
}

.philosophy__values p {
    margin: 0 0 10px;
}

@media (max-width: 767px) {
    .philosophy__values p {
        margin: 0 0 5px;
        font-size: 24px;
    }
}

.philosophy__values p:last-child {
    margin-bottom: 0;
}

.philosophy__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 20px;
    flex: 1 0 30%;
}

@media (max-width: 767px) {
    .philosophy__logo {
        align-self: end;
        justify-content: flex-end;
        align-items: center;
    }
}

.philosophy__logo img {
    max-width: 100%;
    height: auto;
}

.philosophy__logo p {
    font-size: 32px;
    letter-spacing: 10px;
    margin: 0;
    text-align: right;
}

@media (max-width: 991px) {
    .philosophy__logo p {
        font-size: 24px;
        letter-spacing: 5px;
    }
}

@media (max-width: 767px) {
    .philosophy__logo p {
        text-align: center;
    }
}

.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 0;
    }
}

.footer__grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

@media (max-width: 767px) {
    .footer__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 25px;
    }
}

.footer__content {
    font-size: 24px;
    line-height: 1.5;
    display: flex;
    gap: 40px;
}

.footer__content a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

@media (max-width: 767px) {
    .footer__content a {
        justify-content: flex-start;
    }
}

@media (max-width: 991px) {
    .footer__content {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .footer__content {
        display: contents;
        font-size: 12px;
        line-height: 14px;
    }

    .footer__content p:last-child {
        grid-column-start: 1;
        grid-row-start: 2;
    }
}

.footer__logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .footer__logo img {
        max-width: 100px;
    }
}
