:root {
  --primary-color: #00CD2B;
  --grey-dark: #3C3C3C;
  --grey: #625F5F;
  --grey-light: #F4F4F6;
}

/* inter-tight-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/inter-tight-v9-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 300;
  src: url('../webfonts/inter-tight-v9-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/inter-tight-v9-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/inter-tight-v9-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/inter-tight-v9-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 600;
  src: url('../webfonts/inter-tight-v9-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/inter-tight-v9-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 700;
  src: url('../webfonts/inter-tight-v9-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 900;
  src: url('../webfonts/inter-tight-v9-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-900italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: italic;
  font-weight: 900;
  src: url('../webfonts/inter-tight-v9-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


*:focus {
	outline: none;
}

* {
	scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-family: 'Inter Tight', sans-serif;
  color: var(--grey-dark);
}

main {
	min-height: calc(100vh - 663px);
}

.wp-block-columns {
	max-width: 1440px;
	margin: 0 auto 0 auto;
	padding: 0 15px;
}

.wp-block-group.has-background {
	padding: 115px 0;
}

/* Header */

header {
  padding: 15px 0;
}

header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_inner .header_tile,
header .header_inner nav.secondary {
  background-color: var(--grey-light);
  display: flex;
  padding: 20px;
  border-radius: 10px;
  gap: 100px;
  align-items: center;
  min-height: 84px;
}

header .header_inner .logo_link img {
  width: 125px;
}

header .header_inner .header_tile nav {
  position: relative;
}

header .header_inner .header_tile nav::before {
  content: '';
  position: absolute;
  left: -50px;
  top: -10px;
  height: calc(100% + 20px);
  width: 1px;
  background-color: var(--grey);
  opacity: 0.8;
}

header .header_inner nav ul {
  margin: 0;
  padding: 0;
}

header .header_inner nav ul li {
  display: inline-block;
  margin-left: 30px;
}

header .header_inner nav ul li:first-child {
  margin-left: 0;
}

header .header_inner nav ul li a {
  color: var(--grey-dark);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 600;
}

header .header_inner nav ul li a:hover,
header .header_inner nav ul li.current_page_item a {
  color: var(--primary-color);
}

/* Footer */

footer {
  padding: 100px 0;
  background-color: var(--grey-dark);
  color: #ffffff;
  font-size: 18px;
}

footer .footer_inner {
  padding: 50px;
  border-radius: 10px;
  background: linear-gradient(45deg,rgba(60, 60, 60, 1) 30%, rgba(98, 95, 95, 1) 100%);
}

footer .footer_inner a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}

footer .footer_inner a:hover {
  opacity: 0.6;
}

footer .footer_inner a:has(img):hover {
  opacity: 1;
}

footer .footer_inner img {
  width: 225px;
  margin-bottom: 50px;
}

footer .footer_inner ul {
  margin: 0;
  padding: 0;
}

footer .footer_inner ul li {
  list-style: none;
}

footer .footer_inner ul.social li {
  display: inline-block;
  margin-right: 20px;
}

footer .footer_inner ul.social li a {
  color: #ffffff;
  background-color: var(--primary-color);
  font-size: 30px;
  height: 50px;
  width: 50px;
  display: block;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
}

footer .footer_inner strong {
  font-weight: 600;
}

footer .footer_inner .backlink {
  padding-top: 50px;
  text-align: right;
  font-size: 14px;
}