header {
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 99;
  padding: 10px 0;
  transition: 0.3s ease-in-out;
}
header.scrolled {
  background-color: #191919;
  padding: 4px 0;
  position: fixed;
  top: 0;
}
.dob {
  padding-left: 10px;
  font-size: 25px;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 25px;
}

.header__logo {
  display: flex;
  align-items: center;
  margin-right: 10px;
  max-width: 140px;
  transition: padding 0.3s ease-in;
}
img {
  max-width: 100%;
  height: auto;
}

.header__menu {
  display: none;
  align-items: center;
  gap: 15px;
}
.header__menu a {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 22px;
  line-height: 100%;
  color: white;
  opacity: 0.6;
}
.header__phone {
  font-size: 14px;
  display: none;
  font-weight: 400;
  line-height: 100%;
  color: white;
  border-bottom: 2px dotted rgba(225, 167, 17, 0.6);
}
.header__soc {
  display: none;
  align-items: center;
  gap: 10px;
}
.header__soc li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #e1a711;
  transition: background 0.3s ease-in;
}
.header__soc li a:hover {
  background-color: #c89000;
}
.hamburger {
  display: block;
  color: #e1a711;
  font-size: 40px;
  background: transparent;
}
@media screen and (min-width: 576px) {
  .header__soc {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .header__phone {
    display: inline;
  }
}
@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
  .header__menu {
    display: flex;
  }
  .header__soc li a {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .header__menu a {
    font-size: 18px;
  }
  .header__phone {
    font-size: 30px;
  }
}
.soc__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #e1a711;
  transition: background 0.3s ease-in;
}
.fixed-soc__soc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fixed-soc {
  display: none;
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 15px;
}
@media (max-width: 576px) {
  .fixed-soc {
    display: block;
  }
}

/* sidebar */

/* sidebar */

.all_sidebar {
  display: block;
}

#mobile_navbar {
  max-width: 400px;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fcfcfc;
  z-index: 999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  transition: 0.3s ease-in-out;
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
}
#mobile_navbar.active_navbar {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
#mobile_navbar::-webkit-scrollbar {
  width: 5px;
}

#mobile_navbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}

#mobile_navbar::-webkit-scrollbar-thumb {
  width: 3px;
  height: auto;
  background-color: #ddd;
  border-radius: 4px;
}
#mobile_navbar .cancel_logo_mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.cancel_logo_mobile .logo_mobile {
  margin: 0;
}

.cancel_logo_mobile .logo_mobile a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.cancel_logo_mobile .logo_mobile a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cancel_logo_mobile .cancel_button {
  width: 25px;
  height: 25px;
}

.cancel_logo_mobile .cancel_button #cancel {
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.cancel_logo_mobile .cancel_button svg {
  width: 100%;
  height: 100%;
  fill: #221f1f;
  opacity: 0.8;
}

.mobile_list .mobile_nav_item {
  width: 100%;
}

.mobile_list .mobile_nav_item .mobile_nav_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 500;
  padding: 10px 0;
  color: #212529;
  border-bottom: 1px solid #ddd;
}

header .overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  background-color: rgba(223, 165, 17, 0.404);
  z-index: 997;
}
/* sidebar */
/* hero  */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
}
/* .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
} */
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.hero__content {
  position: relative;
  /* max-width: 740px; */
  padding: 90px 0;
  text-align: center;
}
.hero__subtitle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #e1a711;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__subtitle::before,
.hero__subtitle::after {
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
  background-color: #e1a711;
}
.hero__title {
  color: white;
  font-size: 64px;
  font-weight: 400;
}
.hero__desc {
  color: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 25px;
}
.hero__btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  min-height: 50px;
  border: 1px solid #e1a711;
  background-color: #e1a711;
  outline: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: white;
  transition: all 0.3s ease-in;
}
.hero__next {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  transition: color 0.3s ease-in;
}
.hero__next svg {
  width: 50px;
  height: 50px;
}

@media (max-width: 992px) {
  .hero__subtitle {
    gap: 15px;
    font-size: 28px;
  }
  .hero__title {
    margin-bottom: 15px;
    font-size: 48px;
  }
}
/* vacancies */
.indent {
  padding-top: 60px;
  padding-bottom: 60px;
}

.alignwide {
  width: 100%;
}
.vacancies-b__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.vacancies-b__title {
  margin-bottom: 0;
}
.subtitle {
  margin-bottom: 0;
  color: #e1a711;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}
.page-title,
.block-title {
  margin-bottom: 30px;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.vacancies-b__btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  min-height: 50px;
  border: 1px solid #e1a711;
  background-color: #e1a711;
  outline: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: white;
  transition: all 0.3s ease-in;
}

.vacancies-b .item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacancies-b .item__image {
  position: relative;
  padding-top: 100%;
  margin-bottom: 20px;
}
.vacancies-b .item__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.vacancies-b .item__name {
  margin-bottom: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  width: 100%;
}
.vacancies-b .item__salary {
  padding: 4px 10px;
  background-color: #f9f9f9;
  color: rgba(61, 56, 46, 0.7);
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
}

.vacancies-b .item__more {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #e1a711;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  transition: color 0.3s ease-in;
}
.vacancies-b .item__more:hover {
  color: #c89000;
}
@media (max-width: 992px) {
  .subtitle {
    font-size: 22px;
  }
  .page-title,
  .block-title {
    font-size: 40px;
  }
}

/* about */

.dark {
  background-color: #f9f9f9;
}
.about__wrap {
  display: flex;
  flex-wrap: wrap;
}
.about__content {
  width: calc(50% - 30px);
  margin-right: 30px;
}
.about__desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
}
.about__desc p {
  color: rgba(61, 56, 46, 0.7);
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
}
.about__desc h2 {
  margin-bottom: 15px;
}
.list-style ul {
  padding-left: 0px;
  margin-bottom: 10px;
}
.list-style p {
  margin-bottom: 10px;
}
.about__link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #e1a711;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 30px;
  transition: color 0.3s ease-in;
}
.about__gallery {
  align-self: flex-start;
  position: sticky;
  top: 20px;
  width: 50%;
}

.about__swiper {
  margin-bottom: 26px;
}
.about__gallery-img {
  cursor: pointer;
  position: relative;
  padding-top: 100%;
}
.about__gallery-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__advantages {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.about .item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}
.about.dark .item__icon {
  background-color: white;
}
.about .item__icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-radius: 50%;
}
.about .item__name {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
}
@media (max-width: 576px) {
  .about .item {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .about__desc {
    font-size: 18px;
    font-weight: 400;
  }
  .about__content {
    width: 100%;
    margin-right: 0;
  }
  .about__gallery {
    margin-top: 50px;
    width: 100%;
    position: unset;
  }
}
@media (min-width: 576px) and (max-width: 992px) {
  .about .item {
    width: 50%;
  }
}
/* about */

/* questionnaires */
.questionnaires {
  position: relative;
  background-color: #191919;
}
.questionnaires__image {
  pointer-events: none;
  position: absolute;
  left: 0;
  width: 100%;
}
.questionnaires__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
.questionnaires__title {
  color: white;
  margin-bottom: 0;
}
.questionnaires__nav {
  display: flex;
  gap: 10px;
}
.arrow {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #e1a711;
  color: white;
  outline: none;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.arrow.swiper-button-disabled {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
}
.questionnaires .item {
  position: relative;
}
.questionnaires .item__image {
  cursor: pointer;
  position: relative;
  padding-top: 140%;
}
.questionnaires .item__image::before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}
.questionnaires .item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.questionnaires .item__image::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, #3d382e 0%, rgba(61, 56, 46, 0) 100%);
}
.questionnaires .item__icons {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.questionnaires .item__content {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.questionnaires .item__name {
  margin: 0;
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
}
.questionnaires .item__city {
  padding: 2px 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 100%;
}
/* questionnaires */

/* fag */
.faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq .accordion__item {
  transition: box-shadow 0.3s ease-in;
}
.faq .accordion__title.is-opened {
  color: #3d382e;
}
.faq .accordion__title {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  transition: color 0.3s ease-in;
}
.faq .accordion__title-icon {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: #e1a711;
  transition: background 0.5s ease-in;
}
.faq .accordion__title.is-opened .accordion__title-icon {
  background-color: #f9f9f9;
  cursor: pointer;
}
.faq .accordion__title-icon::before {
  transform: translate(-50%, -50%);
}
.faq .accordion__title-icon::before,
.faq .accordion__title-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 2px;
  background-color: white;
  transition: all 0.5s ease;
}
.faq .accordion__title.is-opened .accordion__title-icon::after {
  transform: translate(-50%, -50%);
  background-color: #e1a711;
}
.faq .accordion__title-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: transform 0.3s ease-in, background 0.3s ease-in-out;
}
.faq .accordion__content {
  display: none;
  padding: 10px 100px 20px 100px;
}
.faq .accordion__content p:last-child {
  margin-bottom: 0;
}
.faq .accordion__content p {
  opacity: 0.7;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .faq .accordion__title {
    font-size: 32px;
    gap: 30px;
  }
}
/* fag */

/* review */
.review {
  background-color: #f9f9f9;
}
.review__wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.review__title {
  margin-bottom: 0;
}
.review_modal {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  min-height: 50px;
  border: 1px solid #e1a711;
  background-color: #e1a711;
  outline: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: white;
  transition: all 0.3s ease-in;
}
.review .item {
  padding: 30px;
  background-color: white;
}
.review .item__holder {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 4px solid #e1a711;
  padding-left: 5px;
  margin-bottom: 20px;
}
.review .item__name {
  font-size: 20px;
  font-weight: 400;
  line-height: 80%;
  margin-bottom: 2px;
}
.review .item__cat {
  color: #bcbcbc;
  font-size: 16px;
  font-weight: 300;
  line-height: 110%;
}
.review .item__text {
  margin-bottom: 10px;
}
.review .item__text p {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
  margin: 0;
  opacity: 0.7;
}
/* review */

/* contact */
.contacts {
  background-color: #191919;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.contacts__row {
  display: flex;
  justify-content: space-between;
}
.contacts__content {
  padding: 40px;
  padding-left: calc((100% - 1170px) / 2);
  border-right: none;
  display: flex;
  flex-direction: column;
}
.contacts__title {
  color: white;
  margin-bottom: 30px;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contacts__item {
  display: flex;
  gap: 10px;
  font-size: 25px;
  font-weight: 300;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}
.contacts__warning {
  color: #e1a711;
}
.contacts__item {
  display: flex;
  gap: 10px;
  font-size: 25px;
  font-weight: 300;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}
.contacts__item svg,
.contacts__item img {
  margin-top: 2px;
  flex-shrink: 0;
}
.contacts__map {
  position: relative;
  width: 61%;
  height: auto;
  padding-left: 30px;
}
.contacts__map::before {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(88deg, #191919 0%, rgba(25, 25, 25, 0) 100%);
}
.contacts__map img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 100%;
}
@media (max-width: 576px) {
  .contacts__row {
    flex-wrap: wrap;
  }
  .footer__menu {
    gap: 10px;
    flex-wrap: wrap;
  }
  .contacts__map {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 992px) {
  .contacts__info {
    gap: 15px;
  }
  .footer__menu {
    order: 1;
  }
}
@media (max-width: 1200px) {
  .contacts__content {
    padding-left: 15px;
  }
}
/* contact */

/* footer */
.footer {
  background-color: #191919;
  display: flex;
  flex-direction: column;
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
}
.footer__logo {
  width: 200px;
}
.footer__menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: white;
}
.footer__menu a {
  color: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 100%;
  opacity: 0.65;
  transition: color 0.3s ease-in;
}
.footer__phone {
  display: flex;
  justify-content: flex-end;
}
.footer__phone a {
  color: white;
  font-weight: 400;
  line-height: 100%;
  border-bottom: 2px dotted rgba(225, 167, 17, 0.6);
  font-size: 24px;
}
.grampus {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.grampus__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 0;
}
.grampus__policy {
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
  margin: 0;
  color: white;
  opacity: 0.5;
  letter-spacing: 0.5px;
  font-weight: 300;
  font-size: 16px;
  line-height: 135%;
  transition: color 0.3s ease-in, opacity 0.3s ease-in;
}

.grampus__link {
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: white;
  opacity: 0.5;
  letter-spacing: 0.5px;
  font-weight: 300;
  font-size: 16px;
  line-height: 135%;
}
.grampus__link svg {
  width: 111px;
  height: 26px;
  margin-left: 10px;
}
@media (max-width: 590px) {
  .grampus__wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .footer__menu {
    gap: 10px;
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  .footer__menu {
    order: 1;
  }
}
