

/* Start:/local/templates/toyama/css/main.css?178265382710896*/
body {
    color: #2A2A2F;
    background: #FFFFFF;
}

.container-main {
    padding: 1.5rem;
    margin: 0 auto;
}

.btn-main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 15px 30px;
    color: #2A2A2F;
    background: #FFFFFF;
    font-size: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: background-color .2s;
}

.btn-main:hover {
    color: #FFFFFF;
    background: #DB0303;
    text-decoration: none;
}



.header-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
}

.header-main img.logo {
    display: block;
    object-fit: contain;
    height: 120px;
    width: 340px;
    max-width: 340px;
    margin-top: -1rem;
}

.header-main .container-main {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 15px 0;
}

.header-content {
    display: flex;
    gap: 3rem;
    margin-top: 15px;
}

.header-content nav {
    display: none;
}

.header-content nav ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-content nav a {
    position: relative;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border .2s;
}

.header-content nav a:hover {
    border: 2px solid #000000;
}

#desktop-menu-toggle {
	background: none;
	padding: .5rem .5rem 10px;
	border-radius: 10px;
	border: 2px solid transparent;
	transition: border .2s;
	cursor: pointer;
}

#desktop-menu-toggle:hover {
	border: 2px solid #000000;
}


.header-content .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-top: 0;
	margin-right: 1rem;
}





.main-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.main-slider__overlay .container-main {
    height: 100%;
}

.main-slider__overlay .hero-content .wrapper,
.main-slider__overlay .hero-content .wrapper a {
    pointer-events: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 3rem;
    width: 100%;
    height: 100%;
    margin-left: 0;
    padding-top: 200px;
    padding-bottom: 1.5rem;
}

.hero-content .hero-heading {
    display: none;
    width: 490px;
    height: 133px;
}

.hero-content .hero-subheading {
    display: none;
    width: 497px;
    height: 87px;
    margin-bottom: 1rem;
}

.hero-content .hero-heading-mob {
    display: block;
    width: 80vw;
    margin-top: auto;
    max-width: 400px;
}

.hero-content .hero-subheading-mob {
    display: block;
    width: 80vw;
    max-width: 400px;
}

.hero-content .wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-content .btn-main {
    font-size: 18px;
}

.hero-content .wrapper .btn-main:last-child span br {
}

.hero-content .btn-main .arrow {
    position: absolute;
    opacity: 0;
    transition: opacity .2s;
}

.hero-content .btn-main:hover .arrow,
.hero-content .btn-main:active .arrow {
    opacity: 1;
}

.hero-content .btn-main .arrow-black {
    display: block;
    opacity: 1;
    transition: opacity .1s;
}

.hero-content .btn-main:hover .arrow-black,
.hero-content .btn-main:active .arrow-black {
    opacity: 0;
}







section#about {
    padding: 100px 0;
}

section#about h1 {
    margin-top: 0;
    margin-bottom: 3rem;
    font-weight: bold;
    font-size: 54px;
    color: #E40613;
}

section#about p {
    margin-top: 0;
    font-size: 16px;
    margin-bottom: .75rem;
}

section#about p.mb-5 {
    margin-bottom: 3rem;
}






section#catalog {
    padding: 60px 0;
    padding-top: 350px;
    /*background: url("/local/templates/toyama/images/main/section3-bg-mob.png") no-repeat;*/
    background: url("/local/templates/toyama/css/../images/main/section3-bg-mob.png") no-repeat;
    background-size: contain;
}

section#catalog .container-main {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.category-item {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    display: grid;
    place-items: center;
    width: 75px;
    height: 75px;
    background: #D2D2D2;
    border-radius: 50%;
}

.category-icon img {
    width: 50px;
    height: 50px;
}

.category-item h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: "Science Gothic", sans-serif;
    font-weight: 600;
    font-size: 24px;
    font-style: italic;
    color: #E40613;
}

.category-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: -1rem;
    max-width: 690px;
}

.category-item p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 1.5;
}

.category-item p:last-child {
    margin-bottom: 0;
}







section#resources {
    padding: 100px 0;
    background: url("/local/templates/toyama/images/main/section4-bg.png") no-repeat;
    background-size: cover;
}

section#resources .container-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.resource-item {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 521px;
    height: 340px;
    padding: 30px;
    background: #D8DEDF;
    font-size: 18px;
}

.resource-item h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 30px;
}

.resource-item p {
    margin-top: 0;
    margin-bottom: 0;
}

.button-more-wrapper {
    margin-top: auto;
    position: relative !important;
    left: 0 !important;
    right: 20px;
    width: max-content;
    height: max-content;
    overflow: hidden;
    border-radius: 20px;
    background-color: #2a2a2f;
}

.button-more-wrapper::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    background-color: var(--red);
    left: -200%;
    transform: skew(-30deg);
    animation-name: slide-out;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

.button-more-wrapper:hover::before {
    animation-name: slide-in;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

@keyframes slide-in {
    to {
        left: -10%;
    }
}

@keyframes slide-out {
    0% {
        left: -10%;
    }
    100% {
        left: 200%;
    }
}

.button-more {
    position: relative;
    width: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    flex-grow: 1;
    padding: 9px;
    background-color: transparent;
    border-radius: 20px;
    text-decoration: none;
    transition: padding .2s, max-width .2s;
}

.button-more:hover {
    text-decoration: none;
}

.resource-item:hover .button-more {
    width: max-content;
    max-width: 150px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    height: 40px;
    flex-grow: 1;
    padding: 9px 25px;
}

.button-more > span {
    display: none;
}

.resource-item:hover .button-more > span {
    display: inline-block;
}

.button-more > img {
    position: absolute;
    display: inline-block;
}

.resource-item:hover .button-more > img {
    display: none;
    opacity: 0;
}

.button-more:hover {
    color: #FFF;
}

.button-more span {
    color: #FFF;
}





.main-slider {
    position: relative;
    overflow: hidden;
    height: 100dvh;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.main-slider.is-dragging {
    cursor: grabbing;
}

.main-slider__viewport {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    height: 100%;
    touch-action: none;
}

.main-slider.is-dragging .main-slider__viewport,
.main-slider.is-dragging .main-slider__track {
    cursor: grabbing;
}

.main-slider.is-dragging a {
    pointer-events: none;
}

.main-slider__track {
    display: flex;
    height: 100%;
    will-change: transform;
    backface-visibility: hidden;
}

.main-slider__slide {
    flex: 0 0 100%;
    height: 100%;
    min-width: 0;
}

.main-slider__slide--fallback {
    background: url("/local/templates/toyama/css/../images/main/hero-bg-mob.png") no-repeat center center;
    background-size: cover;
}

.main-slider__bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.main-slider--desktop {
    display: none;
}

.main-slider--mobile {
    display: block;
}

.main-slider__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    transform: translateX(-50%);
    pointer-events: auto;
}

.main-slider--single .main-slider__dots {
    display: none;
}

.main-slider__dot {
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: #FFFFFF;
    border-radius: 999px;
    color: transparent;
    cursor: pointer;
    transition: background .2s;
}

.main-slider__dot.is-active {
    background: #DB0303;
}

#button-up {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    color: #FFF;
    outline: none;
    border: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    height: 50px;
    width: 50px;
    background-color: var(--red);
    box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    z-index: 10;
    transition: all .3s;
    cursor: pointer;
}

#button-up .pulse {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    position: absolute;
    z-index: -1;
    transform: scale(0);
    background-color: var(--red);
    animation: pulsation 2s infinite;
}

@keyframes pulsation {
    0% { transform: scale(0); opacity: 1; }
    50% { opacity: 1; }
    to { transform: scale(1); opacity: 0; }
}

#button-up:hover {
    background-color: var(--red-focus);
    bottom: 53px;
    box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.2);
}

.page-main .site-main {
    padding: 0;
}

#top-anchor {
    height: 0;
}

/* End */


/* Start:/local/templates/toyama/css/main.responsive.css?17826538263099*/
@media only screen and (max-width: 532px) {
    .menu .menu__dropdown {
        top: 0;
    }
}

@media (min-width: 640px) {
    section#catalog {
        padding: 60px 0;
        padding-top: 500px;
    }
}

@media (min-width: 768px) {
    .header-content .wrapper {
        margin-top: .5rem;
        margin-right: 0;
    }

    .main-slider__slide--fallback {
        background-image: url("/local/templates/toyama/css/../images/main/hero-bg.png");
    }

    .hero-content .btn-main {
        font-size: 22px;
    }

    .hero-content .hero-heading-mob {
        display: none;
    }

    .hero-content .hero-subheading-mob {
        display: none;
    }

    .hero-content .hero-heading {
        display: block;
    }

    .hero-content .hero-subheading {
        display: block;
    }

    .main-slider--desktop {
        display: block;
    }

    .main-slider--mobile {
        display: none;
    }

    section#catalog {
        padding: 120px 0;
        /*background: url("/local/templates/toyama/images/main/section3-bg.png") no-repeat;*/
        background: url("/local/templates/toyama/css/../images/main/section3-bg.png") no-repeat;
        background-size: contain;
    }
}

@media (min-width: 1024px) {
    section#about p {
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .category-icon {
        width: 150px;
        height: 150px;
    }

    .category-icon img {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1280px) {
    .header-main img.logo {
        height: 170px;
        width: 400px;
        max-width: 400px;
    }

    .header-content nav {
        display: block;
    }

    .btn-main {
        padding: 15px 30px;
        color: #FFFFFF;
        background: #2A2A2F;
        font-size: 25px;
    }

    .hero-content {
        align-items: start;
        margin-left: auto;
        width: max-content;
        padding-right: 111px;
    }

    .hero-content {
        justify-content: start;
    }

    .hero-content .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero-content .btn-main .arrow {
        opacity: 1;
    }

    .hero-content .wrapper .btn-main:last-child {
        grid-column: 1 / 3;
    }

    .hero-content .btn-main:last-child br {
        display: none;
    }

    .main-slider__dots {
        bottom: 3rem;
    }
    
    .category-text {
        margin-left: 170px;
    }

    .category-item {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .category-header {
        align-items: center;
    }

    .category-item h2 {
        margin-bottom: 0.5rem;
        font-size: 48px;
    }

    .category-item p {
        font-size: 16px;
    }

    .resource-item {
        height: 322px;
        font-size: 20px;
    }
}

@media (min-width: 1536px) {
}

@media (min-width: 1660px) {
    .container-main {
        padding: 0;
        max-width: 1620px;
    }

}

@media (min-width: 2000px) {

}


/* End */


/* Start:/local/templates/toyama/components/bitrix/main.userconsent.request/cookie/style.css?17882681791174*/
.cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1100;
	background: #0a0b0d;
	color: #fff;
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.28);
}

.cookie-consent[hidden] {
	display: none !important;
}

.cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.cookie-consent__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
}

.cookie-consent__text a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.cookie-consent__text a:hover {
	color: var(--red, #df0024);
}

.cookie-consent__btn {
	flex: 0 0 auto;
	height: 40px;
	padding: 0 1.75rem;
	border: 0;
	border-radius: 20px;
	background: var(--red, #df0024);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease;
}

.cookie-consent__btn:hover {
	background: var(--red-focus, #ff0024);
}

@media (max-width: 768px) {
	.cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.cookie-consent__btn {
		width: 100%;
	}
}

/* End */


/* Start:/local/templates/toyama/styles.css?17878167709704*/
/* === base.css === */
:root {
	font-family: 'Ubuntu', sans-serif;
	--font-family-1: 'Ubuntu', sans-serif;
	--font-family-2: 'Nunito Sans', sans-serif;
	--transparent-gray: #000000A0;
	--gold: gold;
	--red: #df0024;
	--red-focus: #ff0024;
	--header-footer: #0A0B0D;
}

* {
	box-sizing: border-box;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

html,
body {
	min-height: 100vh;
}

body {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-size: 15px;
	font-family: var(--font-family-1);
	background: #FFFFFF;
	font-variant-ligatures: none;
}

body::before {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	content: "";
	background-size: 100%;
	opacity: 0.03;
	pointer-events: none;
}

img {
	max-width: 100%;
}

.site-main {
	flex: 1 0 auto;
}

.page-content {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.page-content h1 {
	margin: 0 0 1rem;
	font-size: 2rem;
	font-weight: 500;
}

.page-content p {
	margin: 0;
	line-height: 1.6;
}

#panel {
	position: relative;
	z-index: 10000;
}

.tactic-font {
	font-family: "Science Gothic", sans-serif;
}

.modal-holder {
	display: none;
}

.d-flex {
	display: flex;
}

.align-items-center {
	align-items: center;
}

.ml-3 {
	margin-left: 1rem;
}

.list-unstyled {
	list-style: none;
	padding: 0;
	margin: 0;
}

.text-white {
	color: #ffffff;
}

.container,
.container-new,
footer .container {
	width: 100%;
	padding: 1.5rem;
	margin: 0 auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1100px;
	}
}

@media (min-width: 1500px) {
	.container {
		max-width: 1400px;
	}
}

@media (min-width: 1660px) {
	.container,
	.container-new,
	footer .container {
		padding: 0;
		max-width: 1620px;
	}
}

@media (min-width: 2000px) {
	.container {
		max-width: 1620px;
	}
}

@media (min-width: 3500px) {
	.container {
		max-width: 2000px;
	}
}


/* === header.css === */
.header-new {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	background: #FFFFFF;
	padding: 0;
}

.header-new img.logo {
	display: block;
	width: 182px;
	height: 45px;
	object-fit: contain;
}

.header-new .container-new {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 15px 1.5rem;
	border-bottom: 1px solid #D8DEDF;
}

.header-new .header-content {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.header-new .header-content nav {
	display: none;
}

.header-new .header-content nav ul {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-new .header-content nav a {
	position: relative;
	font-size: 20px;
	color: #000000;
	text-decoration: none;
	display: block;
	padding: 12px 15px;
	border-radius: 10px;
	border: 2px solid transparent;
	transition: border 0.2s;
}

.header-new .header-content nav a:hover {
	border: 2px solid #000000;
}

.header-new .header-content .wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
}

#searchbar {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	height: 44px;
	flex-shrink: 0;
}

#searchbar #search-input {
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	width: 200px;
	max-width: 200px;
	height: 100%;
	margin: 0;
	padding: 0 1.25rem;
	border: 2px solid #000000;
	border-right-width: 1px;
	border-radius: 10px 0 0 10px;
	background: #ffffff;
	font: inherit;
	font-size: 16px;
	line-height: 1.2;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}

#search-input:focus {
	outline: none;
}

#search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin: 0;
	padding: 0 1rem;
	background: none;
	border: 2px solid transparent;
	border-left-width: 1px;
	border-radius: 0 10px 10px 0;
	cursor: pointer;
	transition: border-color 0.2s;
}

#search-btn img {
	display: block;
	width: 24px;
	height: 24px;
}

#searchbar:hover #search-input,
#searchbar.active #search-input {
	opacity: 1;
	pointer-events: auto;
}

#searchbar:hover #search-btn,
#searchbar.active #search-btn {
	border-color: #000000;
}

.header-new #desktop-menu-toggle {
	background: none;
	padding: 0.5rem 0.5rem 10px;
	border-radius: 10px;
	border: 2px solid transparent;
	transition: border 0.2s;
	cursor: pointer;
}

.header-new #desktop-menu-toggle:hover {
	border: 2px solid #000000;
}

.menu .menu__burger::before,
.menu .menu__burger::after {
	display: none;
}

.menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.menu .menu__burger {
	position: relative;
	width: 30px;
	height: 21px;
	cursor: pointer;
	transition: opacity 0.3s;
	z-index: 1000;
}

.menu .menu__burger:hover {
	opacity: 70%;
}

.menu .menu__burger img {
	display: block;
	width: 30px;
	height: 21px;
}

.menu .menu__burger > div {
	position: absolute;
	top: 9px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: white;
	transition: all 0.3s ease;
	border-radius: 7px;
}

.menu .menu__burger.cross > div {
	transform: scale(0);
}

.menu .menu__dropdown {
	position: fixed;
	display: flex;
	align-items: center;
	top: 0;
	right: -100vw;
	background-color: var(--transparent-gray);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	transition: right 0.5s ease-in-out;
	z-index: 1001;
}

.menu .menu__dropdown.open {
	right: 0;
}

.menu__dropdown {
	position: relative;
}

.menu__dropdown .menu-close {
	position: absolute;
	top: 3.3rem;
	right: 3rem;
	border: none;
	background: none;
	cursor: pointer;
}

.main-menu {
	width: 100%;
}

.menu .menu__dropdown ul {
	list-style-type: none;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.menu .menu__dropdown ul li {
	display: block;
	width: 100%;
}

.menu .menu__dropdown ul li a {
	display: block;
	width: 100%;
	height: 100%;
	color: white;
	padding: 0.75em 0.75em 0.75em 0;
	font-family: var(--font-family-1);
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 3px;
	line-height: 1.3;
	text-align: center;
	transition: background-color 0.2s;
	text-decoration: none;
}

.menu .menu__dropdown ul li a:hover {
	background-color: #0a0b0d88;
}

.menu a {
	text-decoration: none;
}

@media (max-width: 532px) {
	.menu .menu__dropdown {
		top: 48px;
	}
}

@media (min-width: 640px) {
	#searchbar #search-input {
		width: auto;
		min-width: 160px;
		max-width: max-content;
	}
}

@media (min-width: 992px) {
	.menu .menu__dropdown {
		right: -450px;
		width: 450px;
	}

	.menu .menu__dropdown ul li a {
		padding-left: 3em;
		text-align: left;
	}
}

@media (min-width: 1280px) {
	.header-new .header-content nav {
		display: block;
	}
}


/* === footer.css === */
footer {
	background-color: #0A0B0D;
	max-width: 100vw;
	padding-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	margin-top: auto;
}

footer * {
	color: #FFFFFF;
}

footer a:hover {
	text-decoration: none;
}

footer > .container:not(.powered) {
	display: grid;
}

footer .column {
	width: 100%;
	margin-bottom: 25px;
}

footer ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

footer .title {
	font-weight: 400;
	font-size: 20px;
	color: #FFFFFF;
	letter-spacing: 0.07em;
	line-height: 50px;
}

footer .title img {
	height: 70px;
	width: auto;
	object-fit: contain;
}

footer .link {
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 40px;
	transition: color 0.3s;
	text-decoration: none;
}

footer .link:hover {
	color: var(--red);
}

footer .link.info:hover {
	color: #ffffff;
}

footer .link.info span,
footer .link.info a {
	opacity: 50%;
}

footer .info a:hover {
	opacity: 100%;
	color: var(--red);
}

footer .powered {
	padding-top: 20px;
	padding-bottom: 30px;
	border-top: #ffffff1A 1px solid;
	width: 100%;
}

footer .powered-social span {
	opacity: 50%;
}

footer .powered-social-link {
	font-size: 30px;
	opacity: 1;
}

footer .powered-social-link:hover {
	opacity: 100%;
}

footer .powered-email {
	opacity: 50%;
	line-height: 40px;
}

footer .powered-email:hover {
	opacity: 100%;
}

footer .container.powered {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
}

footer .powered .link,
footer .powered-email {
	opacity: 50%;
}

footer .powered a:hover,
footer .powered-email:hover {
	opacity: 100%;
}

footer .powered-left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 576px) {
	footer > .container:not(.powered) {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) {
	footer > .container:not(.powered) {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (min-width: 1500px) {
	footer > .container:not(.powered) {
		grid-template-columns: 2fr 1fr 1fr;
	}
}



/* End */


/* Start:/local/templates/toyama/template_styles.css?1785789048511*/
.page-content {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.page-content h1,
.page-content h2,
.page-content h3 {
	margin: 0 0 1rem;
	font-weight: 500;
}

.page-content p {
	margin: 0 0 1rem;
	line-height: 1.6;
}

.page-content ul,
.page-content ol {
	margin: 0 0 1rem 1.25rem;
}

.page-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
}

.page-content table td,
.page-content table th {
	border: 1px solid #D8DEDF;
	padding: 0.5rem 0.75rem;
}

/* End */
/* /local/templates/toyama/css/main.css?178265382710896 */
/* /local/templates/toyama/css/main.responsive.css?17826538263099 */
/* /local/templates/toyama/components/bitrix/main.userconsent.request/cookie/style.css?17882681791174 */
/* /local/templates/toyama/styles.css?17878167709704 */
/* /local/templates/toyama/template_styles.css?1785789048511 */
