:root {
  --color-base: #FD0108;
  --color-base01: #767676;
  --color-base02: #C4C4C4;
  --color-base03: #F2F2F2;
}

html,
body {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.baseColor01 {
  color: var(--color-base01) !important;
}

.redColor a {
  color: var(--color-base) !important;
}

.baseColor02 {
  color: var(--color-base02) !important;
}

.bgRed {
  background-color: var(--color-base);
  color: #fff;
  padding: 3px 8px;
  font-size: .9rem;
}

.btn-red {
  background-color: var(--color-base) !important;
  color: #fff !important;
  padding: 10px 30px;
  font-size: 1.2rem;
  border: none;
}

.bgGray {
  background-color: var(--color-base03);
}

.mainMenu {
  background-color: rgba(0, 0, 0, .8);
  backdrop-filter: blur(10px);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .5);
  z-index: 99;
  transition: all .3s;
  padding: 15px 0px 0px 0px;
}

.homeSwiper {
  background-color: #000;
  position: relative;
}

.homeSwiper .text {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  z-index: 3;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
}

.homeSwiper .text .container {
  position: relative;
  z-index: 3;
  color: #fff;
}

.cpClassTab {
  margin-top: -100px;
  z-index: 9;
  position: relative;
}

.cpClassTab .box {
  background-color: var(--color-base03);
  position: relative;
  transition: all .3s;
  cursor: pointer;
}

.cpClassTab .box span {
  position: absolute;
  top: -10px;
  left: 0px;
  opacity: 0;
  transition: all .3s;
}

.cpClassTab .box a {
  color: var(--color-base);
}

.cpClassTab .box:hover {
  background-color: #fff;
}

.cpClassTab .box:hover span {
  opacity: 1;
}

.cpClassTab .box.active {
  background-color: #fff;
}

.cpClassTab .box.active span {
  opacity: 1;
}

.newsBox {
  position: relative;
  background-color: var(--color-base03);
  transition: all .3s;
  border: 1px solid transparent;
  text-decoration: none;
}

.newsBox small {
  position: absolute;
  bottom: 0px;
  left: 0px;
  font-size: .8rem;
}

.newsBox:hover {
  background-color: #fff;
  border: 1px solid var(--color-base);
  text-decoration: none;
}

.newsBox h5 {
  color: #000;
}

.newsBox p {
  color: var(--color-base01);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-base) !important;
}

.googleMap:hover .mapBox {
  width: 40%;
}

.mapBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .9);
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all .3s;
  opacity: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

footer {
  background-color: #000;
  width: 100%;
}

.footMenu {
  border-bottom: 1px solid #3B3B3B;
}

.footMenu a {
  color: #fff;
  font-weight: bold;
}

.footInfo {
  color: var(--color-base02);
  text-align: center;
}

.lbPN {
  position: absolute;
  bottom: 30%;
  left: 50%;
  width: 100%;
  z-index: 9;
  display: flex;
  justify-content: end;
  transform: translateY(-50%) translateX(-50%);
  gap: 10px;
}

.lbPN>div {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s;
}

.lbPN>div:hover {
  background-color: rgba(255, 255, 255, .4);
}

.mainCpClass a {
  color: #fff;
  font-weight: bold;
}

.mainMenuClass a {
  color: #fff !important;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 3px solid transparent;
}

.mainMenuClass a.active {
  color: #fff !important;
  border-bottom: 3px solid var(--color-base);
}

.banner {
  position: relative;
}

.banner .text {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: end;
  background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
}

.banner .text div {
  position: relative;
  color: #fff;
}

.cpDetailBanner .bgRed a {
  color: #fff;
}

.cpTable table {
  border: 1px solid var(--color-base03);
  width: 100%;
  margin-bottom: 2rem;
}

.cpTable table .firstRow {
  background-color: var(--color-base03);
}

.cpTable table .firstRow td {
  padding: 15px;
  font-weight: bold;
}

.cpTable table td {
  padding: 15px;
  border-bottom: 1px solid var(--color-base03);
}

header .mainCpClass a {
  color: #fff !important;
  padding-bottom: 15px;
  border-bottom: 3px solid transparent;
}

header .mainCpClass a.active {
  color: #fff !important;
  border-bottom: 3px solid var(--color-base);
}

.logo {
  padding-bottom: 15px;
}


.logo img {
  height: 60px !important;
  transition: all .3s;
}

.mainMenu.miniMenu .logo img {
  height: 40px !important;
}

.cpQueryItem {
  transition: all .3s;
}

.cpQueryItem:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, .1);
}

.cpQueryItem .itemImg {
  position: relative;
  display: block;
}

.cpQueryItem .itemImg::after {
  content: "Просмотреть детали";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #000;
  transform: translateY(-50%) translateX(-50%);
  background-color: rgba(255, 255, 255, 1);
  transition: all .3s;
  z-index: 2;
  padding: 10px 15px;
  border-radius: 100px;
  font-size: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, .2);
  opacity: 0;
}

.cpQueryItem:hover .itemImg::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-50%) scale(1.1);
}

.cpQueryItem .itemImg img {
  position: relative;
  z-index: 1;
}

.toInquiryBtn {
  cursor: pointer;
  color: var(--color-base01);
}

.toInquiryBtn:hover {
  color: #000
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-base03);
  font-weight: bold;
  color: #000;
}

.deleteInquiryItem {
  cursor: pointer;
  color: var(--color-base01);
}

.deleteInquiryItem:hover {
  color: #000;
}

.footMenu a{
  color: #fff !important;
}

.mainMenuList .line{
  width: 2px;
  background-color: var(--color-base);
  height: 15px;
}

.active>.page-link, .page-link.active{
  background-color: #000;
  border-color: #000;
  border-width: 2px;
}

.rightLinks{
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.rightLinks a{
  background-color: var(--color-base);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: all .3s;
}

/* bootstrap lg以下 */
@media (max-width: 991px) {
  .homeSwiper .text {
    bottom: 0%;
  }

  .homeSwiper .text div.small {
    display: none;
  }

  .homeSwiper .lbPN {
    display: none;
  }

  .mobileHeader{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    z-index: 99;
  }

  .mobileHeader .mLogo img {
    height: 40px !important;
  }

  .mobileMenuList a{
    color: #000 !important;
  }

  .offcanvas{
    width: 70% !important;
  }
}