@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');

* {
    box-sizing: border-box;
    color: var(--black);
}

:root {
    --black: #000;
    --white: #FFF;
    --text-blue: #01BBFB;
    --text-orange: #EE7127;
    --text-yellow: #FFA525;

    --font1: "Montserrat", sans-serif;
    --font2: 'Unbounded';

    --body-bg: #EDEDED;

    --button-bg: #8925BF;
    --button-bg2: #F6E7FF;
    --button-bg3: #E1E1E1;

    --text: #000;
    --orange-button: linear-gradient(180deg, #FFAC49, #FC8843);
    --blue-button: linear-gradient(180deg,rgba(1, 187, 251, 1) 0%, rgba(0, 134, 192, 1) 100%);;

}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: var(--base-text);
    background-color: var(--body-bg);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    width: 100%;
    font-family: var(--font1);
}

main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    height: 100%;
}

input {
    outline: 0;
}

section {
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    width: 100%;
}

button {
    text-wrap: nowrap;
}

button {
    transition: all 0.5s;
}
button:hover {
    transform: scale(1.05);
    cursor: pointer;
}

a {
    width: fit-content;
}

a.bordered {
    border-bottom: 1px solid var(--text);
}

p {
    margin: 0;
}

a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s;
}
a:hover {
    text-decoration: none;
    transform: scale(1.05);
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}
li {
    margin-bottom: 5px;
}

.text-center {
    text-align: center;
}
.padding-top-20 {
    padding-top: 20px;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
a img {
    border: 0!important;
    text-decoration: none;
}

.row {
    display: flex;
    flex-direction: row;
}
.nowrap {
    flex-wrap: nowrap;
}
.column {
    display: flex;
    flex-direction: column;
}
.align-items-center {
    align-items: center;
}
.gap5 {
    gap: 5px;
}
.gap10 {
    gap: 10px;
}
.gap15 {
    gap: 15px;
}
.gap20 {
    gap: 20px;
}
.gap25 {
    gap: 25px;
}
.gap30 {
    gap: 30px;
}
.gap35 {
    gap: 35px;
}
.gap40 {
    gap: 40px;
}
.w100 {
    width: 100%;
}
.h100 {
    height: 100%;
}
.w50 {
    width: 50%;
}
.grid2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.grid3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.grid4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.grid5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.space-between {
    justify-content: space-between;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}

@media (min-width: 0) and (max-width: 1023px) {
    .mw100 {
        width: 100% !important;
    }
    a:has(.mw100) {
        width: 100%;
    }
    .mw50 {
        width: 50%;
    }
    .mrow {
        display: flex;
        flex-direction: row;
    }
    .mcolumn {
        display: flex;
        flex-direction: column;
    }
    .mgrid1col {
        grid-template-columns: repeat(1, 1fr);
    }
    .mgrid2col {
        grid-template-columns: repeat(2, 1fr);
    }
    .mgrid3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .mgrid4col {
        grid-template-columns: repeat(2, 1fr);
    }
}


section.full-width {
    padding: 0;
    width: 100vw;
    max-width: 100vw;
}

.whatsapp_icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-bottom: -3px;
    margin-right: 3px;
    background: url('/lemon/img/whatsapp_icon.svg') center center/contain no-repeat;
}

header .whatsapp_icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-bottom: -3px;
    margin-right: 3px;
    background: url('/lemon/img/whatsapp_icon.svg') center center/contain no-repeat;
}

.header-box {
    width: 100%;
    height: 100px;
    position: relative;
    z-index: 1;
    background-color: var(--body-bg);
    padding: 0 40px;
    margin: auto;

    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.header-box_inner {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 1024px) and (max-width: 1439px) {
    section,
    .header-box_inner,
    .intro-box__inner {max-width: 1024px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    section,
    .header-box_inner,
    .intro-box__inner {max-width: 1440px;
    }
}

@media (min-width: 1920px) and (max-width: 3479px) {
    section,
    .header-box_inner,
    .intro-box__inner {max-width: 1920px;
    }
}
@media screen and (min-width: 3480px) {
    section,
    .header-box_inner,
    .intro-box__inner {max-width: 2400px;
    }
}

.header-box_inner .logo,
.header-box_inner .logo img {
    width: auto;
    height: 25px;
}

.header-box_inner .mobile-menu {
    display: none;
}

.menu-button {
    padding: 10px 20px !important;
}

.header-box_inner .menu {
    padding: 0 20px;
    position: relative;
}
.header-box_inner ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}
.header-box_inner ul li {
    padding: 0;
    list-style: none;
    margin: 0;
    position: relative;
}
.header-box_inner .menu li {
    transition: all 0.3s ease-in-out;
}
.header-box_inner .menu li:hover {
    transform: scale(1.05);
    cursor: pointer;
}
.header-box_inner .menu li a i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}
.header-box_inner .menu li a {
    font-size: 16px;
    font-weight: 400;
    color: #151515;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

@media (min-width: 1023px) and (max-width: 1439px) {
    .header-box_inner .menu li a {
        font-size: 14px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .header-box_inner .menu li a {
        font-size: 16px;
}
}

@media (min-width: 1920px) and (max-width: 3479px) {
    .header-box_inner .menu li a {font-size: 16px;}
}
@media screen and (min-width: 3480px) {
    .header-box_inner .menu li a {font-size: 30px;}
    .header-box_inner .number button {
        font-size: 30px;}
}


.header-box_inner .number button {
    padding: 8px 16px;
    border-radius: 20px;
    border: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font2);
}



.mobile-menu-box {
    display: none;
}


.mobile-menu .burger {
    width: 16px;
    height: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
    position: relative;
}
.mobile-menu .burger span {
    height: 3px;
    width: 100%;
    background-color: var(--text-yellow);
    display: block;
    border-radius: 4px;
}
.mobile-menu .burger span:before {
    width: 100%;
    content: '';
    height: 3px;
    border-radius: 4px;
    background-color: var(--text-yellow);
    display: block;
    position: absolute;
    top: 0;
}
.mobile-menu .burger span:after {
    width: 100%;
    content: '';
    height: 3px;
    border-radius: 4px;
    background-color: var(--text-yellow);
    display: block;
    position: absolute;
    bottom: 0;
}
.mobile-menu-box {
    width: 100vw;
    height: 100vh;
    background-color: #130c00ad;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}
.mobile-menu-box.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-box-inner {
    position: fixed;
    top: -100vh;
    right: 0;
    width: 100%;
    background-color: var(--body-bg);
    height: fit-content;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.5s;
    padding: 20px;
    align-items: flex-end;
    justify-content: space-between;
    overflow: auto;
}
.mobile-menu-box-inner2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}
.mobile-menu-box.active .mobile-menu-box-inner {
    top: 0;
}
.close-mobile-menu {
    width: 30px;
    height: 30px;
    display: block;
    background: url('/lemon/wp-content/uploads/2025/09/close.svg') center center/contain no-repeat;
}

.mobile-menu-list {
    width: 100%;
}
.mobile-menu-list ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 40px;
}
.mobile-menu-list ul li {
    border-bottom: 4px solid #E6E6E6;
    padding: 20px 0;
}

.mobile-menu-list ul li a .menumenu {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.mobile-menu-list ul li a .menumenu div:nth-child(2) {
    width: 100%;
    text-align: center;
}
.mobile-menu-list ul li:nth-last-child(1) {
    border-bottom: 0;
}
.mobile-menu-list ul li a {
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
}
.mobile-menu-list ul li a i {
    display: inline-block;
    margin-bottom: -3px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 10px;
}
.mobile-menu-list .logo, .mobile-menu-list .logo img {
    width: auto;
    height: 30px;
}
.mobile-menu-list .logo {
    margin-top: -53px;
    transform: translateX(-50%);
    margin-left: 50%;
}

.no-scroll {
    overflow: hidden; /* Блокируем прокрутку */
    position: fixed; /* Фиксируем положение */
    width: 100%; /* Сохраняем ширину */
}



.opacity07 {
    opacity: 0.7;
}


.basic-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000ba;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 70px 20px 20px;
    z-index: 9999;
    backdrop-filter: blur(4px);
}
.popup-content {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 400px;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    z-index: 99999;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
#main-popup {
    display: none;
}
.close-popup {
    width: 48px;
    height: 48px;
    background-color: #FFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -60px;
    top: 0;
    font-size: 24px;
    font-weight: 100;
    cursor: pointer;
}
#main-popup.active {
    display: block;
}


@media screen and (max-width: 1023px) {
    section {
        width: 100%;
    }

    .close-popup {
        width: 30px;
        height: 30px;
        background-color: #FFF;
        border-radius: 36px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 24px;
        font-weight: 100;
        border: 1px solid #ccc;
    }
    .basic-popup {
        padding: 20px;
    }


    .tabs-content .bgzero {
        display: none !important;
    }
    .main-page-2box.reverse .main-page-2box-content {
        flex-direction: column !important;
    }
    .header-box_inner .number,
    .header-box_inner .menu {
        display: none;
    }
    .header-box_inner .mobile-menu {
        display: block;
    }
}

.intro-box {
    width: 100%;
    height: calc(100vh - 120px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
}
.intro-box__inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
}
.intro-box-text {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.bg-img {
    position: absolute;
    width: calc(100% - 40px);
    height: 100%;
    top: 0;
    left: 20px;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    z-index: -1;
}
.bg-img.pc {}
.bg-img.mob {
    display: none;
}
.intro-box h1 {
    font-family: var(--font2);
    color: var(--text-orange);
    font-size: 35px;
    font-weight: 500;
    line-height: 1.2;
}
.intro-box h1 span {
    color: var(--text-yellow);
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.intro-box p {
    font-family: var(--font1);
    color: #434343;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    text-wrap: balance;
}
.btn {
    padding: 8px 24px;
    border-radius: 20px;
    border: 0;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font1);
    letter-spacing: 2%;
}

.btn-blue {
    background: var(--blue-button);
}
.btn-orange {
    background: var(--orange-button);
}
.btn-blue-zero {
    background-color: transparent;
    border: 1px solid var(--text-blue);
    color: var(--text-blue);
}

.box2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

}
.box2_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.box2-item-left,
.box2-item-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

h1,
h2,
h3 {
    font-family: var(--font2);
}

h2 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
}

.text-blue {
    color: var(--text-blue);
    font-size: inherit;
    font-weight: inherit;
}
.text-orange {
    color: var(--text-orange);
    font-size: inherit;
    font-weight: inherit;
}
.box2 .box2_item .box2_img {
    width: 100%;
    height: 310px;
    border-radius: 10px;
    padding: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.box2 .box2_item .box2_img_icon {
    width: 50px;
    height: 50px;
    background-color: #D9D9D980;
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px 35px;
    border: 1px solid #FFF;
}
.box2 .box2_item.blue-box h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--text-blue);
    text-transform: uppercase;
}
.box2 .box2_item.orange-box h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--text-orange);
    text-transform: uppercase;
}
.box2 .box2_item p {
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

.box2 .box2_item.blue-box p.accent {
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-blue);
}
.box2 .box2_item.orange-box p.accent {
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-orange);
}
.box2 .box2_buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.box2 .box2_buttons {

}

.box2_item.blue-box {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--text-blue);
}
.box2_item.orange-box {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--text-orange);
}
.box2_item.blue-box .box-item-zag2 {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--text-blue);
    padding-bottom: 10px;
    color: var(--text-blue);
    font-size: 25px;
    font-weight: 400;
}
.box2_item.orange-box .box-item-zag2 {
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--text-orange);
    padding-bottom: 10px;
    color: var(--text-orange);
    font-size: 25px;
    font-weight: 400;
}
a:has(.box-item-zag2) {
    width: 100%;
}
.box2 .box2-item-middle {
    display: none;
}
.tochka {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 18px;
}
.box2_item.orange-box .tochka {
    background-color: var(--text-orange);
}
.box2_item.blue-box .tochka {
    background-color: var(--text-blue);
}

.box3 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.box3 .left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
.box3 .right {
    width: 100%;
    height: 100%;
    min-height: 333px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 70%;
    border-radius: 10px;
}

.box4 h2 {
    text-align: center;
}

.gallerybox {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 513px;
    gap: 20px;
}
.gallerybox .first {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    transition: all 0.5s;
}
.gallerybox .second-wrap {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.gallerybox .second-wrap .second-item {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    transition: all 0.5s;
}
.gallerybox .first:hover,
.gallerybox .second-wrap .second-item:hover {
    transform: scale(1.05);
    cursor: pointer;
}
.box5 {
    position: relative;
}
.box5_inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
}
.box5 .bg-img {
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    z-index: -1;
}
.bg-img.pc {}
.bg-img.mob {
    display: none;
}
.box5_inner {
    margin: 0 auto;
    max-width: 1024px;
    width: 100%;
    padding: 20px;
    margin-top: 60px;
}


.box5 {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box5_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}
.box5_item .box5_item_inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}
.box5_item .box5_item_inner img,
.box5_item .box5_item_inner2 img {
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
}
.box5_item .box5_item_inner a {
    color: var(--text-blue);
    font-size: 20px;
    font-weight: 500;
}
.box5_item .box5_item_inner a {
    color: var(--text-blue);
}
.box5_item .box5_item_inner span {
    color: #000;
}
.box5_item .box5_item_inner a,
.box5_item .box5_item_inner span {
    font-size: 20px;
    font-weight: 500;
}
.box5_item  .box5_item_inner2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.footerbox {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font2);
    text-align: center;
    padding: 20px;
    background-color: var(--text-blue);
    border-radius: 20px 20px 0 0;
    width: 100%;
    margin-bottom: -20px;
}
.box5_item h3 {
    font-size: 20px;
}


@media screen and (max-width: 1023px) {
    .bg-img.mob {
        display: block;
    }
    .bg-img.pc {
        display: none;
    }
    .box-item-zag2,
    .box2-item-middle{
        display: none;
    }
    .intro-box h1 br {
        display: none;
    }
    .bg-img {
        background-position: top center;
    }
    .intro-box__inner {
        justify-content: space-between;
    }
    .intro-box-text,
    .intro-box-btn {
        width: 100%;
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }
    .box3 {
        grid-template-columns: repeat(1, 1fr);
    }
    .gallerybox {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 20px 20px;
        grid-template-areas:
"first first"
". ."
". .";
    }
    .gallerybox .first {
        grid-area: first;
    }
    .footerbox {
        font-size: 12px;
    }
    .box5_item h3 {
        font-size: 15px;
    }
    .box5_item .box5_item_inner a, .box5_item .box5_item_inner span {
        font-size: 15px;
    }
    .box5_inner {
        margin-top: 0;
    }
    .box5 {
        min-height: 840px;
    }

}



@media screen and (max-width: 639px) {
    .gallerybox {
        display: flex;
        grid-template-columns: 1fr;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        align-content: center;
        flex-wrap: nowrap;
    }
    .gallerybox .first {
        min-height: 450px;
    }
    .gallerybox .second-item {
        min-height: 200px;
    }

    .intro-box h1 {
        font-size: 23px;
    }
    .intro-box p {
        font-size: 15px;
    }
    .bg-img.mob {
        display: block;
        max-height: 528px;
        left: 0;
        width: 100%;
        top: 165px;
    }
    .box2 {
        grid-template-columns: repeat(1, 1fr);
    }
    h2 {
        text-align: center;
        font-size: 20px;
    }
    .box2 .btn {
        font-size: 12px;
    }
    .intro-box {
        height: 540px;
    }

}
@media (min-width: 640px) and (max-width: 1023px) {
    .bg-img.mob {
        display: block;
        max-height: 533px;
        left: 20px;
        width: calc(100% - 40px);
        top: 165px;
    }
    .intro-box {
        height: 540px;
    }
    .box2 {
        grid-template-columns: repeat(1, 1fr);
    }
    h2 {
        text-align: center;
    }
}
@media (min-width: 1024px) and (max-width: 1439px) {
    .header-box_inner .logo {
        position: absolute;
        top: 120px;
    }
    .header-box_inner .menu {
        padding: 0;
    }
    .header-box_inner ul {
        gap: 15px;
    }
    .box-item-zag2 {
        display: none;
    }
    .box2-item-middle{
        display: none;
    }

}


@media (min-width: 1440px) and (max-width: 1919px) {
    .intro-box h1 {
        font-size: 45px;
    }

    .intro-box p {
        font-size: 25px;
    }
    .box2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .box2_item {
        flex-direction: row;
    }
    .box2 .box2-item-middle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .box2-item-left, .box2-item-right {
        justify-content: space-between;
    }
    .gallerybox {
        min-height: 612px;
    }
    .box5_inner {
        max-width: 1440px;
    }
    .box5_item h3 {
        font-size: 25px;
    }
}



@media screen and (min-width: 1440px) {
    .box5_item .box5_item_inner a,
    .box5_item .box5_item_inner span {
        font-size: 25px;
    }
    .box2_img .box2_img_icon {
        display: none;
    }
}
@media screen and (min-width: 1920px) {
    .intro-box__inner {
        max-width: 1920px;
    }
    .box2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .box2_item {
        flex-direction: row;
    }
    .box2 .box2-item-middle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .box2-item-left, .box2-item-right {
        justify-content: space-between;
    }
    .box5_inner {
        max-width: 1920px;
    }
    .box5_item h3 {
        font-size: 27px;
    }
    .box3 .left p {
        font-size: 25px;
    }
}

