@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-Thin.woff2') format('woff2'),
        url('fonts/Jost-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-ExtraLight.woff2') format('woff2'),
        url('fonts/Jost-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-Light.woff2') format('woff2'),
        url('fonts/Jost-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-Medium.woff2') format('woff2'),
        url('fonts/Jost-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-SemiBold.woff2') format('woff2'),
        url('fonts/Jost-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Jost';
    src: url('fonts/Jost-ExtraBold.woff2') format('woff2'),
        url('fonts/Jost-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


body * {
    font-family: "Jost", sans-serif;
}

.container {
    width: 1440px;
    max-width: 100%;
    margin: 0px auto;
    padding: 40px 20px;
}

.grid {
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.section-title {
    font-weight: 500;
    color: #202c5e;
    line-height: 1.2;
    font-size: 40px;
    margin-bottom: 30px;
}

.header {
    position: absolute;
    width: 100%;
    z-index: 2;
}

.header__content {
    align-items: center;
}

.header__logo {
    grid-column: 1/3;
}

@media (max-width: 960px) {
    .header__logo {
        grid-column: 1/4;
    }
}

@media (max-width: 768px) {
    .header__logo {
        grid-column: 1/13;
    }
}

.header__logo img {
    width: 165px;
}

@media (max-width: 768px) {
    .header__logo img {
        margin: 0px auto;
    }
}

.header__menu {
    display: flex;
    justify-content: center;
    grid-column: 3/10;
}

@media (max-width: 1100px) {
    .header__menu {
        display: none;
    }
}

.header__menu ul {
    gap: 40px;
    display: flex;
    justify-content: center;
}

.header__menu ul li a {
    padding: 10px 5px;
    box-sizing: border-box;
    display: inline-block;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    transition: 0.2s;
}

.header__menu ul li a:hover {
    color: #f24209;
}

.header__burger {
    display: none;
}

@media (max-width: 1100px) {
    .header__burger {
        display: block;
    }

    .header__burger img {
        width: 45px;
        height: 45px;
    }
}

.header__phone {
    grid-column: 10/13;
}

@media (max-width: 1100px) {
    .header__phone {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 1100px) {
    .header__phone {
        grid-column: 8/13;
    }
}

@media (max-width: 768px) {
    .header__phone {
        grid-column: 1/13;
        justify-content: space-between;
    }
}

.header__phone a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 8px 30px;
    color: #111;
    font-size: 16px;
    border-radius: 60px;
    background: #cbd2d7;
    cursor: pointer;
    transition: 0.2s;
}

.header__phone a:hover {
    background: #f24209;
    color: white;
}

.banner {
    padding-top: 150px;
    background-image: url("/wp-content/uploads/2026/05/bg-header.webp");
    background-position: center;
    background-size: cover;
}

.banner__content {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 650px;
    margin: 0px auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .banner__content {
        min-height: 400px;
    }
}

.banner__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/wp-content/uploads/2026/05/bg-title.webp");
    width: 1200px;
    height: 600px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: calc(50% - 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

@media (max-width: 1200px) {
    .banner__content::before {
        width: 100%;
    }
}

.banner__content h1 {
    text-align: center;
    font-weight: 600;
    font-size: 60px;
    color: #000;
    line-height: 1.1;
    margin-top: 0px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .banner__content h1 {
        font-size: 40px;
        line-height: 1;
    }
}

.banner__content p {
    font-size: 25px;
    color: #202c5e;
    line-height: 1.1;
    text-align: center;
    width: 450px;
    max-width: 100%;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .banner__content p {
        line-height: 1;
    }
}

.banner__buttons {
    text-align: center;
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.banner__buttons a {
    font-size: 20px;
}

.gallery__images {
    grid-column: span 8;
}

@media (max-width: 996px) {
    .gallery__images {
        grid-column: span 12;
        order: 1;
    }
}

.gallery__images-target {
    padding-top: 70%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.gallery__images-target .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.gallery__images-target .arrow img {
    width: 60px;
    height: 60px;
}

.gallery__images-target .arrow.left {
    left: 0;
}

.gallery__images-target .arrow.left img {
    transform: translateY(-50%) rotate(180deg);
}

.gallery__images-target .arrow.right {
    right: 0;
}

.gallery__images-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0px;
}

@media (max-width: 996px) {
    .gallery__images-list {
        grid-template-columns: repeat(6, 1fr);
    }
}

.gallery__images-list div {
    padding-top: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid black;
    cursor: pointer;
    transition: 0.2s;
}

.gallery__images-list div.active,
.gallery__images-list div:hover {
    border-color: #f24209;
}

.gallery__content {
    grid-column: span 4;
}

@media (max-width: 996px) {
    .gallery__content {
        grid-column: span 12;
        order: 2;
    }
}

.gallery__content h3 {
    font-weight: 500;
    color: #202c5e;
    line-height: 1.2;
    font-size: 34px;
    margin-top: 0px;
    margin-bottom: 30px;
}

.gallery__content p {
    font-size: 21px;
    margin-top: 0px;
    margin-bottom: 28px;
}

.about {
    background: #efefef;
}

.about-grid .grid {
    row-gap: 50px;
}

.about-grid__item {
    grid-column: span 4;
}

@media (max-width: 996px) {
    .about-grid__item {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .about-grid__item {
        grid-column: span 12;
    }
}

.about-grid__item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.about-grid__item-header h3 {
    flex: 1;
    margin: 0px;
    color: #202c5e;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
}

.about-grid__item p {
    font-size: 17px;
}

.about .grid>div {
    grid-column: span 6;
}

.about__image img {
    height: auto !important;
}

@media (max-width: 768px) {
    .about .grid>div {
        grid-column: span 12;
    }
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.about__content h3 {
    font-weight: 500;
    color: #202c5e;
    line-height: 1.2;
    font-size: 34px;
    margin-top: 0px;
    margin-bottom: 26px;
}

.about__content p {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 24px;
}

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

.about__slider {
    margin-top: 100px;
    margin-left: -10px;
    margin-right: -10px;
}

.about__slider-item {
    margin: 0px 10px;
    padding-top: 70%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer {
    background: #222530;
}

.footer__logo img {
    margin: 0px auto;
    width: 165px;
}

.footer h2 {
    margin-top: 20px;
    text-align: center;
    color: white;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
}

.footer p {
    color: white;
    font-size: 18px;
    text-align: center;
    width: 500px;
    max-width: 100%;
    margin: 0px auto;
    margin-top: 20px;
}

.footer p a {
    color: white;
}

.footer__phone {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 8px 30px;
    margin: 0px auto;
    color: #111;
    font-size: 16px;
    border-radius: 60px;
    background: #cbd2d7;
    cursor: pointer;
    transition: 0.2s;
}

.footer__phone:hover {
    background: #f24209;
    color: white;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.main_items-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.main_items-arrow img {
    width: 60px;
    height: 60px;
}

.main_items-arrow.prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}

.main_items-arrow.next {
    right: 0;
}

.arrow {
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: 0.2s;
    opacity: 0;
}

.mobile-menu.active {
    left: 0;
    opacity: 1;
}

.mobile-menu__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 20px;
}

.mobile-menu__content ul {
    margin-top: 10px;
}

.mobile-menu__content ul li a {
    display: block;
    padding: 8px 0px;
    font-size: 19px;
    color: #000;
}

.mobile-menu__close {
    text-align: right;
    cursor: pointer;
}

.mobile-menu__close img {
    margin-right: 0px;
    margin-left: auto;
    width: 35px;
    height: 35px;
}

:root {
    --font-family: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: black;
}

body,
:where(blockquote, figure):where([class]) {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
}

:where(h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ul,
    ol,
    dl):where([class]) {
    margin-block: 0;
}

:where(ul[class]) {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

input,
textarea,
select,
button {
    font: inherit;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    line-height: 1.5;
}

/*# sourceMappingURL=style.css.map */
.popup-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: 0.2s;
    display: none;
}

.popup-gallery.active {
    display: block;
}

.popup-gallery__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.popup-gallery__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10px;
}

.popup-gallery__close img {
    width: 45px;
    height: 45px;
}

.popup-gallery .arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


.popup-gallery .arrow img {
    width: 60px;
    height: 60px;
}

.popup-gallery .arrow.prev {
    left: 20px;
    transform: translateY(-50%) rotate(180deg);
}

.popup-gallery .arrow.next {
    right: 20px;
}

.ferst-section {
    padding-top: 150px;
}

@media(max-width: 768px) {
    .ferst-section {
        padding-top: 220px;
    }
}

.blog-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.blog-item__image {
    grid-column: span 4;
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.blog-item__content {
    grid-column: span 8;
}

.blog-item__content h3 {
    font-weight: 500;
    color: #202c5e;
    line-height: 1.2;
    font-size: 34px;
    margin-top: 0px;
    margin-bottom: 30px;
}

.blog-item__content p {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 28px;
}

.news-item__image {
    width: 300px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

@media(max-width: 768px) {
    .blog-item__image {
        grid-column: span 12;
    }

    .news-item__image {
        margin: 0px auto;
        margin-bottom: 30px;
        float: none;
        border-radius: 10px;
    }

    .blog-item__content {
        grid-column: span 12;
    }
}

.paragraph p {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 24px;
}