/*!
Theme Name: trud
Theme URI: 
Author: Alexey Lungul
Author URI: 
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: trud
Tags:


/* Global */
* {
	font-family: 'NormsPro', sans-serif;
}

.container {
	max-width: calc(1250px + 30px);
	margin: 0 auto;
	width: 100%;
	height: 100%;
	padding: 0px 10px;
	position: relative;
	z-index: 2;
}

.container-gum {
	margin: 0 auto;
	width: 100%;
	padding: 0px 50px;
	position: relative;
	z-index: 2;
}

.container-banner {
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	padding: 0px 10px;
	position: relative;
}

.lang-overlay {
	width: 100%;
	height: calc(100vh - 72px);
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 90;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.1);
	transition: all 0.6s ease;
}

.lang-overlay.show {
	visibility: visible;
	opacity: 1;
}

.btn-trimmed-line {
	position: fixed;
	right: -75px;
	top: 265px;
	width: 190px;
	z-index: 80;
	height: 38px;
	background-color: #f7e949;
	border-top: 1px solid #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	transform: rotate(-90deg);
	transition: right 0.2s ease;
}

.btn-trimmed-line::before {
	content: '';
	position: fixed;
	top: 37px;
	width: 190px;
	z-index: 98;
	height: 10px;
	background-color: #f7e949;
}

.btn-trimmed-line:hover {
	right: -70px;
}

.btn-trimmed-line .text {
	color: #000000;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.13px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-trimmed-line .ico {
	position: relative;
	padding: 0px 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-trimmed-line .ico::before {
	content: '';
	height: 30px;
	width: 1px;
	background-color: #ffffff;
	position: absolute;
	left: 0px;
}

.btn-trimmed-line svg {
	width: 14px;
	height: 14px;
	fill: #000000;
}

@media only screen and (max-width: 1300px) {
	.container {
		max-width: 992px;
	}
}

@media only screen and (max-width: 992px) {
	.container {
		max-width: 768px;
	}
	.container-gum {
		padding: 0px 25px;
	}
}

@media only screen and (max-width: 768px) {
	.container,
	.container-banner,
	.container-gum {
		padding: 0px 15px;
	}
	.btn-trimmed-line {
    top: 50%;
	}
}

@media only screen and (max-width: 576px) {
}

@media only screen and (max-width: 375px) {}

/* header */
.header {
	padding: 0px 10px;
	height: 72px;
	width: 100%;
	border-bottom: 1px solid transparent;
	position: relative;
	top: 0px;
	left: 0px;
	right: 0px;
	background-color: #ffffff;
	z-index: 100;
	transition: border-bottom 0.2s ease;
}

.header.scroll {
	position: fixed;
	border-bottom: 1px solid #eaeff2;
}

.header .menu-mob {
	overflow: hidden;
	height: calc(100vh - 72px);
	width: 100%;
	position: fixed;
	bottom: 0px;
	right: 0px;
	left: 0px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
	background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.header .menu-mob.open {
	opacity: 1;
	visibility: visible;
}

.header .menu-mob .menu-mob-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

.header .menu-mob .menu-mob-content ul.menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header .menu-mob .menu-mob-content ul.menu li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	opacity: 0;
	transform: translate3d(0, 100%, 0);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}

.header .menu-mob .menu-mob-content ul.menu li:nth-child(2) {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.header .menu-mob .menu-mob-content ul.menu li:nth-child(3) {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.header .menu-mob .menu-mob-content ul.menu li:nth-child(4) {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.header .menu-mob .menu-mob-content ul.menu li:nth-child(5) {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.header .menu-mob .menu-mob-content ul.menu li:nth-child(6) {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.header .menu-mob.open .menu-mob-content ul.menu li {
	-webkit-animation-name: fadeInUpMenu;
	animation-name: fadeInUpMenu;
}

.header .menu-mob .menu-mob-content ul.menu li:last-child {
	margin-bottom: 0px;
}

.header .menu-mob .menu-mob-content ul.menu li a {
	display: flex;
	align-items: center;
	position: relative;
	color: rgba(0, 0, 0, 1);
	font-size: 25px;
	font-weight: 500;
}

.header .menu-mob .menu-mob-content .lang ul {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
}

.header .menu-mob .menu-mob-content .lang ul li {
	margin-right: 20px;
}

.header .menu-mob .menu-mob-content .lang ul li:last-child {
	margin-right: 0px;
}

.header .menu-mob .menu-mob-content .lang ul li a {
	display: flex;
	color: #000000;
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
}

.header .menu-mob .menu-mob-content .lang ul li.current-lang a {
	text-decoration: underline;
}

.header .header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 100;
}

.header .header-content .left-side,
.header .header-content .right-side {
	display: flex;
	align-items: center;
}

.header .header-content .logo {
	display: flex;
	align-items: center;
	padding-left: 7px;
	width: 90px;
	height: 72px;
	background-color: #ffffff;
	border: 1px solid #f0f0f0;
	border-top: 0px;
	border-bottom: 0px;
	position: relative;
	transition: all 0.2s ease;
}

.header .header-content .logo::after {
	content: 'ІННОВАЦІЙНА АГРОКОМПАНІЯ';
	position: absolute;
	left: -1px;
	bottom: -15px;
	color: #000000;
	width: 90px;
	font-size: 7px;
	font-weight: 400;
	letter-spacing: 0.21px;
	box-sizing: border-box;
	padding: 7px;
	border: 1px solid #f0f0f0;
	border-top: 0px;
	border-bottom: 2px solid #39576e;
	z-index: 100;
	background-color: #ffffff;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.header.scroll .header-content .logo::after {
	opacity: 0;
}
.header.scroll .header-content .logo {
	border: 1px solid transparent;
	border-top: 0px;
	border-bottom: 0px;
	background-color: transparent;
}

.header .header-content .logo a {
	display: flex;
}

.header .header-content ul.menu {
	display: flex;
	align-items: center;
	margin-left: 50px;
}

.header .header-content ul.menu li {
	display: flex;
	align-items: center;
	margin-right: 30px;
}

.header .header-content ul.menu li:last-child {
	margin-right: 0px;
}

.header .header-content ul.menu li a {
	display: flex;
	align-items: center;
	position: relative;
	transition: color 0.2s ease;
	color: rgba(0, 0, 0, 0.5);
	font-size: 15px;
	font-weight: 500;
}

.header .header-content ul.menu li a::after {
	content: '';
	height: 1px;
	width: 100%;
	background-color: #000000;
	position: absolute;
	left: 0px;
	bottom: -10px;
	opacity: 0;
	transition: opacity 0.2s ease;
	cursor: default;
	pointer-events: none;
}

.header .header-content ul.menu li.current-menu-item a,
.header .header-content ul.menu li a:hover {
	color: rgba(0, 0, 0, 1);
}

.header .header-content ul.menu li.current-menu-item a::after,
.header .header-content ul.menu li a:hover::after {
	opacity: 1;
}

.header .header-content .btn-faq {
	display: flex;
	align-items: center;
	color: #727886;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.15px;
	cursor: pointer;
	position: relative;
	transition: color 0.2s ease;
	margin-right: 25px;
}

.header .header-content .btn-faq:hover {
	color: #000000;
}

.header .header-content .btn-faq::after {
	content: '';
	height: 24px;
	width: 1px;
	background-color: #ebeced;
	position: absolute;
	right: -25px;
	top: 50%;
	transform: translateY(-50%);
	cursor: default;
	pointer-events: none;
}

.header .header-content .btn-lang {
	position: relative;
}

.header .header-content .btn-lang::after {
	content: '';
	height: 24px;
	width: 1px;
	background-color: #ebeced;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	cursor: default;
	pointer-events: none;
}

.header .header-content .btn-menu-mob {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 25px;
	transform: rotate(0deg);
	transition: transform 0.2s ease;
}

.header .header-content .btn-menu-mob.open {
	transform: rotate(90deg);
}

.header .header-content .btn-menu-mob svg {
	width: 26px;
	height: 14px;
	stroke: #000000;
}

.header .header-content .btn-lang .dropdown-toggle {
	padding: 0px 25px;
	height: 72px;
	display: flex;
	align-items: center;
}

.header .header-content .btn-lang .dropdown-toggle svg {
	width: 17px;
	height: 17px;
	fill: #727886;
	transition: fill 0.2s ease;
	margin-right: 5px;
}

.header .header-content .btn-lang .dropdown-toggle p {
	color: #727886;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.14px;
	transition: color 0.2s ease;
}

.header .header-content .btn-lang .dropdown-toggle:hover svg {
	fill: #000000;
}

.header .header-content .btn-lang .dropdown-toggle:hover p {
	color: #000000;
}

.header .header-content .btn-lang.show .dropdown-toggle svg {
	fill: #000000;
}

.header .header-content .btn-lang.show .dropdown-toggle p {
	color: #000000;
}

.header .header-content .btn-lang .dropdown-menu {
	width: 190px;
	background-color: #ffffff;
	position: absolute;
	top: 72px;
	right: 0px;
	border: 1px solid #f0f0f0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease;
}

.header .header-content .btn-lang.show .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.header .header-content .btn-lang .dropdown-menu h4 {
	color: #727886;
	font-size: 13px;
	font-weight: 400;
	margin: 17px 20px 7px 20px;
}

.header .header-content .btn-lang .dropdown-menu ul li {
	display: flex;
	align-items: center;
}

.header .header-content .btn-lang .dropdown-menu ul li a {
	width: 100%;
	padding: 10px 20px;
	display: flex;
	color: #000000;
	background-color: #ffffff;
	transition: background-color 0.2s ease;
	font-size: 14px;
	font-weight: 500;
}

.header .header-content .btn-lang .dropdown-menu ul li a:hover {
	background-color: #f2f4f7;
}

@media only screen and (max-width: 1300px) {}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 768px) {

	.header .header-content ul.menu,
	.header .header-content .btn-lang {
		display: none;
	}

	.header .header-content .btn-menu-mob {
		display: flex;
		padding: 25px 15px;
	}
	.header .header-content .btn-faq {
		margin-right: 15px;
	}
	.header .header-content .btn-faq::after {
		right: -15px;
	}
	.header .header-content .logo {
		border: 1px solid transparent;
		border-top: 0px;
    border-bottom: 0px;
		padding-left: 0px;
		width: auto;
	}
	.header .header-content .logo::after {
    border: 0px;
    font-size: 9px;
    left: 75px;
    bottom: 26px;
    padding: 0px;
		background: transparent;
		letter-spacing: normal;
	}
	.header.scroll .header-content .logo::after {
    opacity: 1;
	}
	.header .container-gum {
		padding-right: 0px;
	}
}

@media only screen and (max-width: 576px) {}

@media only screen and (max-width: 375px) {}

/* footer */
.footer {
	margin-bottom: 20px;
}
.footer .footer-content {
	border: 1px solid #eaeff2;
	display: flex;
	flex-direction: column;
}

.footer .footer-content .top-side {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #eaeff2;
}

.footer .footer-content .top-side .left-side {
	border-right: 1px solid #eaeff2;
	width: 860px;
}

.footer .footer-content .top-side .left-side .call-info {
	padding: 40px 30px 30px 40px;
	border-bottom: 1px solid #eaeff2;
}

.footer .footer-content .top-side .left-side .call-info .logo {
	display: flex;
	align-items: center;
	margin-bottom: 55px;
}

.footer .footer-content .top-side .left-side .call-info .logo a {
	display: flex;
	align-items: center;
}

.footer .footer-content .top-side .left-side .call-info .list {
	display: flex;
}

.footer .footer-content .top-side .left-side .call-info .list .itm {
	display: flex;
	flex-direction: column;
	margin-right: 50px;
}

.footer .footer-content .top-side .left-side .call-info .list .itm:last-child {
	margin-right: 0px;
}

.footer .footer-content .top-side .left-side .call-info .list .itm h4 {
	color: #000000;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 500;
}

.footer .footer-content .top-side .left-side .call-info .list .itm a {
	display: flex;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	color: #5b6267;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 5px;
	transition: color 0.2s ease;
}

.footer .footer-content .top-side .left-side .call-info .list .itm a:hover {
	color: #000000;
}

.footer .footer-content .top-side .left-side .call-info .list .itm a:last-child {
	margin-bottom: 0px;
	text-decoration: underline;
}

.footer .footer-content .top-side .left-side .address-info {
	padding: 30px 30px 30px 40px;
}

.footer .footer-content .top-side .left-side .address-info .list {
	display: flex;
}

.footer .footer-content .top-side .left-side .address-info .list .itm {
	display: flex;
	flex-direction: column;
	margin-right: 115px;
}

.footer .footer-content .top-side .left-side .address-info .list .itm:last-child {
	margin-right: 0px;
}

.footer .footer-content .top-side .left-side .address-info .list .itm h4 {
	color: #000000;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 500;
}

.footer .footer-content .top-side .left-side .address-info .list .itm p {
	line-height: 19px;
	color: #5b6267;
	font-size: 14px;
	font-weight: 400;
}

.footer .footer-content .top-side .right-side {
	width: calc(100% - 860px);
	display: flex;
	flex-direction: column;
}

.footer .footer-content .top-side .right-side .lang-info {
	display: flex;
	justify-content: flex-end;
	border-bottom: 1px solid #eaeff2;
	padding: 40px 20px 30px 20px;
}

.footer .footer-content .top-side .right-side .lang-info svg {
	width: 17px;
	height: 17px;
	fill: #727886;
	margin-right: 10px;
}

.footer .footer-content .top-side .right-side .lang-info ul {
	display: flex;
	align-items: center;
}

.footer .footer-content .top-side .right-side .lang-info ul li {
	margin-right: 15px;
}

.footer .footer-content .top-side .right-side .lang-info ul li:last-child {
	margin-right: 0px;
}

.footer .footer-content .top-side .right-side .lang-info ul li a {
	display: flex;
	font-size: 14px;
	color: #676767;
	font-weight: 400;
	transition: color 0.2s ease;
}

.footer .footer-content .top-side .right-side .lang-info ul li.current-lang a {
	color: #000000;
	text-decoration: underline;
}

.footer .footer-content .top-side .right-side .lang-info ul li a:hover {
	color: #000000;
}

.footer .footer-content .top-side .right-side .menu-info {
	padding: 30px 20px 20px 40px;
	position: relative;
	height: 100%;
	box-sizing: border-box;
}

.footer .footer-content .top-side .right-side .menu-info .menu {
	display: flex;
	flex-direction: column;
}

.footer .footer-content .top-side .right-side .menu-info .menu li {
	margin-bottom: 10px;
}

.footer .footer-content .top-side .right-side .menu-info .menu li:last-child {
	margin-bottom: 0px;
}

.footer .footer-content .top-side .right-side .menu-info .menu li a {
	display: flex;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	color: #676767;
	transition: color 0.2s ease;
	font-size: 14px;
	font-weight: 400;
}

.footer .footer-content .top-side .right-side .menu-info .menu li a:hover {
	color: #000000;
}

.footer .footer-content .top-side .right-side .menu-info .social {
	position: absolute;
	right: 20px;
	bottom: 50px;
	display: flex;
}

.footer .footer-content .top-side .right-side .menu-info .social li {
	margin-right: 10px;
}

.footer .footer-content .top-side .right-side .menu-info .social li:last-child {
	margin-right: 0px;
}

.footer .footer-content .top-side .right-side .menu-info .social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 100px;
	border: 1px solid #676767;
	transition: border 0.2s ease;
}

.footer .footer-content .top-side .right-side .menu-info .social li a svg {
	fill: #676767;
	width: 19px;
	height: 19px;
	transition: fill 0.2s ease;
}

.footer .footer-content .top-side .right-side .menu-info .social li a:hover {
	border: 1px solid #000000;
}

.footer .footer-content .top-side .right-side .menu-info .social li a:hover svg {
	fill: #000000;
}

.footer .footer-content .bottom-side {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background-color: #f9fafc;
}

.footer .footer-content .bottom-side .left-side {
	display: flex;
	align-items: center;
}

.footer .footer-content .bottom-side .left-side p {
	color: #47535c;
	font-size: 14px;
	font-weight: 400;
	position: relative;
	margin-right: 40px;
}

.footer .footer-content .bottom-side .left-side p::after {
	content: '';
	height: 22px;
	width: 1px;
	background-color: #eaeff2;
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
}

.footer .footer-content .bottom-side .left-side a {
	display: flex;
	color: #47535c;
	font-size: 14px;
	font-weight: 400;
	transition: color 0.2s ease;
}

.footer .footer-content .bottom-side .left-side a:hover {
	color: #000000;
}

.footer .footer-content .bottom-side .right-side {
	display: flex;
	align-items: center;
}

.footer .footer-content .bottom-side .right-side p {
	color: #47535c;
	position: relative;
	font-size: 14px;
	font-weight: 400;
	margin-right: 20px;
}

.footer .footer-content .bottom-side .right-side p::after {
	content: '';
	height: 22px;
	width: 1px;
	background-color: #47535c;
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}

.footer .footer-content .bottom-side .right-side a {
	display: flex;
	color: #000000;
	text-decoration: underline;
	font-size: 14px;
	font-weight: 400;
}

.footer .footer-content .bottom-side .right-side a svg {
	width: 7px;
	height: 7px;
	stroke: #000000;
	position: relative;
	left: 4px;
}

@media only screen and (max-width: 1300px) {
	.footer .footer-content .top-side .left-side .call-info .list {
		flex-wrap: wrap;
	}

	.footer .footer-content .top-side .left-side .call-info .list .itm {
		width: 50%;
		margin-right: 0px;
		margin-bottom: 25px;
	}

	.footer .footer-content .top-side .left-side .call-info .list .itm:nth-last-child(-n + 2) {
		margin-bottom: 0px;
	}

	.footer .footer-content .top-side .left-side .address-info .list .itm {
		width: 50%;
		margin-right: 0px;
	}

	.footer .footer-content .top-side .left-side {
		width: 60%;
	}

	.footer .footer-content .top-side .right-side {
		width: 40%;
	}

	.footer .footer-content .bottom-side {
		flex-direction: column;
		align-items: flex-start;
		padding: 15px 20px;
	}

	.footer .footer-content .bottom-side .left-side {
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 992px) {

	.footer .footer-content .top-side .left-side .address-info,
	.footer .footer-content .top-side .left-side .call-info,
	.footer .footer-content .top-side .right-side .menu-info {
		padding: 20px;
	}

	.footer .footer-content .bottom-side .left-side {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer .footer-content .bottom-side .left-side p {
		margin-right: 0px;
		margin-bottom: 5px;
	}
}

@media only screen and (max-width: 768px) {
	.footer .footer-content .top-side {
		flex-direction: column;
	}

	.footer .footer-content .top-side .left-side,
	.footer .footer-content .top-side .right-side {
		width: 100%;
		border-right: 0px;
	}

	.footer .footer-content .top-side .right-side .menu-info .social {
		bottom: 20px;
	}

	.footer .footer-content .top-side .right-side .lang-info {
		padding: 20px;
	}

	.footer .footer-content .top-side .left-side .address-info .list .itm {
		margin-right: 15px;
	}

	.footer .footer-content .top-side .left-side .address-info .list .itm p br {
		display: none;
	}
}

@media only screen and (max-width: 576px) {
	.footer .footer-content .top-side .left-side .address-info .list .itm {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 25px;
	}

	.footer .footer-content .top-side .left-side .address-info .list {
		flex-direction: column;
	}

	.footer .footer-content .top-side .left-side .call-info .list .itm {
		width: 100%;
	}

	.footer .footer-content .top-side .left-side .call-info .list .itm:nth-last-child(-n + 2) {
		margin-bottom: 25px;
	}

	.footer .footer-content .top-side .left-side .call-info .list .itm:last-child {
		margin-bottom: 0px;
	}

	.footer .footer-content .top-side .left-side .call-info .logo {
		margin-bottom: 25px;
	}

	.footer .footer-content .top-side .left-side .address-info .list .itm:last-child {
		margin-bottom: 0px;
	}

	.footer .footer-content .top-side .right-side .lang-info {
		padding-top: 0px;
	}
}

@media only screen and (max-width: 375px) {}

/* modal */
.modal {
	display: none;
}

.modal.is-open {
	display: flex;
}

.modal[aria-hidden='false'] .modal-overlay {
	animation: overlayIn 0.4s ease;
}

.modal[aria-hidden='true'] .modal-overlay {
	animation: overlayOut 0.4s ease;
}

.modal.trimmed-line[aria-hidden='false'] .modal-container {
	animation: trimmedIn 0.4s ease;
}

.modal.trimmed-line[aria-hidden='true'] .modal-container {
	animation: trimmedOut 0.4s ease;
}

.modal.faq[aria-hidden='false'] .modal-container {
	animation: faqIn 0.5s ease;
}

.modal.faq[aria-hidden='true'] .modal-container {
	animation: faqOut 0.5s ease;
}

.modal.trimmed-line {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 200;
	align-items: center;
	justify-content: center;
}

.modal.trimmed-line .modal-overlay {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal.trimmed-line .modal-container {
	padding: 10px;
	position: relative;
	width: 750px;
	box-shadow: 0 8px 10px rgba(74, 74, 74, 0.16);
	box-sizing: border-box;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
}

.modal.trimmed-line .modal-container .close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 2px;
	transition: transform 0.2s ease;
	z-index: 2;
}

.modal.trimmed-line .modal-container .close:hover {
	transform: rotate(90deg);
}

.modal.trimmed-line .modal-container .close svg {
	width: 13px;
	height: 13px;
	stroke: #000000;
}

.modal.trimmed-line .modal-container .left-side {
	padding: 20px 20px 25px 20px;
	min-width: 215px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-image: url(img/trimmed-bg.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	margin-right: 10px;
}

.modal.trimmed-line .modal-container .left-side h4 {
	letter-spacing: -0.13px;
	color: #938910;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 20px;
}

.modal.trimmed-line .modal-container .left-side h2 {
	color: #000000;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: -0.22px;
	width: 145px;
	line-height: 30px;
}

.modal.trimmed-line .modal-container .left-side p {
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: -0.14px;
	line-height: 22px;
	width: 160px;
}

.modal.trimmed-line .modal-container .right-side h3 {
	color: #000000;
	font-size: 17px;
	font-weight: 400;
	font-style: normal;
	letter-spacing: -0.17px;
	margin-bottom: 17px;
	margin-top: 10px;
	display: flex;
	align-items: center;
}

.modal.trimmed-line .modal-container .right-side h3 svg {
	width: 20px;
	height: 20px;
	margin-right: 6px;
}

.modal.trimmed-line .modal-container .right-side .list {
	display: flex;
	flex-direction: column;
	border: 1px solid #f2f2f2;
}

.modal.trimmed-line .modal-container .right-side .list .itm {
	border-bottom: 1px solid #f2f2f2;
	display: flex;
	padding: 20px 15px;
}

.modal.trimmed-line .modal-container .right-side .list .itm:last-child {
	border-bottom: 0px;
}

.modal.trimmed-line .modal-container .right-side .list .itm h4 {
	min-width: 180px;
	margin-right: 10px;
	color: #6c6c6c;
	font-size: 14px;
	font-weight: 400;
}

.modal.trimmed-line .modal-container .right-side .list .itm .info {
	display: flex;
	flex-direction: column;
}

.modal.trimmed-line .modal-container .right-side .list .itm .info a {
	color: #000000;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	width: max-content;
	transition: color 0.2s ease;
}
.modal.trimmed-line .modal-container .right-side .list .itm .info a.mail {
	font-weight: 400;
}

.modal.trimmed-line .modal-container .right-side .list .itm .info>* {
	margin-bottom: 3px;
}

.modal.trimmed-line .modal-container .right-side .list .itm .info>*:last-child {
	margin-bottom: 0px;
}

.modal.trimmed-line .modal-container .right-side .list .itm .info a:hover {
	color: #f47e08;
}

.modal.trimmed-line .modal-container .right-side .list .itm .info p {
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	line-height: 19px;
	margin-bottom: 20px;
}
.modal.trimmed-line .modal-container .right-side .list .itm .info p br {
	display: none;
}
.modal.trimmed-line .modal-container .right-side .list .itm .info a svg {
	width: 13px;
	height: 13px;
	fill: #000000;
	transition: fill 0.2s ease;
	position: relative;
	left: 7px;
	top: -2px;
}

.modal.trimmed-line .modal-container .right-side .list .itm .info a:hover svg {
	fill: #f47e08;
}

.modal.faq {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 200;
	align-items: center;
	justify-content: flex-end;
	perspective: 2000px;
}

.modal.faq .modal-overlay {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal.faq .modal-container {
	position: relative;
	width: 990px;
	height: 100vh;
	box-sizing: border-box;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	transform-origin: right;
	transform-style: preserve-3d;
}
.modal.faq .modal-container .close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 2px;
	transition: transform 0.2s ease;
	z-index: 2;
}

.modal.faq .modal-container .close:hover {
	transform: rotate(90deg);
}

.modal.faq .modal-container .close svg {
	width: 13px;
	height: 13px;
	stroke: #000000;
}
.modal.faq .modal-container .left-side {
	background-image: url(img/faq-bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	min-width: 280px;
	padding: 65px 20px 20px 60px;
}

.modal.faq .modal-container .left-side h2 {
	letter-spacing: -0.26px;
	color: #000000;
	margin-bottom: 70px;
	font-size: 26px;
	font-weight: 400;
}

.modal.faq .modal-container .left-side ul.list-title li {
	margin-bottom: 20px;
	width: max-content;
}

.modal.faq .modal-container .left-side ul.list-title li:last-child {
	margin-bottom: 0px;
}

.modal.faq .modal-container .left-side ul.list-title li a {
	color: #767676;
	display: flex;
	align-items: center;
	width: max-content;
	font-size: 15px;
	font-weight: 400;
	position: relative;
	padding-left: 17px;
	transition: color 0.2s ease;
}

.modal.faq .modal-container .left-side ul.list-title li.active a {
	color: #587286;
}

.modal.faq .modal-container .left-side ul.list-title li a::before {
	content: '';
	width: 6px;
	height: 6px;
	border: 1px solid #767676;
	border-radius: 100px;
	position: absolute;
	left: 0px;
	background-color: transparent;
	transition: all 0.2s ease;
}

.modal.faq .modal-container .left-side ul.list-title li.active a::before {
	border: 1px solid #587286;
	background-color: #587286;
}

.modal.faq .modal-container .left-side ul.list-title li a:hover {
	color: #3e3e3e;
}

.modal.faq .modal-container .left-side ul.list-title li a:hover::before {
	border: 1px solid #3e3e3e;
}

.modal.faq .modal-container .right-side {
	padding: 75px 60px 30px 60px;
	width: 100%;
	overflow-x: scroll;
}

.modal.faq .modal-container .right-side .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}

.modal.faq .modal-container .right-side .head>p {
	color: #000000;
	font-size: 13px;
	font-weight: 400;
}

.modal.faq .modal-container .right-side .head .btn-open {
	cursor: pointer;
	display: flex;
	align-items: center;
}
.modal.faq .modal-container .right-side .head .btn-open p {
		color: #000000;
	font-size: 13px;
	font-weight: 400;
}
.modal.faq .modal-container .right-side .head .btn-open svg {
	width: 11px;
	height: 11px;
	margin-right: 5px;
	stroke: #000000;
	position: relative;
	top: -1px;
	transition: transform 0.2s ease;
}
.modal.faq .modal-container .right-side .head .btn-open:hover svg {
	transform: rotate(90deg);
}
.modal.faq .modal-container .right-side .list-tabs .tabs {
	display: none;
}

.modal.faq .modal-container .right-side .list-tabs .tabs.active {
	display: block;
}





.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	cursor: pointer;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title h2 {
	color: #7F8995;
	font-size: 18px;
	font-weight: 400;
	transition: color 0.2s ease;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title.open h2 {
	color: #22262b;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title .ico {
	position: relative;
	height: 100%;
	width: 14px;
	margin-left: 10px;
	display: flex;
	align-items: center;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title .ico .plus {
	width: 13px;
	height: 13px;
	stroke: #7F8995;
	position: absolute;
	transition: all 0.2s ease;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title .ico .minus {
	width: 13px;
	height: 1px;
	stroke: #22262B;
	opacity: 0;
	position: absolute;
	transition: all 0.2s ease;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title.open .ico .plus {
	opacity: 0;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title.open .ico .minus {
	opacity: 1;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title:hover h2 {
	color: #22262B;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title:hover .ico .plus {
	stroke: #22262B;
	transform: rotate(90deg);
}

.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-text {
	display: none;
	margin-bottom: 15px;
}
.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-text p {
	line-height: 23px;
	color: #5b6267;
	font-size: 15px;
	font-weight: 400;
}

@media only screen and (max-width: 1300px) {

}

@media only screen and (max-width: 992px) {
	.modal.faq .modal-container {
		width: 650px;
	}
	.modal.faq .modal-container .left-side {
		padding: 60px 20px 20px 30px;
		min-width: 220px;
	}
	.modal.faq .modal-container .right-side .list-tabs .tabs .accordion .accordion-title h2 {
		font-size: 16px;
	}
	.modal.faq .modal-container .right-side {
		padding: 75px 30px 30px 30px;
	}
}

@media only screen and (max-width: 768px) {
	.modal.trimmed-line .modal-container {
		width: 95%;
		flex-direction: column;
	}
	.modal.trimmed-line .modal-container .left-side {
		margin-right: 0px;
		min-width: initial;
		padding: 15px;
		margin-bottom: 10px;
	}
	.modal.trimmed-line .modal-container .left-side h2 {
		margin-bottom: 5px;
		width: auto;
	}
	.modal.trimmed-line .modal-container .left-side p {
		width: auto;
	}

	.modal.faq .modal-container .left-side {
    min-width: 200px;
	}
	.modal.faq .modal-container .right-side {
		padding: 75px 30px;
	}
	.modal.faq .modal-container .left-side {
		padding: 60px 20px;
	}
}

@media only screen and (max-width: 576px) {
	.modal.trimmed-line .modal-container .right-side .list .itm {
		flex-direction: column;
		padding: 15px;
	}
	.modal.trimmed-line .modal-container .right-side .list .itm h4 {
		margin-right: 0px;
		margin-bottom: 5px;
	}
	.modal.trimmed-line .modal-container .right-side h3 {
		display: none;
	}
	.modal.trimmed-line .modal-container .right-side .list .itm .info p {
		margin-bottom: 5px;
	}
	.modal.trimmed-line .modal-container .left-side h4 {
		display: none;
	}
	.modal.faq .modal-container {
		flex-direction: column;
		justify-content: flex-start;
	}
	
	.modal.faq .modal-container .left-side {
		min-width: initial;
		padding: 25px;
		padding-top: 110px;
	}
	.modal.faq .modal-container .close {
		top: 60px;
	}
	.modal.faq .modal-container .right-side .head {
		margin-bottom: 20px;
	}
	.modal.faq .modal-container .right-side {
		padding: 30px 25px;
	}
	.modal.faq .modal-container .left-side h2 {
		margin-bottom: 50px;
	}
	.modal.faq .modal-container .left-side ul.list-title {
		display: flex;
		flex-wrap: wrap;
	}
	.modal.faq .modal-container .left-side ul.list-title li {
		margin-bottom: 15px;
		margin-right: 25px;
	}
}

@media only screen and (max-width: 375px) {
	.modal.faq .modal-container .left-side ul.list-title li {
		margin-right: 12px;
	}
}








/* page */
.breadcrumbsSection {
  background-color: transparent;
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
  transition: all 0.2s ease;
}
.breadcrumbsSection.scroll {
  background-color: #ffffff;
  position: fixed;
}
.breadcrumbsSection .breadcrumbsSection-content {
  display: flex;
  height: 60px;
  box-sizing: initial;
  padding-top: 10px;
  align-items: center;
  border-bottom: 1px solid #edeff4;
  padding-top: 10px;
  position: relative;
}
.breadcrumbsSection.scroll .breadcrumbsSection-content {
  padding-top: 0px;
}
.breadcrumbsSection .breadcrumbsSection-content .progress-bar {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0%;
  background: #000000;
}
.breadcrumbsSection .breadcrumbsSection-content .back {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 40px;
}

.breadcrumbsSection .breadcrumbsSection-content .back::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  height: 19px;
  width: 1px;
  background-color: #dce1ea;
}

.breadcrumbsSection .breadcrumbsSection-content .back div {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.breadcrumbsSection .breadcrumbsSection-content .back div svg {
  width: 11px;
  height: 9px;
  stroke: #000000;
  transform: rotate(180deg);
  margin-right: 5px;
}
.breadcrumbsSection .breadcrumbsSection-content .breadcrumbs ul {
  display: flex;
  align-items: center;
}
.breadcrumbsSection .breadcrumbsSection-content .breadcrumbs ul li {
  margin-right: 20px;
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  font-weight: 400;
  position: relative;
}
.breadcrumbsSection .breadcrumbsSection-content .breadcrumbs ul li:last-child {
  margin-right: 0px;
}
.breadcrumbsSection .breadcrumbsSection-content .breadcrumbs ul li::after {
  content: '/';
  position: absolute;
  top: 45%;
  right: -12px;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  font-weight: 400;
}
.breadcrumbsSection
  .breadcrumbsSection-content
  .breadcrumbs
  ul
  li:last-child::after {
  display: none;
}
.breadcrumbsSection .breadcrumbsSection-content .breadcrumbs ul li a {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
}
.page-main {
  position: relative;
}
.page-main:before {
  content: '';
  position: absolute;
  top: -71px;
  z-index: -1;
  width: calc(100% - 20px);
  left: 10px;
  right: 10px;
  height: 470px;
  background: transparent linear-gradient(1deg, #ffffff 0%, #f9fafc 100%) 0% 0%
    no-repeat padding-box;
}
.page-main .page-main-content {
  max-width: 825px;
  margin: 0px auto;
  padding-top: 50px;
}
.page-main .page-main-content .info {
  display: flex;
  align-items: center;
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.page-main .page-main-content .info .cat {
  color: #5b6267;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  margin-right: 20px;
}
.page-main .page-main-content .info .cat::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  width: 3px;
  height: 3px;
  border-radius: 100px;
  background-color: #5b6267;
}
.page-main .page-main-content .info .date {
  color: #5b6267;
  font-size: 14px;
  font-weight: 500;
}
.page-main .page-main-content h2 {
  letter-spacing: -0.48px;
  line-height: 40px;
  color: #000000;
  font-size: 32px;
  font-weight: 500;
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.page-main .page-main-content p {
  line-height: 23px;
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.page-main .page-main-content b {
  font-weight: 700;
}
.page-main .page-main-content a {
  color: #222222;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.page-main .page-main-content a:hover {
  color: #587286;
}
.page-main .page-main-content img {
  width: 100%;
  margin-bottom: 50px;
	border-radius: 4px;
}
.page-main .page-main-content h3 {
  letter-spacing: -0.25px;
  line-height: 33px;
  color: #000000;
  font-size: 25px;
  font-weight: 500;
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 23px;
}
.page-main .page-main-content h4 {
  line-height: 23px;
  color: #8e8e8e;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.page-main .page-main-content ul {
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.page-main .page-main-content ul li {
  margin-bottom: 18px;
  line-height: 23px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
}
.page-main .page-main-content ul li::before {
  content: '';
  position: absolute;
  border-radius: 100px;
  width: 6px;
  height: 6px;
  background-color: #000000;
  left: 0px;
  top: 10px;
}
.page-main .page-main-content ul li:last-child {
  margin-bottom: 0px;
}
.page-main .page-main-content blockquote {
  border-radius: 6px;
  border: 1px solid #eaeff2;
  background-color: #ffffff;
  padding: 20px 15px 20px 50px;
  max-width: 610px;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
}
.page-main .page-main-content blockquote::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 12px;
  background-image: url('img/interesting.svg');
  background-size: cover;
  width: 28px;
  height: 28px;
}
.page-main .page-main-content blockquote p {
  margin-bottom: 0px;
}
.page-main .page-main-content blockquote b,
.page-main .page-main-content blockquote strong {
  font-weight: 500;
}
.page-main .page-main-content > *:last-child {
  margin-bottom: 60px;
}
.page-related .page-related-content {
  border-top: 1px solid #eaeff2;
  padding-top: 45px;
  padding-bottom: 20px;
  max-width: 610px;
  margin: 0 auto;
}
.page-related .page-related-content h3 {
  letter-spacing: -0.18px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.page-related .page-related-content .list .itm {
  border-bottom: 1px solid #eaeff2;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
}
.page-related .page-related-content .list .itm:last-child {
  border-bottom: 0px;
}
.page-related .page-related-content .list .itm h4 {
  font-size: 17px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.page-related .page-related-content .list .itm h4 svg {
  width: 11px;
  height: 10px;
  stroke: #000000;
  opacity: 0;
  margin-left: 5px;
	transition: opacity 0.3s ease;
}
.page-related .page-related-content .list .itm p {
  line-height: 25px;
  color: #5b6267;
  font-size: 15px;
  font-weight: 400;
}
.page-related .page-related-content .list .itm:hover h4 {
  text-decoration: underline;
}
.page-related .page-related-content .list .itm:hover h4 svg {
  opacity: 1;
}

@media only screen and (max-width: 1300px) {
}

@media only screen and (max-width: 992px) {
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 576px) {
  .page-main .page-main-content {
    padding-top: 30px;
  }
  .page-main:before {
    left: 5px;
    right: 5px;
    width: calc(100% - 10px);
  }
	.page-main .page-main-content p,
	.page-main .page-main-content ul li {
		font-size: 17px;
	}
	.page-main .page-main-content h4 {
		font-size: 12px;
	}
}

@media only screen and (max-width: 375px) {
}
