/* USER VARIABLES SECTION */

:root {
	--accent: #75AC2D;
	--text: #333;
	--white: #fff;
	--light: #dedede;
	--subtext: #878787;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: roboto-st, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--logo-height: 120px;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: 1.5rem; }
.row, .row > * { --bs-gutter-x: 2.5rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/roboto-regular-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/roboto-light-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 300; font-style: normal; }
@font-face { src: url("../fonts/roboto-bold-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 700; font-style: normal; }

/* GENERAL CSS SETTINGS */

/* CSS Reset */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	position: relative;
	padding-top: calc(var(--logo-height) + 100px + 20px);
}

/* USER STYLES */

.image {
	max-width: 100%;
	border-radius: 4px;
}

.accent {
	color: var(--accent);
	font-weight: bold;
}

button {
	background: transparent;
	border: 0;
}

a {
	text-decoration: none;
	transition: all .3s ease;
	color: var(--text);
}

a:hover {
	text-decoration: underline;
	color: var(--text);
}

.light-link {
	color: var(--white);
}

.light-link:hover {
	color: var(--light);
}

p {
	font-weight: 300;
}

h1,
h2 {
	font-weight: bold;
}

h1 {
	font-size: 4rem;
}

h2 {
	font-size: 2.625rem;
}

.section {
	padding: 50px 0;

	/* vertical center */
	min-height: calc(100vh - (70px + 20px));
	display: flex;
	align-items: center;
}

.section--first {
	min-height: calc(100vh - (120px + 20px));
}

.section__title {
	margin-bottom: 60px;
}

.text-center {
	text-align: center;
}

/* font-size */
.fs-20 {
	font-size: 1.25rem;
}

.fs-18 {
	font-size: 1.125rem;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: var(--white);
	z-index: 1;
}
.header.sticky {
	transition: all 0.3s ease;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, .2);
	position: fixed;
	width: 100%;
	top: 0;
}

.header__container {
	height: calc(var(--logo-height) + 20px);
	padding: 10px 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sticky .header__container {
	height: calc(var(--logo-height) + 20px);
}

/* Menu */
.menu__list {
	display: flex;

	/*scroll spy*/
	position: relative;
}

.menu__link {
	display: flex;
	align-items: center;
	padding: 15px;
	font-weight: bold;
	text-decoration: none;
	color: var(--text);
}

.menu__link.active {
	color: var(--accent);
}

.menu__link:hover {
	color: var(--accent);
}

/* Logo */
.logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.logo__image {
	height: var(--logo-height);
}

/* Language switcher */
.lang-switcher {
	display: flex;
}

.lang-switcher__link {
	display: flex;
	align-items: center;
	padding: 15px 10px;
	text-decoration: none;
	color: var(--text);
	transition: color .3s ease;
}

.lang-switcher__link:hover {
	color: var(--text);
}

.lang-switcher__link.active {
	font-weight: bold;
	pointer-events: none;
}

/* Banner */
.banner {
	text-align: center;
}

.banner__title {
	margin-bottom: 30px;
}

.banner__contact-list {
	font-size: 1.5rem;
	color: var(--subtext);
	font-weight: 300;
	margin-bottom: 30px;
}

.banner__contact-list a {
	color: var(--subtext);
	font-weight: 300;
}

/* Card */
.card__icon {
	width: 100px;
	margin-bottom: 30px;
}

.card__title {
	margin-bottom: 20px;
	font-weight: bold;
}

/* Contact */
.contact {
	margin-bottom: 35px;
}

.contact__link {
	font-size: 1.625rem;
	font-weight: bold;
}

/* Address */
.address {
	font-weight: 300;
	margin-bottom: 35px;
}

/* Social */
.social {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.social__link {
	color: var(--text);
}

.social__link:hover {
	color: var(--accent);
}

/* Hamburger menu */
#nav-icon3 {
	width: 32px;
	height: 22px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#nav-icon3 span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: var(--accent);
	border-radius: 2px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
  }

#nav-icon3 span:nth-child(1) {
	top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
	top: 9px;
}

#nav-icon3 span:nth-child(4) {
	top: 18px;
}

.menu-opened #nav-icon3 span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}

.menu-opened  #nav-icon3 span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu-opened  #nav-icon3 span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu-opened  #nav-icon3 span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
}

/* Footer */
.footer {
	color: var(--white);
	display: flex;
	justify-content: center;
	background: var(--text);
	padding: 40px 20px;
	font-weight: 300;
}