@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

ul,
ol,
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

img {
  vertical-align: top;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

:root {
  --font-family: "Helvetica", sans-serif;
  --second-family: "Gotham", sans-serif;
  --accent-color: #d22222;
  --bg-color: #242424;
  --layout-bg: #1a1a1a;
  --color-white: #fff;
  --color-white-80: #ffffffcc;
  --color-white-50: #FFFFFF80;
  --color-white-10: #ffffff1a;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  background-color: var(--bg-color);
  color: var(--color-white);
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 1 0;
}

.page-main {
  padding-top: 150px;
}

.container {
  max-width: 1260px;
  padding: 0 10px;
  margin: 0 auto;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
}

.call-wrap {
  border-radius: 100%;
  overflow: hidden;
  background-color: var(--accent-color);
  width: 55px;
  height: 55px;
  position: fixed;
  bottom: 30px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 98;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.call-wrap:hover {
  animation: shake 0.4s infinite;
  box-shadow: 0 0 15px rgba(238, 51, 51, 0.4);
}

.call {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-accent);
}
.call svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(6deg);
  }
  70% {
    transform: rotate(-4deg);
  }
  80% {
    transform: rotate(4deg);
  }
  90% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: var(--layout-bg);
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white-10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* ===== TOP BAR ===== */
  /* ===== MAIN HEADER ===== */
  /* MENU */
  /* SEARCH */
}
.header__upper {
  background: var(--bg-color);
}
.header__top {
  padding: 7px 0 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__lang {
  display: flex;
  gap: 8px;
}
.header__lang-btn {
  background-color: #1a1a1a;
  color: var(--color-white);
  border: 0.5px solid #fff;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.43;
  text-align: center;
  cursor: pointer;
  width: 45px;
  height: 22px;
  padding-top: 2px;
  transition: all 0.2s ease;
}
.header__lang-btn--active {
  border-color: var(--accent-color);
}
.header__lang-btn:hover {
  background-color: var(--accent-color);
}
.header__contacts {
  display: flex;
  gap: 30px;
  font-size: 13px;
}
.header__contacts a {
  color: var(--color-white-80);
  text-decoration: none;
  transition: 0.2s;
  font-weight: 300;
}
.header__contacts a:hover {
  color: var(--color-white);
}
.header__main {
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.header__logo {
  display: inline-block;
  color: var(--accent-color);
  max-width: 118px;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
}
.header__nav {
  margin-left: auto;
  margin-right: 125px;
}
.header__menu {
  display: flex;
  gap: 34px;
}
.header__link {
  color: var(--color-white);
  font-size: 16px;
  transition: 0.2s;
}

.header__link:hover {
  color: var(--accent-color);
}
.header__link--active {
  color: var(--accent-color);
}
.header__search {
  position: relative;
}
.header__search .icon {
  position: absolute;
  left: 15px;
  top: 8px;
}
.header__search .icon-img {
  width: 16px;
  height: 16px;
}
.header__search-input {
  width: 250px;
  padding: 10px 40px 8px;
  border-radius: 20px;
  border: 1px solid var(--accent-color);
  background: transparent;
  color: var(--color-white);
  transition: 0.3s;
}
.header__search-input::-moz-placeholder {
  color: var(--color-white-50);
}
.header__search-input::placeholder {
  color: var(--color-white-50);
}
.header__search-input:focus {
  width: 270px;
  border-color: #ff5252;
}

.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}

.header-hidden {
  transform: translateY(-100%);
}

/* ======================================================
   БУРГЕР (основной стиль)
====================================================== */
.header__burger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 120;
}
.header__burger span {
  width: 28px;
  display: inline-block;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: 0.3s ease;
}
.header__burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  padding: 20px 0 50px;
}
.hero .swiper {
  height: 500px;
}
.hero .swiper-wrapper {
  height: 100%;
}
.hero .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  height: 500px;
  width: 100%;
}
.hero .swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 328px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.hero__content {
  max-width: 744px;
  padding-left: 80px;
  padding-bottom: 80px;
  text-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  box-sizing: content-box;
}
.hero__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25;
  color: #fff;
}
.hero .hero__arrow {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--color-white);
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.hero .hero__arrow:hover {
  transform: scale(1.07);
}
.hero .hero__arrow--prev {
  right: 100px;
}
.hero .hero__arrow img {
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .hero__pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero .hero__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  opacity: 0.5;
  margin: 0;
}
.hero .hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.tags {
  padding: 50px 0;
  /* Левая колонка */
  /* Правая колонка */
}
.tags__body {
  display: flex;
  align-items: end;
  gap: 40px;
  padding-top: 24px;
}
.tags__cloud {
  max-width: 419px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  border-right: 1px solid #565656;
}
.tags__item {
  padding: 7px 10px;
  font-size: 16px;
  background-color: #1a1a1a;
  color: var(--color-white-80);
  border: 1px solid #565656;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
}
.tags__item:hover {
  color: var(--accent-color);
}
.tags__item--active {
  color: var(--accent-color);
}
.tags__popular {
  width: 100%;
}
.tags__popular-title {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}
.tags__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tags__list li {
  line-height: 1.3;
}
.tags__list li a {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  transition: all 0.2s ease;
}
.tags__list li a:hover {
  color: var(--accent-color);
}

.head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid #565656;
}
.head .title {
  position: relative;
}
.head .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--accent-color);
  bottom: -13px;
}
.head.info-head {
  margin-bottom: 20px;
}
.head.info-head .title {
  font-size: 20px;
}
.head.info-head .title::after {
  display: none;
}
.head__more {
  color: var(--color-white-50);
  font-size: 16px;
  transition: 0.2s;
}
.head__more:hover {
  color: var(--color-white);
}
.head__arrows {
  display: flex;
  align-items: center;
  gap: 20px;
}
.head__date {
  color: var(--color-white-50);
  font-size: 16px;
}

.news-main {
  padding: 50px 0;
}
.news-main__body {
  padding-top: 10px;
}
.news-main__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px 30px;
}
.news-main__item {
  max-width: 100%;
  width: 100%;
}
.news-main__link {
  color: var(--color-white);
}
.news-main__link:hover .news-main__title {
  color: var(--accent-color);
}
.news-main__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}
.news-main__title {
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
}
.news-main__text {
  line-height: 1.14;
  color: var(--color-white-80);
}

.news-main-page {
  padding-bottom: 100px;
}

.reviews {
  padding: 50px 0;
}
.reviews-end {
  padding-bottom: 100px;
}
.reviews-end .reviews__img {
  height: 230px;
}
.reviews__body {
  padding-top: 10px;
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.reviews__card {
  max-width: 100%;
  width: 100%;
}
.reviews__link {
  color: var(--color-white);
}
.reviews__link:hover .reviews__title {
  color: var(--accent-color);
}
.reviews__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}
.reviews__title {
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
}
.reviews__text {
  line-height: 1.14;
  color: var(--color-white-80);
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 100;
}

/* POPUP */
.form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  background: #fff;
  width: 456px;
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 101;
}

.form-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button */
.close {
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
}

.form-popup__title {
  margin-bottom: 40px;
  line-height: 1.3;
  border-bottom: 2px solid #c40000;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #242424;
}

/* Input */
.form-modal input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #cacdd2;
  border-radius: 6px;
  font-size: 16px;
  color: #464c52;
  margin-bottom: 20px;
}

/* Button */
.form-modal button {
  width: 100%;
  background: var(--accent-color);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.form-modal button:hover {
  background: #b10000;
}

.breadcrumbs {
  padding-top: 50px;
}
.breadcrumbs__list {
  display: flex;
  gap: 5px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-white-50);
  flex-wrap: wrap;
}
.breadcrumbs__home {
  color: inherit;
  transition: 0.3s ease;
}
.breadcrumbs__home:hover {
  color: var(--accent-color);
}

.cards {
  padding: 55px 0 60px;
}
.cards__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover .card__title {
  color: var(--accent-color);
}
.card__img {
  height: 200px;
  overflow: hidden;
}
.card__img:hover img {
  transform: scale(1.09);
}
.card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in;
}
.card__title {
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
}
.card__text {
  line-height: 1.14;
  color: var(--color-white-80);
  margin-bottom: 15px;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.card__date {
  color: var(--color-white-50);
}
.card__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.29;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: right;
  color: var(--accent-color);
}

.cards-pagination {
  padding-bottom: 100px;
}
.cards-pagination__list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.cards-pagination__link {
  background-color: var(--color-white);
  color: #1a1a1a;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.cards-pagination__link:hover {
  transform: scale(1.05);
}
.cards-pagination__link-btn {
  background-color: var(--accent-color);
}

.cards-pagination__link.active {
  color: #fff;
  background: #d22222;
}

.tool {
  border-radius: 6px;
  width: 25px;
  height: 25px;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 97;
  cursor: pointer;
}

.interview-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px 30px;
}

.interview-card {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 15px;
  color: var(--color-white);
}
.interview-card__img {
  overflow: hidden;
  height: 230px;
}
.interview-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in;
}
.interview-card__img img:hover {
  transform: scale(1.09);
}
.interview-card__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding-bottom: 15px;
  border-bottom: 1px solid #565656;
  margin-bottom: 5px;
}
.interview-card__author-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.interview-card__author-left img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}

.interview-card__author-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.29;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: right;
  color: var(--accent-color);
  transition: all 0.3s ease-in;
}
.interview-card__author-link:hover {
  color: #ff2828;
}
.interview-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.interview-card__text {
  color: var(--color-white-50);
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--color-white);
}

.info-page {
  padding: 40px 0;
}
.info-page .info-page__body .info-head {
  max-width: 1030px;
  margin: 0 auto 20px;
}
.info-page .info-page__banner {
  max-width: 1030px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.info-page .info-page__banner img {
  width: 100%;
}
.info-page .cards__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1030px;
  margin: 0 auto;
  margin-bottom: 30px;
  gap: 50px;
}
.info-page .cards__info .head__author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.info-page .cards__info .head__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-page .cards__info .head__author .head__name {
  font-size: 16px;
  font-weight: 700;
}
.info-page .cards__info h2 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.info-page .line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 30px 0 40px;
}
.info-page .cards__texts {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-white-80);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 20px;
}

.info-page .cards__texts a {
  color: #6262f3;
  text-decoration: underline;
}

.info-page .cards__texts h1,
.info-page .cards__texts h2,
.info-page .cards__texts h3,
.info-page .cards__texts h4,
.info-page .cards__texts h5,
.info-page .cards__texts h6 {
  font-size: 22px;
}

.info-page .cards__texts p {
  max-width: 712px;
}
.info-page .cards__texts blockquote {
  color: var(--color-white-50);
  padding: 0 52px;
  font-style: italic;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  max-width: 834px;
  box-sizing: content-box;
}
.info-page .cards__texts blockquote::before, .info-page .cards__texts blockquote::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
}
.info-page .cards__texts blockquote::before {
  background-image: url("./../assets/icons/block-left.svg");
  left: 0;
}
.info-page .cards__texts blockquote::after {
  background-image: url("./../assets/icons/block-right.svg");
  right: 0;
}
.info-page .info-tags {
  margin: 0 auto;
  padding: 60px 0 37px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 720px;
}
.info-page .info-tags a {
  padding: 7px 10px;
  border: 1px solid #565656;
  border-radius: 6px;
  background-color: var(--layout-bg);
  color: var(--color-white-80);
  font-size: 16px;
  transition: 0.2s;
}
.info-page .info-tags a:hover {
  color: var(--accent-color);
}
.info-page .info-graph {
  margin: 0 auto;
  max-width: 711px;
}
.info-page .info-graph img {
  width: 100%;
}

.about {
  padding: 50px 0;
}
.about__inner {
  display: flex;
  flex-direction: column;
}
.about__banner {
  padding-bottom: 50px;
}
.about__banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__info {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
}
.about__info:not(:last-child) {
  padding-bottom: 50px;
}
.about__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.17;
  text-transform: unset;
}
.about__text {
  max-width: 818px;
  color: var(--color-white-80);
}
.about__text-opacity {
  color: var(--color-white-50);
  font-size: 25px;
  line-height: 1.4;
  font-style: italic;
}

.team {
  padding: 50px 0;
}
.team__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}
.team .team__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
}
.team__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.team__btn {
  transition: all 0.3s ease-in;
}
.team__btn:hover {
  transform: scale(1.09);
}
.team .swiper-slide {
  display: flex;
}
.team .team__item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
}
.team .team__item .team__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.team .team__item .team__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  color: #fff;
}
.team .team__item .team__name {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}
.team .team__item .team__text {
  margin: 0;
  color: var(--color-white-80);
}

.values {
  padding: 50px 0 100px;
}
.values__inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}
.values__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
  min-width: 280px;
  line-height: 1.3;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(287px, 1fr));
  gap: 30px;
  max-width: 816px;
}
.values__item {
  position: relative;
  background: #191919;
  padding: 40px;
  min-height: 250px;
  border-radius: 4px;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.values__item:hover {
  background: var(--accent-color);
}
.values__num {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 100px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.values__name {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-white);
}
.values__text {
  font-size: 14px;
  color: var(--color-white-80);
  max-width: 240px;
}

.privacy {
  padding: 50px 0 100px;
}
.privacy__text {
  font-weight: 400;
  line-height: 1.43;
  color: var(--color-white-80);
  margin-bottom: 20px;
}

.not-found {
  padding: 50px 0 150px;
}
.not-found__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}
.not-found__image img {
  max-width: 750px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contacts {
  padding: 50px 0 100px;
}
.contacts__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 25px 30px;
  max-width: 818px;
  margin: 0 auto;
  padding-top: 20px;
}
.contacts__item {
  width: 100%;
  height: 160px;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  transition: all 0.3s ease-in;
}
.contacts__item:hover {
  transform: scale(1.05);
}
.contacts__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.11;
  color: var(--color-white-80);
}
.contacts__icons {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contacts__icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contacts__row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contacts__link {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contacts .img-wrap {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__text {
  color: var(--color-white-80);
  font-size: 15px;
  line-height: 1.4;
}

.search {
  padding: 50px 0;
}
.search__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.search__input {
  position: relative;
}
.search__input .icon-btn {
  position: absolute;
  left: 15px;
  top: 11px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.search__input .icon {
  width: 16px;
  height: 16px;
}
.search__input input {
  border: 1px solid #565656;
  border-radius: 20px;
  width: 394px;
  height: 40px;
  padding: 13px 40px;
  font-size: 14px;
  font-weight: 400;
  color: #959595;
}
.search__input input:focus {
  border-color: var(--accent-color);
}
.search__filters {
  display: flex;
  gap: 30px;
}
.search__filters .radio {
  display: flex;
  align-items: center;
  border: 1px solid #565656;
  border-radius: 20px;
  padding: 11px 20px;
  color: #959595;
  cursor: pointer;
  transition: 0.2s;
  width: 182px;
  font-size: 14px;
  font-weight: 400;
}
.search__filters .radio input {
  display: none;
}
.search__filters .radio span {
  font-size: 14px;
}
.search__filters .radio input:checked + span {
  color: var(--accent-color);
}
.search__filters .radio input:checked + span::after {
  content: "";
  display: block;
}
.search .sort-select {
  position: relative;
  display: inline-block;
}
.search .sort-select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 14px;
  background: url("./../assets/icons/arrow-down.svg") no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.search .sort-select.open::after {
  transform: translateY(-50%) rotate(180deg);
}
.search .sort-select__field {
  width: 100%;
  border: 1px solid #565656;
  border-radius: 20px;
  padding: 11px 40px 13px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  color: #959595;
  outline: none;
}
.search .sort-select__field:focus {
  border-color: var(--accent-color);
}
.search .sort-select__field option {
  background: var(--bg-color);
  color: var(--color-white);
}
.search__tags {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 0;
  margin-top: 30px;
  padding: 10px 0;
}
.search__tags .tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #1a1a1a;
  border: 1px solid #565656;
  border-radius: 6px;
  font-size: 16px;
  color: var(--color-white);
  white-space: nowrap;
  cursor: pointer;
}
.search__tags .tag input {
  display: none;
}
.search__tags .tag input:checked + span {
  color: var(--accent-color);
}
.search__tags .tag:hover {
  color: var(--accent-color);
}

.result {
  padding: 0 0 100px;
}

.footer {
  background: var(--layout-bg);
  padding: 80px 0 20px;
  color: var(--color-white-80);
  /* LOGO */
  /* LINKS */
  /* CONTACTS */
  /* SOCIALS */
  /* BOTTOM */
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 77px;
  max-width: 1094px;
}
.footer__col {
  max-width: 260px;
}
.footer__col--logo .logo {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
  max-width: 150px;
}
.footer__col--logo p {
  line-height: 1.4;
  color: var(--color-white-80);
  max-width: 211px;
  font-weight: 300;
}
.footer__col--links .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
}
.footer__col--links a {
  display: block;
  font-size: 14px;
  color: var(--color-white-80);
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.footer__col--links a:hover {
  color: var(--accent-color);
}
.footer__col--contacts .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-white);
  display: block;
}
.footer__col--contacts .phone,
.footer__col--contacts .email {
  font-size: 14px;
  display: block;
  color: var(--color-white-80);
  margin-bottom: 10px;
  transition: 0.3s;
}
.footer__col--contacts .phone:hover,
.footer__col--contacts .email:hover {
  color: var(--accent-color);
}
.footer__col--socials .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-white);
}
.footer__col--socials .icons {
  display: flex;
  gap: 15px;
}
.footer__col--socials .icons a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.footer__col--socials .icons a svg {
  width: auto;
  height: auto;
}
.footer__col--socials .icons a svg path {
  fill: var(--accent-color);
}
.footer__col--socials .icons a:hover {
  background: var(--accent-color);
}
.footer__col--socials .icons a:hover svg path {
  fill: var(--color-white);
}
.footer__bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-white-50);
  border-top: 1px solid var(--color-white-10);
}
.footer__bottom a {
  color: var(--color-white-50);
  text-decoration: none;
  transition: 0.3s;
}
.footer__bottom a:hover {
  color: var(--accent-color);
}

.fix-btn {
  position: fixed;
  display: flex;
  right: 16px;
  bottom: 40px;
  z-index: 2;
}

@media (max-width: 1280px) {
  .search__top {
    gap: 15px;
    justify-content: start;
  }
}
@media (max-width: 1200px) {
  .tags__body {
    gap: 20px;
  }
  .tags__popular {
    padding-left: 0;
  }
  .tags__list li a {
    font-size: 16px;
  }
  .search__input input {
    width: 300px;
  }
}
@media (max-width: 1024px) {
  .header__main {
    justify-content: space-between;
    gap: 10px;
  }
  .header__nav {
    margin: 0;
  }
  .header__menu {
    gap: 20px;
  }
  .header__search-input {
    width: 160px;
  }
  .header__search-input:focus {
    width: 160px;
  }
  .tags__body {
    flex-direction: column;
    align-items: start;
    padding-top: 0;
  }
  .tags__cloud {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #565656;
    padding-bottom: 20px;
  }
  .about__info {
    flex-direction: column;
  }
  .search__top {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .hero__content {
    padding-left: 30px;
  }
  .hero__title {
    font-size: 28px;
  }
  .footer__top {
    flex-wrap: wrap;
    gap: 40px;
  }
  .values__inner {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero .swiper-slide {
    height: 300px;
  }
  .hero .swiper {
    height: 300px;
  }
  .header__burger {
    display: flex;
  }
  .header__nav {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    width: 100%;
    background: var(--layout-bg);
    padding: 0 0 20px 0;
    border-bottom: 1px solid #656565;
    position: absolute;
    width: 100%;
    top: 105px;
    left: 0;
  }
  .header__nav.open {
    max-height: 900px;
    opacity: 1;
    visibility: visible;
  }
  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
  }
  .header__search {
    margin-left: auto;
  }
  .header__main {
    gap: 16px;
    justify-content: space-between;
  }
  .header__search-input {
    width: 100%;
    max-width: 220px;
  }
  .header__search-input:focus {
    width: 100%;
  }
  .hero__content {
    padding-bottom: 120px;
  }
  .hero__title {
    font-size: 22px;
  }
  .info-page .line {
    margin: 20px 0;
  }
  .info-page .cards__texts {
    gap: 25px;
  }
  .info-page .cards__texts blockquote {
    font-size: 18px;
  }
  .info-page .info-tags {
    padding: 30px 0 20px;
  }
  .interview-cards {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .search__top {
    flex-direction: column;
    width: 100%;
  }
  .search__filters {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .search__filters .radio {
    width: 100%;
  }
  .search__input input {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 680px) {
  .footer {
    padding-top: 40px;
  }
  .footer__top {
    flex-direction: column;
    padding-bottom: 25px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .interview-card__author {
    flex-direction: column;
    align-items: start;
    order: 2;
  }
  .interview-card__author-left {
    gap: 10px;
  }
  .values__grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
  .values,
  .team,
  .about {
    padding: 30px 0;
  }
  .about__banner {
    padding-bottom: 25px;
  }
  .about__info:not(:last-child) {
    padding-bottom: 25px;
  }
  .about__title {
    font-size: 24px;
  }
  .about__text-opacity {
    font-size: 18px;
  }
  .contacts {
    padding: 30px 0;
  }
  .contacts__body {
    grid-template-columns: minmax(200px, 1fr);
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .header__logo {
    font-size: 32px;
  }
  .header__menu {
    flex-direction: column;
    align-items: center;
  }
  .header__contacts {
    gap: 10px;
  }
  .hero__content {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
  }
  .hero .hero__arrow {
    width: 35px;
    height: 35px;
    right: 20px;
  }
  .hero .hero__arrow--prev {
    right: 65px;
  }
  .tags__list li a {
    font-size: 12px;
  }
  .head {
    margin-bottom: 25px;
  }
  .tags,
  .news-main,
  .reviews {
    padding: 30px 0;
  }
  .news-main__list,
  .reviews__list {
    max-width: 350px;
    margin: 0 auto;
  }
  .title {
    font-size: 18px;
  }
  .call-wrap {
    right: 10px;
    width: 45px;
    height: 45px;
  }
  .form-popup {
    width: 90%;
    padding: 35px 20px;
  }
  .interview-cards {
    grid-template-columns: 1fr;
  }
  .about {
    padding: 30px 0;
  }
  .team .team__item .team__content {
    padding: 10px;
  }
  .privacy,
  .not-found {
    padding: 30px 0;
  }
  .header__logo img {
    max-width: 100px;
  }
}
@media (max-width: 340px) {
  .header__contacts {
    gap: 5px;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */