/* CSS variables */
:root {
  --main-font: "Outfit", sans-serif;
  --secondary-font: "Lora", sans-serif;
  --title-color: #0F1435;
  --content-color: #6B6F87;
  --light-color: #84889C;
  --blue-hover-color: #1E308D;
  --red-color: #E31B23;
  --black-color: #121212;
  --letter-s5: -.5px;
}

/* Fonts */
@font-face {
  font-family: "Lora";
  src: local("Lora-Regular"), url("../fonts/Lora-Regular.woff2") format("woff2"), url("../fonts/Lora-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: local("Lora-SemiBold"), url("../fonts/Lora-SemiBold.woff2") format("woff2"), url("../fonts/Lora-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: local("Outfit-Regular"), url("../fonts/Outfit-Regular.woff2") format("woff2"), url("../fonts/Outfit-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: local("Outfit-Medium"), url("../fonts/Outfit-Medium.woff2") format("woff2"), url("../fonts/Outfit-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: local("Outfit-SemiBold"), url("../fonts/Outfit-SemiBold.woff2") format("woff2"), url("../fonts/Outfit-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: local("Outfit-Bold"), url("../fonts/Outfit-Bold.woff2") format("woff2"), url("../fonts/Outfit-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* CSS reset */
html {
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

body {
  background-color: #fff;
  height: 100%;
  position: relative;
  line-height: 1.1;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--main-font);
  color: var(--content-color);
}

iframe {
  border: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

input,
textarea {
  width: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  background-clip: padding-box;
  font-family: inherit;
  border: none;
  border-radius: 0;
  font: inherit;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font: inherit;
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font: inherit;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
}
input::placeholder,
textarea::placeholder {
  font: inherit;
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}
@media screen and (max-width: 1240px) {
  input:focus,
textarea:focus {
    font-size: 16px;
  }
}

input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px #fff inset !important;
}

table {
  display: block;
  border-collapse: collapse;
  border-spacing: 0;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  table-layout: fixed;
  text-align: center;
}

th,
td {
  vertical-align: middle;
  min-width: 140px;
}

button {
  border: 0;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
  color: inherit;
  border-width: 0;
  -webkit-appearance: button;
  font: inherit;
}

a,
a:visited {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

a:hover {
  text-decoration: none;
}

i {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main wrapper */
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Main block */
.main {
  flex: 1 1 auto;
}

/* Main container */
.container {
  margin: 0 auto;
  max-width: 1420px;
  padding: 0 15px;
}

/* Main flex column */
.flex-c {
  display: flex;
  flex-direction: column;
}

/* Inputs global */
.email-input {
  border: 1px solid #E2E7E9;
  max-height: 46px;
}

.password-input__wrap {
  border: 1px solid #E2E7E9;
}

.global-input {
  padding: 11px 15px;
  font-size: 14px;
  line-height: 24px;
  color: var(--title-color);
  font-weight: 400;
}
.global-input::-moz-placeholder {
  color: var(--light-color);
}
.global-input:-ms-input-placeholder {
  color: var(--light-color);
}
.global-input::placeholder {
  color: var(--light-color);
}

/* Overlay */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s, z-index 0.3s ease-in-out;
}
.overlay.is-active {
  opacity: 1;
  z-index: 98;
}

/* Columns */
.columns {
  display: grid;
  grid-template: auto/auto minmax(300px, 1fr) auto;
  gap: clamp(20px, 2.5vw, 40px);
}
.columns--mb45 {
  margin-bottom: clamp(20px, 4vw, 60px);
}
.columns--two {
  grid-template: auto/1fr auto;
}

.column--narrow {
  width: clamp(200px, 20vw, 300px);
}
.column__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  padding-bottom: clamp(10px, 1.5vw, 30px);
}
.column__sticky-inner {
  max-height: 1000px;
  overflow-y: auto;
  /* For firefox */
  scrollbar-width: thin;
  scrollbar-color: #555 #fff;
  transition: scrollbar-color 0.3s ease-out;
  /* For chrom and safari */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.column__sticky-inner::-webkit-scrollbar {
  width: 5px;
}
.column__sticky-inner::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.column__sticky-inner::-webkit-scrollbar-thumb {
  background: #888;
}
.column__sticky-inner::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Banners */
.nb {
  display: flex;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto;
}
.nb__wrap {
  display: flex;
}
.nb--wide {
  max-height: 90px;
  max-width: 730px;
  width: 100%;
}
.nb--square {
  max-height: 250px;
}
.nb--high {
  max-height: 500px;
}
.nb--mt50 {
  margin-top: clamp(30px, 4vw, 50px);
}
.nb--mb50 {
  margin-bottom: clamp(30px, 4vw, 50px);
}
.nb--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

/* Global title link */
.global-link {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  padding: 14px 0;
  border-top: 1px solid #0B2239;
  border-bottom: 1px solid #E2E7E9;
  position: relative;
  padding-left: 17px;
  width: 100%;
  margin-bottom: 21px;
}
.global-link h4 {
  color: #000;
}
.global-link::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--red-color);
  transition: background-color 0.3s;
}
.global-link:hover::before {
  background-color: #01C716;
}
.global-link--central {
  justify-content: center;
}
.global-link--central:before {
  position: static;
  margin-right: 10px;
  margin-top: 10px;
}
.global-link--f16 {
  font-size: 16px;
  letter-spacing: -0.5px;
  margin-bottom: 35px;
}
.global-link--f20 {
  font-size: 20px;
}

/* Global list */
.global-list {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 1vw, 18px);
}
.global-list--border-b li {
  border-bottom: 1px solid #E2E7E9;
  padding-bottom: 13px;
}
.global-list--border-bl li {
  border-bottom: 1px solid #E2E7E9;
  padding-bottom: 13px;
}
.global-list--border-bl li:last-child {
  border-bottom: 0;
}
.global-list--g20 {
  gap: 20px;
}
.global-list--center .news {
  align-items: center;
  gap: clamp(15px, 1.5vw, 25px);
}
.global-list--center .news__img {
  width: 250px;
  flex-shrink: 0;
}
.global-list--center .news__label {
  margin-bottom: clamp(5px, 1vw, 10px);
}
.global-list--center .news__title {
  margin-bottom: 7px;
}
.global-list--horizontal {
  flex-direction: row;
  gap: clamp(15px, 1.5vw, 30px);
}
.global-list--numbered {
  list-style: none;
  counter-reset: item;
  gap: 13px;
}
.global-list--numbered li {
  display: block;
  margin-left: 22px;
}
.global-list--numbered li:last-child {
  border-bottom: 0;
}
.global-list--numbered li::before {
  content: counter(item) ". ";
  counter-increment: item;
  position: absolute;
  margin-left: -22px;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  color: var(--red-color);
}
.global-list--numbered .news__title {
  margin-bottom: 8px;
}

/* Subscription */
.subscription__form {
  display: flex;
}
.subscription__form label {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 17px;
  line-height: 21px;
  color: var(--title-color);
  width: 100%;
}
.subscription__form input[type=text] {
  border: 1px solid #DBDBDB;
  border-right: 0;
  padding: 12px 15px 12px 39px;
  background-image: url(../img/icons/gr-mail.svg);
  background-repeat: no-repeat;
  background-position: left 13px center;
  background-size: 18px;
  font-size: 14px;
  line-height: 21px;
}
.subscription__form input[type=text]::-moz-placeholder {
  font-size: 14px;
  line-height: 21px;
}
.subscription__form input[type=text]:-ms-input-placeholder {
  font-size: 14px;
  line-height: 21px;
}
.subscription__form input[type=text]::placeholder {
  font-size: 14px;
  line-height: 21px;
}
.subscription__form input[type=submit] {
  background-color: var(--red-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  max-width: 100px;
}

/* Pagination */
.pagination {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  justify-content: space-between;
}
.pagination__next {
  color: #fff;
}
.pagination__next a {
  background-color: var(--red-color);
  padding: clamp(11px, 1vw, 14px) 22px;
}
.pagination__numbers {
  color: #000;
  display: flex;
  gap: 6px;
}
.pagination__numbers li {
  width: clamp(40px, 4vw, 46px);
  height: clamp(40px, 4vw, 46px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__numbers li a {
  background-color: #F3F3F3;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}
.pagination__numbers li a:hover {
  background-color: #000;
  color: #fff;
}

/* Checkbox */
.check-wrap {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--title-color);
}
.check-wrap .check-input {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  opacity: 0;
}
.check-wrap .check-style {
  display: inline-block;
  position: relative;
  width: 23px;
  height: 23px;
  cursor: pointer;
  border: 1px solid #DCE0E9;
  background-color: #fff;
  margin-right: 9px;
  border-radius: 4px;
}
.check-wrap .check-style::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
  top: 50%;
  left: 50%;
  background-color: #0A0D28;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.1s;
  background-image: url(../img/icons/checked-w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  border-radius: 4px;
}
.check-wrap .check-input:checked + .check-style {
  border-color: transparent;
}
.check-wrap .check-input:checked + .check-style::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%) scale(1);
}

/* Button hover */
.btn-hover {
  position: relative;
  color: #000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 15px;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius: 15px;
}
.btn-hover span {
  transition: all 0.2s;
  transform: scale(1, 1);
  z-index: 2;
}
.btn-hover::before, .btn-hover::after {
  content: "";
  position: absolute;
  transition: all 0.5s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 15px;
}
.btn-hover::before {
  opacity: 0;
  background: rgba(8, 7, 7, 0.1);
  transform: scale(1, 0.1);
}
.btn-hover::after {
  transition: all 0.3s;
  border: 1px solid rgba(8, 5, 5, 0.5);
}
.btn-hover:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.btn-hover:hover::after {
  transform: scale(1, 0.1);
  opacity: 0;
}

/* Link hover */
.link-hover {
  position: relative;
  padding: 3px;
}
.link-hover::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3px;
  transition: all 0.2s;
}
.link-hover:hover::after {
  width: 100%;
}

/* Password input */
.password-input__wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.password-input__show-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 30px;
  height: 30px;
  transition: opacity 0.2s;
  background-image: url(../img/icons/visible.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px;
}
.password-input__show-btn.is-active {
  background-image: url(../img/icons/not-visible.svg);
}
.password-input__show-btn.is-hidden {
  opacity: 0;
}

/* Scroll to top btn */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: clamp(10px, 2vw, 30px);
  z-index: 99;
  background-color: #2E2E2E;
  cursor: pointer;
  width: clamp(40px, 3vw, 49px);
  height: clamp(40px, 3vw, 49px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.is-show {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0%);
}
.scroll-top img {
  width: 8px;
  height: 15px;
}
.scroll-top:hover img {
  -webkit-animation: to-top-btn infinite linear 1s;
  animation: to-top-btn infinite linear 1s;
}

@-webkit-keyframes to-top-btn {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(20%);
  }
  75% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes to-top-btn {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(20%);
  }
  75% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0%);
  }
}
/* Search input */
.search-input {
  display: flex;
  background-color: #fff;
}
.search-input input {
  padding: 5px 15px 5px 5px;
}
.search-input__reset {
  flex-shrink: 0;
  cursor: pointer;
  width: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/icons/search-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  transition: opacity 0.2s;
}
.search-input__reset.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Burger css */
.burger {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 16px;
  z-index: 10;
  position: relative;
  margin-right: 90px;
}
.burger::after {
  content: "Menu";
  position: absolute;
  left: 30px;
  color: var(--title-color);
  line-height: 21px;
}
.burger__main {
  position: absolute;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: center;
}
.burger__main span {
  display: block;
  width: 100%;
  height: 2px;
}
.burger__main span:nth-child(1) {
  transition-delay: 0.5s;
}
.burger__main span:nth-child(2) {
  transition-delay: 0.625s;
}
.burger__main span:nth-child(3) {
  width: 13px;
  transition-delay: 0.75s;
}
.burger__toggle {
  width: 20px;
  height: 16px;
  position: relative;
  cursor: pointer;
}
.burger__toggle span {
  position: relative;
  background: #000;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
}
.burger__cross {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
}
.burger__cross span:nth-child(1) {
  height: 0%;
  width: 2px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition-delay: 0s;
}
.burger__cross span:nth-child(2) {
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition-delay: 0.25s;
}
.burger__toggle.is-active .burger__main span {
  width: 0;
}
.burger__toggle.is-active .burger__main span:nth-child(1) {
  transition-delay: 0s;
}
.burger__toggle.is-active .burger__main span:nth-child(2) {
  transition-delay: 0.125s;
}
.burger__toggle.is-active .burger__main span:nth-child(3) {
  transition-delay: 0.25s;
}
.burger__toggle.is-active .burger__cross span:nth-child(1) {
  height: 100%;
  transition-delay: 0.625s;
}
.burger__toggle.is-active .burger__cross span:nth-child(2) {
  width: 100%;
  transition-delay: 0.375s;
}

/* Burger css end */
/* Header */
.header {
  padding: 21px 0;
  border-bottom: 1px solid #E2E7E9;
  margin-bottom: clamp(30px, 4vw, 58px);
  position: relative;
  z-index: 2;
}
.header__inner {
  display: grid;
  align-items: center;
  grid-template: 1fr/1fr 1fr 1fr;
  gap: 20px;
}
.header__left, .header__right {
  display: flex;
  align-items: center;
}
.header__logo {
  justify-self: center;
  max-width: 239px;
  max-height: 64px;
  min-width: 150px;
  width: 20vw;
}
.header__left {
  justify-content: flex-start;
}
.header__right {
  justify-content: flex-end;
}
.header__search {
  display: flex;
  align-items: center;
}
.header__search-close {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}
.header__search-btn {
  font-size: 19px;
  color: #000;
  cursor: pointer;
  margin-right: 16px;
}
.header__search-form {
  display: flex;
  align-items: center;
}
.header__search-form input {
  line-height: 21px;
}
.header__search-inner {
  position: relative;
  transition: transform 0.3s, opacity 0.2s ease-in-out;
  transform: translateX(30%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.header__search-inner.is-active {
  transform: translateX(0);
  opacity: 1;
  z-index: 1;
  pointer-events: all;
}
.header__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  margin-right: 27px;
  padding-right: 29px;
  border-right: 1px solid #E2E7E9;
}
.header__socials-facebook {
  color: #3B5999;
  font-size: 18px;
}
.header__socials-facebook a {
  width: 18px;
  height: 18px;
}
.header__socials-twitter {
  font-size: 17px;
  color: #55ACEE;
}
.header__socials-twitter a {
  width: 20px;
  height: 20px;
}
.header__socials-youtube {
  font-size: 20px;
  color: #E53935;
}
.header__socials-youtube a {
  width: 23px;
  height: 23px;
}
.header__socials li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__socials li a {
  transition: transform 0.2s ease-in-out;
}
.header__socials li a:hover {
  transform: translateY(-3px);
}
.header__login {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  cursor: pointer;
}
.header__login i {
  font-size: 19px;
}
.header__login span {
  color: var(--title-color);
  line-height: 21px;
}

/* Footer */
.footer {
  background-color: var(--black-color);
  padding-top: clamp(30px, 4vw, 56px);
}
.footer__main {
  padding-bottom: 41px;
  border-bottom: 1px solid #2F2F2F;
  color: #A0A0A0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.footer__main h4 {
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 19px;
  color: #fff;
  letter-spacing: -0.1px;
}
.footer__main ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__main ul a {
  transition: color 0.2s;
}
.footer__main ul a:hover {
  color: #fff;
}
.footer__main-column {
  display: flex;
  flex-direction: column;
}
.footer__bottom {
  padding: clamp(20px, 2vw, 32px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__bottom-menu ul {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 25px;
  font-weight: 500;
  font-size: 14px;
}
.footer__bottom-socials ul {
  display: flex;
  color: #A2A2A2;
  gap: 34px;
  align-items: center;
}
.footer__bottom-socials a {
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.footer__bottom-socials a:hover {
  color: #fff;
}

/* Menu */
.menu {
  position: absolute;
  background-color: #fff;
  top: 110px;
  padding: clamp(30px, 4vw, 55px) 0 clamp(30px, 4vw, 55px);
  width: 100%;
  border-bottom: 1px solid #E2E7E9;
  transform: translateY(10%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s, opacity 0.4s ease-in-out;
}
.menu.is-active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
}
.menu__inner {
  display: grid;
  grid-template: 1fr/0.5fr 2fr 0.5fr;
}
.menu__item {
  padding: 10px 0;
}
.menu__central {
  border-left: 1px solid #E2E7E9;
  border-right: 1px solid #E2E7E9;
  padding-left: 37px;
  padding-right: 37px;
  margin: 0 43px;
}
.menu__central-lists {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.menu__title {
  color: var(--red-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  font-family: var(--secondary-font);
  margin-bottom: 25px;
}
.menu__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.menu__list a {
  transition: color 0.2s;
}
.menu__list a:hover {
  color: var(--blue-hover-color);
}

/* Login */
.login {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 184px rgba(0, 0, 0, 0.25);
  width: clamp(300px, 80vw, 560px);
  padding: clamp(30px, 6vw, 70px) 10px clamp(20px, 5vw, 60px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s, z-index 0.3s ease-in-out;
  max-height: 90vh;
}
.login.is-active {
  opacity: 1;
  z-index: 98;
}
.login__main {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.login__inner {
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}
.login__logo {
  max-width: 210px;
  max-height: 53px;
  margin-bottom: 56px;
}
.login__form {
  width: 100%;
}
.login__input {
  font-weight: 500;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login__input span {
  color: var(--title-color);
}
.login__input + .login__input {
  margin-top: 14px;
}
.login__actions {
  margin: 23px 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.login__forgot {
  font-size: 14px;
  line-height: 24px;
}
.login__btn {
  background-color: #1E308D;
  font-weight: 600;
  color: #fff;
  line-height: 24px;
  padding: 13px 16px 16px;
  box-shadow: 0 10px 10px -5px rgba(31, 46, 122, 0.2);
  margin-bottom: 44px;
}
.login__socials {
  width: 100%;
  margin-bottom: 23px;
}
.login__socials-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.login__socials-top::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 51%;
  left: 0;
  background-color: #E2E7E9;
  z-index: 1;
}
.login__socials-top span {
  line-height: 24px;
  background-color: #fff;
  z-index: 10;
  padding: 0 11px;
  display: inline-block;
}
.login__socials-links {
  display: grid;
  grid-template: 1fr/1fr 1fr 1fr;
  gap: 9px;
}
.login__socials-links li {
  background-color: #F7F7F7;
  border-radius: 6px;
}
.login__socials-links li a {
  height: clamp(40px, 5vw, 62px);
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.login__socials-links li:nth-child(1) a {
  background-image: url(../img/icons/s-facebook.svg);
  background-size: 13px;
}
.login__socials-links li:nth-child(2) a {
  background-image: url(../img/icons/s-twitter.svg);
  background-size: 23px;
}
.login__socials-links li:nth-child(3) a {
  background-image: url(../img/icons/s-google.svg);
  background-size: 23px;
}
.login__to-register {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 24px;
  color: var(--title-color);
}
.login__to-register span {
  display: inline-block;
  color: var(--light-color);
}
.login__to-register a {
  font-weight: 500;
}

/* Sharing */
.sharing {
  position: fixed;
  top: 317px;
  left: clamp(20px, 3vw, 40px);
}
.sharing__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sharing__list li {
  color: #fff;
}
.sharing__list li:nth-child(1) {
  font-size: 12px;
}
.sharing__list li:nth-child(1) a {
  background-color: #3B5999;
}
.sharing__list li:nth-child(2) {
  font-size: 11px;
}
.sharing__list li:nth-child(2) a {
  background-color: #55ACEF;
}
.sharing__list li:nth-child(3) {
  font-size: 17px;
}
.sharing__list li:nth-child(3) a {
  background-color: #01C716;
}
.sharing__list li:nth-child(4) {
  font-size: 12px;
}
.sharing__list li:nth-child(4) a {
  background-color: #0F1435;
}
.sharing__list a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s;
}
.sharing__list a:hover {
  transform: translateX(5px);
}

/* News */
.news {
  display: flex;
}
.news__title {
  color: var(--title-color);
  transition: color 0.2s;
}
.news__title.hot-news {
  color: var(--red-color);
}
.news__title:hover {
  color: var(--blue-hover-color);
}
.news__title--xl {
  font-size: clamp(30px, 3vw, 41px);
  font-weight: 600;
  line-height: clamp(32px, 3vw, 44px);
}
.news__title--x {
  font-weight: 500;
  font-size: 28px;
  line-height: 25px;
}
.news__title--md {
  font-weight: 500;
  font-size: 24px;
  line-height: 27px;
}
.news__title--m {
  font-weight: 500;
  font-size: 22px;
}
.news__title--sm {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
}
.news__title--s {
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
}
.news__title--xs {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
}
.news__img {
  width: 100%;
}
.news__time {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #84889C;
  margin-bottom: 5px;
}
.news__label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--red-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news__text {
  font-family: var(--secondary-font);
  line-height: 22px;
}
.news__info {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--light-color);
  font-size: 13px;
  line-height: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}
.news__info-name {
  padding-right: 9px;
  position: relative;
}
.news__info-name::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #84889C;
}
.news__info-comments {
  transition: color 0.2s;
}
.news__info-comments:hover {
  color: var(--title-color);
}
.news__video-sm {
  position: relative;
  padding-left: 31px;
}
.news__video-sm::before {
  position: absolute;
  content: "";
  width: 21px;
  height: 21px;
  background-image: url(../img/icons/play-r.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 21px;
}
.news__inner {
  display: flex;
  flex-direction: column;
}
.news__list {
  display: flex;
  flex-direction: column;
}
.news__list--g20 {
  gap: 20px;
}
.news__spotlight {
  margin-bottom: clamp(20px, 4vw, 57px);
}
.news__spotlight-inner {
  display: grid;
  grid-template: auto/repeat(4, 1fr);
  gap: clamp(20px, 2vw, 30px);
}
.news__spotlight .global-link {
  margin-bottom: 28px;
}
.news__box--mb60 {
  margin-bottom: clamp(20px, 4vw, 60px);
}
.news__box--mb50 {
  margin-bottom: clamp(20px, 3.5vw, 50px);
}
.news__box--mb30 {
  margin-bottom: clamp(20px, 1.5vw, 30px);
}
.news__bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(20px, 1.5vw, 30px);
  margin-bottom: clamp(25px, 4vw, 65px);
}
.news__bottom .global-list li:last-child {
  border-bottom: 0;
}
.news--xl {
  margin-bottom: clamp(25px, 4vw, 51px);
}
.news--xl .news__img {
  margin-bottom: 18px;
}
.news--xl .news__label {
  margin-bottom: 13px;
}
.news--xl .news__title {
  margin-bottom: clamp(10px, 1.5vw, 19px);
  letter-spacing: var(--letter-s5);
}
.news--xl .news__text {
  margin-bottom: 10px;
}
.news--xm .news__img {
  margin-bottom: 24px;
}
.news--xm .news__label {
  margin-bottom: clamp(5px, 1vw, 15px);
}
.news--xm .news__title {
  margin-bottom: 8px;
}
.news--xm .news__text {
  margin-bottom: 10px;
}
.news--m {
  align-items: center;
  gap: clamp(15px, 2vw, 29px);
  margin-bottom: clamp(20px, 2vw, 35px);
}
.news--m .news__img--center {
  max-width: 350px;
}
.news--m .news__label {
  margin-bottom: 9px;
}
.news--m .news__title {
  margin-bottom: 7px;
}
.news--m .news__text {
  margin-bottom: 10px;
}
.news--ml .news__img {
  margin-bottom: 13px;
}
.news--ml .news__label {
  margin-bottom: 9px;
}
.news--ml .news__title {
  margin-bottom: 11px;
}
.news--md .news__img {
  margin-bottom: 16px;
}
.news--md .news__label {
  margin-bottom: clamp(5px, 1vw, 9px);
}
.news--md .news__title {
  margin-bottom: 9px;
}
.news--s {
  align-items: center;
  gap: 15px;
}
.news--s .news__img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.news--horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-bottom: clamp(10px, 2vw, 30px);
}
.news--horizontal .news__img {
  margin-bottom: 16px;
  overflow: hidden;
}
.news--horizontal .news__label {
  margin-bottom: 9px;
}
.news--border-b {
  padding-bottom: 16px;
  border-bottom: 1px solid #EFF3F4;
}
.news--vertical {
  flex-direction: column;
}
.news--mb20 {
  margin-bottom: 20px;
}
.news--video .news__img {
  position: relative;
}
.news--video .news__img::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/icons/play-bk.svg);
  background-repeat: no-repeat;
  background-position: left 51% center;
}

/* Home page */
.home-page__top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 60px);
}

/* Category */
.category__title {
  font-weight: 600;
  font-size: 41px;
  line-height: 44px;
  color: #000;
  font-family: var(--secondary-font);
  margin-bottom: 33px;
}
.category__top {
  display: grid;
  grid-template: auto/1fr 300px;
  gap: clamp(20px, 3vw, 40px);
  justify-content: space-between;
  margin-bottom: clamp(15px, 2vw, 32px);
  padding-bottom: clamp(15px, 2vw, 32px);
  border-bottom: 1px solid #E2E7E9;
}
.category__top .news {
  margin: 0;
}
.category__top .global-list li:last-child {
  border-bottom: 0;
}
.category__list {
  margin-bottom: 54px;
}
.category__list li {
  padding-bottom: 20px;
}
.category__list .news {
  align-items: center;
  gap: 30px;
}
.category__list .news__img {
  max-width: 300px;
  width: 100%;
}
.category__list .news__title {
  margin-bottom: 10px;
}
.category__list .news__label {
  margin-bottom: 10px;
}
.category__list .news__text {
  margin-bottom: 11px;
}
.category__main {
  margin-bottom: clamp(20px, 4vw, 60px);
}

/* Post */
.post__label {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 13px;
}
.post__title {
  font-weight: 600;
  font-size: clamp(30px, 3vw, 41px);
  line-height: clamp(33px, 3vw, 44px);
  color: #000;
  margin-bottom: clamp(10px, 1vw, 13px);
}
.post__title--secondary {
  font-weight: 500;
  font-size: 24px;
  line-height: 27px;
  margin-bottom: 16px;
}
.post__text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 13px;
  font-family: var(--secondary-font);
}
.post__text--m {
  font-size: 15px;
}
.post__text--mb25 {
  margin-bottom: clamp(15px, 2vw, 25px);
}
.post__text-quote {
  font-size: 41px;
  line-height: 1;
  color: #000;
  float: left;
  font-weight: 600;
  margin: 0 15px 7px 0;
}
.post__text-link {
  color: #1E308D;
}
.post__info {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--light-color);
  font-size: 13px;
  margin-bottom: 30px;
}
.post__date {
  position: relative;
  padding-right: 9px;
  padding-left: 21px;
}
.post__date::before {
  position: absolute;
  content: "";
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url(../img/icons/clock.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.post__date::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #84889C;
}
.post__img-main {
  margin-bottom: 9px;
}
.post__description {
  position: relative;
  font-size: 14px;
  line-height: 25px;
  color: var(--light-color);
  padding-left: 13px;
  margin-bottom: clamp(20px, 2vw, 29px);
}
.post__description::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  left: 0;
  top: 11px;
  border-radius: 50%;
  background-color: #E31B23;
}
.post__nb {
  background-color: rgba(247, 247, 247, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(170px, 19vw, 327px);
  padding: 20px;
  margin-bottom: clamp(20px, 2vw, 33px);
}
.post__images {
  display: grid;
  grid-template: auto/1fr 1fr;
  gap: 20px;
  margin-bottom: clamp(20px, 2vw, 34px);
}
.post__act {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.post__act-tags {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 25px;
}
.post__act-tags span {
  display: inline-block;
}
.post__act-tags span:nth-child(1) {
  font-weight: 500;
  color: #000;
  margin-right: 12px;
}
.post__act-share {
  color: #000;
  display: flex;
  gap: 3px;
  font-size: 13px;
}
.post__act-share a {
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  width: 39px;
  height: 39px;
  border: 1px solid #E2E7E9;
  transition: color 0.2s, background-color 0.2s;
}
.post__act-share a:hover {
  color: #1E308D;
}
.post__act-share li:last-child a:hover {
  background-color: var(--black-color);
  color: #fff;
}
.post__box--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.post__stories {
  margin-bottom: clamp(20px, 6vw, 77px);
}