* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  scrollbar-color: #17181b #fff;
  scrollbar-width: thin;
}
*::-webkit-scrollbar-thumb {
  background-color: #17181b;
}
*::-webkit-scrollbar-track {
  background-color: #fff;
}
*::-webkit-scrollbar-button {
  display: none;
  background-color: #17181b;
}
*::-webkit-scrollbar {
  width: 8px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  font-family: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

@font-face {
  font-family: CrimsonText;
  font-display: swap;
  src: url("../fonts/CrimsonText-Bold.woff2") format("woff2"), url("../fonts/CrimsonText-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: CrimsonText;
  font-display: swap;
  src: url("../fonts/CrimsonText-Regular.woff2") format("woff2"), url("../fonts/CrimsonText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: CrimsonText;
  font-display: swap;
  src: url("../fonts/CrimsonText-SemiBold.woff2") format("woff2"), url("../fonts/CrimsonText-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Futura;
  font-display: swap;
  src: url("../fonts/Futura_Bold.woff2") format("woff2"), url("../fonts/Futura_Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: CrimsonText;
  font-size: 16px;
  line-height: 120%;
  color: #17181b;
}
body.no-scroll {
  position: relative;
}
body.no-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.86);
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}

main {
  flex: 1 1 auto;
}

.container {
  width: min(100% - 60px, 1620px);
  margin-inline: auto;
}
@media (max-width: 359px) {
  .container {
    width: min(100% - 32px, 1620px);
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 9999;
  transition: all 0.5s ease 0s;
}
.preloader__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #000;
  border-left: 4px solid #000;
  animation: loading 1s linear 0s infinite;
}
.preloader.loaded {
  display: none;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
.title {
  color: rgb(23, 24, 27);
  font-size: 65px;
  font-weight: 400;
  line-height: 92.3%;
  font-size: calc(32px + 33 * ((100vw - 320px) / 1600));
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .title {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .title {
    margin-bottom: 20px;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgb(255, 255, 255);
  font-family: CrimsonText;
  font-size: 22px;
  font-weight: 600;
  line-height: 118.181818%;
  border-radius: 50px;
  background: rgb(23, 24, 27);
  color: #fff;
  padding: 22px 40px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .button {
    font-size: calc(16px + 6 * ((100vw - 320px) / 880));
  }
}
.button svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
  color: #fff;
}
.button:active {
  transform: scale(0.9);
}
@media (hover: hover) {
  .button:hover {
    background: #333333;
  }
  .button:hover svg {
    animation: jumping 1.6s linear 0s infinite;
  }
}
@media (max-width: 767px) {
  .button {
    padding: 12px 26px;
  }
  .button svg {
    width: 16px;
    height: 16px;
  }
}

/*------------------------------
header
---------------------------*/
.header {
  margin-top: 140px;
  z-index: 99;
}
.header.element-animation {
  transition: all 0.5s linear 0.2s;
  transform: translateY(-10px);
  opacity: 0;
}
.header.element-animation.element-show {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1800px) {
  .header {
    margin-top: 100px;
  }
}
@media (max-width: 1600px) {
  .header {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .header {
    margin-top: 24px;
  }
}
.header__body {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo {
  max-width: 185px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease 0s;
}
@media (max-width: 480px) {
  .header__logo {
    max-width: 108px;
  }
}
@media (hover: hover) {
  .header__logo:hover img {
    transform: scale(1.05);
  }
}
.menu__icon {
  display: none;
  width: 24px;
  height: 24px;
}
.menu__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 922px) {
  .menu__icon {
    display: block;
  }
}
.menu__icon:active svg {
  color: rgba(0, 0, 0, 0.5);
}
.menu__body {
  display: flex;
  gap: 37px;
  align-items: center;
}
@media (max-width: 922px) {
  .menu__body {
    position: fixed;
    top: -24px;
    right: 0;
    z-index: 99;
    width: min(100%, 340px);
    display: block;
    background: #fff;
    transform: translateY(-100%);
    transition: all 0.4s linear 0s;
    border-radius: 0 0 10px 10px;
    padding: 113px 60px 40px;
    z-index: 99;
  }
  .menu__body.active {
    transform: translateY(0);
    box-shadow: 0px 1px 5px 0px rgba(0, 22, 86, 0.06), -4px 4px 9px 0px rgba(0, 22, 86, 0.05), -7px 9px 12px 0px rgba(0, 22, 86, 0.03), -15px 15px 14px 0px rgba(0, 22, 86, 0.01), 49px 24px 15px 0px rgba(0, 22, 86, 0);
  }
}
@media (max-width: 480px) {
  .menu__body {
    width: 100%;
  }
}
.menu__body-close {
  position: absolute;
  top: 56px;
  right: 56px;
  width: 26px;
  height: 26px;
  display: none;
  align-items: center;
  justify-content: center;
}
.menu__body-close svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
@media (max-width: 922px) {
  .menu__body-close {
    display: flex;
  }
}
.menu__body-close:active svg {
  color: rgba(0, 0, 0, 0.5);
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 37px;
}
.menu__list li {
  overflow: hidden;
  padding-top: 10px;
}
@media (max-width: 922px) {
  .menu__list {
    flex-direction: column;
    align-items: end;
    gap: 20px;
  }
}
.menu__link {
  color: rgb(0, 0, 0);
  font-family: CrimsonText;
  font-size: 25px;
  font-weight: 400;
  line-height: 120%;
  padding-inline: 14px;
  position: relative;
}
.menu__link::after {
  content: attr(data-title);
  font-family: CrimsonText;
  position: absolute;
  padding-inline: 14px;
  left: 0;
  top: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 120%;
  display: block;
  opacity: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: all 0.4s ease 0s;
  will-change: transform;
}
.menu__link span {
  display: inline-block;
  transition: all 0.4s ease 0s;
  will-change: transform;
  transform: translateY(0px);
}
@media (hover: hover) {
  .menu__link:hover:hover span {
    transform: translateY(100%);
    opacity: 0;
  }
  .menu__link:hover:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 922px) {
  .menu__link {
    padding-inline: 0;
  }
}

.menu__lang {
  margin-left: 28px;
  position: relative;
}
.menu__lang.active .menu__lang-active svg {
  transform: rotate(180deg);
}
@media (max-width: 922px) {
  .menu__lang {
    margin-top: 20px;
    margin-left: auto;
    width: max-content;
  }
}
.menu__lang-active {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  font-weight: 700;
  color: #17181b;
  padding: 18px 28px;
  border-radius: 50px;
  box-shadow: 0px 11.27px 18.36px 0px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  cursor: pointer;
}
.menu__lang-active img {
  width: 34px;
  height: 20px;
  object-fit: cover;
  border-radius: 5px;
}
.menu__lang-active svg {
  width: 10px;
  height: 10px;
  object-fit: contain;
  rotate: 90deg;
  transition: all 0.3s ease 0s;
}
@media (max-width: 600px) {
  .menu__lang-active {
    padding: 12px 16px;
    font-size: 17px;
    box-shadow: 0px 16.97px 27.67px 0px rgba(0, 0, 0, 0.1);
  }
  .menu__lang-active img {
    width: 26px;
    height: 18px;
  }
}
.menu__lang-list {
  position: absolute;
  top: calc(100% + 10px);
  border-radius: 20px;
  box-shadow: 0px 11.27px 18.36px 0px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  width: 200px;
  overflow: hidden;
  right: 0;
  transform-origin: center top;
  transform: scaleY(0.5);
  opacity: 0;
  transition: all 0.3s ease 0s;
  will-change: transform;
  pointer-events: none;
}
@media (max-width: 600px) {
  .menu__lang-list {
    width: 180px;
    border-radius: 12px;
    top: calc(100% + 5px);
  }
}
.menu__lang-list.active {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: all;
}
.menu__lang-list li:not(:last-child) {
  border-bottom: 1px solid rgb(189, 189, 189);
}
.menu__lang-list a {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 20px 20px;
  color: rgb(23, 24, 27);
  font-family: CrimsonText;
  font-size: 16px;
  font-weight: 700;
}
.menu__lang-list a img {
  width: 34px;
  height: 20px;
  object-fit: cover;
  border-radius: 5px;
}
.menu__lang-list a.active {
  background: url(../img/icons/check.svg) 90% center/16px 16px no-repeat;
}
@media (hover: hover) {
  .menu__lang-list a:not(.active):hover {
    background: #f7f7f7;
  }
}
@media (max-width: 600px) {
  .menu__lang-list a {
    padding: 14px;
    font-size: 14px;
  }
}

/*------------------------------
hero
---------------------------*/
.hero__body {
  padding: 40px 0 50px;
  height: calc(100svh - 220px);
  min-height: 700px;
  max-height: 840px;
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: 1fr 36px;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1000px) {
  .hero__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    max-height: unset;
    min-height: unset;
  }
}
@media (max-width: 600px) {
  .hero__body {
    gap: 30px;
    padding: 40px 0;
  }
}
.hero__text {
  justify-self: end;
  text-align: right;
}
@media (max-width: 1000px) {
  .hero__text {
    justify-self: center;
    text-align: center;
  }
}
.hero__title {
  color: rgb(23, 24, 27);
  font-family: CrimsonText;
  font-weight: 400;
  line-height: 85%;
  max-width: 700px;
  margin-left: auto;
  margin-bottom: 20px;
  font-size: 70px;
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: calc(30px + 40 * ((100vw - 320px) / 880));
  }
}
.hero__title.element-animation {
  transition: all 0.4s linear 0.6s;
  opacity: 0;
  transform: translateX(40px);
}
.hero__title.element-animation.element-show {
  transform: translateX(0);
  opacity: 1;
}
.hero__sutitle {
  color: rgb(23, 24, 27);
  font-size: 22px;
  font-weight: 400;
  line-height: 118.181818%;
  max-width: 700px;
  margin-bottom: 34px;
  margin-left: auto;
  text-wrap: balance;
  font-size: 22px;
}
@media (max-width: 1200px) {
  .hero__sutitle {
    font-size: calc(14px + 8 * ((100vw - 320px) / 880));
  }
}
.hero__sutitle.element-animation {
  transition: all 0.4s linear 0.8s;
  opacity: 0;
  transform: translateX(40px);
}
.hero__sutitle.element-animation.element-show {
  transform: translateX(0);
  opacity: 1;
}
.hero__button.element-animation {
  transition: all 0.4s linear 1s;
  opacity: 0;
  transform: translateX(40px);
}
.hero__button.element-animation.element-show {
  transform: translateX(0);
  opacity: 1;
}
.hero__button .button {
  margin-left: auto;
}
@media (max-width: 1000px) {
  .hero__button .button {
    margin-inline: auto;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: rgb(196, 196, 196);
  overflow: hidden;
  grid-row: span 2;
  min-height: 400px;
}
.hero__image.element-animation {
  transition: all 0.4s linear 0.4s;
  opacity: 0;
  transform: translateX(40px);
}
.hero__image.element-animation.element-show {
  transform: translateX(0);
  opacity: 1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1000px) {
  .hero__image {
    aspect-ratio: 1.47/1;
    height: auto;
    min-height: unset;
  }
}
.hero__explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero__explore.element-animation {
  transition: all 0.4s linear 1.2s;
  opacity: 0;
}
.hero__explore.element-animation.element-show {
  opacity: 1;
}
@media (max-width: 767px) {
  .hero__explore {
    flex-direction: column-reverse;
  }
}
.hero__explore-title {
  color: rgb(0, 0, 0);
  font-size: 17px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 600px) {
  .hero__explore-title {
    font-size: 14px;
  }
}
.hero__explore-items {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .hero__explore-items {
    gap: 10px;
  }
}
.hero__explore-item {
  color: rgb(0, 0, 0);
  font-weight: 400;
  line-height: 120%;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 30px;
  padding: 8px;
  min-width: 62px;
  text-align: center;
  font-size: 17px;
}
@media (max-width: 1200px) {
  .hero__explore-item {
    font-size: calc(10px + 7 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 600px) {
  .hero__explore-item {
    min-width: unset;
    padding: 5px 8px 3px;
    line-height: 1;
  }
}

@keyframes jumping {
  0%, 100% {
    transform: translate(0) rotate(0);
  }
  40% {
    transform: translateY(-6px) scale(0.9, 1.1) rotate(0);
  }
}
/*------------------------------
partners
---------------------------*/
.partners__body {
  padding: 140px 0 45px;
  width: 100%;
}
@media (max-width: 600px) {
  .partners__body {
    padding: 28px 0;
  }
}
.partners__title {
  color: rgb(23, 24, 27);
  font-family: CrimsonText;
  font-weight: 400;
  line-height: 152%;
  text-align: center;
  font-size: 44px;
}
@media (max-width: 1200px) {
  .partners__title {
    font-size: calc(16px + 28 * ((100vw - 320px) / 880));
  }
}
.partners__slider {
  padding: 40px 0;
}
@media (max-width: 480px) {
  .partners__slider {
    padding: 20px 0;
  }
}
.partners__logo {
  width: 20%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.partners__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

/*------------------------------
services
---------------------------*/
.services__body {
  padding: 140px 0 100px;
}
@media (max-width: 1000px) {
  .services__body {
    width: 100%;
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .services__body {
    padding: 40px 0;
  }
}
@media (min-width: 1001px) {
  .services__slider {
    overflow: unset !important;
  }
}
@media (max-width: 1000px) {
  .services__slider {
    padding-inline: 30px;
  }
}
@media (min-width: 1001px) {
  .services__slider-wrapper {
    display: grid;
    overflow: unset !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, 1fr);
    grid-template-areas: "service2 service3 titles titles" "service2 service3 titles titles" "service2 service3 titles titles" "service2 service1 titles titles" "service2 service1 titles titles" "service4 service1 service5 service6" "service4 service1 service5 service6" "service4 service1 service5 service6";
    column-gap: 10px;
    row-gap: 12px;
  }
  .services__slider-wrapper .services__titles {
    grid-area: titles;
  }
  .services__slider-wrapper .service-1 {
    grid-area: service1;
  }
  .services__slider-wrapper .service-2 {
    grid-area: service2;
    margin-top: auto;
  }
  .services__slider-wrapper .service-3 {
    grid-area: service3;
  }
  .services__slider-wrapper .service-4 {
    grid-area: service4;
    margin-bottom: auto;
  }
  .services__slider-wrapper .service-5 {
    grid-area: service5;
  }
  .services__slider-wrapper .service-6 {
    grid-area: service6;
  }
}
@media (max-width: 1000px) {
  .services__slider-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 1000px) {
  .services__titles {
    text-align: center;
  }
}
.services__title {
  color: rgb(23, 24, 27);
  font-family: CrimsonText;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 45px;
  padding-inline: 20px;
  font-size: calc(28px + 38 * ((100vw - 320px) / 1600));
}
@media (max-width: 1000px) {
  .services__title {
    margin-bottom: 20px;
    padding-inline: 30px;
  }
}
.services__subtitle {
  color: rgb(23, 24, 27);
  font-family: Crimson Text;
  font-weight: 400;
  line-height: 120%;
  max-width: 576px;
  font-size: calc(14px + 11 * ((100vw - 320px) / 1600));
  padding: 20px;
}
@media (max-width: 1000px) {
  .services__subtitle {
    max-width: 100%;
    padding: 0;
    padding-inline: 30px;
  }
}
.services__item {
  border-radius: 25px;
  box-shadow: 0px 27px 83px 1px rgba(0, 0, 0, 0.12);
  background: rgb(255, 255, 255);
  padding: 40px 35px;
  display: flex;
  height: auto;
  flex-direction: column;
  justify-content: end;
}
.services__item.services__item-invert {
  background: #000;
  gap: 30px;
}
.services__item.services__item-invert .services__item-name,
.services__item.services__item-invert .services__item-description {
  color: #fff;
}
.services__item.services__item-invert .services__item-link {
  background: #fff;
  color: #000;
  margin-bottom: 30px;
}
@media (hover: hover) {
  .services__item.services__item-invert .services__item-link:hover {
    background: #f7f7f7;
  }
}
@media (max-width: 1260px) {
  .services__item {
    padding: 30px 20px;
  }
}
@media (max-width: 1000px) {
  .services__item {
    min-height: 308px;
    padding: 30px 24px;
    box-shadow: 0px 7px 22px 8px rgba(0, 0, 0, 0.06);
    gap: 16px;
  }
  .services__item.services__item-invert {
    gap: 16px;
  }
  .services__item.services__item-invert .services__item-link {
    margin-bottom: 0;
  }
}
.services__item-name {
  color: rgb(23, 24, 27);
  font-size: calc(24px + 14 * ((100vw - 320px) / 1600));
  font-weight: 600;
  line-height: 80%;
  margin-bottom: 15px;
}
.services__item-description {
  color: rgb(23, 24, 27);
  font-weight: 400;
  line-height: 115%;
  margin-bottom: 12px;
  font-size: calc(13px + 6 * ((100vw - 320px) / 1600));
}
.services__item-link {
  display: inline-flex;
  border-radius: 40px;
  background: rgb(29, 30, 35);
  color: rgb(255, 255, 255);
  font-family: CrimsonText;
  font-size: 16px;
  font-weight: 700;
  line-height: 118%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 18px;
  width: max-content;
}
.services__item-link svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .services__item-link:hover {
    background: #333333;
  }
  .services__item-link:hover svg {
    transform: scale(1.1) translate(2px, -1px);
  }
}

.section-name {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 30px;
  display: inline-block;
  width: max-content;
  padding: 8px 16px;
  color: rgb(0, 0, 0);
  font-family: CrimsonText;
  font-size: 17px;
  font-weight: 400;
  white-space: nowrap;
  margin-bottom: calc(20px + 47 * ((100vw - 320px) / 1600));
}
@media (max-width: 1000px) {
  .section-name {
    display: block;
    width: max-content;
    margin-inline: auto;
  }
}

.slider-pagination {
  bottom: 0 !important;
  top: unset;
}
.slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgb(217, 217, 217);
  opacity: 1;
  margin: 0 7px;
  transition: all 0.3s ease 0s;
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
@media (min-width: 1001px) {
  .slider-pagination {
    display: none !important;
  }
}

/*------------------------------
marketing
---------------------------*/
.marketing {
  position: relative;
  overflow: hidden;
}
.marketing::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 1820px;
  width: 438px;
  height: 227px;
  border-radius: 30px;
  box-shadow: 0px 31.91px 96.76px 0.69px rgba(0, 0, 0, 0.12);
  background: rgb(255, 255, 255);
  transform: translate(0, -50%);
}
.marketing__body {
  padding: 140px 0 100px;
}
@media (max-width: 1000px) {
  .marketing__body {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .marketing__body {
    padding: 40px 0;
  }
}
.marketing__name {
  margin-bottom: 20px;
}
.marketing__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
@media (max-width: 1000px) {
  .marketing__content {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .marketing__content {
    gap: 10px;
  }
}
.marketing__row {
  display: flex;
  justify-content: end;
  align-items: flex-start;
  gap: 30px;
}
.marketing__row:nth-child(1) {
  gap: 50px;
  padding-right: 50px;
}
@media (max-width: 1000px) {
  .marketing__row:nth-child(1) {
    flex-direction: column;
    padding-right: 0;
  }
  .marketing__row {
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .marketing__row {
    gap: 10px;
    flex-direction: column;
  }
  .marketing__row:nth-child(1) {
    gap: 30px;
  }
}
.marketing__titles {
  flex: 1;
}
@media (max-width: 1000px) {
  .marketing__titles {
    width: 100%;
    max-width: 100%;
  }
}
.marketing__title {
  color: rgb(23, 24, 27);
  font-size: 65px;
  font-weight: 400;
  line-height: 92.3%;
  text-align: right;
  font-size: calc(32px + 33 * ((100vw - 320px) / 1600));
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .marketing__title {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .marketing__title {
    margin-bottom: 20px;
  }
}
.marketing__subtitle {
  color: rgb(23, 24, 27);
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
  text-align: right;
  max-width: 754px;
  margin-left: auto;
  font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
}
@media (max-width: 1000px) {
  .marketing__subtitle {
    text-align: center;
    margin-inline: auto;
  }
}
.marketing__item {
  border-radius: 30px;
  box-shadow: 0px 31px 96px 1px rgba(0, 0, 0, 0.12);
  background: rgb(255, 255, 255);
  padding: 24px 30px;
  max-width: calc(280px + 208 * ((100vw - 320px) / 1600));
}
.marketing__item .section-name {
  display: block;
  margin: 10px 0 0 auto;
}
@media (max-width: 1000px) {
  .marketing__item {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .marketing__item .section-name {
    margin-top: auto;
  }
}
@media (max-width: 600px) {
  .marketing__item {
    padding: 20px;
  }
  .marketing__item .section-name {
    font-size: 15px;
  }
}
.marketing__item-value {
  color: rgb(0, 0, 0);
  font-family: CrimsonText;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  font-size: calc(40px + 48 * ((100vw - 320px) / 1600));
}
.marketing__item-text {
  color: rgb(23, 24, 27);
  font-size: 22px;
  font-weight: 400;
  line-height: 109%;
  font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
}

/*------------------------------
Content
---------------------------*/
.team__body {
  padding: 140px 0 0px;
}
@media (max-width: 1400px) {
  .team__body {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .team__body {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .team__body {
    padding: 40px 0;
  }
}
.team__name {
  margin-bottom: 26px;
}
.team__title {
  color: rgb(23, 24, 27);
  font-size: 65px;
  font-weight: 400;
  line-height: 92.3%;
  text-align: center;
  font-size: calc(32px + 33 * ((100vw - 320px) / 1600));
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .team__title {
    text-align: center;
  }
}
@media (max-width: 922px) {
  .team__title {
    padding-inline: 30px;
  }
}
@media (max-width: 600px) {
  .team__title {
    margin-bottom: 20px;
  }
}
.team__subtitle {
  max-width: 772px;
  margin-inline: auto;
  text-align: center;
  color: rgb(23, 24, 27);
  font-weight: 400;
  line-height: 120%;
  font-size: calc(16px + 9 * ((100vw - 320px) / 1600));
}
@media (max-width: 922px) {
  .team__subtitle {
    padding-inline: 30px;
  }
}
.team__content {
  position: relative;
}
.team__slider {
  padding-inline: 40px;
  user-select: none;
}
@media (max-width: 1200px) {
  .team__slider {
    padding-inline: 20px;
  }
}
.team__slider-wrapper {
  padding: 40px 0 120px;
}
@media (max-width: 1400px) {
  .team__slider-wrapper {
    padding: 40px 0 80px;
  }
}
@media (max-width: 600px) {
  .team__slider-wrapper {
    padding: 40px 0 50px;
  }
}
.team__slide {
  height: auto;
}
.team__slider-prev, .team__slider-next {
  position: absolute;
  width: 36px;
  height: 36px;
  top: calc(50% - 18px);
  z-index: 2;
  user-select: none;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.team__slider-prev:active, .team__slider-next:active {
  scale: 0.9;
}
.team__slider-prev svg, .team__slider-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 922px) {
  .team__slider-prev, .team__slider-next {
    display: none;
  }
}
.team__slider-prev {
  left: -18px;
}
@media (hover: hover) {
  .team__slider-prev:hover {
    translate: -3px 0;
  }
}
@media (max-width: 1400px) {
  .team__slider-prev {
    left: -6px;
  }
}
.team__slider-next {
  right: -18px;
}
@media (hover: hover) {
  .team__slider-next:hover {
    translate: 3px 0;
  }
}
@media (max-width: 1400px) {
  .team__slider-next {
    right: 6px;
  }
}

.teammate {
  border-radius: 30px;
  box-shadow: 0px 47px 34px 2px rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  padding: 56px;
}
@media (max-width: 922px) {
  .teammate {
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .teammate {
    border-radius: 20px;
    box-shadow: 0px 25px 23px 1px rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);
  }
}
.teammate__photo {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.teammate__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teammate__name {
  color: rgb(0, 0, 0);
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  font-size: calc(28px + 16 * ((100vw - 320px) / 1600));
}
.teammate__proff {
  color: rgb(0, 0, 0);
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
  font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
}
.teammate__description {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 600px) {
  .teammate__description {
    font-size: 14px;
  }
}

/*------------------------------
news
---------------------------*/
.news__body {
    padding: 140px 0 0px;
}
@media (max-width: 1400px) {
    .news__body {
        width: 100%;
    }
}
@media (max-width: 1000px) {
    .news__body {
        padding: 60px 0;
    }
}
@media (max-width: 767px) {
    .news__body {
        padding: 40px 0;
    }
}
.news__name {
    margin-bottom: 20px;
}
.news__content {
    position: relative;
}
.news__slider {
    padding-inline: 40px;
    user-select: none;
}
@media (max-width: 1200px) {
    .news__slider {
        padding-inline: 20px;
    }
}
.news__slider-wrapper {
    padding: 40px 0 120px;
}
@media (max-width: 1400px) {
    .news__slider-wrapper {
        padding: 40px 0 80px;
    }
}
@media (max-width: 600px) {
    .news__slider-wrapper {
        padding: 40px 0 50px;
    }
}
.news__item {
    border-radius: 30px;
    box-shadow: 0px 31px 96px 1px rgba(0, 0, 0, 0.12);
    background: rgb(255, 255, 255);
    padding: 24px 30px;
    max-width: calc(280px + 208 * ((100vw - 320px) / 1600));
}
@media (max-width: 1000px) {
    .news__item {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 600px) {
    .news__item {
        padding: 20px;
    }
}
.news__item-title {
    color: rgb(0, 0, 0);
    font-family: CrimsonText;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    font-size: calc(18px + 48 * ((100vw - 320px) / 1600));
}
.news__item-text {
    color: rgb(23, 24, 27);
    font-size: 22px;
    font-weight: 400;
    line-height: 109%;
    font-size: calc(16px + 6 * ((100vw - 320px) / 1600));
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}
.news__item-more{
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.news__item-photo {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}
.news__item-photo .img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}
.news__slider-prev, .news__slider-next {
    position: absolute;
    width: 36px;
    height: 36px;
    top: calc(50% - 18px);
    z-index: 2;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.news__slider-prev:active, .news__slider-next:active {
    scale: 0.9;
}
.news__slider-prev svg, .news__slider-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 922px) {
    .news__slider-prev, .news__slider-next {
        display: none;
    }
}
.news__slider-prev {
    left: -18px;
}
@media (hover: hover) {
    .news__slider-prev:hover {
        translate: -3px 0;
    }
}
@media (max-width: 1400px) {
    .news__slider-prev {
        left: -6px;
    }
}
.news__slider-next {
    right: -18px;
}
@media (hover: hover) {
    .news__slider-next:hover {
        translate: 3px 0;
    }
}
@media (max-width: 1400px) {
    .news__slider-next {
        right: 6px;
    }
}
.news__footer {
    display: flex;
    height: auto;
    justify-content: center;
    padding-top: 20px;
}

.news__footer-link {
    display: inline-flex;
    border-radius: 40px;
    background: rgb(29, 30, 35);
    color: rgb(255, 255, 255);
    font-family: CrimsonText;
    font-size: 16px;
    font-weight: 700;
    line-height: 118%;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 18px;
    width: max-content;
    height: 40px;
}

.news__footer-link svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: all 0.3s ease 0s;
}

/*------------------------------
contacts
---------------------------*/
.contacts__body {
  padding: 120px 0 70px;
}
@media (max-width: 1000px) {
  .contacts__body {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .contacts__body {
    padding: 40px 0;
  }
}
.contacts__name {
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .contacts__name {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .contacts__name {
    margin-bottom: 40px;
  }
}
.contacts__content {
  display: flex;
  align-items: start;
  gap: 45px;
}
@media (max-width: 1000px) {
  .contacts__content {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0;
  }
}
.contacts__application {
  flex: 0 1 50%;
}
.contacts__form {
  width: 100%;
  padding-right: 120px;
  padding-left: 20px;
}
@media (max-width: 1200px) {
  .contacts__form {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .contacts__form {
    padding-inline: 0;
  }
}
.contacts__form-area {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .contacts__form-area {
    margin-bottom: 35px;
  }
}
.contacts__form-area input,
.contacts__form-area textarea {
  color: #000;
  font-family: CrimsonText;
  font-size: 27px;
  font-weight: 400;
  line-height: 120%;
  padding: 16px 0;
  border-radius: 0;
  background: #fff;
  resize: none;
  border-bottom: 2px solid #000;
  width: 100%;
}
.contacts__form-area input::placeholder,
.contacts__form-area textarea::placeholder {
  color: rgb(80, 80, 80);
}
.contacts__form-area input:user-invalid,
.contacts__form-area textarea:user-invalid {
  border-color: rgb(227, 4, 45);
}
@media (max-width: 600px) {
  .contacts__form-area input,
  .contacts__form-area textarea {
    border-bottom: 1px solid #000;
    font-size: 18px;
  }
}
.contacts__form-area textarea {
  min-height: 160px;
}
@media (max-width: 600px) {
  .contacts__form-area textarea {
    min-height: 140px;
  }
}
.contacts__form-label {
  color: rgb(0, 0, 0);
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 600px) {
  .contacts__form-label {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .contacts__form-submit {
    margin-inline: auto;
    padding: 14px 28px;
  }
}
.contacts__info {
  flex: 0 1 50%;
}
.contacts__title {
  margin-bottom: 65px;
}
@media (max-width: 1000px) {
  .contacts__items {
    display: none;
  }
}
.contacts__item:not(:last-child) {
  margin-bottom: 30px;
}
.contacts__item-name {
  color: rgb(122, 122, 122);
  font-size: 25px;
  font-weight: 700;
  line-height: 116%;
  margin-bottom: 6px;
}
.contacts__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgb(0, 0, 0);
  font-family: CrimsonText;
  font-size: 25px;
  font-weight: 400;
  line-height: 116%;
}
.contacts__link svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  color: #000;
  display: inline-block;
  max-width: 0;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  .contacts__link:hover svg {
    max-width: 20px;
  }
}

/*------------------------------
Footer
---------------------------*/
.footer {
  border-top: 2px solid #bdbdbd;
  font-family: CrimsonText;
}
.footer__main {
  padding: 50px 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}
.footer__info {
  max-width: 583px;
}
@media (max-width: 1000px) {
  .footer__info {
    margin-inline: auto;
    text-align: center;
  }
}
.footer__logo {
  max-width: 185px;
  margin-bottom: 14px;
}
.footer__logo img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 1000px) {
  .footer__logo {
    margin-inline: auto;
  }
}
.footer__about-text {
  color: rgb(122, 122, 122);
  font-size: 19px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 70px;
}
@media (max-width: 600px) {
  .footer__about-text {
    font-size: 12px;
    margin-bottom: 50px;
  }
}
.footer__socials-title {
  color: rgb(122, 122, 122);
  font-size: 19px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.footer__socials-items {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1000px) {
  .footer__socials-items {
    justify-content: center;
  }
}
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7a7a;
  border: 2px solid #7a7a7a;
  transition: all 0.3s ease 0s;
}
.footer__social svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media (hover: hover) {
  .footer__social:hover {
    color: #000;
    border-color: #000;
  }
}
.footer__contacts {
  display: none;
}
@media (max-width: 1000px) {
  .footer__contacts {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
  }
}
.footer__contact {
  text-align: center;
}
.footer__contact-label {
  color: rgb(122, 122, 122);
  font-size: 12px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 6px;
}
.footer__contact-link {
  color: rgb(122, 122, 122);
  font-family: CrimsonText;
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
}
.footer__menu {
  flex: 0 0 50%;
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  gap: 20px;
}
@media (max-width: 1000px) {
  .footer__menu {
    display: none;
  }
}
.footer__menu-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__menu-col p {
  color: rgb(122, 122, 122);
  font-size: 20px;
  font-weight: 700;
  line-height: 115%;
}
.footer__menu-link {
  color: rgb(0, 0, 0);
  font-family: CrimsonText;
  font-size: 20px;
  font-weight: 400;
}
@media (hover: hover) {
  .footer__menu-link:hover {
    text-decoration: underline;
    text-decoration-thickness: from-font;
  }
}
.footer__bottom {
  padding: 30px 0;
  border-top: 2px solid #bdbdbd;
  text-align: center;
  color: rgb(122, 122, 122);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .footer__bottom {
    font-size: 12px;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .hero__sutitle,
  .services__subtitle,
  .marketing__subtitle,
  .team__subtitle {
    font-size: 15px;
  }
  .contacts__title {
    font-size: 30px;
  }
  .contacts__form-label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .contacts__form-area input,
  .contacts__form-area textarea {
    font-size: 16px;
  }
  .hero__explore-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__explore-item {
    display: inline;
    width: max-content;
  }
}
/*------------------------------
Portfolio and page head
---------------------------*/
.page-head {
  border-bottom: 2px solid #bdbdbd;
}
.page-head__body {
  padding: 145px 0 45px;
}
@media (max-width: 1800px) {
  .page-head__body {
    padding: 100px 0 45px;
  }
}
@media (max-width: 1600px) {
  .page-head__body {
    padding: 60px 0 45px;
  }
}
@media (max-width: 922px) {
  .page-head__body {
    padding: 80px 0 40px;
  }
}
@media (max-width: 600px) {
  .page-head__body {
    padding: 40px 0;
  }
}
.page-head__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .page-head__info {
    flex-direction: column;
  }
}
.page-head__titles {
  flex: 1;
}
.page-head__title {
  color: rgb(23, 24, 27);
  font-family: CrimsonText;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  font-size: calc(44px + 22 * ((100vw - 320px) / 1600));
}
.page-head__name {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .page-head__name {
    font-size: 14px;
    padding: 5px 12px;
  }
}
.page-head__subtitle {
  max-width: 600px;
  color: rgb(23, 24, 27);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}
@media (max-width: 600px) {
  .page-head__subtitle {
    font-size: 16px;
    text-align: center;
  }
}
.page-head__back {
  display: block;
  margin-bottom: 35px;
  width: 25px;
  height: 25px;
}
.page-head__back svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: #000;
}

.portfolio__body {
  padding: 110px 0;
}
@media (max-width: 922px) {
  .portfolio__body {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .portfolio__body {
    padding: 20px 0;
  }
}
.portfolio__items {
  width: calc(100% + 100px);
  margin-left: -50px;
  /* -webkit-columns: 24vw 3;
  break-after: column;
  columns: 24vw 3;
  gap: 100px;
  @media (max-width: 1200px) {
     & {
        -webkit-columns: 40vw 2;
        break-after: column;
        columns: 40vw 2;
     }
  }
  @media (max-width: 767px) {
     & {
        columns: auto 1;
     }
  } */
}
@media (max-width: 1600px) {
  .portfolio__items {
    width: calc(100% + 50px);
    margin-left: -25px;
  }
}
@media (max-width: 767px) {
  .portfolio__items {
    width: 100%;
    margin: 0;
  }
}
.portfolio__item {
  font-family: CrimsonText;
  margin-bottom: 100px;
  width: calc(33.333% - 100px);
  margin-inline: 50px;
}
@media (max-width: 1600px) {
  .portfolio__item {
    width: calc(33.333% - 50px);
    margin-inline: 25px;
  }
}
@media (max-width: 1200px) {
  .portfolio__item {
    width: calc(50% - 50px);
  }
}
@media (max-width: 767px) {
  .portfolio__item {
    width: 100%;
    margin-inline: 0;
  }
}
@media (max-width: 600px) {
  .portfolio__item {
    margin-bottom: 60px;
  }
}
.portfolio__item-view {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 26px;
}
@media (max-width: 600px) {
  .portfolio__item-view {
    margin-bottom: 16px;
  }
}
.portfolio__item-view .portfolio__image {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio__item-view .portfolio__image::after {
  content: "";
  background: url(../img/icons/zoom-in.svg) center/15% 15% no-repeat, rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease 0s;
}
.portfolio__item-view .portfolio__image img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
}
@media (hover: hover) {
  .portfolio__item-view .portfolio__image:hover::after {
    opacity: 1;
  }
}
.portfolio__item-view .portfolio__image {
  display: none;
}
.portfolio__item-view .portfolio__image:nth-child(1),
.portfolio__item-view .portfolio__image:nth-child(2),
.portfolio__item-view .portfolio__image:nth-child(3),
.portfolio__item-view .portfolio__image:nth-child(4) {
  display: inline-block;
}
.portfolio__item-title {
    color: rgb(23, 24, 27);
    font-size: 32px;
    font-weight: 600;
    line-height: 122%;
    text-align: center;
}
.portfolio__item-description {
  color: rgb(23, 24, 27);
  font-size: 22px;
  font-weight: 400;
  line-height: 122%;
  margin-bottom: 70px;
  font-size: 22px;
}
@media (max-width: 1200px) {
  .portfolio__item-description {
    font-size: calc(15px + 7 * ((100vw - 320px) / 880));
  }

  .portfolio__item-title {
    font-size: calc(24px + 7 * ((100vw - 320px) / 880));
  }
}
@media (max-width: 600px) {
  .portfolio__item-description {
    margin-bottom: 30px;
  }
}
.portfolio__item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.portfolio__item-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.portfolio__item-author-photo {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.portfolio__item-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .portfolio__item-author-photo {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }
}
.portfolio__item-author-name {
  color: rgb(23, 24, 27);
  font-size: 22px;
  font-weight: 700;
  line-height: 136%;
}
.portfolio__item-author-name p {
  color: rgb(23, 24, 27);
  font-size: 22px;
  font-weight: 700;
  line-height: 136%;
}
.portfolio__item-author-name span {
  color: rgb(92, 96, 105);
  font-size: 14px;
  font-weight: 700;
  line-height: 136%;
  display: block;
}
@media (max-width: 600px) {
  .portfolio__item-author-name {
    font-size: 15px;
  }
  .portfolio__item-author-name p {
    font-size: 15px;
  }
  .portfolio__item-author-name span {
    font-size: 12px;
  }
}
.portfolio__item-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .portfolio__item-contacts {
    gap: 12px;
  }
}
.portfolio__item-contact {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  color: #000;
  transition: all 0.3s ease 0s;
  will-change: transform;
}
.portfolio__item-contact svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
@media (hover: hover) {
  .portfolio__item-contact:hover {
    transform: scale(1.05);
  }
}
@media (max-width: 600px) {
  .portfolio__item-contact {
    width: 26px;
    height: 26px;
  }
  .portfolio__item-contact svg {
    width: 12px;
    height: 12px;
  }
}

.grid-image-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.grid-image-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

.grid-image-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 6px;
}
.grid-image-4 .portfolio__image:first-child {
  grid-column: span 3;
  grid-row: span 3;
}

.lg-backdrop {
  background: #fff;
}

.lg-outer {
  width: min(100% - 40px, 1620px);
  left: 50%;
  transform: translateX(-50%);
}

.lg-outer .lg-thumb-outer {
  background: #fff;
}

.lg-inner {
  margin-top: 50px;
}

.lg-next,
.lg-prev {
  background: transparent;
}

.lg-prev:after,
.lg-next:before {
  width: 36px;
  height: 36px;
  display: block;
}

.lg-prev:after {
  content: "";
  background: url(../img/icons/chevron-left.svg) center/contain no-repeat;
}

.lg-next:before {
  content: "";
  background: url(../img/icons/chevron-right.svg) center/contain no-repeat;
}

.lg-thumb-item:hover,
.lg-thumb-item.active {
  border-color: #000 !important;
}

.lg-close:hover {
  color: #000 !important;
}

.lg-sub-html {
  position: fixed;
  bottom: calc(100vh - 45px);
  left: 0;
  width: 100%;
  opacity: 1;
  color: rgb(23, 24, 27);
  font-family: CrimsonText;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}

.lg-outer .lg-thumb {
  padding: 10px 0 30px !important;
}

@media (max-width: 600px) {
  .lg-thumb.lg-group {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    gap: 8px;
  }
  .lg-thumb-item {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px;
    overflow: hidden;
  }
  .lg-thumb-item img {
    border-radius: 8px;
  }
  .lg-toolbar-4 {
    top: 20px;
  }
  .lg-toolbar .lg-icon {
    color: #000;
  }
  .lg-toolbar-4 {
    bottom: calc(100svh - 60px);
  }
  .lg-next,
  .lg-prev {
    display: none;
  }
  .lg-item img {
    border-radius: 14px;
  }
}
.lg-item img {
  border-radius: 26px;
}

section.element-animation {
  transition: all 0.6s linear 0.2s;
  transform: translateY(-40px);
  opacity: 0;
}
section.element-animation.element-show {
  transform: translateY(0);
  opacity: 1;
}
