/*#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;
}

.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;
}

@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;
    }
}

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

.section-intro-img-name-hover {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    transition-duration: .25s;
}

.section-intro-img:hover .section-intro-img-name-hover {
    opacity: 1;
}

.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;
}