@charset "utf-8";
@import url('bootstrap.min.css');
@import url('cookieconsent.css');

:root {
	--font-1: "Google Sans", sans-serif;
	--color-1: #0b3733;
	--color-2: #4a7236;
}

body {
	margin: 0;
	background-color: #fff;
	height: 100%;
	padding: 15px;
	font-family: var(--font-1);
	font-size: 15px;
	color: #000;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "GRAD" 0;
	line-height: 25px;
}
html {
	overflow-y: scroll; /* classic fallback: always show the gutter */
	scrollbar-gutter: stable; /* modern: reserve gutter without forcing a visible scrollbar look on some browsers */
	scroll-behavior: smooth;
}

/* 'xxl' applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* 'xl' applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* 'lg' applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}

/* 'md' applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}

/* 'sm' applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	body {
		padding: 15px 10px 10px;
	}
}

/* <mini reset */
::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

a,
a:link,
a:active,
a:visited {
	outline: none;
	text-decoration: none;
}
a:focus {
	outline: none;
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}
/* mini reset> */

/* <cursor */
body .cursor {
	pointer-events: none;
}
body .cursor__ball {
	position: fixed;
	top: 0;
	left: 0;
	mix-blend-mode: difference;
	z-index: 9999;
	margin: 0;
	padding: 0;
}
body .cursor__ball svg {
	display: block;
}
body .cursor__ball circle {
	fill: #f7f8fa;
}
.cursor__ball--big {
	display: flex;
	align-items: center;
	justify-content: center;
}
.cursor__ball--big__text {
	font-size: 6px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	pointer-events: none;
	position: absolute;
}

@media (max-width: 768px), (hover: none) {
	.cursor__ball {
		display: none;
	}
}
/* cursor> */

#wrapper {
	margin: 0 auto;
	max-width: 1920px;
}

/* <header */

/* <nav */
/* desktop Navigation */
header .container-fluid {
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
}
.navbar {
	display: flex;
	height: 140px;
	padding: 0;
	align-items: center;
	transition: height 0.3s ease;
}
.navbar.scrolled {
	background-color: #fff;
	height: 80px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .container-fluid {
	height: 80px;
}
.navbar-brand {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	display: block;
	width: 120px;
	height: 122px;
	background: url('../images/arbogreen-logo-1.png') center center no-repeat;
	background-size: contain;
	text-indent: -9999px;
}
.navbar.scrolled .navbar-brand {
	background: url('../images/arbogreen-logo-2.png') center center no-repeat;
}
.navbar-nav li {
	margin: 0;
	padding: 0 0 0 30px;
}
.navbar-nav a {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 14px;
	color: var(--color-1);
	font-weight: 500;
	transition: color 0.3s ease;
}
.navbar-nav a::after {
	position: absolute;
	z-index: 2;
	bottom: -5px;
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #000;
	transform: scaleX(0);
	transition: transform 0.5s ease-out;
	transform-origin: left
}
.navbar-nav a.selected::after  {
	border-bottom: 1px solid var(--color-1);
	transform: scaleX(1);
}

/* 'lg' applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	.navbar-nav a {
		text-transform: none;
		letter-spacing: 0;
	}
	.navbar-nav a::after  {
		display: none;
	}
}

.navbar-nav a:hover::after {
	transform: scaleX(1);
}
.navbar-nav a:hover {
	color: #000;
}
.navbar-nav li:not(.contact):not(:has(~ li:not(.contact))) a span {
	padding-right: 0;
}
/* hamburger icon */
.navbar-toggler {
	position: relative;
	margin: 0;
	width: 40px;
	height: 40px;
	border: none;
	padding: 0;
	transition: all 0.3s ease;
}

.navbar li.contact {
	display: none;
}

/* <submenu */
.submenu {
	position: relative;
}
.submenu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 0;
	margin-left: 8px;
	cursor: pointer;
}
.submenu > .submenu {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.navbar-nav ul.submenu a {
	text-transform: none;
	letter-spacing: 0;
}

/* Desktop: hover dropdown */
@media (min-width: 992px) {
	.submenu > .submenu {
		position: absolute;
		top: 110%;
		z-index: 10;
		left: 20px;
		background-color: #fff;
		min-width: 210px;
		padding: 10px 0;
		box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
		border-radius: 10px;
		visibility: hidden;
		transform: translateY(10px);
		transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
		opacity: 0;
	}
	.submenu:hover > .submenu,
	.submenu:focus-within > .submenu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	.submenu > .submenu li {
		padding: 0;
	}
	.submenu > .submenu li a {
		display: block;
		height: auto;
		padding: 8px 20px;
		font-size: 13px;
		/*white-space: nowrap;*/
	}
	.submenu > .submenu li a::after {
		display: none;
	}
}

/* Mobile: accordion (click to expand) */
@media (max-width: 991.98px) {
	li.submenu > a {
		display: inline-flex;
		height: auto;
		vertical-align: middle;
	}
	.submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 30px;
		vertical-align: middle;
	}
	.submenu-toggle .arrow {
		width: 10px;
		height: 10px;
		border-right: 2px solid var(--color-1);
		border-bottom: 2px solid var(--color-1);
		transform: rotate(45deg);
		transition: transform 0.3s ease;
	}
	.submenu-toggle[aria-expanded="true"] .arrow {
		margin-top: 5px;
		transform: rotate(-135deg);
	}
	.submenu > .submenu {
		display: block;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}
	.submenu.open > .submenu {
		max-height: 300px;
		padding: 0 0 10px;
	}
	.submenu > .submenu li a {
		display: inline-flex;
		height: auto;
		padding: 0;
		font-size: 20px;
		opacity: 1 !important;
	}
}
/* submenu> */

@media (min-width: 992px) {
	.navbar-toggler {
		display: none;
	}
}
@media (max-width: 991.98px) {
	.navbar-toggler {
		position: absolute;
		right: 10px;
		top: 50%;
		z-index: 1001;
		transform: translateY(-50%);
	}
	.navbar.scrolled .navbar-brand {
	}
	.navbar li a {
		padding: 10px 0;
		line-height: 40px;
	}
	.navbar li.contact {
		margin-top: 30px;
		display: inherit;
		justify-content: center;
	}
	.navbar li.contact a {
		padding: 0;
		font-size: 14px;
	}
	.navbar li.contact ul {
		margin: 0;
		display: flex;
		flex-direction: row;
		padding: 0;
		list-style-type: none;
	}
	.navbar li.contact ul li {
		padding: 10px;
	}
}

.navbar-toggler:focus {
	box-shadow: none;
}
.hamburger {
	position: absolute;
	top: calc(50% - 7px);
	left: 50%;
	background-color: var(--color-1);
	width: 30px;
	height: 3px;
	transform: translateX(-50%);
	transition: all 0.3s ease;
}
.hamburger::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	background-color: var(--color-1);
	width: 30px;
	height: 3px;
	transition: all 0.3s ease;
}
.navbar-toggler[aria-expanded="true"] .hamburger {
	top: calc(50% - 2px);
	transform: translateX(-50%) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .hamburger::after {
	top: 0;
	transform: rotate(-90deg);
}

/* mobile full screen menu */
.navbar-collapse {
	transition: none;
}

@media (max-width: 991.98px) {
	.navbar-collapse {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		overflow-y: auto;
		overflow-x: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		padding: 80px 20px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.1s ease, visibility 0.1s ease;
	}
	.navbar-collapse.show {
		visibility: visible;
		display: flex;
		flex-direction: column;
		opacity: 1;
	}
	.navbar-nav {
		margin: auto;
		width: 100%;
		text-align: center;
	}
	.navbar-nav li {
		padding-left: 0;
	}
	.navbar-nav a {
		margin: 0;
		display: inline-block;
		padding: 30px 0 10px;
		color: var(--color-1);
		font-size: 32px;
		text-decoration: none;
		transition: opacity 0.15s ease;
		opacity: 0;
	}
	.navbar-nav a.selected {
		line-height: 35px;
	}
	.navbar-collapse.show .navbar-nav a {
		opacity: 1;
	}
	.navbar-collapse.show .navbar-nav a:nth-child(1) {
		transition-delay: 0.05s;
	}
	.navbar-collapse.show .navbar-nav a:nth-child(2) {
		transition-delay: 0.1s;
	}
	.navbar-collapse.show .navbar-nav a:nth-child(3) {
		transition-delay: 0.15s;
	}
	.navbar-collapse.show .navbar-nav a:nth-child(4) {
		transition-delay: 0.2s;
	}
	.navbar-collapse.show .navbar-nav a:nth-child(5) {
		transition-delay: 0.25s;
	}
	.navbar-nav a:hover {
		color: #000;
	}

	.navbar-collapse.show ~ .container .navbar-toggler .hamburger,
	.navbar-collapse.show ~ .container .navbar-toggler .hamburger::after {
		background-color: white;
	}
}
/* close button in mobile menu */
@media (max-width: 991.98px) {
	.navbar-toggler {
		top: 50%;
		transform: translateY(-50%);
	}
}

/* 'sm' applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.navbar .navbar-nav a {
	}
	.navbar .navbar-nav a::after {
		bottom: 0;
	}
}
/* nav> */
/* header> */

/* <path */
#path ul {
	position: relative;
	z-index: 10;
	margin: 20px 2px 30px;
	display: inline-flex;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 10px 0;
	border-bottom: 1px solid var(--color-1);
}
#path ul li {
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
}
#path ul li::after {
	padding: 0 15px;
	content: "/";
	color: var(--color-1);
}
#path ul li:last-child::after {
	content: "";
	padding: 0;
}
#path ul li a {
	color: #000;
}
#path ul li a:hover {
	color: var(--color-1);
}

/* responsive breakpoints */
/* 'xxl' applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* 'xl' applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* 'lg' applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	#path ul {
		margin-bottom: 10px;
	}
}

/* 'md' applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}

/* 'sm' applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}
/* path> */

/*  <banner */
.banner-1 {
	margin-top: 125px;
	display: flex;
	align-items: center;
	background: url('../images/arbogreen-banner-1.jpg') 50% 50% no-repeat;
	background-size: cover;
	min-height: 900px;
	border-radius: 10px;
}
.banner-1 blockquote {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
	color: #fff;
}
.banner-1 blockquote h1 {
	margin-bottom: 20px;
	font-size: 80px;
	line-height: 80px;
	letter-spacing: 5px;
}
.banner-1 blockquote h1 img {
	display: block;
	width: auto;
	height: 70px;
}
.banner-1 blockquote h2 {
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 20px;
}
.banner-1 blockquote p {
	max-width: 600px;
	font-size: 15px;
	text-align: center;
	line-height: 30px;
}
.banner-1 blockquote p a {
	margin-top: 30px;
	display: block;
	background-color: #fff;
	padding: 10px 30px;
	border: 2px solid #fff;
	border-radius: 25px;
	color: var(--color-1);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.banner-1 blockquote p a:hover {
	background: none;
	color: #fff;
}

.banner-2,
.banner-3,
.banner-4,
.banner-5,
.banner-6 {
	margin-top: 125px;
	background-size: cover;
	min-height: 300px;
	border-radius: 20px;
}
.banner-2 {
	background: url('../images/arbogreen-banner-2.jpg') 50% 0% no-repeat;
}
.banner-3 {
	background: url('../images/arbogreen-banner-3.jpg') 54% 0% no-repeat;
}
.banner-4 {
	background: url('../images/arbogreen-banner-4.jpg') 50% 0% no-repeat;
}
.banner-5 {
	background: url('../images/arbogreen-banner-5.jpg') 0% 0% no-repeat;
}
.banner-6 {
	background: url('../images/arbogreen-banner-6.jpg') 50% 0% no-repeat;
}

/* 'xxl' applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
	.banner-1 {
		background-position: 100% 100%;
		min-height: 700px;
	}
}

/* 'xl' applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	.banner-1 {
		min-height: 600px;
	}
}

/* 'lg' applies to medium devices (ablets, less than 992px) */
@media (max-width: 991.98px) {
	.banner-1 {
		min-height: 500px;
	}
}

/* 'md' applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.banner-1 blockquote h1 img {
		height: 60px;
	}
}

/* 'sm' applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.banner-1 blockquote h1 img {
		display: block;
		width: auto;
		height: 30px;
	}
	.banner-2,
	.banner-3,
	.banner-4,
	.banner-5,
	.banner-6 {
		background-size: cover;
		min-height: 200px;
	}
}
/*  banner> */

/*  <section-1 */
#section-1 {
	padding: 30px 0 20px 0;
}
#section-1 h1 {
	padding-bottom: 40px;
	color: var(--color-1);
	font-size: 40px;
	line-height: 50px;
}
#section-1 h3 {
	padding: 30px 0 10px 0;
	font-size: 18px;
	color: var(--color-1);
	line-height: 23px;
}
#section-1 h3::after {
	margin-top: 10px;
	display: block;
	content: "";
	background-color: var(--color-2);
	width: 100px;
	height: 1px;
}
#section-1 P {
	margin-bottom: 20px;
	text-align: justify;
}
#section-1 P a {
	color: #000;
}
#section-1 P a.link-2 {
	border-bottom: 1px solid var(--color-2);
}
#section-1 P a.link-2:hover {
	color: var(--color-2);
}
#section-1 .title {
	padding: 30px 0 5px;
	font-size: 20px;
	font-weight: 700;
}
#section-1 ul {
	margin: 10px 0 10px 10px;
	list-style-type: none;
	padding: 0;
}
#section-1 ul li {
	background: url("../images/bullet-1.svg") 0 13px no-repeat;
	background-size: 10px 10px;
	padding: 5px 0 5px 20px;
}
#section-1 span {
	display: block;
	font-size: 16px;
	font-weight: 700;
}
#section-1 strong {
	font-weight: 700;
}
#section-1 .link-1 {
	display: inline-block;
	background-color: var(--color-2);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	font-size: 12px;
	color: #fff;
	line-height: 25px;
	font-weight: 600;
	text-align: center;
}
#section-1 .link-1:hover {
	background-color: var(--color-1);
}
#section-1 img {
	max-width: 100%;
	width: auto;
	border-radius: 20px;
}
#section-1 .details-1 a.gallery-btn {
	display: inline-block;
	padding: 15px 30px;
	border: 2px solid var(--color-1);
	border-radius: 10px;
	color: var(--color-1);
	font-weight: 600;
}
#section-1 .details-1 a.gallery-btn:hover {
	border-color: var(--color-2);
	color: var(--color-2);
}
#section-1 .details-1 .hidden {
	display: none;
	visibility: hidden;
}
#section-1 .details-2 {
	padding-left: 50px;
}
#section-1 .description blockquote {
	margin: 50px auto 30px;
	max-width: 600px;
	text-align: justify;
}
#section-1 .description blockquote::after {
	margin: 30px auto 100px;
	display: block;
	content: "";
	background-color: var(--color-1);
	width: 100px;
	height: 2px;
}
#section-1 .description blockquote p {
	padding-bottom: 20px;
}

#section-1 .servicii .box {
	margin: 30px 0;
	text-align: center;
}
#section-1 .servicii .box {
	display: inline-block;
}
#section-1 .servicii .box a {
	display: block;
    overflow: hidden;
	transition: transform 0.3s ease;
}
#section-1 .servicii .box a:hover {
	transform: scale(1.02);
}
#section-1 .servicii .box a img {
	margin: 0 auto 20px;
	display: block;
	border-radius: 20px;
	transition: filter 0.3s ease;
    filter: grayscale(100%);
}
#section-1 .servicii .box a:hover img {
	filter: grayscale(0%);
}
#section-1 .servicii .box a {
	display: inline-block;
	font-size: 20px;
	color: var(--color-1);
	font-weight: 600;
}
#section-1 .servicii .box a:hover {
	color: var(--color-2);
}

#section-1 .contact {
	padding-bottom: 100px;
}
#section-1 .contact {
	padding-bottom: 50px;
}
#section-1 .contact h4 {
	padding-bottom: 20px;
	font-size: 70px;
	line-height: 75px;
}
#section-1 .contact ul {
	margin: 0;
	list-style-type: none;
	padding: 0;
}
#section-1 .contact ul li {
	list-style-type: none;
	background: none;
	padding: 5px 0 0 0;
	font-size: 16px;
	color: #000;
	line-height: 25px;
}
#section-1 .contact ul li.title {
	font-size: 20px;
}
#section-1 .contact ul li a {
	color: #000;
}
#section-1 .contact ul li a:hover {
	color: var(--color-1);
}

#section-1 form {
	margin: 0;
	padding: 0;
}
#section-1 form label {
	margin-bottom: 10px;
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 10px;
}
#section-1 form input[type=text],
#section-1 form input[type=email] {
	margin-bottom: 60px;
	background: none;
	width: 100%;
	height: 40px;
	padding: 0 10px;
	background-color: #fff;
	border: none;
	border-bottom: 1px solid #000;
	box-shadow: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 40px;
}
#section-1 form input[type=text]:focus,
#section-1 form input[type=email]:focus {
	outline: none;
	text-decoration: none;
	border-bottom: 1px solid var(--color-1);
}
#section-1 form textarea {
	margin-bottom: 40px;
	background: none;
	width: 100%;
	height: 130px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #000;
	resize: none;
	box-shadow: none;
	font-size: 14px;
	line-height: 20px;
}
#section-1 form textarea:hover {
	border-color: var(--color-1);
}
#section-1 form textarea:focus {
	outline: none;
	text-decoration: none;
}
#section-1 form input[type=submit] {
	margin: 0;
	display: block;
	background: none;
	width: auto;
	height: 50px;
	background-color: var(--color-1);
	border: none;
	border-radius: 0;
	padding: 0 40px;
	box-shadow: none;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	line-height: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: padding 0.3s ease;
}
#section-1 form input[type=submit]:hover {
	background-color: var(--color-2);
	padding: 0 45px;
	transition: padding 0.3s ease;
}

#section-1 form .form-group {
	position: relative;
	z-index: 1;
}
#section-1 form p {
	text-align: left;
}
#section-1 form p.text-danger {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 75%;
	height: 10px;
}
#section-1 form p.text-danger ul {
	margin: 0;
	list-style-type: none;
	height: 10px;
	padding: 0;
}
#section-1 form p.text-danger ul li {
	height: 10px;
	line-height: 10px;
	text-align: right;
}
#section-1 form #success {
	margin-bottom: 40px;
	margin-left: 10px;
	display: none;
	background-color: olivedrab;
	width: auto;
	border-radius: 20px;
	padding: 10px 20px;
	color: #fff;
	font-weight: 600;
}

.gallery {
	margin: 0 auto;
	column-count: 1;
	column-gap: 40px;
}

@media (min-width:640px){ .gallery{ column-count:2; } }
@media (min-width:980px){ .gallery{ column-count:3; } }

.item {
	margin: 0 0 22px;
	break-inside: avoid;
}

a {
	margin: 0;
	position: relative;
	overflow: hidden;
}

a img {
	display: block;
	width: 100%;
	height: auto;
}

.small-title {
	padding: 0 0 20px;
	font-size: 12px;
	color: #000;
	text-align: center;
}

figure:hover::after {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
figure img, figure::after{ transition:none; }
}

/* 'xxl' applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* 'xl' applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
	#section-1 .details-2 {
		margin-top: 40px;
		margin-bottom: 20px;
		padding: 0 10px;
	}
	#section-1 .details-2 img {
		margin: 0 auto;
		width: 100%;
	}
}

/* 'lg' applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}

/* 'md' applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	#section-1 h1 {
		padding-bottom: 10px;
	}
	#section-1 P {
		text-align: left;
	}
	#section-1 form {
		margin-top: 30px;
	}
	#section-1 form textarea {
		margin-bottom: 25px;	
	}
}

/* 'sm' applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	#section-1 form ul li::before {
		padding: 0 10px;
	}
}
/* section-1> */

/* <footer */
footer {
	margin: 30px 15px 20px;
	border-top: 1px solid #000;
	padding: 60px 0 20px;
	text-align: center;
}
footer p img {
	width: 160px;
	height: auto;
}
footer ul {
	margin: 10px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style-type: none;
	padding: 30px 0 10px;
}
footer ul + ul {
	padding: 0 0 10px 0;
}
footer ul li {
	font-size: 14px;
	font-weight: 600;
}
footer ul.address li:first-child {
	flex-basis: 100%;
	padding-bottom: 10px;
	font-size: 20px;
}
footer ul li::before {
	content: "/";
	padding: 0 20px;
	color: var(--color-1);
	font-weight: 400;
}
footer ul li:first-child::before,
footer ul.address li:nth-child(2)::before {
	content: "";
	padding: 0;
}
footer ul li a {
	color: #000;
}
footer ul li a.selected {
	border-bottom: 1px solid var(--color-2);
}
footer ul + ul li a {
	font-weight: 400;
}
footer ul + ul + ul li {
	font-weight: 400;
}
footer ul + ul + ul li a {
	font-weight: 600;
}
footer ul li a:hover {
	color: var(--color-1);
}
footer ul li span {
	color: var(--color-1);
	font-weight: 400;
}
footer ul li strong {
	font-weight: 600;
}

/* 'xxl' applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* 'xl' applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/* 'lg' applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}

/* 'md' applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	footer {
  		margin: 30px 0 20px;
		padding: 40px 12px 20px;
	}
	footer ul li::before {
		content: "";
	}
}

/* 'sm' applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	footer {
		margin-top: 0;
	}
	footer ul li::before {
		padding: 0 10px;
	}
	footer ul + ul + ul + ul {
		padding-bottom: 40px;
	}
}

/* custom */
@media (max-width: 369.98px) {
	footer ul li:nth-child(3) {
		flex-basis: 100%;
		padding-top: 9px;
	}
	footer ul li:nth-child(3)::before {
		content: "";
		padding: 0;
	}
}
/* footer> */