.page-template-philosophy .header {
    background: var(--white);
    padding: 5px 0;
}
.page-template-philosophy .header .header_title, .page-template-philosophy .header .right a, .page-template-philosophy  #burger .line {
    color: var(--green-text);
} 
.page-template-philosophy .header .left svg path {
    fill: var(--green-text);
}
.page-template-philosophy #burger .line {
    background: var(--green-text);
}

.philosophy {
    position: relative;
}
.philosophy::before {
    content: "";
    background: var(--green-text);
    width: 50vw;
    height: 100vh;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.philosophy_inner {
    display: flex;
    align-items: center;
    height: 100vh;
    gap: 100px;
}
.philosophy_inner .left {
    /* background: var(--green-text); */
    flex: 1;
    width: 100%;
}
.philosophy_inner .left img {
    width: 100%;
    height: 100%;
    max-width: 20vw;
    margin: auto;
    display: flex;
}
.philosophy_inner .right {
    width: 100%;
    flex: 1;
    padding: var(--spacing);
}
.philosophy_inner .right .title {
    font-size: var(--size-title);
    color: var(--black);
    font-weight: 400;
    margin-bottom: var(--spacing-text);
}
.philosophy_inner .right .text p, .philosophy_inner .right .text a {
    font-size: var(--size-text);
    color: var(--black);
}
.philosophy_inner .right .text a {
    text-decoration: underline;
}

@media (min-width: 993px) and (max-width: 1400px) {
.philosophy_inner .right {
    height: 80vh;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
}
@media (max-width: 992px) {
.philosophy::before {
    width: 100vw;
    height: 40vh;
}

.philosophy_inner .left img {
    max-width: 100%;
    max-height: 25vh;
    width: auto;
}
.philosophy_inner{
    height:100%;
    min-height:0;
    flex-direction:column;
    gap:20px;
}

.philosophy_inner .left{
    flex:0 0 auto;
    padding-top:var(--spacing-large);
}

.philosophy_inner .right{
    flex:1;
    min-height:0;
    overflow-y:auto;
}
}