/*#content.page {
	padding: 85px 0;
}
#content.page h2 {
	font-size: 36px;
	margin: 0 0 65px 0;
	font-family: Roboto;
    font-weight: 800;
    color: #000;
}
.page-table {
	width: 100%;	
	margin-bottom: 65px;
}
.page-table tr {}
.page-table tr td {
	padding: 4px 15px;
	font-family: "Poppins";
	font-size: 14px;
	color: #737373;
}
.page-table tr td a {
	color: #737373;
	text-decoration: none;
}
.page-table tr td a:hover, .page-table tr td a:focus {
	color: #737373;
	text-decoration: underline;
}
.page-table tr td:first-child {
	padding-left: 0;
}
.page-table tr td:last-child {
	padding-right: 0;
	text-align: right;
}
.page-table tr td strong {
	color: #000000;
	font-weight: 700;
}
.page-table tr.page-table__title td {
	text-align: left;
	font-size: 16px;
	color: #000000;
	font-weight: 700;
	padding: 32px 0;
}
.page-table tr:first-child.page-table__title td {
	padding-top: 0;
	padding-bottom: 5px;
}
.page-table.page-table--bordered {margin-bottom: 125px;}
.page-table.page-table--bordered table {width: 100%;}
.page-table.page-table--bordered > tbody > tr > td {border: 1px solid #e6e6e6;padding: 25px 30px;}
.page-table.page-table--bordered tr td:last-child {text-align: left;}
.page-table.page-table--bordered > tbody > tr.spacer {height: 3px;}
.page-table.page-table--bordered > tbody > tr.spacer > td {border: none;padding: 0;}*/

.section-title {
    font-size: 3.7rem;
}

@media (max-width: 575px) {
    .section-title {
        font-size: 2.8rem;
    }
}

.section-intro {
    position: relative;
    background: none;
    overflow: hidden;
    --parallax-y: 0px;
}

.section-intro::after,
.section-intro::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    will-change: transform;
    z-index: -1;
}

.section-intro::before {
    top: 0;
    height: 100%;
    background-image: url("../img/hp-bg-back.svg");
    background-size: cover;
}

@keyframes slideUpFadeAfter {
    0% {
        opacity: 0;
        transform: translate3d(0, calc(var(--parallax-y) + 5rem), 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translate3d(0, var(--parallax-y), 0);
    }
}

.section-intro::after {
    top: -7.5%;
    height: 120%;
    background-image: url("../img/hp-bg-front.svg");
    background-size: 100% auto;
    transform: translate3d(0, var(--parallax-y), 0);
    pointer-events: none;
    opacity: 0;
    animation-name: slideUpFadeAfter;
    animation-duration: 1.25s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@media (max-width: 1600px) {
    .section-intro::after {
        top: -3.5%;
    }
}

@media (max-width: 1400px) {
    .section-intro::after {
        top: -2%;
    }
}

@media (max-width: 1200px) {
    .section-intro::after {
        top: 0;
        background-size: cover;
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(2rem);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-2rem);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-intro-img {
    position: relative;
}

.section-intro-img img:first-child {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    animation: none;
}

.section-intro-img-name-k,
.section-intro-img-name-o,
.section-intro-img-name-s,
.section-intro-img-name-f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.section-intro-img-name-k {
    animation-name: slideUpFade;
    animation-delay: 0.1s;
}

.section-intro-img-name-o {
    animation-name: slideDownFade;
    animation-delay: 0.2s;
}

.section-intro-img-name-s {
    animation-name: slideUpFade;
    animation-delay: 0.3s;
}

.section-intro-img-name-f {
    animation-name: slideDownFade;
    animation-delay: 0.4s;
}

.section-dropdown .section-dropdown-item .section-dropdown-header .section-dropdown-title {
    position: relative;
}

.section-dropdown .section-dropdown-item .section-dropdown-header .section-dropdown-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 100%;
    background-image: url("../img/k-ico-2.svg");
    background-repeat: no-repeat;
    background-position: center left;
    opacity: 0;
    transition-duration: .25s;
}

.section-dropdown .section-dropdown-item .section-dropdown-header .section-dropdown-title:hover::after,
.section-dropdown .section-dropdown-item.active .section-dropdown-header .section-dropdown-title::after {
    opacity: 1;
}

.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-body p {
    margin-bottom: 1rem;
}

footer {
    position: sticky;
    top: 100%;
}

.subpage {
    border-top: 1px solid #ececec;
}

.subpage p {
    color: #5f5f5f;
    font-family: "SpaceGrotesk-Medium";
    font-size: 1.1rem;
    line-height: 30px;
    margin-bottom: 2rem;
}

.subpage p strong {
    font-size: 1.3rem;
    color: #432229;
    font-family: "SpaceGrotesk-Bold";
}

.subpage p a {
    color: #38aebd;
    text-decoration: none;
}

.subpage p a:hover {
    text-decoration: underline;
}

.subpage iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
}

.button-red {
    background-color: #7a2324;
    border: 2px solid #7a2324;
    color: #fff;
    font-size: 1.2rem;
    font-family: "SpaceGrotesk-Medium";
    padding: .75rem 1.25rem;
    margin-top: 3rem;
    margin-bottom: -1.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    transition-duration: .15s;
}

.button-red:hover {
    background-color: #fff;
    color: #7a2324;
}

.button-red svg path {
    fill: #fff !important;
    transition-duration: .15s;
}

.button-red:hover svg path {
    fill: #7a2324 !important;
}

.subpage .section-news > .row {
    gap: var(--bs-gutter-x) 0;   
}
@media (max-width: 1200px) {
    .button-red {
        margin-top: 1.5rem;
        margin-bottom: 0;
    }

    .section-news .section-news-item {
        margin-bottom: 0;
    }

    .subpage .section-news > .row {
        gap: 0;   
    }

    .section-news .row > div{
        margin-bottom: var(--bs-gutter-x);
    }
}