* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
li {
  list-style: none;
}

.root {
  background-color: #323232;
  height: 100%;
  scroll-behavior: smooth;
  font-family: "Lora", Arial, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

.content {
  outline: 15px solid rgb(0, 255, 76);
  min-height: 100vh;
  flex: 1;
}

.body-no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1620px;
  margin: auto;
}

.nav-logo {
  width: 85px;
}

.nav__socialIcon {
  width: 32px;
  height: 32px;
}

button {
  border: none;
  cursor: pointer;
}

nav {
  margin: 30px auto;
  display: flex;
  padding-top: 15px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c2a046;
  padding-bottom: 20px;
  position: relative;
}

.mobile-header__gamburger-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
  gap: 7px;
  position: relative;
  z-index: 4001;
}

.mobile-header__nav-border-button {
  background: #cdaf62;
  height: 1px;
  width: 30px;
  transition: all 200ms ease-in-out;
}

.mobile-header__gamburger-button.open
  .mobile-header__nav-border-button:first-child {
  transform: translateY(9px) rotate(45deg);
  background-color: #cdaf62;
}

.mobile-header__gamburger-button.open
  .mobile-header__nav-border-button:nth-child(2) {
  opacity: 0;
}

.mobile-header__gamburger-button.open
  .mobile-header__nav-border-button:last-child {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #cdaf62;
}

.mob.slogan {
  width: 150px;
  font-size: 15px;
  font-weight: 400;
  color: #cdaf62;
  display: none;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: -20px;
  left: 0;
  z-index: 1000;
  transform: translateX(-100%);
  padding-top: 72px;
  min-height: 100%;
  width: 100vw;
  z-index: 4000;
}

.mobile-menu__content {
  position: fixed;
  background-color: #323232;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100vw;
  max-height: 100vh;
  padding: 70px 0;
  padding-top: 30px;
}

.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Плавное открытие */
}

.mobile-menu.close {
  transform: translateX(-100%);
  transition: transform 0.2s cubic-bezier(0.75, 0, 0.85, 0.5); /* Быстрое закрытие */
}

.mobile-menu .pulse {
  position: absolute;
  right: 27px;
  bottom: 43px;
  width: 48px;
  height: 48px;
}

.mobile-menu .pulse span {
  width: 48px;
  height: 48px;
  animation: MobAnim 4s linear infinite;
  animation-delay: calc(var(--i) * -1s);
}

@keyframes MobAnim {
  0% {
    width: 48px;
    height: 48px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

.mobile-menu .pulse .online-note {
  font-size: 9px;
  color: #000;
  font-weight: 400;
  font-family: "Lora";
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
}

.mobile-menu__item {
  list-style: none;
  text-align: center;
}

.mobile-menu__link {
  font-size: "Lora";
  font-size: 16px;
  line-height: 100%;
  color: #fff;
  text-decoration: none;
}

.mobile-menu__mobile-addres {
  font-family: "Lora";
  font-weight: 400;
  font-size: 16px;
  color: #cdaf62;
  text-align: center;
}

.mobile-menu__mobile-addres-wrapper {
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu__mobile-addres-text {
  margin-top: 8px;
  font-size: 15px;
}

.mobile-menu__icon {
  width: 30px;
  height: 30px;
  margin-left: 14px;
}

.mobile-menu__mobile-phone-number {
  font-family: "Lora";
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin: 20px 0 20px;
}

.mobile-header__gamburger-button {
  display: none;
}
.nav__link {
  display: flex;
  align-items: end;
  padding-top: 40px;
  gap: 50px;
}
.nav__link-item {
  font-family: Lora;
  font-size: 16px;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.nav__link-item:hover {
  color: #cdaf62;
  transition: all 200ms linear;
}

.nav__link-item.active {
  color: #cdaf62;
}

nav .nav__social {
  display: flex;
  gap: 38px;
  align-items: end;
  padding-top: 10px;
}
.nav__socialBtn {
  margin-top: 20px;
  width: 220px;
  height: 40px;
  background-color: #cdaf62;
  font-family: Lora;
  font-size: 24px;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.bgvideo {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -9999;
}

.bgvideo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 1080px;
  height: 100%;
  width: 100%;
  z-index: -9999;
  object-fit: cover;
  background-size: cover;
  overflow: hidden;
}
.title {
  width: 40%;
  font-family: Lora;
  font-size: 80px;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #cdaf62;
  padding-bottom: 26px;
  padding-top: 45px;
}
.descr {
  width: 30%;
  font-family: Lora;
  font-size: 32px;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #cdaf62;
}

.pulse {
  position: relative;
  width: 207px;
  height: 207px;
  border-radius: 50%;
  background-color: #cdaf62;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.online-note {
  font-size: 40px;
  text-align: center;
  font-family: "Lora";
}

.pulse span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  animation: anim 4s linear infinite;
  border-radius: 50%;
  border: solid 1px #ccaf62;
  animation-delay: calc(var(--i) * -1s);
}

@keyframes anim {
  0% {
    width: 207px;
    height: 207px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 460px;
    height: 460px;
    opacity: 0;
  }
}

.circles {
  margin: 40px auto;

  display: flex;
  justify-content: space-between;
}
.header__advert {
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background-color: #cdaf62;
  display: flex;
  gap: 5px;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.header__advert p {
  font-family: Lora;
  font-size: 32px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}
.header__advert .white {
  color: #fff;
  font-weight: 600;
}
.header__advert .one {
  padding-top: 50px;
}
.header__advert .arrow {
  padding-top: 34px;
}
.circles__order {
  padding-top: 90px;
}
.circles__one {
  width: 340px;
  height: 340px;
  border: 2px solid #cdaf62;
  border-radius: 100%;
}
.circles__two {
  margin: 23px 23px;
  width: 290px;
  height: 290px;
  border: 2px solid #cdaf62;
  border-radius: 100%;
}
.circles__three {
  margin: 23px 23px;
  width: 240px;
  height: 240px;
  border: 2px solid #cdaf62;
  border-radius: 100%;
}
.order {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 28px 28px;
  width: 180px;
  height: 180px;
  background-color: #cdaf62;
  border-radius: 100%;
  font-family: Lora;
  font-size: 30px;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}

.main {
  padding-top: 60px;
}

.button-mobile {
  display: none;
}

.awards-slider .swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
  margin: 0 20px;
  border: none !important;
}

.awards-slider {
  position: relative;
  padding-bottom: 100px !important;
}
.portf-slide img {
  display: block;
  margin: auto;
  width: 70% !important;
}

.awards-slider .swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
}

.awards-slider .swiper-pagination-bullet-active {
  background-color: #cdaf62 !important;
  opacity: 1 !important;
}

.awards-slider .swiper-button-prev,
.awards-slider .swiper-button-next {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  width: 50px;
  height: 50px;
  /*background-color: #cdaf62 !important;*/
  border-radius: 50% !important;
}
/* Стили для иконок стрелок */
.awards-slider .swiper-button-prev:after,
.awards-slider .swiper-button-next:after {
  font-size: 24px !important;
  /*  color: #000000 !important;*/
  opacity: 0;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.awards-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
