@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
  --gold: #3a3e49;
  --gold2: #3a3e49;
  --dark: #1b1f2c;
  --dark2: #1d202e;
  --dark3: #11131c;
  --dark4: #29395b;
}

body {
  background: white;
  font-family: "Nunito Sans", sans-serif;
}

a {
  text-decoration: none;
  color: black;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.headerWrapper {
  display: block;
  position: fixed;
  left: 0px;
  top: 0px;
  background: var(--dark);
  border-bottom: 3px solid var(--gold);
  width: 100%;
  z-index: 99;
}

.headerContainer {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

.headerBorder {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  content: " ";
  width: calc(100vw - 1400px);
  transform: translate(-50%, 0%);
  background: #2b2f3b;
}

.headerBorder:before {
  display: block;
  position: absolute;
  right: -49px;
  top: -2px;
  content: " ";
  height: 102%;
  width: 50px;
  background: #2b2f3b;
  clip-path: polygon(100% 100%, 0% 100%, 0 0);
}

.headerBorder2 {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  content: " ";
  width: calc(100vw - 1500px);
  transform: translate(-50%, 0%);
  background: #3a3e49;
}

.headerBorder2:before {
  display: block;
  position: absolute;
  right: -49px;
  top: -2px;
  content: " ";
  height: 102%;
  width: 50px;
  background: #3a3e49;
  clip-path: polygon(100% 100%, 0% 100%, 0 0);
}


.headerInner {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: row;
  align-items: center;
}

.headerLogoCol {
  display: inline-flex;
  position: relative;
  width: 100%;
  max-width: 300px;
}

.headerLogoCol img {
  width: 100%;
}

@media (max-width:1000px) {
  .headerLogoCol {
    padding-top:5px;
  }
}

.headerNavCol {
  display: inline-flex;
  position: relative;
  width: calc(100% - 600px);
  align-items: center;
  justify-content: center;
}

.headerNavCol a {
  color: white;
}

.headerNavCol nav {
  display: inline-flex;
  position: relative;
}

.headerNavCol nav ul {
  display: inline-flex;
  position: relative;
  list-style: none;
}

.headerNavCol nav ul li {
  display: inline-flex;
  position: relative;
  list-style: none;
}

.headerNavCol nav ul li a {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  padding: 10px 5px;
  color: white;
  transition: .4s all;
}

.headerNavCol .current-menu-item a:after,
.headerNavCol nav ul li a:after {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 0%;
  height: 2px;
  content: " ";
  background: white;
  transition: .4s all;
  opacity: .1;
}


.headerNavCol .current-menu-item a:after,
.headerNavCol nav ul li a:hover:after {
  display: block;
  position: absolute;
  width: 100% !important;
  background: var(--gold) !important;
  opacity: 1 !important;
}

.headerNavCol .current-menu-item a,
.headerNavCol nav ul li a:hover {
  color: #ededed !important;
  transition: .4s all;
}

.headerContactCol {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
}

.headerContactMenu {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.headerSocialMenu {
  display: inline-flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
  align-items: center;
  justify-content: center;
}


.headerContactMenu li {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  list-style: none;
}

.headerSocialMenu li {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.headerContactMenu li a {
  display: flex;
  position: relative;
  list-style: none;
  width: 100%;
  padding: 10px;
  color: white;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}

.headerContactMenu li a:hover {
  color: white;
}

.headerSocialMenu li a {
  display: flex;
  position: relative;
  list-style: none;
  width: 100%;
  padding: 10px;
  color: white;
  align-items: center;
  justify-content: center;
  transition: .4s all;
  opacity: .5
}

.headerSocialMenu li a:hover {
  opacity: 1;
  color: white;
}

.headerContactMenu a {
  font-size: 22px;
}

.emailTitle {
  margin-left: 10px;
}

.headerSocialMenu .contactSocial a {
  font-size: 18px;
}

.contactSocial {
  display:none !important;
}

body:not(.home) {
  margin-top: 90px;
}

@media (max-width:1000px) {
  .headerNavCol {
    display: none;
  }

  .headerContactCol {
    display: none;
  }

  .heroWrapper {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
  }
}
/* 
.heroWrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 90px;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  background: rgb(27 31 44 / 82%);
  border-bottom: 4px solid var(--gold);
}


.heroContainer {
  display: block;
  position: relative;
  width: 1200px;
  margin: 0px auto;
}

.heroInner {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  color: white;
  align-items: center;
  height: 100%;
  min-height: 100vh;
  padding-bottom: 110px;
  justify-content: center;
}

.heroTitle {
  margin-top: 10px;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 0px 5px black;
  letter-spacing: 2px;
  color: #fcdc89;
}

.heroSubtitle {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 42px;
  font-weight: 200;
  text-shadow: 0px 0px 5px black;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e4e8e93d;
}

.heroSubtitle2 {
  font-weight: bold;
}

.heroDescription p {
  font-size: 24px;
  line-height: 32px;
  margin: 10px 0px;
}

.heroDescription .fas {
  color: var(--gold);
} */

.subHeroWrapper {
  position: relative;
  margin-top: -90px;
  /* заходят на hero */
  z-index: 10;
}

.subHeroContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.subHeroInner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.subHeroCol {
  flex: 1 1 calc(33.333% - 20px);
  /* background: #fff; */
  background: var(--dark4);
  border: 2px solid var(--gold);
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(0deg, rgb(27 31 44) 0%, rgb(51 59 84) 85%, rgb(45 55 87) 100%);
  border-top: 10px solid #394874;
}

.subHeroCol:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.subHeroTitle {
  font-size: 1.25rem;
  font-weight: 700;
  /* color: var(--dark); */
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}

.subHeroSubTitle {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: #e4e8e9;
  margin-bottom: 15px;
}

.subHeroDescription {
  font-size: 1rem;
  line-height: 1.5;
  /* color: var(--dark2); */
  color: white;
}

/* Адаптив */
@media (max-width: 1000px) {
  .subHeroCol {
    flex: 1 1 100%;
  }
}

.servicesWrapper {
  display: block;
  position: relative;
}

.servicesContainer {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

.servicesInner {
  display: block;
  position: relative;
  width: 100%;
  padding: 60px 20px;
}

.servicesTitle {
  display: inline-block;
  position: relative;
  left: 50%;
  font-size: 32px;
  transform: translate(-50%, 0%);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 30px;
  color: #303955;
  font-weight: bold;
}

.servicesDescription {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  padding-bottom: 30px;
}

.servicesCol {
  display: block;
  position: relative;
  width: 100%;
  background: var(--dark4);
  border: 2px solid #e4e8e9;
  padding: 20px;
  background: white;
  margin-bottom: 30px;
}

.serviceTitle {
  display: inline-block;
  position: relative;
  font-size: 28px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 15px;
  color: #303955;
  font-weight: bold;
}

.serviceDesc {
  display: block;
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}

.serviceDesc ul {
  display: none;
  list-style: square;
  margin-left: 20px;
  margin-top: 10px;
}

.serviceDesc ul li::marker {
  color: var(--gold2);
}

.serviceBtn {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: #ffffff;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
}

.teamWrapper {
  display: block;
  position: relative;
}

.teamContainer {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

.teamInner {
  display: block;
  position: relative;
  width: 100%;
  padding: 60px 20px;
}

.teamTitle {
  display: inline-block;
  position: relative;
  left: 50%;
  font-size: 32px;
  transform: translate(-50%, 0%);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 30px;
  color: #303955;
  font-weight: bold;
}

.teamDescription {
  display: flex;
  position: relative;
  width: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  padding-bottom: 30px;
  flex-direction: row;
  align-items: center;
}

.teamDescMainLeft {
  display: block;
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 500px;
  flex-shrink: 0;
}

.teamDescMainLeft img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.teamDescMainRight {
  display: block;
  position: relative;
  color: #303955;
}

.teamDescMainTitle {
  font-size: 32px;
  font-weight: bold;
  color: #303955;
}

.teamDescMainRole {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 5px solid #e4e8e9;
  margin-bottom: 20px;
}

.teamDescMainPromo {
  font-size: 14px;
  line-height: 18px;
}

.teamDescMainContent p {
  font-size: 16px;
  line-height: 28px;
  margin: 15px 0px;
}


.teamDescMainBtn {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: white;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
}

.teamDescShowAllBtn {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: white;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
}

.teamCols {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.teamCols .owl-item {
  display: flex;
  justify-content: center;
}

.teamCol {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  width: 290px;
}

.teamCol img {
  display: block;
  /* width: 100%; */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: 340px;
  width: 290px;
}

.teamName {
  display: inline-block;
  position: relative;
  /* border-bottom: 4px solid var(--gold2); */
  font-size: 24px;
  font-weight: bold;
  color: #303955;
  margin-top: 10px;
}

.teamRole,
.teamCity {
  margin-top: 5px;
}

.teamSocial {
  margin-top: 10px;
}

.teamSocial a {
  margin: 0 5px;
  color: black;
  opacity: .5;
  font-size: 18px;
  transition: .4s all;
}

.teamSocial a:hover {
  color: black;
  opacity: 1;
}

.teamCity {
  color: gray;
}

.teamLink {}

.teamCol:hover .teamLink {
  bottom: auto;
  top: 0;
  height: 100%;
}

.teamLink img {
  filter:grayscale(100%);
  transition:.4s all;
}

.teamLink:hover img {
  filter:grayscale(0%);
}

.teamCols .owl-prev-arrow,
.owl-next-arrow {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.teamCols .owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.teamCols .owl-prev {
  left: -40px;
}

.teamCols .owl-next {
  right: -40px;
}

.teamCols.owl-carousel {
  position: relative;
}

.teamCols .owl-nav {
  position: absolute;
  top: calc(50% - 70px);
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index:99;
  width:100%;
}

.teamCols .owl-nav button {
  position: absolute;
  pointer-events: auto;
  background: transparent;
  border: 0;
  padding: 0;
  z-index:99;
}

.teamCols .owl-nav button .fas {
  color:var(--gold2);
  font-size:48px;
  z-index:99;
  text-shadow: 1px 2px 2px #00000052;
}

.teamCols .owl-prev {
  left: 0px;
}

.teamCols .owl-next {
  right: 0px;
}


@media (max-width:1000px) {
  .teamDescription {
    flex-direction: column;
    align-items: center;
  }

  .teamDescMainTitle {
    text-align: center;
  }

  .teamDescMainRole {
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .teamDescMainBtn {
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .heroTitle {
    font-size: 38px;
  }

  .heroSubtitle {
    font-size: 26px
  }

  .heroDescription p {
    font-size: 18px;
  }

  .heroButton {
    font-size: 20px;
  }

  .servicesDescription {
    font-size: 14px;
  }

  .serviceDesc {
    font-size: 15px;
    letter-spacing: inherit;
    line-height: 26px;

  }

  .serviceTitle {
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
    line-height: 34px;
  }

  .serviceBtn {
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .teamDescMainContent p {
    font-size: 16px;
    line-height: 21px;
  }

  .subHeroDescription {
    text-align: center;
  }
}



.casesWrapper {
  display: block;
  position: relative;
}

.casesContainer {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

.casesInner {
  display: block;
  position: relative;
  width: 100%;
  padding: 60px 20px;
}

.casesTitle {
  display: inline-block;
  position: relative;
  left: 50%;
  font-size: 32px;
  transform: translate(-50%, 0%);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 30px;
  color: #303955;
  font-weight: bold;
}

.casesDescription {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  padding-bottom: 30px;
}

.caseCol {
  display: block;
  position: relative;
  width: 100%;
  background: var(--dark4);
  border: 2px solid #e4e8e9;
  padding: 20px;
  background: white;
  margin-bottom: 30px;
}

.caseTitle {
  display: inline-block;
  position: relative;
  font-size: 21px;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 15px;
  color: #303955;
  font-weight: bold;
}

.caseDesc {
  display: block;
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}


.caseBtn {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: white;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
}

.casesHeroButton {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 21px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: white;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
  left: 50%;
  transform: translate(-50%, 0%);
}

@media (max-width:1000px) {
  .caseTitle {
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
  }

  .caseBtn {
    left: 50%;
    transform: translate(-50%, 0%);
  }
}


.newsWrapper {
  display: block;
  position: relative;
}

.newsContainer {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

.newsInner {
  display: block;
  position: relative;
  width: 100%;
  padding: 60px 20px;
}

.newsTitle {
  display: inline-block;
  position: relative;
  left: 50%;
  font-size: 32px;
  transform: translate(-50%, 0%);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 30px;
  color: #303955;
  font-weight: bold;
}

.newsDescription {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  padding-bottom: 30px;
}

.newCol {
  display: block;
  position: relative;
  width: 100%;
  background: var(--dark4);
  border: 2px solid #e4e8e9;
  padding: 20px;
  background: white;
  margin-bottom: 30px;
}

.newTitle {
  display: inline-block;
  position: relative;
  font-size: 21px;
  text-transform: uppernew;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 15px;
  color: #303955;
  font-weight: bold;
}

.newDesc {
  display: block;
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}


.newBtn {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: white;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
}

.newsHeroButton {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 21px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: white;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
  left: 50%;
  transform: translate(-50%, 0%);
}

.newDate {
  display: block;
  position: absolute;
  font-size: 18px;
  color: #cecece;
  text-align: right;
  top: 0px;
  right: 5px;
}

@media (max-width:1000px) {
  .newTitle {
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
  }

  .newBtn {
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .caseDesc {
    font-size: 15px;
    letter-spacing: inherit;
    line-height: 26px;
  }

  .newDesc {
    font-size: 15px;
    letter-spacing: inherit;
    line-height: 26px;
  }

  .casesDescription {
    font-size: 14px;
  }

  .newsDescription {
    font-size: 14px;
  }
}

.casesPagination {
  display: flex;
  position: relative;
  text-align: center;
}

.page-numbers {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 18px;
  margin: 3px;
  background: var(--gold2);
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
}

.page-numbers.current {
  font-weight: bold;
}

.category .teamCols {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.category .teamCol {
  width: 100%;
}

.category .teamCol img {
  display: block;
  width: 100%;
  aspect-ratio: inherit;
  height: auto;
  object-fit: cover;
}

.contentContainerFixed {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
}

.contentTitle {
  display: block;
  position: relative;
  font-size: 32px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 30px;
  color: #303955;
  font-weight: bold;
}

.contentDate {
  color: var(--dark4);
}

.breadcrumb {
  display: inline-flex;
  font-size: 18px;
  margin-bottom: 20px;
  border: 2px solid #ecf2f5;
  padding: 5px;
}

@media (max-width: 1024px) {
  .category .teamCols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .category .teamCols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .category .teamCols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.teamCategories {
  display: flex;
  position: relative;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.teamCategory {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: var(--gold2);
  border: 3px solid var(--gold);
  padding: 5px 20px;
  transition: 0.4s;
  cursor: pointer;
}

.teamCategory.active {
  font-weight: bold;
}



.ctaWrapper {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 60px;
  overflow: hidden;
  background: rgb(27 31 44 / 82%);
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
}

.ctaWrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  background: url(assets/img/contact-bg.jpg) center top / cover no-repeat;
  transform: translate(-50%, -50%) scale(1);
  background-attachment: fixed;
  z-index: -1;
  /* animation: heroZoom 20s ease-in-out infinite alternate; */
}

.ctaContainer {
  display: block;
  position: relative;
  width: 1200px;
  margin: 0px auto;
}

.ctaInner {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px;
  color: white;
  align-items: center;
  height: 100%;
  min-height: 600px;
  justify-content: center;
}

.ctaTitle {
  margin-top: 10px;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 0px 5px black;
  letter-spacing: 2px;
  color: white;
}

.ctaSubtitle {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 42px;
  font-weight: 200;
  text-shadow: 0px 0px 5px black;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e4e8e93d;
}

.ctaSubtitle2 {
  font-weight: bold;
}

.ctaDescription p {
  font-size: 24px;
  line-height: 32px;
  margin: 10px 0px;
  text-align: center;
}

.ctaDescription .fas {
  color: var(--gold);
}

.ctaButton {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px 0px 0px 1px #ffffff38;
  color: #ffffff;
  border: 2px solid #e4e8e93d;
  padding: 15px 30px;
  width: auto;
  letter-spacing: 1px;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  transition: .4s all;
}

.ctaButton:hover {
  box-shadow: 0px 0px 10px 9px #ffffff38;
}

@media (max-width:1000px) {
  .ctaSubtitle {
    font-size: 32px;
  }

  .ctaButton {
    font-size: 20px;
  }

  .ctaTitle {
    font-size: 34px;
  }

  .ctaDescription p {
    font-size: 21px;
  }
}

.footer {
  display: block;
  position: relative;
  background: var(--dark);
  width: 100%;
  color: white;
  overflow: hidden;
}

.footerInner {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
}

.footerCopyright {
  display: flex;
  position: relative;
  flex-direction: column;
  text-align: center;
  border-top: 2px solid var(--gold);
  padding-top: 20px;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
}

.footerCopyright p {
  font-size: 14px;
  color: #4e556c;
}


.footerCols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0px;
  justify-items: center;
}

.footerCol {
  max-width: 300px;
  width: 100%;
}

.footerLogo {
  width: 100%;
  max-width: 300px;
}

.footerLogo img {
  width: 100%;
}

.footerLogoSubtitle {
  font-size: 14px;
  color:#ededed;
  text-align: center;
}

.footerCopyright a {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  padding-bottom: 1px;
  color: #4e556c;
  border-bottom: 1px solid #4e556c;
}

.footerColMenu {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
}

.footerMenu {
  list-style: none;
  margin: 0;
  padding: 0;
  column-gap: 40px;
  column-fill: balance;
}

.footerMenu a {
  display: inline-block;
  position: relative;
  color: white;
  padding: 10px;
  transition: .4s all;
}

.footerMenu a:hover {
  color: #ededed !important;
}

/* Десктоп: 3 колонки */
@media (min-width: 1000px) {
  .footerMenu {
    column-count: 3;
  }
}

/* Планшет: 2 колонки */
@media (min-width: 600px) and (max-width: 999px) {
  .footerColMenu {
    justify-content: center;
  }

  .footerMenu {
    column-count: 2;
  }
}

/* Мобилка: 1 колонка */
@media (max-width: 599px) {
  .footerColMenu {
    justify-content: center;
  }

  .footerMenu {
    column-count: 1;
  }
}

.footerMenu li {
  break-inside: avoid;
}

/* Мобильная версия до 1000px */
@media (max-width: 1000px) {
  .footerCopyright p {
    font-size: 11px;
  }

  .footerCols {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.footerLogoSubtitle2 {
  font-weight: bold;
}


.footerBorder {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  content: " ";
  width: calc(100vw - 1400px);
  transform: translate(-50%, 0%);
  background: #2b2f3b;
  z-index: 0;
}

.footerBorder:before {
  display: block;
  position: absolute;
  right: -99px;
  top: -2px;
  content: " ";
  height: 102%;
  width: 100px;
  background: #2b2f3b;
  clip-path: polygon(100% 100%, 0% 100%, 0 0);
  z-index: 0;
}

.footerBorder2 {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  content: " ";
  width: calc(100vw - 1500px);
  transform: translate(-50%, 0%);
  background: #3a3e49;
  z-index: 0;
}

.footerBorder2:before {
  display: block;
  position: absolute;
  right: -99px;
  top: -2px;
  content: " ";
  height: 102%;
  width: 100px;
  background: #3a3e49;
  clip-path: polygon(100% 100%, 0% 100%, 0 0);
  z-index: 0;
}


@media (max-width: 1320px) {

  .footerBorder2,
  .footerBorder {
    display: none;
  }
}

.footerSocialMenu {
  display: flex;
  position: relative;
  color: white;
  list-style: none;
  gap: 10px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.footerSocialMenu a {
  color: white;
  font-size: 18px;
  transition: .4s all;
  opacity: .5;
  padding: 5px;
}

.footerContactMenu {
  display: flex;
  position: relative;
  color: white;
  list-style: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footerContactCol {
  display: flex;
  position: relative;
  color: white;
  list-style: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footerContactMenu a {
  display: block;
  position: relative;
  color: white;
  font-size: 24px;
  transition: .4s all;
}

.footerContactMenu a:hover {
  color: white;
}

.footerSocialMenu a:hover {
  color: white;
  opacity: 1;
}

.footerSocialMenu .emailTitle {
  margin-left: 0px;
}

@media (max-width:1000px) {
  .footerSocialMenu a {
    font-size: 24px;
  }
}

.partnerContent {
  display: flex;
  position: relative;
  flex-direction: row;
}

.partnerPhoto {
  display: inline-flex;
  position: relative;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  align-items: flex-start;
}

.partnerPhoto img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  box-shadow: 1px 1px 10px 0px #858585;
}

.partnerData {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  padding-left: 30px;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  width: 100%;
}

.partnerRole {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}

.partnerCity {
  color: gray;
}

.partnerSocial {
  margin: 10px 0px;
}

.partnerSocial a {
  margin: 0 5px;
  color: black;
  opacity: .5;
  font-size: 18px;
  transition: .4s all;
}

.partnerSocial a:hover {
  color: black;
  opacity: 1;
}

.partnerInfoBtn {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: white;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
}

.contentInner .partnerInfo {
  display: block;
  position: relative;
  overflow-y: auto;
  font-size: 14px;
  line-height: 21px;
}

.contentInner .partnerInfo * {
  font-size: 14px;
  line-height: 21px;
}

@media (max-width:1000px) {
  .partnerContent {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
  }

  .partnerRole {
    text-align: center;
    margin-top: 10px;
  }

  .partnerCity {
    text-align: center;
  }

  .partnerSocial {
    text-align: center;
  }

  .partnerData {
    padding-left: 0px;
  }
}

.partnerOtherContent {
  padding: 20px 0px;
}

.contentInner {
  display: block;
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}

.contentInner p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}

.contentInner h2,
.contentInner h3,
.contentInner h4,
.contentInner h5,
.contentInner h6 {
  display: block;
  position: relative;
  margin: 10px 0px;
  width: 100%;
  color: #303955;
}

.contentInner img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 1px 1px 10px 0px #858585;
}

.contentInner iframe {
  max-width: 530px !important;
  height: 300px !important;
  width: 100% !important;
  margin: 20px 0px;
  box-shadow: 1px 1px 10px 0px #858585;
}

.contentInner ol,
.contentInner ul {
  list-style: square;
  margin-left: 20px;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}

.contentInner li {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}

.contentInner ul li::marker {
  color: var(--gold2);
}

.contentInner ol li::marker {
  color: var(--gold2);
}

img.aligncenter {
  display: inline-block;
  position: relative;
  left: 50%;
  margin: 10px 0px;
  transform: translate(-50%, -0%);
}

img.alignright {
  display: inline-block;
  position: relative;
  float: right;
  margin: 10px;
}

img.alignleft {
  display: inline-block;
  position: relative;
  float: left;
  margin: 10px;
}

.contactContentInner {
  display: flex;
  position: relative;
  flex-direction: row;
}

.contactContentLeftSide {
  display: inline-flex;
  position: relative;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  align-items: flex-start;
}

.contactContentRightSide {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  padding-left: 30px;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  width: 100%;
}

.contactForm {
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: rgba(255, 255, 255, 0.22) 0px 0px 0px 1px;
  color: black;
  text-shadow: rgb(233, 220, 187) 0px 0px 6px;
  width: auto;
  letter-spacing: 1px;
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: #ffffff;
  border: 3px solid #e4e8e9;
  padding: 5px 20px;
  width: 100%;
}

.form-title {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: #303955;
  letter-spacing: 0px;
  font-size: 20px;
  line-height: 40px;
}

.form-input input,
.form-input textarea {
  display: block;
  position: relative;
  border: 4px solid #e4e8e9;
  padding: 10px;
  background: white;
  margin-bottom: 15px;
  border-radius: 2px;
  width: 100%;
}

.form-input textarea {
  height: 100px;
  resize: vertical;
}

.form-success {
  font-weight: bold;
  display: none;
}

.formSubmit {
  display: inline-flex;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0px 0px 0px 1px #ffffff38;
  background: white;
  color: black;
  text-shadow: 0px 0px 6px #e9dcbb;
  border: 5px solid #e4e8e9;
  padding: 15px 30px;
  width: auto;
  letter-spacing: 1px;
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 10px;
  width: 100%;
  cursor: pointer;
  transition: .4s all;

}


.headerMobileIcon {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  width: 30px;
  height: 22px;
  cursor: pointer;
  color: white;
}

@media (max-width: 1000px) {
  .contactContentInner {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
  }

  .contactContentRightSide {
    padding-left: 0px;
  }

  .teamCategories {
    flex-direction: column;
    gap: 0px;
  }

  .teamCategory {
    justify-content: center;
    margin: 5px 0px;
  }

  .headerMobileIcon {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
  }
}

.headerMobileIcon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transition: all 0.3s ease-in-out;
}

/* Полоски */
.headerMobileIcon span:nth-child(1) {
  top: 0;
}

.headerMobileIcon span:nth-child(2) {
  top: 9px;
}

.headerMobileIcon span:nth-child(3) {
  top: 18px;
}

/* Активное состояние (крестик) */
.headerMobileIcon.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.headerMobileIcon.active span:nth-child(2) {
  opacity: 0;
}

.headerMobileIcon.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

.headerMobile {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  width: 100%;
  height: calc(100vh - 100%);
  background: var(--dark);
  color: white;
  z-index: 1000;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}

.headerMobile a {
  color: white;
}

.headerMobile .headerNavMenu {
  display: block;
  position: relative;
  width: 100%;
  list-style: none;
  padding-left: 5px;
}

.headerMobile .headerNavMenu li {
  list-style: none;
}

.headerMobile .headerNavMenu li a {
  display: block;
  position: relative;
  padding: 10px 0px;
  font-size: 28px;
}

.headerMobile * {
  justify-content: flex-start;
}

.headerMobile .headerContactMenu li a {
  justify-content: flex-start;
}

.headerMobile .headerSocialMenu li a {
  font-size: 24px;
}

.headerMobile .headerContactMenu a {
  font-size: 28px;
}


.subTeamTitle {
  display: inline-block;
  position: relative;
  left: 50%;
  font-size: 32px;
  transform: translate(-50%, 0%);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 5px solid #e4e8e9;
  margin-bottom: 30px;
  color: #303955;
  font-weight: bold;
  margin-top:60px;
  text-align:center;
}

.mainTeam {
  max-width:900px  !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1024px) {
  .category .mainTeam {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .category .mainTeam {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .category .mainTeam {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}



.heroWrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 90px);
  margin-top: 90px;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}

/* Видео на весь экран */
.heroBgVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Оверлейка */
.heroOverlay {
  position: absolute;
  backdrop-filter: blur(0px);
  inset: 0;
  background: linear-gradient(
    rgba(20, 24, 40, 0.75),
    rgba(20, 24, 40, 0.85)
  );
  z-index: 2;
}

/* Контейнер контента */
.heroContainer {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

/* Центрирование */
.heroInner {
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 120px;
  color: #fff;
  text-align: center;
}

/* Заголовки */
.heroTitle {
  font-size: 44px;
  font-weight: 700;
  color: #fcdc89;
  text-shadow: 0 0 8px rgba(0,0,0,.6);
}

.heroSubtitle {
  margin: 30px 0 25px;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  border-bottom: 2px solid rgba(255,255,255,.15);
  padding-bottom: 15px;
  text-shadow: 0 0 6px rgba(0,0,0,.6);
}

.heroSubtitle2 {
  font-weight: 700;
}

/* Текст */
.heroDescription p {
  text-align: left;
  font-size: 22px;
  line-height: 32px;
  margin: 10px 0;
}

.heroDescription .fas {
  color: white;
  margin-right: 8px;
}

.heroButton {
  margin-top: 40px;
  padding: 16px 36px;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  letter-spacing: 1px;
  transition: .3s ease;
}

.heroButton:hover {
  box-shadow: 0 0 15px rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
}

/* Адаптив */
@media (max-width: 1000px) {
  .heroWrapper {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
  }

  .heroInner {
    min-height: calc(100vh - 70px);
  }

  .heroSubtitle {
    font-size: 28px;
  }

  .heroDescription p {
    font-size: 18px;
  }
}
