:root {
  --vendor-color: #FDC452;
  --gray-color: #1E1E1E;
  --link-color: #9D8452;
  --beauty-color:  #9D8452;
  --item-width: 290px;
  --color-1: #61786D;
  --color-2: #fff;
  --color-3: #ECE4D9;
  --color-4: #405A8A;
  --light-vendor: #D7B56D;
  --left: 30%; --top: 30%; --width: 40%; --height: 40%;
    --delta-size: 20vw;
}
* {
  box-sizing: border-box;
}
html, body {
  font-family: 'Montserrat', serif;
  margin: 0;
  min-height: 1000px;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Montserrat', serif;
}
p {
  font-family: 'Montserrat', serif;
}
.feature::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: blurOne 2s forwards;
}
.page-priozersk .feature {
  background-image: url('../img/priozersk-bg.png');
  @media screen and (max-width: 450px ){
    background-image: url('../img/priozersk-bg_m.jpg');
  }
}

.page-sortavala .feature {
  background-image: url('../img/sortavala-bg.png');
  @media screen and (max-width: 450px ){
    background-image: url('../img/sortavala-bg_m.jpg');
  }
}
.page-sortavala .feature::before {
  background-color: rgba(0, 0, 0, 0.3)!important;
}
.page-vidlica .feature {
  background-image: url('../img/vidlica-bg.png');
  @media screen and (max-width: 450px ){
    background-image: url('../img/vidlica-bg_m.jpg');
  }
}
.page-lodeynoe-pole .feature {
  background-image: url('../img/lodeinoe-pole-bg.png');
  @media screen and (max-width: 450px ){
    background-image: url('../img/lodeinoe-pole-bg_m.jpg');
  }
}

.page-lodeynoe-pole  .feature::before {
  background-color: rgba(0, 0, 0, 0.3)!important;
}
.page-layout {
  padding:0!important;
}
.layout {
  position: relative;
  overflow:hidden;
  width: 100%;
  background: url('../img/promo-bg.jpg') no-repeat;
  background-size: cover;
  padding-bottom: 100px;

}
.layout::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: blurOne 2s forwards;
  background-color: rgba(0,0,0,0.3)!important;
}
.clip {
  animation: 1s fadePromo forwards;
}
.sp-logo {
  display: block;
  width: 100%;
  max-width: 320px;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
.sp-logo a {
  display:block;
}
.path {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.section {
  position: relative;
  width: 100%;
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.btn-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
.site-btn {
  color: white;
  text-decoration: none;
  background: var(--link-color);
  border: 1px var(--link-color) solid;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.21;
  padding: 10px 42px;
  transition: all .2s linear;
}
.site-btn:hover {
  color: var(--link-color);
  background: white;
}
.page-1, .page-5 {
  padding-bottom: 40px!important;
  margin-bottom: 0!important;
}
.section h1 {
  font-family: 'Montserrat', serif;
  font-size: 36px;
  line-height: 1.21;
  font-weight: 700;
  text-align:center;
  display:block;
  text-transform: uppercase;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
  color: white;
}
.section h2 {
  font-family: 'Montserrat', serif;
  font-size: 24px;
  line-height: 1.21;
  font-weight: 700;
  display:block;
  text-transform: uppercase;
  color: var(--gray-color);
}
.section h1 span {
  color: var(--vendor-color);
}

.section-1 {
  padding-top:70px;
}
.section-2 {
  padding-top:50px;
}
.section-1 .right-side {
  padding-top: 30px;
}
.section-1 .path-01 {
  top: 135px;
}
.section-2 .path-02 {
  top: -130px;
  margin-left: -40px;
}
.cell {
  position: relative;
}
.object-item {
  width: var(--item-width);
  height: var(--item-width);
  display:inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
  position: relative;
  padding: 10px;
}
.object-item:hover .object-helper {
    z-index:3;
}
.object-item:hover .helper-item {
  margin-top:0;
  opacity: 1;
  visibility: visible;
}
.object-item:hover .dot::after  {
  background: var(--vendor-color);
}
.object-item:hover .image::before {
  animation: 60s borderRotation infinite;
}
.object-item .image::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px dotted var(--vendor-color);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s linear;
}
.object-item .image {
  padding: 10px;
}
.object-item .image img {
  transition: all 1.2s linear;
  transform: scale(1);
  border-radius: 100%;
}
.object-item:hover .image img {
  transform: scale(1.05);
}
.image {
  width: 100%;
  height: 100%;
  overflow:hidden;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  display: flex;
}
.image img {
  max-width: 100%;
}
.object-helper {
  position: absolute;
}
.cell .image a {
  width: 100%;
  height: 100%;
  overflow:hidden;
  align-items: center;
  justify-content: center;
  display: flex;
}
/*.object-helper:hover .dot::after  {*/
/*    background: var(--vendor-color);*/
/*}*/
/*.object-helper:hover .helper-item {*/
/*  margin-top:0;*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/
/*.object-helper:hover + .image::before {*/
/*  animation: 60s borderRotation infinite;*/
/*}*/
.section-1 .left-side .object-helper  {
  right: -50px;
  top:50px;
}
.section-1  .right-side .object-helper  {
  left: -60px;
  top:110px;
}
.dot {
  position: relative;
  width: 50px;
  height: 50px;
}

.dot::before {
  content: '';
  display:block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid var(--vendor-color);
  position: absolute;
}
.dot::after {
  content: '';
  display:block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}


.section-3 .left-side .object-helper  {
  right: -15px;
  top: -15px;
}
.section-3 .right-side {
  padding-top: 90px;
}
.section-3  .right-side .object-helper  {
  left: -25px;
  top: 15px;
}

.helper-item {
  opacity:0;
  margin-top: 10px;
  padding: 30px;
  background: white;
  color: var(--gray-color);
  font-size: 14px;
  line-height: 1.57;
  position: absolute;
  z-index: 2;
  width: 700px;
  border-radius: 30px;
  top: 23px;
  transition: all .2s linear;
  visibility: hidden;
}
.helper-item::after {
  content: '';
  background: transparent;
  position: absolute;
  display:block;
  width:60px;
  height: 30px;
  background: url('../img/vector.png') no-repeat;

  top:0;
}
.left-side .helper-item {
  left: 50px;
}
.left-side .helper-item::after {
  left: -30px;
  transform: scaleX(-1);
}
.right-side .helper-item::after {
  right: -30px;
}
.right-side .helper-item {
  right: 50px;
}

.sp-btn {
  margin-top: 15px;
  color: white;
  text-decoration: none;
  background: var(--link-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.21;
  padding: 10px 42px;
  transition: all .2s linear;

}
.sp-btn:hover {
  color: white;
  margin-top: 20px;
}
@media screen and (max-width:1185px) {
    /*.clip {*/
    /*    max-width: 640px;*/
    /*    width: 100%;*/
    /*    margin-left: auto;*/
    /*    margin-right: auto;*/
    /*}*/
    .object-item {
        width: var(--delta-size);
        height: var(--delta-size);
    }
    .dot {
        width:5vw;
        height:5vw;

    }
    .dot::before {
        border: 5px solid var(--vendor-color);
        width: 100%;
        height: 100%;
    }
    .dot::after {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    .clip .section h1 {
        font-size: clamp(28px, 2vw, 34px);
        padding: clamp(1px, 2vw, 30px);
    }
    .section-1 .path-01 {
        bottom: 0;
        transform: translate(-50%, 0);
        width: calc(100% - var(--delta-size)*2 - 12vw);
    }
    .section-1 .path-01 img {
        width: 100%;
    }
    .section-1 .left-side .object-helper {
        right: 0;
        transform: translate(100%, -75%);
        top: 50%;
    }
    .section-2 {
        padding-top: 15vw;
    }
    .section-2 .path-02 {
        width: calc(100% - var(--delta-size)*2 - 1vw);
        margin-left:-3vw;
        top: -3vw
    }
    .section-2 .path-02 img {
        width: 100%;
    }
    .section-1 .right-side .object-helper {
        left: 0;
        transform: translate(-100%, 25%);
        top: 50%;
    }
    .section-3 .path-03 {
        width: calc(100% - var(--delta-size) * 2 - 9vw);
        margin-left: 1vw;
        transform: translate(-50%, 4%) rotate(-3deg);
    }
    .section-3 .path-03 img {
        width: 100%;
    }
    .section-3 .left-side .object-helper {
        right: 0;
        top: 0;
        transform: translate(60%, 25%);

    }
    .section-3 .right-side .object-helper {
        left: 0;
        top: 0;
        transform: translate(-50%, 0%);
    }
}
@media screen and (max-width:940px) {
    /*.clip {*/
    /*    max-width: 640px;*/
    /*    width: 100%;*/
    /*    margin-left: auto;*/
    /*    margin-right: auto;*/
    /*}*/
    .object-item {
        width: var(--delta-size);
        height: var(--delta-size);
    }
    .dot {
        width:5vw;
        height:5vw;

    }
    .helper-item {
        max-width: 65vw;
    }
    .dot::before {
        width: 100%;
        height: 100%;
        border: 3px solid var(--vendor-color);
    }
    .dot::after {
        width: calc(100% - 14px);
        height: calc(100% - 14px);
    }
    .clip .section h1 {
        font-size: clamp(18px, 2vw, 34px);
        padding: clamp(1px, 2vw, 30px);
        max-width: 345px;
    }
    .section-1 .path-01 {
        bottom: 0;
        transform: translate(-50%, 0);
        width: calc(100% - var(--delta-size)*2 - 14vw);
    }
    .section-1 .path-01 img {
        width: 100%;
    }
    .section-1 .left-side .object-helper {
        right: 0;
        transform: translate(100%, -50%);
        top: 50%;
    }
    .section-2 {
        padding-top: 15vw;
    }
    .section-2 .path-02 {
        width: calc(100% - var(--delta-size)*2 - 1vw);
        margin-left:-3vw;
        top: -3vw
    }
    .section-2 .path-02 img {
        width: 100%;
    }
    .section-1 .right-side .object-helper {
        left: 0;
        transform: translate(-100%, 25%);
        top: 50%;
    }
    .section-3 .path-03 {
        width: calc(100% - var(--delta-size)*2 - 7vw);
        margin-left:0 ;
        transform: translate(-50%, 5%);
    }
    .section-3 .path-03 img {
        width: 100%;
    }
    .section-3 .left-side .object-helper {
        right: 0;
        top: 0;
        transform: translate(50%, 25%);

    }
    .section-3 .right-side .object-helper {
        left: 0;
        top: 0;
        transform: translate(-35%, 0%);
    }
}

@media screen and (max-width:640px) {
  .layout {
    position: relative;
    background: url('../img/promo-bg_m.png') no-repeat;
    background-size: 100%;
    height: auto;

  }
  .section {
    position: relative;
    width: 100%;
    max-width: inherit;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .path {
    display: none;
  }
  .section h1 {
    font-size: 18.22px;
  }
  .object-item {
    display: flex;
    flex-direction: column;
  }
  .object-helper {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
  }
}

.relief-1 {
  background-image: url('../img/relief-01.png');
  background-repeat: no-repeat;
  background-color: white;
  background-size: cover;
}
.relief-2 {
  background-image: url('../img/relief-01.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.relief-3 {
  background-image: url('../img/relief-01.png');
  background-repeat: no-repeat;
  background-size: cover;
}

/** INNER **/
.feature {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0 55px 0;
  position: relative;
}
.feature .sp-logo {
  position: relative;
  top: unset;
  margin-bottom: 90px;
  z-index:3;
}
.feature h1 {
  font-family: 'Montserrat', serif;
  font-size: 36px;
  line-height: 1.21;
  font-weight: 700;
  text-align:center;
  display:block;
  text-transform: uppercase;
  max-width: 655px;
  margin: 0 auto 40px auto;
  width: 100%;
  color: white;
  z-index:3;
  position: relative;
}
.feature h1 span {
  color: var(--vendor-color);
}
.feature .container {
  max-width: 1040px;
  position: relative;
  z-index:3;
}
.feature .object-helper {
  position: relative;
}
.feature .dot {
  position: absolute;
  top: -20px;
  left: -20px;
}
.feature .helper-item {
  visibility: visible;
  opacity: 1;
  margin: 0 0 0 40px;
}
.feature .helper-item::after {
  top: unset;
  left: -30px;
  bottom:0;
  transform: scale(-1);
}
.sp-navigation {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 65px;
  z-index:3;  position: relative;
}
.sp-navigation ul {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.sp-navigation ul li {
  background: white;
  padding: 20px;
  display: block;
  color: var(--gray-color);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  max-width: 285px;
  text-align:center;
}
.sp-navigation ul li a {
  display: block;
  background-color: var(--link-color);
  color: white;
  text-decoration: none;
  margin: -20px;
  padding: 20px;
}
.section-content .container {
  max-width: 1040px;
}
.intro {
  /*padding: 140px 0 151px 0;*/
  display: flex;
  justify-content: space-between;
  color: var(--gray-color);
}
.title {
  font-family: 'Montserrat', serif;
  font-size: 36px;
  line-height: 1.21;
  font-weight: 700;
  display:block;
  text-transform: uppercase;
  color: var(--gray-color);
  padding: 0 0 40px 0;
}
.description p {
  margin: 0;
  padding-right: 70px;
  padding-bottom: 30px;
  line-height: 1.55;
}
.description p:last-child {
  padding-bottom:0;
}
.rating-block {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.rating-block .item {
  text-align:center;
  width: 30%;
}
.rating-block .item:only-child {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 80%;

}
.rating-block .item:only-child img {
  margin:0;
}
.rating-block .item:only-child p {
  text-transform: uppercase;
  text-align: left;
}
.rating-block img {
  display:inline-block;
  margin: 0 auto 20px auto;
}
.rating-block .item p {
  padding-right: 0;
  color: #9D8452;
  font-size: 12px;
}
.pos-r {
  position: relative;
}
.intro-picture {
  position: relative;
}
.intro-picture .image {
  width: 420px;
  height: 420px;
  border: 2px dotted var(--vendor-color);
  justify-content: center;
  align-items: center;
  position: relative;
}
.intro-picture .image img {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 10px white solid;
  border-radius: 100%;
  max-width: 100%;
}
.intro-picture .pic-dot {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #D7B56D;
  position: absolute;
  right: 0;
  bottom: 0;
}
[class*='page-'] {
  padding: 80px 0 115px 0;
}
.page-title {
  font-family: 'Montserrat', serif;
  font-size: 36px;
  line-height: 1.21;
  font-weight: 700;
  display:block;
  text-transform: uppercase;
  text-align: center;
  color: var(--gray-color);
  padding: 0 0 70px 0;
}
.page-title span {
  color: var(--beauty-color);
}
.gallery-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.gallery-block .item {
  position: relative;
  text-align: center;
  /*display: flex;*/
  /*flex-direction: column;*/
  /*justify-content: center;*/
  width: 33.33333%;
}
.gallery-block .item .pic {
  position: relative;
  width: 300px;
  height: 360px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  cursor:pointer;
}
.gallery-block .item .pic img {
  width: 100%;
}
.gallery-block .item .pic i {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  bottom: 26px;
  background: url('../img/zoom.svg') no-repeat;
}
.gallery-block .item .name {
  padding: 0 30px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  text-align:center;
  position: relative;
  margin: 0 auto 10px auto;
  /*display: inline-flex;*/
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  min-height: 70px;
  /*max-width: 85%;*/
  /*width: 100%;*/
}
.gallery-block .item .desc {
  text-align:center;
  position: relative;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
  font-size: 18px;
  line-height: 1.5;
  padding-top: 10px;
  width: 100%;
  max-width: 95%;
}
.gallery-block .item .price {
  color: var(--light-vendor);
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}
.gallery-block .item .pic:before {
  content: '';
  position: absolute;
  display:block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.auto-num .item .name::before,
.gallery-block .item .name .text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-150%, -50%);
  display:block;
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: cover;
}
.gallery-block .item .name .text {
  position: relative;
}
.gallery-block.auto-num .item .name {
  padding: 0;
  display: inline-flex;
}
.auto-num .item .name::before {
  left: 0;
  transform: translate(calc(-100% - 20px), -50%);
}
.gallery-block.auto-num .item .name  .text::before {
  left:0;
  transform: translate(50%, -50%);
}
.gallery-block.type-2 .pic {
  width: 340px;
  height: 340px;
  border-radius: 100%;
}
.gallery-block.type-2 .pic img {
  border-radius: 100%;
  width: 300px;
  height: 300px;
}
.gallery-block .item .name .text::before {
  width: 64px;
  height: 64px;
}
.auto-num .item:nth-child(1) .name::before,
.gallery-block .item:nth-child(1) .name .text::before  {
  background-image: url('../img/count-1.png');
}
.auto-num .item:nth-child(2) .name::before,
.gallery-block .item:nth-child(2) .name .text::before {
  background-image: url('../img/count-2.png');
}
.auto-num .item:nth-child(3) .name::before,
.gallery-block .item:nth-child(3) .name .text::before  {
  background-image: url('../img/count-3.png');
}

.gallery-block.type-1 .item:nth-child(1) .pic::before {
  background-image: url('../img/border-type_s-1.png');
}
.gallery-block.type-1 .item:nth-child(2) .pic::before {
  background-image: url('../img/border-type_s-2.png');
}
.gallery-block.type-1 .item:nth-child(3) .pic::before {
  background-image: url('../img/border-type_s-3.png');
}

.gallery-block.type-2 .item:nth-child(1) .pic::before {
  background-image: url('../img/border-type_r-1.png');
}
.gallery-block.type-2 .item:nth-child(2) .pic::before {
  background-image: url('../img/border-type_r-2.png');
}
.gallery-block.type-2 .item:nth-child(3) .pic::before {
  background-image: url('../img/border-type_r-3.png');
}

.gallery-block.type-3 .item:nth-child(1) .pic::before {
  background-image: url('../img/border-type_p-1.png');
}
.gallery-block.type-3 .item:nth-child(2) .pic::before {
  background-image: url('../img/border-type_p-2.png');
}
.gallery-block.type-3 .item:nth-child(3) .pic::before {
  background-image: url('../img/border-type_p-3.png');
}
.gallery-block.type-3 .name {
  padding:0;
  width: auto;
  background-image: none!important;
}
.gallery-block.type-3 .name::before {
  display: none;

}

.separator {
  display: flex;
  justify-content: center;
  margin: 84px  auto 77px auto;
}
.way-to-reach {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.way-to-reach .description {
  font-weight: 600;
  color:  var(--gray-color);
  font-size: 16px;
  padding-right: 93px;
}
.way-to-reach .description ul {
  list-style-type: none;

}
.way-to-reach .description ul li {
  position: relative;
  padding-left: 36px;
  padding-bottom: 20px;
}
.way-to-reach .description ul li:last-of-type {
  padding-bottom:0;
}
.way-to-reach .description ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  display: block;
  position:absolute;
  left:0;
  border-radius: 100%;
  background: var(--link-color);
}
.way-to-reach .description ul li span {
  color: var(--link-color);
}
.way-to-reach .image {
  border-radius: 0;
}

.music-block {
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
}
.music-block .description {
  margin-top: 24px;
  font-weight: 400;
  color:  white;
  font-size: 16px;
}
.slider-gallery {
  padding-bottom: 90px;
}
.slider-gallery .swiper-slide {
  opacity: 0.2;
  transition: all 0.6s linear;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 646px;
  height: 430px;
  padding: 25px;
  overflow: hidden;
}
.slider-gallery .swiper-slide img {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.slider-gallery .swiper-slide::before {
  content: '';

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display:block;
  width: 100%;
  height: 100%;
  background-image: url('../img/gallery-active.png');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.6s linear;
}
.slider-gallery .swiper-slide-active {
  opacity: 1;
}
.slider-gallery .swiper-slide-active::before {
  opacity: 1;
}
.slider-gallery .swiper-pagination {
  display: flex;
  counter-reset: slide-counter;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.slider-gallery .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 56px;
  height: 56px;
  display:flex;
  align-items: center;
  justify-content: center;
  counter-increment: slide-counter;
  cursor: pointer;
}
.slider-gallery .swiper-pagination .swiper-pagination-bullet:after {
  content: counter(slide-counter);
  font-weight: 700;
  color:  var(--link-color);
  font-size: 26px;
  line-height: 1;
}
.slider-gallery .swiper-pagination .swiper-pagination-bullet:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('../img/gallery-page.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s linear;
}
.slider-gallery .swiper-pagination .swiper-pagination-bullet-active:before {
  opacity: 1;
}
.slider-gallery .swiper-button {
  position: absolute;
  z-index: 3;
  width: 40px;
  height: 40px;
  background-image: url('../img/arrow.png');
  background-repeat: no-repeat;
  background-size: cover;
  top: calc(50% - 45px);
  left: 11.11%;
  cursor: pointer;
}
.slider-gallery .swiper-button-next {
  left: unset;
  right: 11.11%;
}
.slider-gallery .swiper-button-prev {
  transform: scaleX(-1);
}
  /** PAGES **/
.page-2 {
  background-repeat: no-repeat;
  background-color: var(--color-1);
  background-size: cover;
}
.page-2 .page-title span {
  color: #D7B56D;
}
.page-2 .name {
  color: white;
}
.page-2 .desc {
  color: white;
}


.page-3 {
  background-repeat: no-repeat;
  background-color: var(--color-2);
  background-size: cover;
}
.page-3 .page-title span {
  color: var(--link-color);
}
.page-3 .name {
  color: var(--gray-color);
}
.page-3 .desc {
  color:  var(--gray-color);
}

.page-5 {
  background-repeat: no-repeat;
  background-color: var(--color-3);
  background-size: cover;
}
.page-5 .page-title span {
  color: var(--link-color);
}

.page-5 .container {
  max-width: 1095px;
}

.page-6 {
  background-repeat: no-repeat;
  background-color: var(--color-4);
  background-size: cover;
}
.page-6 .page-title span {
  color: var(--light-vendor);
}
.page-6 .name {
  color: var(--color-2);
}
.page-6 .desc {
  padding-top: 0;
  padding-bottom: 10px;
  color:  var(--color-2);
}


.page-8 {
  background-repeat: no-repeat;
  background-color: var(--color-1);
  background-size: cover;
}
.page-8 .page-title span {
  color: var(--light-vendor);
}


@keyframes borderRotation {
  0%, 100% {
    border-style: dashed;
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    border-style: dashed;
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
@keyframes fadePromo {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}


@media screen and (max-width: 640px){
  .clip {
    display: flex;
    flex-direction: column;
  }
  .sp-logo {
    position: relative;
    top: 50px;
    left: unset;
    transform: unset;
    display:flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }
  .sp-logo a {
    width: 100%;
    margin: 0 auto;
  }
  .section-1 .left-side .object-helper {
    left: unset;
    right: unset;
    top: unset;
    transform: unset;
    bottom:0;
    position: relative;
    z-index:2;
  }
  .object-item {
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    border-radius: 0;
    overflow: visible;
    height: auto;
    width: 100%;
  }
  .object-item .image {
    width: 290px;
    height: 290px;
    position: relative;
    padding: 10px;
    overflow: hidden;
  }
  .object-item .image img {
    border-radius: 100%;
  }
  .layout {
    padding-bottom: 60px;
  }
  .layout .section-2 {
    order: 1;

  }
  .layout .section-1 {
    order: 2;
  }
  .layout .section-3 {
    order: 3;
  }
  .layout .teaser {
    order: 4;
    padding-top: 20px;
  }
  .object-item .image::before {
    border-style: dashed;
  }
  .dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: -25px;
    margin-top: -25px;
    z-index:2;
  }
  .dot::after {
    background: var(--vendor-color);
  }
  .helper-item {
    left: 0!important;
    position: relative;
    visibility: visible;
    opacity: 1;
    width: 100%;
    margin-top:20px;
      max-width: inherit;
  }
  .helper-item::after {
    background: url(../img/vector-m.png) no-repeat;
    width: 30px;
    height: 30px;
    left: 50%!important;
    top:0;
    transform: translate(-50%, -50%)!important;
  }
  .helper-item h2 {
    text-align: center;
  }
  .sp-btn {
    display: block;
    width: 130px;
    margin: 10px auto 0 auto;
    border-radius: 30px;
  }
  .clip .left-side, .clip  .right-side {
    padding-top: 50px!important;
  }
  .section-1 .right-side .object-helper,
  .section-3 .left-side .object-helper,
  .section-3 .right-side .object-helper {
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
      transform: unset;
  }
  .dot {
      width: 50px;
      height: 50px;
  }

  .layout .clip .section-1 .left-side {
    padding-top:0!important;
  }
    .right-side .helper-item {
        right: unset;
    }

        /** INNER **/
  .feature {
    display :flex;
    flex-direction: column;
    padding: 50px 0;

  }
  .feature .sp-logo {
    margin-bottom: 50px;
  }
  .feature h1 {
    font-size: 18px;
    max-width: 290px;
  }
  .feature .object-item {
    position: absolute;
    width: calc(100% - 22px);
    padding: 0;
  }
  .feature .object-item  .image {
    display: none;
  }
  .feature .helper-item {
    margin: 0 auto;
  }
  .feature .dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(0, 0) translateZ(0) scale(1);
    z-index: 2;
    margin-left: -25px;
    margin-top: -25px;
  }
  .feature .dot[data-aos^=zoom][data-aos^=zoom].aos-animate {
    transform: translate(0, 0) translateZ(0) scale(1);
  }
  .feature .helper-item::after {
    background: url(../img/vector-m.png) no-repeat;
    width: 30px;
    height: 30px;
    left: 50% !important;
    top: 0;
    transform: translate(-50%, -50%) !important;
  }
  .feature .helper-item {
    margin-top: 47px;
    top: unset;
  }
  .intro {
    flex-direction: column-reverse;
  }
  .intro-picture .image {
    width:290px;
    height:290px;
    border-style: dashed;
    margin: 0 auto 30px auto;
  }
  .intro-picture .image img {
    width: 100%;
  }
  [class*='page-']{
    padding: 50px 0;
  }
  .intro-picture .pic-dot {
    display: none;
  }
  .title {
    font-size: 24px;
    text-align:center;
  }
  .intro .description {
    padding: 0 10px;
  }
  .description p {
    padding-right: 0;
  }
  .rating-block {
    flex-direction: column;
  }
  .rating-block .item {
    width: auto;
    text-align:center;
  }
  .rating-block .item p {
    max-width: 190px;
    text-transform: uppercase;
    margin: 0 auto;
  }
  .page-title {
    padding: 0;
    margin: 0 auto 30px auto;
    font-size: 24px;
  }
  .gallery-block {
    flex-direction: column;
  }
  .gallery-block .item {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .gallery-block .item .name {
    font-size: 20px;
    text-transform: uppercase;
    min-height: inherit;

  }
  .gallery-block .item .name .text {
    max-width: 65%;
    display: inline-flex;
  }
  .gallery-block .item .desc {
    font-size: 14px;
    font-weight: 600;
    max-width: 80%;
  }
  .auto-num .item .name::before, .gallery-block .item .name .text::before {
    width: 40px;
    height: 40px;
  }
  .separator img {
    width: 100%;
  }
  .way-to-reach {
    flex-direction: column;
  }
  .way-to-reach .description ul {
    padding-left: 0;
  }
  .way-to-reach .description {
    padding-right: 0;
    padding-bottom: 30px;
  }
  .rating-block .item:only-child {
    width: auto;
  }
  .slider-gallery {
    padding-left: 20px;
    padding-right: 20px;
  }
  .slider-gallery .swiper-slide {
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .slider-gallery .swiper-slide img {
    width: 105%;
  }
  .slider-gallery .swiper-button {
    top: 30%;
    left: 10px;
  }
  .slider-gallery .swiper-button-next {
    left: unset;
    right: 10px;
  }
  .slider-gallery .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
  }
  .sp-navigation {
    padding-top: 30px;
  }
  .sp-navigation ul {
    gap: 0;
  }
  .sp-navigation ul li:first-child.swiper-slide-active {
    margin-left: 10px;
  }
}
.lg-sub-html .h4, .lg-sub-html h4 {
  font-size: 18px;
}

.lg-sub-html .h5, .lg-sub-html h5 {
  font-size: 14px;
  opacity: 0.4;
  font-weight: 400;
}
.teaser {
  text-align:center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.teaser-title {
  font-size: 28px;
  color: white;
  text-align:center;
  padding-top: 40px;
  padding-bottom: 20px;
}
.teaser a {
  color: white;
  text-decoration: none;
  border-bottom: 1px white dashed;
  font-size: 22px;
}
.teaser a:hover {
  border-color: transparent;
}
@keyframes blurOne {
  0% {
    backdrop-filter: blur(20px);
    background-color: rgba(0,0,0,0.8);
  } 100% {
    backdrop-filter: blur(0);
        background-color: rgba(0,0,0,0);
  }
}
/*.fadeUp {*/
/*  animation: fadeUp 1s linear forwards;*/
/*  animation-fill-mode: both;*/
/*  animation-timeline: view(40% 10%);*/
/*}*/

/*@keyframes fadeUp {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/
@media screen and (max-width: 320px){
  .sp-logo {
    max-width: 280px;
  }
}
@media screen and (max-width: 430px) {
    .layout {
        padding-bottom: 60px;
        background-size: cover;
    }
    .teaser {
        padding-bottom: 0;
    }
}
@media screen and (max-width: 730px) {
  .erid-placeholder {
    top:unset;
    right: 15px;
    bottom: 40px;
  }
}
.erid-placeholder {
  position: absolute;
  top:20px;
  right: 15px;
}

.erid-placeholder .pos-label {
  position: absolute;
  z-index: 3;
  left: unset;
  opacity: 1;
  right: 0;
  top: 0;
}

.erid-placeholder .pos-label-item {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  color: #303030;
  font: 300 14px/1 "Roboto Condensed",sans-serif;
  padding: 4px 6px;
}

.erid-placeholder .pos-label-item:hover {
  opacity: 1;
}

.erid-placeholder .pos-label:hover {
  z-index: 3;
}

.erid-placeholder .pos-label:hover .pos-label-body {
  transform: translateY(-2px) scaleY(1);
  z-index: 1;
  opacity: 1;


}
@media screen and (max-width: 730px) {
  .erid-placeholder .pos-label:hover .pos-label-body {
    transform: translateY(-160%) scaleY(1);
  }
}
.erid-placeholder .pos-label+.pos-label {
  transform: translateX(-100%);
}

.erid-placeholder .pos-label-body {
  background: #fff;
  padding: 14px;
  border-radius: 7px;
  position: absolute;
  right: 0;
  font-size: 12px;
  min-width: 250px;
  margin: 10px 7px 0 0;
  -webkit-transition: all .1s linear;
  -o-transition: all .1s linear;
  transition: all .1s linear;
  -ms-transform: translateY(7px) scaleY(0);
  transform: translateY(7px) scaleY(0);
  z-index: -9999;
  opacity: 0;
  -webkit-transform-origin: top;
  transform-origin: top;
  text-align:left;
}

.erid-placeholder .pos-label-body::before {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 7px #fff solid;
  border-left: 7px transparent solid;
  border-right: 7px transparent solid;
  position: absolute;
  top: -7px;
  right: 7px;
}
@media screen and (max-width: 730px) {
  .erid-placeholder .pos-label-body::before {
    border-top: 7px #fff solid;
    border-left: 7px transparent solid;
    border-right: 7px transparent solid;
    border-bottom: 0;
    top:unset;
    bottom:-7px;
  }
}

.erid-placeholder .pos-label-body p {
  font-size: 12px;
  color: #4b4b4b;
  pointer-events: none;
  margin:0;
  line-height:1.2;
  font-weight:400;
  font-family: Roboto;
  text-align:left;
}

.erid-placeholder .pos-label-dots {
  position: relative;
  font-size: 28px;
  line-height: 0;
  color: #303030;
  margin-left: 5px;
  padding: 3px 4px;
  background: rgba(0,0,0,.15);
  border-radius: 5px;
  cursor: pointer;
}

.erid-placeholder .pos-label-dots::before {
  line-height: 0;
  content: '...';
  display: block;
  position: relative;
  top: 0;
  left: 50%;
  margin-top: -5px;
  -webkit-transform: translate(-50%,-100%);
  -ms-transform: translate(-50%,-100%);
  transform: translate(-50%,-100%);
}
