html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  margin: 0;
  outline: none;
  border: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  border-width: 0;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

a {
  display: block;
  outline: none;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

img {
  display: block;
  border: 0;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

:root {
  --font-main: "Roboto", sans-serif;
  --primary: #122640;
  --primary-light: #183b59;
  --secondary: #224d73;
  --secondary-light: #3f688c;
  --secondary-light-extra: #a3b2bf;
  --color-black: #000;
  --color-white: #fff;
  --light-gray: #f2f2f2;
  --unit: 10px;
  --transition: all 0.5s ease-in 0s;
}

* {
  font-family: var(--font-main);
}

@supports (font-size-adjust: 1) {
  * {
    font-size-adjust: 0.5;
  }
}

html,
body {
  position: relative;
  min-height: 100%;
  height: 100%;
  max-width: 100%;
}

body {
  font-size: 16.7px;
  font-family: var(--main-font);
  font-weight: 400;
  line-height: 1.4;
  background-color: #101922;
  color: #ffffff;
}

._wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

._wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

[class*=__container] {
  margin-inline: auto;
  padding-inline: 10px;
  width: 100%;
  max-width: 1360px;
}

.header {
  position: relative;
  margin-bottom: 30px;
  padding: 10px 0;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.header__logo {
  width: 100%;
  max-width: 150px;
}

.header__logo img {
  max-width: 100%;
}

.header__lang {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.header__nav {
  padding: 10px 0;
}

.header__text {
  padding: 0 20px;
  font-family: "RobotoCondensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22.7px;
  line-height: 1.2;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  z-index: 1;
  display: none;
  min-width: 100%;
  -webkit-box-shadow: 0 8px 16px 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px 0 rgba(255, 255, 255, 0.3);
  background-color: #f2f2f2;
}

.dropdown-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  font-size: 16px;
  text-transform: uppercase;
  color: #666;
  gap: 8px;
}

.dropdown-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 20px 4px 8px;
  font-size: 16px;
  text-transform: uppercase;
  color: #666;
  background-color: #f2f2f2;
  cursor: pointer;
  gap: 5px;
}

.dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 9px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #666;
  width: 0;
  height: 0;
}

.dropdown-toggle:hover,
.dropdown-toggle:active,
.dropdown-toggle:focus {
  background-color: #d6d5d5;
}

.dropdown-open .dropdown-content.dropdown-active {
  display: block;
}

.menu {
  min-width: 100%;
}

.menu__button {
  display: none;
}

.menu__lines {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.menu__lines,
.menu__lines::after,
.menu__lines::before {
  position: absolute;
  border-radius: 3px;
  width: 30px;
  height: 4px;
  background-color: #fff;
}

.menu__lines::before {
  content: "";
  top: -8px;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.menu__lines::after {
  content: "";
  right: 0;
  top: 8px;
  width: 100%;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.menu__nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  gap: 30px;
}

.menu__link {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
  cursor: pointer;
}

.menu__link:focus,
.menu__link:hover,
.menu__link:active,
.menu__link_active {
  color: #ffab19;
}

._is-open .menu__lines {
  background: transparent;
}

._is-open .menu__lines::before {
  top: 0;
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

._is-open .menu__lines::after {
  top: 0;
  width: 100%;
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.home {
  padding-bottom: 60px;
}

.column {
  border: 1px solid #000;
}

.column__header {
  border-radius: 34px 34px 0 0;
  padding: 9px 17px;
  background-color: #e1c38e;
}

.column__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24.5px;
  line-height: 1.2;
  color: #101922;
  gap: 4px;
}

.column__body {
  border-radius: 0 0 34px 34px;
  padding: 14px 17px 35px;
  -webkit-box-shadow: inset 0 -20px 15px 0 #c5c5c5;
  box-shadow: inset 0 -20px 15px 0 #c5c5c5;
  background-color: #efeeed;
  position: relative;
}

.column__body-text {
  font-weight: 400;
  font-style: italic;
  font-size: 16.7px;
  line-height: 1.2;
  color: #9f9f9f;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.column__body-list {
  counter-reset: item;
  width: 100%;
  color: #101922;
}

.column__body-list-item {
  position: relative;
  border-bottom: 1px solid #dcdcdc;
  padding: 9px 0 9px 20px;
  color: #121d27;
}

.column__body-list-item::before {
  counter-increment: item;
  content: counter(item) ". ";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.column__body-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18.7px;
  line-height: 22px;
  color: #8f8f8f;
  gap: 5px;
}

.column__body-list-item a span {
  overflow: hidden;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.grid {
  position: relative;
}

.grid-item {
  position: absolute;
}

.footer {
  padding-bottom: 50px;
  font-size: 23.4px;
  line-height: 40px;
  text-align: center;
}

.footer__title {
  font-weight: 900;
}

.footer__text {
  margin: 0 auto 50px;
  max-width: 1200px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 23.4px;
  line-height: 40px;
  text-decoration: underline;
  gap: 40px;
}

@media only screen and (min-width: 767.98px) {
  .header__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }

  .header__logo {
    max-width: 200px;
  }
}

@media only screen and (min-width: 991.98px) {
  .header__text {
    padding: 0 60px;
  }
}

@media only screen and (min-width: 1023.98px) {
  .menu__link {
    font-size: 22.9px;
  }
}

@media only screen and (max-width: 991.98px) {
  .header__lang {
    margin-left: auto;
  }
}

@media all and (max-width: 991.98px) {
  .menu__button {
    position: relative;
    z-index: 2;
    display: block;
    width: 45px;
    height: 45px;
    -webkit-transition: 0.5s ease-in;
    -o-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
  }

  .menu__nav {
    position: absolute;
    right: -100%;
    z-index: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px;
    border-radius: 34px;
    background-color: #101922;
    -webkit-box-shadow: 0 0px 8px 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 0px 8px 0 rgba(255, 255, 255, 0.2);
  }

  ._is-open .menu__nav {
    right: 10px;
  }
}

@media only screen and (max-width: 679.98px) {
  .header__text {
    display: none;
  }
}

@media (any-hover: hover) {
  .dropdown-content a:hover {
    background-color: #d6d5d5;
  }

  .column__body-list-item a:hover {
    color: #101922;
  }

  .footer__nav a:hover {
    color: #ffab19;
  }
}